/* ========== MODERN DESIGN SYSTEM ========== */
:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary: #10b981;
    --accent: #ec4899;
    --dark: #1e293b;
    --dark-light: #334155;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --gray-lighter: #f1f5f9;
    --white: #ffffff;
    --danger: #ef4444;
    --success: #10b981;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--gray-lighter);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* ========== NAVBAR - FLOATING MODERN DESIGN ========== */
.tn-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    transition: var(--transition);
    z-index: 1000;
}

.tn-navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tn-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.tn-logo span {
    font-weight: 600;
    opacity: 0.8;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* ========== MEGA DROPDOWN ========== */
.mega-dropdown {
    position: relative;
}

.nav-link-categories {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* Compact Mega-menu box */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 820px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    z-index: 1200;

    /* fade-in animation */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform-origin: top center;
    transition: opacity 0.18s ease-out, transform 0.18s ease-out, visibility 0.18s ease-out;
    transform: translate(-50%, 8px);
}

/* Desktop hover shows menu */
@media (min-width: 992px) {
    .mega-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }
}

/* When toggled on mobile */
.mega-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Category column */
.mega-menu .cat-column {
    min-width: 0;
}

/* Main category block */
.mega-main-cat {
    background: var(--gray-lighter);
    border-radius: 12px;
    padding: 10px;
    transition: var(--transition);
}

.mega-main-cat-header {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    text-align: left;
    cursor: pointer;
}

.mega-main-cat-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mega-main-cat-icon i {
    color: var(--primary);
    font-size: 1.1rem;
}

.mega-main-cat-text .title a {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    text-decoration: none;
}

.mega-main-cat-text .title a:hover {
    color: var(--primary);
}

.mega-main-cat-text .hint {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
}

.mega-main-chevron {
    margin-left: auto;
    color: var(--gray);
    transition: transform 0.18s ease;
}

/* Subcategories list */
.mega-subcats {
    margin: 10px 0 0;
    padding: 0;
}

.mega-subcats li+li {
    margin-top: 6px;
}

.mega-subcats a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--dark);
    text-decoration: none;
    padding: 4px 0;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
}

.mega-subcats a:hover {
    padding-left: 8px;
    background: rgba(148, 163, 184, 0.12);
    color: var(--primary);
}

.mega-subcat-thumb {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    overflow: hidden;
    background: #f4f4f4;
    flex-shrink: 0;
}

.mega-subcat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-subcat-text {
    flex: 1;
    /* padding-left: 8px; */
}

/* Hover effect on main cat */
@media (min-width: 992px) {
    .mega-main-cat:hover {
        background: #ffffff;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        transform: translateY(-2px);
    }
}

/* MOBILE / TABLET BEHAVIOR */
@media (max-width: 991.98px) {
    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 0.75rem;
        box-shadow: none;
        padding: 10px 0;
        border-radius: 10px;
        background: #f9fafb;
        display: none;
    }

    .mega-menu.show {
        display: block;
    }

    .mega-main-cat {
        background: transparent;
        border-radius: 0;
        padding: 8px 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    }

    .mega-main-cat-text .hint {
        display: none;
    }

    .mega-subcats {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.22s ease-out;
        padding-left: 46px;
    }

    .mega-main-cat.open .mega-subcats {
        max-height: 500px;
        /* enough for a bunch */
    }

    .mega-main-cat.open .mega-main-chevron {
        transform: rotate(180deg);
    }
}

/* Slight spacing for categories li */
.nav-item.mega-dropdown {
    padding-right: 6px;
    padding-left: 6px;
}

/* Prevent menu flicker highlight */
.mega-dropdown:hover>.nav-link {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 6px;
}

/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher select {
    background: var(--gray-lighter);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.lang-switcher select:hover {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* ========== CART ICON ========== */
.header-cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-lighter);
    border-radius: var(--radius-sm);
    color: var(--dark);
    transition: var(--transition);
}

.header-cart-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.header-cart-icon .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--danger);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 12px;
    min-width: 18px;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

/* ========== SEARCH BAR + LIVE RESULTS ========== */
.header-search {
    position: relative;
    width: 260px;
    max-width: 260px;
}

@media (max-width: 575.98px) {
    .header-search {
        display: none;
    }
}

.search-input {
    width: 100%;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-light);
    padding: 0 12px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
    outline: none;
}

.search-results {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    padding: 6px 0;
    display: none;
    z-index: 1300;
    max-height: 360px;
    overflow-y: auto;
}

.search-results.show {
    display: block;
}

.search-item {
    display: flex;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--dark);
    transition: 0.15s ease;
}

.search-item:hover {
    background: var(--gray-lighter);
}

.search-item img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #f4f4f4;
}

.search-item .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.search-item .name {
    font-size: 0.95rem;
    font-weight: 600;
}

.search-item .category {
    font-size: 0.75rem;
    color: var(--gray);
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-row .price {
    font-weight: 700;
    color: var(--primary);
}

.price-row .old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 0.85rem;
}

.search-item.empty {
    text-align: center;
    padding: 15px;
    color: var(--gray);
}

/* User & Wishlist Icons (if used later) */
.navbar .text-white,
.navbar a[href*="user"],
.navbar a[href*="heart"] {
    color: var(--dark) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-lighter);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar a[href*="user"]:hover,
.navbar a[href*="heart"]:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-2px);
}


/* ========== HERO SLIDER - MODERN GRADIENT ========== */
.hero-slider {
    margin-bottom: 3rem;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.3) 0%,
            rgba(30, 41, 59, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 2rem;
    animation: fadeInUp 0.8s ease;
}

.modern-hero {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 70vh;
    min-height: 480px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.5));
}

.hero-inner {
    position: relative;
    max-width: 650px;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.hero-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
    font-weight: 600;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-btn {
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 50px;
}

@media (max-width: 768px) {

    .slick-prev:before,
    .slick-next:before {
        font-size: inherit !important;
        background-color: transparent;
    }


    .slick-prev,
    .slick-next {
        display: none;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-desc {
        font-size: 1rem;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Slick dots for hero */
.hero-slider .slick-dots {
    bottom: 25px;
    z-index: 3;
}

.hero-slider .slick-dots li button:before {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    content: '';
    opacity: 1;
}

.hero-slider .slick-dots li.slick-active button:before {
    background: var(--white);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ========== SECTION TITLES ========== */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* ========== BUTTONS ========== */
.btn-pill-main {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    background: var(--primary);
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.btn-pill-main:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    color: var(--white);
}

.btn-pill-primary {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    transition: var(--transition);
    flex: 1;
    text-align: center;
}

.btn-pill-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.btn-pill-outline {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--gray-light);
    background: var(--white);
    color: var(--dark);
    transition: var(--transition);
    flex: 1;
    text-align: center;
}

.btn-pill-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.05);
}

.slick-prev:before,
.slick-next:before {
    font-size: 2rem;
    color: #0284c7;
}

/* ========== CATEGORY CARDS ========== */
.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    transform: scale(0);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.category-card small {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Service Section */

.service-card {
    display: flex;
    padding: 28px 20px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #ececec;
    transition: .25s;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: -webkit-fill-available;
    width: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-icon i {
    font-size: 36px;
    color: var(--primary);
}

.service-title {
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}


/* ========== OFFER BANNER ========== */
.offer-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.offer-banner h5 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.offer-text {
    font-size: 1rem;
    opacity: 0.95;
}

.offer-countdown {
    display: flex;
    gap: 1rem;
}

.offer-countdown .box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    min-width: 70px;
    transition: var(--transition);
}

.offer-countdown .box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.offer-countdown .value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.offer-countdown .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ========== PRODUCT CARDS ========== */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    transition: var(--transition);
}

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

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    flex-grow: 1;
    min-height: 2.8em;
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.product-old-price-small {
    font-size: 1rem;
    font-weight: 900;
    color: #d92222;
    text-decoration: line-through;
    opacity: 0.8;
}

.product-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

.product-card-actions form {
    width: 100%;
}

.product-card-actions .btn-pill-primary,
.product-card-actions .btn-pill-outline {
    width: 100%;
    flex: none;
}

/* ========== NEWSLETTER ========== */
.newsletter-box {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.newsletter-box h5 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.newsletter-text {
    font-size: 1rem;
    color: var(--gray);
}

.newsletter-box input {
    border: 2px solid var(--gray-light);
    padding: 12px 20px;
    transition: var(--transition);
}

.newsletter-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    outline: none;
}

.newsletter-box button {
    padding: 12px 32px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

/* ========== BRANDS SLIDER ========== */
.brand-item img {
    max-height: 50px;
    width: auto;
    margin: 0 auto;
    filter: grayscale(100%) opacity(0.5);
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* ========== FOOTER ========== */
.tn-footer {
    background: var(--dark);
    color: var(--gray-light);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.tn-footer h6 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark-light);
    border-radius: var(--radius-sm);
    color: var(--gray-light);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-payments img {
    height: 30px;
    width: auto;
    border-radius: var(--radius-sm);
    opacity: 0.7;
    transition: var(--transition);
}

.footer-payments img:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid var(--dark-light);
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ========== CART TOAST ========== */
.cart-glass-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 24px;
    background: rgba(16, 185, 129, 0.95);
    backdrop-filter: blur(12px);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: var(--transition);
    z-index: 9999;
}

.cart-glass-toast.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {

    .navbar-nav {
        margin-bottom: 24px !important;
        gap: 12px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-slide {
        height: 400px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .offer-banner {
        text-align: center;
    }

    .offer-countdown {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-slide {
        height: 350px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .offer-countdown .box {
        min-width: 60px;
        padding: 0.8rem;
    }

    .offer-countdown .value {
        font-size: 1.5rem;
    }

    .newsletter-box,
    .offer-banner {
        padding: 1.5rem;
    }
}

/* ========== UTILITY CLASSES ========== */
.tn-muted {
    color: var(--gray);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== BREADCRUMB ========== */
.breadcrumb-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.9rem;
    padding: 1rem 0;
}

.breadcrumb {
    margin: 0;
}

.breadcrumb a {
    color: var(--gray);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--dark);
}

/* ========== PRODUCT PAGE SPECIFIC ========== */
.product-main-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.product-main-img img {
    border-radius: var(--radius-md);
}

.product-title-main {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.product-price-lg {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50px;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.ribbon-new {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 6px 16px;
    background: #d92222;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
    z-index: 2;
}

/* About Page */

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 4rem 0;
    margin-bottom: 4rem;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 0;
}

.about-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* About Content Box */
.about-content-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.about-text h3 {
    color: var(--dark);
    font-weight: 700;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--primary);
}

/* Feature Cards */
.feature-card-about {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card-about:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon-about {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
    transition: var(--transition);
}

.feature-card-about:hover .feature-icon-about {
    transform: scale(1.1) rotate(5deg);
}

.feature-card-about h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.feature-card-about p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.about-stats-section {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    margin-top: 3rem;
    border: 2px solid rgba(14, 165, 233, 0.1);
}

.stat-box-about {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-hero-image {
        font-size: 6rem;
        margin-top: 2rem;
    }

    .about-content-box {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .about-hero-section {
        padding: 2.5rem 0;
    }

    .about-content-box {
        padding: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Contact Page */

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 3.5rem 0;
    margin-bottom: 4rem;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact Info Box */
.contact-info-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.contact-box-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-lighter);
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--gray-lighter);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-info-item:hover {
    background: rgba(14, 165, 233, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.contact-details h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.contact-details p {
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--primary);
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-info-content {
    color: var(--dark);
    line-height: 1.8;
}

/* Social Media Box */
.contact-social-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.contact-social-box h5 {
    font-weight: 700;
    color: var(--dark);
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--gray-lighter);
    border-radius: var(--radius-md);
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-link-contact:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(5px);
    border-color: var(--primary-light);
}

.social-link-contact i {
    width: 24px;
    text-align: center;
    font-size: 1.2rem;
}

/* Contact Form Box */
.contact-form-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.form-label-modern {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.input-group-modern {
    position: relative;
}

.input-icon-modern {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 1rem;
    z-index: 2;
}

.form-control-modern {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.form-control-modern::placeholder {
    color: var(--gray-light);
}

textarea.form-control-modern {
    padding-left: 1rem;
    resize: vertical;
}

select.form-control-modern {
    padding-left: 1rem;
    cursor: pointer;
}

/* Success Message */
.contact-success-message {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: var(--radius-lg);
    margin-top: 2rem;
}

.contact-success-message i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.contact-success-message h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-success-message p {
    color: var(--gray);
    margin: 0;
}

/* Quick Contact Cards */
.quick-contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.quick-contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
    transition: var(--transition);
}

.quick-contact-card:hover .quick-contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.quick-contact-card h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.quick-contact-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-hero-title {
        font-size: 2.2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .contact-form-box,
    .contact-info-box {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .contact-hero-section {
        padding: 2.5rem 0;
    }

    .contact-hero-title {
        font-size: 1.8rem;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto;
    }
}