@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-main: #030303;
    --bg-card: rgba(20, 20, 20, 0.75);
    --bg-card-hover: rgba(30, 30, 30, 0.85);
    
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #bd973a;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #bd973a 100%);
    
    --text-main: #ffffff;
    --text-muted: #b8b8b8;
    
    --border-subtle: rgba(212, 175, 55, 0.15);
    --border-strong: rgba(212, 175, 55, 0.35);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Effects */
.bg-gradient {
    position: fixed;
    inset: 0;
    z-index: -5;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 25%),
                radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.05), transparent 25%),
                linear-gradient(180deg, #000000, #050505);
}

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: -4;
    opacity: 0.03;
    background-image: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4 {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 700;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

.header-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text h2 {
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    color: #fff;
}

.logo-text span {
    color: var(--gold-dark);
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 600;
    margin-top: 4px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-cart {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: var(--transition);
}

.btn-cart:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--gold-primary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-main);
}

.btn-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    color: #000;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-contact-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* HERO (Index) */
.hero {
    padding: 180px 5% 100px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 25px;
    background: linear-gradient(to bottom, #ffffff 40%, #c2c2c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-line {
    width: 80px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 5px;
    margin: 0 auto 30px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 36px;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.25);
}

.btn-secondary {
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

/* FEEDBACKS */
.feedbacks {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.feedbacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feedback-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feedback-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-strong);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.stars {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.feedback-card p {
    font-size: 1.1rem;
    color: #d1d1d1;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.client-info strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-info span {
    color: var(--gold-dark);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

/* PAGE HEADER (Catalog) */
.page-header {
    padding: 160px 5% 40px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* SEARCH & CATEGORIES */
.controls-container {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 5%;
}

.search-box {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 24px;
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.search-box input {
    width: 100%;
    padding: 20px 20px 20px 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: #fff;
    font-size: 1.05rem;
    font-family: inherit;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-box input:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.08);
}

.categories-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.categories-wrapper::-webkit-scrollbar {
    display: none;
}

.category-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    color: #ddd;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.category-btn.active {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
}

/* BANNER */
.category-banner {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 5%;
}

.banner-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.banner-img {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.banner-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.banner-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--gold-primary);
}

.banner-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* CATALOG GRID */
.catalog-container {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 5%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-strong);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.product-image-wrapper {
    background: #000;
    border-radius: var(--radius-md);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 15px;
    transition: var(--transition);
}

.product-card:hover .product-image-wrapper {
    background: #0a0a0a;
}

.product-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.product-category {
    font-size: 0.75rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.btn-buy {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.product-card:hover .btn-buy {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.5);
}

/* FLOATING WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    z-index: 999;
    transition: var(--transition);
    animation: floatGlow 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    animation: none;
}

@keyframes floatGlow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* CART SIDEBAR */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-main);
    border-left: 1px solid var(--border-strong);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-header h2 {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.close-cart {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--gold-primary);
    transform: scale(1.1);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    display: flex;
    gap: 15px;
    background: var(--bg-card);
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: var(--radius-sm);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.qty-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--gold-primary);
    color: #000;
}

.qty-value {
    font-size: 0.9rem;
    font-weight: 600;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 1.1rem;
    margin-left: auto;
    transition: var(--transition);
}

.remove-item:hover {
    color: #ff1a1a;
    transform: scale(1.1);
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    margin-top: 50px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-checkout:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* CUPONS NO CARRINHO */
.cart-coupons {
    padding: 12px 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.coupons-header {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.coupons-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.coupon-select-btn {
    width: 100%;
    padding: 10px 14px;
    background: rgba(212,175,55,0.06);
    border: 1px dashed rgba(212,175,55,0.35);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: inherit;
    color: var(--text-main);
}

.coupon-select-btn:hover:not(:disabled) {
    background: rgba(212,175,55,0.12);
    border-color: var(--gold-primary);
}

.coupon-select-btn.disabled, .coupon-select-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.coupon-sel-code {
    font-size: 0.88rem;
    font-weight: 800;
    font-family: monospace;
    color: var(--gold-primary);
    letter-spacing: 0.5px;
}

.coupon-sel-value {
    font-size: 0.8rem;
    color: #25D366;
    font-weight: 700;
}

.coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(37,211,102,0.08);
    border: 1px solid rgba(37,211,102,0.25);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.82rem;
    color: #25D366;
    font-weight: 600;
}

.remove-coupon {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.remove-coupon:hover { opacity: 0.7; }

.cart-discount-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 10px 0;
    font-size: 0.95rem;
    color: #25D366;
    font-weight: 600;
}

/* WHATSAPP MODAL */

.wa-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1003;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.wa-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wa-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 90%;
    max-width: 400px;
    background: var(--bg-main);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    z-index: 1004;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.wa-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.wa-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-modal-header h3 {
    font-size: 1.3rem;
    color: var(--text-main);
}

.close-wa-modal {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-wa-modal:hover {
    color: #ff4d4d;
    transform: scale(1.1);
}

.wa-modal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wa-vendor-btn {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-main);
}

.wa-vendor-btn:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    transform: translateY(-2px);
}

.wa-vendor-btn .vendor-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-vendor-btn .vendor-info i {
    font-size: 1.5rem;
    color: #25D366;
}

.wa-vendor-btn .vendor-info span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .banner-card {
        flex-direction: column;
        text-align: center;
    }
    .hero {
        padding-top: 150px;
    }
}

@media (max-width: 768px) {
    .header-container {
        width: 95%;
    }
    .btn-contact span {
        display: none;
    }
    .btn-contact {
        padding: 10px;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.05rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
    .product-card {
        padding: 16px;
    }
    .product-image-wrapper {
        height: 160px;
        padding: 10px;
    }
    .product-price {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }
    .logo-text h2 {
        font-size: 1.2rem;
    }
    .logo-text span {
        font-size: 0.65rem;
    }
    
    .hero {
        padding-top: 130px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

.wa-vendor-btn.vendor-active {
    background: rgba(37, 211, 102, 0.12);
    border-color: #25D366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
}

.vendor-tag {
    font-size: 0.78rem;
    color: #25D366;
    font-weight: 700;
    margin-left: auto;
    white-space: nowrap;
}
