:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --secondary: #eab308;
    --accent: #0f172a;
    --background: #f8fafc;
    --foreground: #171717;
    --border-light: #f1f5f9;
    --border-base: #e2e8f0;
    --text-muted: #64748b;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    background: #fff;
    color: var(--foreground);
    line-height: 1.5;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .container {
        max-width: 80%;
    }
}

/* ================================================
   HERO BANNER SLIDER
   ================================================ */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111;
    /* Height: 420px desktop, scales down on mobile */
    height: 420px;
    user-select: none;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 200px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-slider {
        height: 300px;
    }
}

.hero-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Arrow buttons */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.hero-arrow-prev { left: 14px; }
.hero-arrow-next { right: 14px; }

@media (max-width: 480px) {
    .hero-arrow {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    .hero-arrow-prev { left: 8px; }
    .hero-arrow-next { right: 8px; }
}

/* Dot indicators */
.hero-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-dot.active {
    background: #fff;
    width: 22px;
    border-radius: 4px;
}

/* Hero Text Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
}

.hero-text-content {
    padding: 0 30px;
    max-width: 700px;
    text-align: center;
    pointer-events: auto;
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .hero-text-content {
        padding: 0 15px;
        max-width: 95%;
    }
    .hero-title {
        font-size: 22px;
        margin-bottom: 6px;
    }
    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }
    .hero-btn {
        padding: 8px 18px;
        font-size: 11px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 14px;
    }
}

/* ================================================
   HIGHLIGHT CATEGORY CARDS
   ================================================ */
.highlight-section {
    padding: 20px 0;
    overflow: hidden;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .highlight-grid {
        max-width: 80%;
    }
}

@media (max-width: 1024px) {
    .highlight-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 10px;
    }
}

.highlight-card {
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    position: relative;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 0.8;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.highlight-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 14px;
    position: relative;
    z-index: 2;
}

.highlight-card-title {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
    line-height: 1.3;
    margin-bottom: 2px;
}

.highlight-card-subtitle {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 6px;
    line-height: 1.2;
}

.highlight-card-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4px 0;
}

.highlight-card-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
    transition: transform 0.4s;
}

.highlight-card:hover .highlight-card-img img {
    transform: scale(1.08);
}

.highlight-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    align-self: flex-start;
    transition: background 0.3s;
}

.highlight-card:hover .highlight-card-btn {
    background: rgba(255,255,255,0.35);
}

@media (max-width: 600px) {
    .highlight-card-title {
        font-size: 11px;
    }
    .highlight-card-btn {
        font-size: 10px;
        padding: 5px 10px;
    }
    .highlight-card {
        aspect-ratio: 0.75;
    }
}

/* Header & Navigation */
.top-banner {
    background: #000;
    color: #fff;
    font-size: 11px;
    padding: 4px 0;
    border-bottom: 1px solid #1f2937;
}

.top-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-banner-left {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.top-banner-right {
    display: flex;
    gap: 12px;
}

.top-banner-right a {
    color: white;
    transition: 0.3s;
}

.top-banner-right a:hover {
    color: #d1d5db;
}

.main-header {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.search-form {
    display: flex;
    flex: 1;
    max-width: 400px;
    background: #f8fafc;
    border: 1.5px solid var(--border-base);
    border-radius: 100px;
    overflow: hidden;
    transition: all 0.3s;
}

.search-form:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 6px 12px;
    outline: none;
    font-size: 14px;
}

.search-btn {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.search-btn:hover {
    background: #eab308;
    opacity: 0.9;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--accent);
    font-weight: 800;
    font-size: 18px;
}

.cart-link:hover {
    color: var(--primary);
}

.cart-icon-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1e293b;
    padding: 5px;
}

/* ============================================
   MOBILE OVERLAY — Hidden by default on ALL screens
   Only shows when .active is added by JS
   ============================================ */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-side-nav {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 1002;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-side-nav {
    left: 0;
}

.mobile-nav-close {
    align-self: flex-end;
    font-size: 22px;
    cursor: pointer;
    color: #64748b;
    padding: 4px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-links a {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    display: block;
}

.mobile-nav-links a:last-child {
    border-bottom: none;
}

/* Base Responsive UI Improvements */
@media (max-width: 768px) {
    .main-header {
        padding: 4px 0;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 6px;
        justify-content: space-between !important;
    }

    .logo {
        flex: 0 0 auto;
    }

    .logo img {
        height: 38px !important;
        width: auto !important;
    }

    .desktop-nav {
        display: none !important;
    }

    .mobile-nav-toggle {
        display: block;
        margin-left: 5px;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 10px !important;
        order: 1 !important;
    }

    .header-cart-wrapper {
        padding: 4px 10px !important;
    }

    .header-cart-total {
        font-size: 14px !important;
    }

    .search-form {
        order: 2 !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-top: 5px;
        border-radius: 8px !important;
    }

    /* ============================================
       Mobile-specific overrides inside media query
       ============================================ */

    /* Product Grid Refinement */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .p-card {
        border-radius: 12px;
    }

    .p-content {
        padding: 10px;
    }

    .p-title {
        font-size: 13px;
        height: 2.6rem;
        margin-bottom: 8px;
    }

    .p-new-price {
        font-size: 16px;
    }

    .top-banner-content {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        padding: 4px 15px;
    }

    .top-banner-left {
        flex-direction: column;
        gap: 2px;
        align-items: center;
    }
}

/* Category Bar */
.featured-categories-section {
    padding: 20px 0 10px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
}

.view-all-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.view-all-link:hover {
    color: var(--primary-dark);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

.category-card {
    background: white;
    border: 1px solid var(--border-base);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #374151;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
    width: 100%;
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.category-icon-box {
    width: 48px;
    height: 48px;
    background: #f9fafb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    transition: 0.3s;
}

.category-card:hover img {
    transform: scale(1.1);
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

.p-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.p-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.p-img-link {
    display: block;
    width: 100%;
    padding-top: 80%; /* Shorter than square — reduces blank space */
    position: relative;
    background: #f8fafc;
    overflow: hidden;
}

.p-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
    padding: 6px;
}

.p-card:hover .p-img {
    transform: scale(1.05);
}

.p-content {
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.p-title {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 6px;
    height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    text-decoration: none;
    transition: 0.3s;
}

.p-title:hover {
    color: var(--primary);
}

.p-price-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
}

.p-old-price {
    font-size: 12px;
    color: #9ca3af;
    text-decoration: line-through;
}

.p-new-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.p-actions {
    margin-top: auto;
    display: flex;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
}

.btn-cart-small {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid var(--primary);
    background: white;
    color: var(--primary);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cart-small:hover {
    background: #f9fafb;
}

.btn-order-now {
    flex: 1;
    background: #f15932;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(110deg, #f15932, 45%, #ff8c6b, 55%, #f15932);
    background-size: 200% 100%;
    animation: shimmer 2.5s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.animate-marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee linear infinite;
    padding-left: 100%;
}

.marquee-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
}

/* Section header row - flex layout, no overflow */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    margin: 15px 0 10px 0;
    border-bottom: 2px solid #e2e8f0;
}

.section-header-row .section-divider-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent);
    background: transparent;
    padding: 0;
}

.section-header-row .view-all-link {
    font-size: 12px;
    white-space: nowrap;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    flex-shrink: 0;
}

.section-divider {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 10px 0;
}

.section-divider-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
    z-index: 1;
}

.section-divider-title {
    background: #fff;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 2;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent);
}

/* Footer */
.main-footer {
    background: #0f172a;
    color: white;
    padding: 30px 0;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #f8fafc;
}

.footer-link-list {
    list-style: none;
}

.footer-link-list li {
    margin-bottom: 12px;
}

.footer-link-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-link-list a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #3b5998;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--primary);
}

/* Checkout Modal */
.checkout-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.checkout-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(30px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.checkout-modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #64748b;
    cursor: pointer;
    z-index: 10;
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
    flex-shrink: 0;
}

.modal-header h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.modal-body {
    padding: 25px;
    overflow-y: auto;
}

/* Product Page CRO Elements */
.viewing-now {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0d9488;
    background: #f0fdfa;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid #ccfbf1;
}

.viewing-pulse {
    width: 8px;
    height: 8px;
    background: #14b8a6;
    border-radius: 50%;
    position: relative;
}

.viewing-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #14b8a6;
    border-radius: 50%;
    animation: viewerPulse 1.5s ease-out infinite;
}

@keyframes viewerPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.trust-badge-item {
    text-align: center;
    padding: 15px 10px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.trust-badge-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.trust-badge-title {
    font-weight: 700;
    font-size: 0.75rem;
    color: #0f172a;
    display: block;
}

.trust-badge-subtitle {
    font-size: 0.65rem;
    color: #64748b;
}

.whatsapp-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
    transition: 0.3s;
}

.whatsapp-order-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.cro-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    margin-right: 10px;
    margin-bottom: 10px;
    text-decoration: none;
}

.tag-cod {
    background: #dcfce7;
    color: #166534;
}

.tag-authentic {
    background: #fee2e2;
    color: #991b1b;
}

.tag-support {
    background: #e0f2fe;
    color: #075985;
}

/* Modal Form Styles */
.modal-form-group {
    margin-bottom: 15px;
}

.modal-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 6px;
}

.modal-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    font-size: 0.9rem;
}

.modal-input:focus {
    border-color: var(--primary);
}

.modal-p-summary {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
}

.modal-p-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.modal-p-info h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: #0f172a;
}

.modal-p-price {
    font-weight: 800;
    color: var(--primary);
}