/* ============================================================
   ENCONTRE.AI - Marketplace Multivendedor
   CSS Fiel ao Tema Wolmart Demo 12
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #333;
    background: #f6f6f6;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
}

a:hover {
    color: #00B853;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   HEADER - TOP BAR
   ============================================================ */
.header-top-bar {
    background: #fff;
    color: #666;
    font-size: 12px;
    letter-spacing: 0.3px;
    border-bottom: 1px solid #eee;
}

.header-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 38px;
}

.header-welcome {
    color: #666;
    font-size: 12px;
    letter-spacing: 0.3px;
    text-transform: none;
}

.header-top-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.header-top-links a {
    color: #333;
    padding: 0 12px;
    font-size: 12px;
    letter-spacing: 0.3px;
    border-right: 1px solid #ddd;
    transition: color 0.2s;
}

.header-top-links a:last-child {
    border-right: none;
    padding-right: 0;
}

.header-top-links a:hover {
    color: #00B853;
}

/* ============================================================
   HEADER - MAIN
   ============================================================ */
.header-main {
    background: #fff;
    padding: 18px 0;
    border-bottom: none;
}

.header-main .container {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: #00B853;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: #222;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: #00B853;
}

/* Search Bar */
.search-bar {
    flex: 1;
    display: flex;
    align-items: center;
    border: 2px solid #e4e4e4;
    border-radius: 0;
    overflow: hidden;
    max-width: 600px;
    height: 44px;
    transition: border-color 0.2s;
}

.search-bar:focus-within {
    border-color: #00B853;
}

.search-bar select {
    height: 100%;
    padding: 0 15px;
    border: none;
    border-right: 2px solid #eee;
    background: #fff;
    color: #666;
    font-size: 12px;
    min-width: 150px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 25px;
}

.search-bar input[type="search"] {
    flex: 1;
    height: 100%;
    padding: 0 15px;
    border: none;
    outline: none;
    font-size: 13px;
    color: #333;
}

.search-bar input[type="search"]::placeholder {
    color: #aaa;
}

.search-bar button[type="submit"] {
    height: 100%;
    width: 50px;
    background: #00B853;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.search-bar button[type="submit"]:hover {
    background: #009a46;
}

.search-bar button[type="submit"] svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 0 20px;
    border-left: 1px solid #eee;
}

.header-contact-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #333;
}

.header-contact-info {
    display: flex;
    flex-direction: column;
}

.header-contact-label {
    font-size: 11px;
    color: #666;
}

.header-contact-label a {
    color: #00B853;
    font-weight: 600;
}

.header-contact-phone {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.5px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 14px;
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
    border-left: 1px solid #eee;
}

.header-action:hover {
    color: #00B853;
}

.header-action-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-action-icon svg {
    width: 24px;
    height: 24px;
    stroke: #333;
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.2s;
}

.header-action:hover .header-action-icon svg {
    stroke: #00B853;
}

.header-action-label {
    font-size: 10px;
    color: #333;
    margin-top: 3px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.header-action .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #00B853;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   CATEGORY NAVIGATION BAR
   ============================================================ */
.category-nav {
    background: #00B853;
    position: relative;
    z-index: 10;
}

.category-nav .container {
    display: flex;
    align-items: center;
}

.category-nav-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    white-space: nowrap;
    border-radius: 0;
}

.category-nav-toggle svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.category-nav-scroll {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.category-nav-scroll::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
    min-width: 75px;
}

.category-item:hover {
    background: rgba(0,0,0,0.1);
    color: #fff;
}

.category-item-icon {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.category-item:hover .category-item-icon {
    transform: scale(1.08);
}

.category-item-name {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    max-width: 85px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    padding: 15px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 420px;
}

.hero-banner-main {
    grid-row: 1 / 3;
    background: linear-gradient(135deg, #e8e8e8 0%, #d4d4d4 100%);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px 50px;
}

.hero-banner-main .hero-content {
    position: relative;
    z-index: 2;
    max-width: 55%;
}

.hero-banner-main .hero-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.hero-banner-main .hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-banner-main .hero-discount {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.hero-banner-main .hero-discount strong {
    color: #00B853;
    font-weight: 700;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #222;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #222;
    transition: all 0.3s;
}

.hero-cta:hover {
    background: #00B853;
    border-color: #00B853;
    color: #fff;
}

.hero-banner-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-banner-image .hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c8c8c8 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: 0.5;
}

.hero-banner-side {
    background: #333;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    padding: 25px;
    color: #fff;
}

.hero-banner-side.light {
    background: #f0ebe5;
    color: #333;
}

.hero-side-content {
    position: relative;
    z-index: 2;
}

.hero-side-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.hero-side-title {
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-side-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: inherit;
    transition: color 0.2s;
}

.hero-side-cta:hover {
    color: #00B853;
}

.hero-banner-side .hero-side-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    opacity: 0.3;
}

/* ============================================================
   BENEFITS BAR
   ============================================================ */
.benefits-bar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0;
    margin: 15px auto;
    max-width: 1280px;
    padding: 0 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 20px;
    border-right: 1px solid #eee;
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
    stroke: #333;
    fill: none;
    stroke-width: 1;
}

.benefit-title {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

.benefit-desc {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section {
    padding: 25px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #222;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.5px;
}

.section-more {
    font-size: 13px;
    font-weight: 600;
    color: #00B853;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.section-more:hover {
    color: #009a46;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.product-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-color: #eee;
    z-index: 2;
}

.product-image {
    position: relative;
    padding-top: 100%;
    background: #f5f5f5;
    overflow: hidden;
}

.product-image-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: #bbb;
    transition: transform 0.3s;
    background: linear-gradient(145deg, #f8f8f8, #efefef);
}

.product-card:hover .product-image-inner {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    z-index: 5;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 34px;
    height: 34px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.product-action-btn:hover {
    background: #00B853;
    border-color: #00B853;
    color: #fff;
}

.product-action-btn svg {
    width: 16px;
    height: 16px;
    stroke: #666;
    fill: none;
    stroke-width: 1.5;
}

.product-action-btn:hover svg {
    stroke: #fff;
}

.product-quick-view {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover .product-quick-view {
    opacity: 1;
    transform: translateY(0);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 5;
}

.product-badge.sale {
    background: #00B853;
    color: #fff;
}

.product-badge.new {
    background: #2196f3;
    color: #fff;
}

.product-badge.hot {
    background: #f44336;
    color: #fff;
}

.product-info {
    padding: 15px 12px;
}

.product-name {
    font-size: 13px;
    font-weight: 400;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.4;
    min-height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-name a {
    color: #333;
    transition: color 0.2s;
}

.product-name a:hover {
    color: #00B853;
}

/* Rating Stars */
.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.stars {
    display: flex;
    gap: 1px;
}

.star {
    width: 13px;
    height: 13px;
    color: #d4d4d4;
    font-size: 13px;
    line-height: 1;
}

.star.filled {
    color: #f5a623;
}

.star.half {
    color: #f5a623;
}

.reviews-count {
    font-size: 12px;
    color: #aaa;
}

.reviews-count a {
    color: #999;
}

.reviews-count a:hover {
    color: #00B853;
}

/* Prices */
.product-price {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.price-current {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.price-original {
    font-size: 13px;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 400;
}

/* Product Buttons */
.product-buttons {
    display: flex;
    gap: 6px;
}

.btn-add-cart {
    flex: 1;
    padding: 9px 14px;
    border: 1px solid #e1e1e1;
    background: #fff;
    color: #333;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    background: transparent;
    border-radius: 3px;
}

.btn-add-cart:hover {
    background: #00B853;
    border-color: #00B853;
    color: #fff;
}

.btn-whatsapp {
    padding: 9px 14px;
    background: #25d366;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    border: 2px solid #25d366;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-whatsapp:hover {
    background: #128c7e;
    border-color: #128c7e;
}

/* ============================================================
   APP DOWNLOAD BANNER
   ============================================================ */
.app-banner {
    background: linear-gradient(135deg, #7b2d4e 0%, #a0375e 100%);
    color: #fff;
    padding: 16px 0;
    margin: 10px 0;
}

.app-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-banner-icon {
    font-size: 20px;
    margin-right: 12px;
}

.app-banner-text {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
}

.app-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    white-space: nowrap;
}

.app-banner-btn:hover {
    background: #fff;
    color: #7b2d4e;
    border-color: #fff;
}

/* ============================================================
   VENDORS SECTION
   ============================================================ */
.vendors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.vendor-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.vendor-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-color: #ddd;
}

.vendor-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    font-size: 28px;
}

.vendor-name {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.vendor-name a {
    color: #222;
}

.vendor-name a:hover {
    color: #00B853;
}

.vendor-products-count {
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
}

.vendor-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 12px;
}

.vendor-gallery {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.vendor-product-thumb {
    width: 70px;
    height: 70px;
    background: #f5f5f5;
    border-radius: 0;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ccc;
}

/* ============================================================
   PROMO BANNERS (Flash Sale / Sport)
   ============================================================ */
.promo-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 10px 0;
}

.promo-banner {
    border-radius: 0;
    overflow: hidden;
    position: relative;
    padding: 40px 35px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-banner.dark {
    background: linear-gradient(135deg, #2c2c2c 0%, #444 100%);
    color: #fff;
}

.promo-banner.light {
    background: linear-gradient(135deg, #e8e4df 0%, #d4cfc8 100%);
    color: #333;
}

.promo-label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
}

.promo-label strong {
    color: #f44336;
    font-weight: 700;
}

.promo-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}

.promo-subtitle {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 18px;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid currentColor;
    color: inherit;
    transition: all 0.3s;
    width: fit-content;
}

.promo-banner.dark .promo-cta:hover {
    background: #fff;
    color: #222;
    border-color: #fff;
}

.promo-banner.light .promo-cta:hover {
    background: #222;
    color: #fff;
    border-color: #222;
}

.promo-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    opacity: 0.2;
}

/* ============================================================
   DEALS HOT OF THE DAY
   ============================================================ */
.deals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.deal-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.deal-image {
    height: 280px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #ddd;
    position: relative;
}

.deal-info {
    padding: 20px;
}

.deal-name {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.deal-name a:hover {
    color: #00B853;
}

.deal-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.deal-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.deal-price .price-current {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.deal-desc {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
    margin-bottom: 15px;
}

.deal-actions {
    display: flex;
    gap: 8px;
}

.deal-btn {
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
}

.deal-btn.primary {
    background: #7b2d4e;
    color: #fff;
    border: 2px solid #7b2d4e;
}

.deal-btn.primary:hover {
    background: #5a1f38;
    border-color: #5a1f38;
}

/* Mini Products Grid */
.mini-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.mini-product {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 12px;
}

.mini-product-pair {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-product-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.mini-product-image {
    width: 70px;
    height: 70px;
    background: #f5f5f5;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ccc;
}

.mini-product-info {
    flex: 1;
    min-width: 0;
}

.mini-product-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mini-product-name a:hover {
    color: #00B853;
}

.mini-product-rating {
    display: flex;
    gap: 1px;
    margin-bottom: 4px;
}

.mini-product-price {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mini-product-price .price-current {
    font-size: 13px;
    font-weight: 700;
}

.mini-product-price .price-original {
    font-size: 11px;
}

/* ============================================================
   TODAY'S SPECIAL BANNER
   ============================================================ */
.special-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 70px 0;
    text-align: center;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
}

.special-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 25%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
}

.special-label {
    font-size: 14px;
    font-weight: 600;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.special-title {
    font-size: 34px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.special-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
}

.special-desc strong {
    color: #f5a623;
    font-weight: 700;
}

.special-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.special-cta:hover {
    background: #fff;
    color: #222;
    border-color: #fff;
}

/* ============================================================
   LATEST PRODUCTS (2-per-column grid)
   ============================================================ */
.latest-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.latest-product-pair {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.latest-product-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.latest-product-item:last-child {
    border-bottom: none;
}

.latest-product-image {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ccc;
}

.latest-product-info {
    flex: 1;
    min-width: 0;
}

.latest-product-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.latest-product-name a:hover {
    color: #00B853;
}

/* ============================================================
   DOWNLOAD APP SECTION
   ============================================================ */
.download-section {
    background: #fff;
    padding: 40px 0;
    margin: 15px 0;
}

.download-section .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.download-info {
    flex: 1;
}

.download-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.download-desc {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.download-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

.download-form input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #eee;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}

.download-form input:focus {
    border-color: #00B853;
}

.download-form button {
    padding: 10px 20px;
    background: #00B853;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.download-form button:hover {
    background: #009a46;
}

.download-badges {
    display: flex;
    gap: 10px;
}

.download-badge {
    height: 40px;
    padding: 8px 16px;
    background: #222;
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
}

.download-badge-label {
    font-size: 8px;
    opacity: 0.7;
    display: block;
}

.download-badge-store {
    font-size: 13px;
    font-weight: 600;
}

/* ============================================================
   QUOTATION BUTTON (Floating)
   ============================================================ */
.quotation-float-btn {
    position: fixed;
    bottom: 80px;
    right: 25px;
    z-index: 999;
    background: #00B853;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(0,184,83,0.4);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.quotation-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,184,83,0.5);
    color: #fff;
}

.quotation-float-tooltip {
    position: absolute;
    right: 65px;
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.quotation-float-btn:hover .quotation-float-tooltip {
    opacity: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #222;
    color: #999;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand .logo-icon {
    background: #00B853;
}

.footer-brand .logo-text {
    color: #fff;
}

.footer-brand-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #ccc;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: #00B853;
    flex-shrink: 0;
}

.footer-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13px;
    color: #999;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 12px;
    color: #666;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: #00B853;
    border-color: #00B853;
    color: #fff;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 998;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top:hover {
    background: #00B853;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: #fff;
    border-radius: 0;
    padding: 35px;
    max-width: 420px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

/* Form Styles */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #eee;
    border-radius: 4px;
    font-size: 13px;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00B853;
}

.form-error {
    color: #d32f2f;
    font-size: 12px;
    margin-bottom: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.btn-primary {
    background: #00B853;
    color: #fff;
    border-color: #00B853;
}

.btn-primary:hover {
    background: #009a46;
    border-color: #009a46;
}

.btn-outline {
    background: transparent;
    color: #333;
    border-color: #ddd;
}

.btn-outline:hover {
    border-color: #00B853;
    color: #00B853;
}

/* ============================================================
   NOTIFICATION TOAST
   ============================================================ */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 20px;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    z-index: 99999;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    max-width: 380px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success { background: #00B853; }
.notification-error { background: #d32f2f; }
.notification-warning { background: #ff9800; }
.notification-info { background: #2196f3; }

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vendors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .hero-banner-main {
        min-height: 300px;
    }

    .hero-banner-side {
        min-height: 150px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item:nth-child(2) {
        border-right: none;
    }

    .benefit-item:nth-child(3),
    .benefit-item:nth-child(4) {
        border-top: 1px solid #eee;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .latest-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mini-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .deals-grid {
        grid-template-columns: 1fr;
    }

    .header-contact {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 13px;
    }

    .header-welcome {
        display: none;
    }

    .header-top-bar .container {
        justify-content: flex-end;
    }

    .header-main .container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .search-bar {
        order: 3;
        max-width: 100%;
        width: 100%;
    }

    .search-bar select {
        display: none;
    }

    .header-actions {
        gap: 0;
    }

    .header-action-label {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .vendors-grid {
        grid-template-columns: 1fr;
    }

    .promo-banners {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .benefit-item:last-child {
        border-bottom: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-banner-main .hero-title {
        font-size: 24px;
    }

    .hero-banner-main .hero-content {
        max-width: 100%;
    }

    .hero-banner-image {
        display: none;
    }

    .special-title {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .latest-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mini-products-grid {
        grid-template-columns: 1fr;
    }

    .app-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .download-section .container {
        flex-direction: column;
        text-align: center;
    }

    .download-form {
        margin: 0 auto;
    }

    .download-badges {
        justify-content: center;
    }

    .category-item {
        padding: 8px 12px;
    }

    .category-item-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .modal-content {
        padding: 25px;
    }

    .quotation-float-btn {
        bottom: 70px;
        right: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .product-info {
        padding: 10px;
    }

    .product-name {
        font-size: 12px;
    }

    .price-current {
        font-size: 14px;
    }

    .product-buttons {
        flex-direction: column;
        gap: 4px;
    }

    .btn-add-cart,
    .btn-whatsapp {
        font-size: 10px;
        padding: 6px 8px;
    }

    .hero-banner-main {
        padding: 25px;
        min-height: 220px;
    }

    .hero-banner-main .hero-title {
        font-size: 20px;
    }

    .container {
        padding: 0 12px;
    }
}
