:root {
    --primary: #10b981;
    /* More vibrant Emerald */
    --primary-dk: #065f46;
    --primary-lt: #ecfdf5;
    --secondary: #0f172a;
    /* Deep Midnight */
    --accent: #f59e0b;
    /* Amber Gold */
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border: rgba(0, 0, 0, 0.1);
    --font: 'Outfit', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px -20px rgba(0, 0, 0, 0.2);
    --radius-lg: 16px;
    --radius-md: 12px;
    --container-width: 1440px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* --- HEADER (Zalwan Pattern) --- */
.top-bar {
    background: #020617;
    color: #94a3b8;
    padding: 10px 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a:hover {
    color: var(--primary);
}

.header-main {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: 0.3s;
}

.header-main.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* --- Trusted Clients Ticker --- */
.ticker-section {
    background: #0f172a;
    border-bottom: 2px solid var(--primary);
}

.ticker-header {
    background: #1e293b;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-header h4 {
    color: var(--white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
}

.ticker-wrap {
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}


.ticker-wrap::before,
.ticker-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, #0f172a, transparent);
}

.ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, #0f172a, transparent);
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: ticker-scroll 40s linear infinite;
    /* Slower, smoother scroll */
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 50px;
}

.ticker-item img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Pure white logos */
    opacity: 0.6;
    transition: 0.3s;
}

.ticker-item i {
    font-size: 1.2rem;
    color: var(--primary);
    opacity: 0.8;
}

.ticker-item:hover img,
.ticker-item:hover i {
    filter: none;
    opacity: 1;
    color: var(--primary);
}

.ticker-item span {
    color: #e2e8f0;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary);
    text-decoration: none;
}

.logo-icon {
    background: var(--primary);
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.search-container {
    flex: 1;
    max-width: 600px;
    height: 52px;
    display: flex;
    position: relative;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.search-container:focus-within {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.1);
    transform: translateY(-2px);
}

.search-icon-inside {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
    pointer-events: none;
}

.search-input {
    flex: 1;
    padding: 0 20px 0 55px;
    /* Leave space for icon */
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
}

.search-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.search-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 35px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.search-btn:hover {
    background: #047857;
    padding-left: 40px;
    padding-right: 40px;
}

/* --- SEARCH SUGGESTIONS DROPDOWN --- */
.search-suggestions {
    position: absolute;
    top: 51px;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
    z-index: 999;
}

.search-suggestions .section-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 15px;
}

.suggestion-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.suggestion-pill {
    padding: 8px 18px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.suggestion-pill:hover {
    background: rgba(5, 150, 105, 0.1);
    color: var(--primary);
    border-color: rgba(5, 150, 105, 0.2);
}

.suggestion-list {
    margin-top: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.suggestion-item:hover {
    background: #f8fafc;
}

.suggestion-thumb {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.suggestion-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suggestion-info {
    flex: 1;
}

.suggestion-title {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 2px;
    line-height: 1.25;
}

.suggestion-cat {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: capitalize;
}

.suggestion-price {
    font-weight: 800;
    color: var(--primary);
    font-size: 0.9rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.h-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.h-contact i {
    font-size: 1.6rem;
    color: var(--secondary);
}

.h-contact-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.h-contact-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary);
}

.action-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    background: #f8fafc;
    border-radius: 12px;
    color: var(--secondary);
    transition: 0.3s;
    text-decoration: none;
    font-weight: 800;
}

.action-btn:hover {
    background: #e2e8f0;
}

.h-cart-count {
    display: none;
    /* JS will toggle to flex */
    font-size: 0.85rem;
    color: var(--primary);
    background: none;
    border: none;
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    font-weight: 952;
}

/* --- LUXURY GLASS NAVIGATION --- */
.nav-bar {
    background: #020617;
    padding: 0;
    position: relative;
    z-index: 999;
}

.nav-inner {
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.nav-item {
    position: relative;
    /* Fixed: Relative for mega menu alignment */
}

.nav-link {
    padding: 18px 25px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    /* Fixed: Added relative positioning */
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}

.nav-item:last-child .nav-link {
    border-right: none;
}

/* Indicators */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    opacity: 0;
    transition: 0.3s;
}

.nav-item:hover .nav-link::after {
    opacity: 1;
}

/* Mega Menu Core */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    /* Aligns with start of link */
    width: 800px;
    /* Slightly narrower */
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 9999;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: -10px;
    /* Bridge the gap even more */
    padding-top: 10px;
    /* Compensation */
    pointer-events: none;
    /* Prevent interference when hidden */
}

/* Adjust position for items further right to prevent overflow */
.nav-item:nth-last-child(-n+4) .mega-menu {
    left: auto;
    right: 0;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* --- HERO SECTION --- */
.hero-sec {
    padding: 60px 0;
    /* Add some breathing room */
    position: relative;
    overflow: hidden;
    background: #0f172a;
    /* Base dark color */
    transition: background 0.8s ease;
}

.hero-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--hero-bg, url('images/tech_closeup.png'));
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    /* Subtle background texture */
    filter: blur(15px) grayscale(0.5);
    transition: background-image 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* Dark Overlay to make the slider pop */
.hero-sec::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 2;
}

.hero-slider-wrap {
    position: relative;
    z-index: 10;
    /* Ensure slider is above the background and overlay */
}

/* 1. Horizontal USP Bar */
.usp-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 25px;
}

.usp-item {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.usp-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* 2. Full Width Slider Wrap */
.hero-slider-wrap {
    margin-bottom: 30px;
}

.hero-slider {
    width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #0f172a;
    height: 500px;
    box-shadow: var(--shadow-lg);
}

/* Side Category Menu */
.side-cat {
    width: 300px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    height: fit-content;
}

.side-cat-item {
    border-bottom: 1px solid #f1f5f9;
    transition: 0.2s;
}

.side-cat-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
}

.side-cat-item:hover {
    background: var(--primary-lt);
}

.side-cat-item:hover .side-cat-link {
    color: var(--primary);
}

.side-cat-link i {
    color: #cbd5e1;
    font-size: 0.75rem;
}

/* Main VIP Slider */
.hero-slider {
    flex: 1;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #0f172a;
    height: 450px;
    /* Reduced for better balance */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(1.2);
    transform: scale(1.1);
    transition: transform 10s linear;
}

.hero-slide.active .slide-bg {
    transform: scale(1);
}

/* VIP Gradient Overlay */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    padding: 0;
    color: white;
    max-width: 800px;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s 0.3s;
}

.hero-slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.slide-content h2 {
    font-size: 3.2rem;
    /* Reduced from 4rem */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.4;
}

.slide-btn {
    background: var(--primary);
    color: white;
    padding: 18px 45px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.3s;
    border: 2px solid var(--primary);
}

.slide-btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Slider Pagination VIP */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 80px;
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.4s;
}

.dot.active {
    background: var(--primary);
}

/* Mega Menu - Ultra Compact Luxury Redesign */
.mega-inner {
    padding: 0;
}

.mega-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
}

.mega-list-col {
    padding: 30px 30px 40px 30px;
    /* Increased bottom padding */
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    /* Match banner height to prevent bleed */
}

.mega-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

.mega-header .square {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 2px;
}

.mega-header h3 {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.1rem;
    color: #1e293b;
    letter-spacing: 1px;
}

.mega-prod-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.mega-prod-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    transition: 0.2s;
    text-decoration: none;
    color: #475569;
    background: transparent;
}

.mega-prod-item:hover {
    background: #f8fafc;
    transform: translateX(5px);
}

.mega-img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
}

.mega-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mega-item-info {
    flex-grow: 1;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
}

.mega-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 2px;
}

.mega-price {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.mega-count {
    display: none;
    /* Removed as per user request */
}

.mega-prod-item:hover .mega-price {
    color: var(--primary-dk);
}

.mega-btn-wrap {
    margin-top: auto;
}

.mega-btn-yellow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #000;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.mega-btn-yellow:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.mega-banner-col {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.mega-showcase-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.showcase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    animation: megaShowcaseFade 12s infinite;
}

.showcase-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.showcase-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    /* Neutralized from navy to black to fix 'blue bar error' */
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.showcase-tag {
    background: var(--accent);
    color: #000;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-radius: 4px;
}

.showcase-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: white;
    line-height: 1.2;
}

.showcase-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.95rem;
    text-transform: uppercase;
    border-radius: 6px;
    transition: 0.3s;
}

.showcase-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* Animation Timings for 4 slides */
.showcase-slide:nth-child(1) {
    animation-delay: 0s;
}

.showcase-slide:nth-child(2) {
    animation-delay: 3s;
}

.showcase-slide:nth-child(3) {
    animation-delay: 6s;
}

.showcase-slide:nth-child(4) {
    animation-delay: 9s;
}

@keyframes megaShowcaseFade {

    0%,
    20% {
        opacity: 0;
    }

    25%,
    45% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

.mega-overlay {
    display: none;
    /* Hide old static overlay */
}

.mega-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.mega-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.mega-overlay h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.mega-btn {
    padding: 12px 30px;
    background: var(--accent);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
}

/* Slider Arrows VIP */
.slider-arrows {
    position: absolute;
    bottom: 30px;
    right: 80px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.s-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.s-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* REDUNDANT BRAND HUB STYLES REMOVED (MERGED INTO HERO) */

/* --- CIRCULAR CATEGORIES --- */
.explore-sec {
    padding: 40px 0;
}

.sec-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sec-title h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary);
}

.sec-title a {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.sec-title a:hover {
    border-bottom-color: var(--primary);
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.exp-item {
    text-align: center;
}

.exp-circle {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f5f9;
    margin-bottom: 15px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.exp-item:hover .exp-circle {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.exp-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--secondary);
}

/* --- PRODUCT ROW SECTION --- */
.product-row-sec {
    padding: 60px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.p-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s;
}

.p-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.p-img-box {
    height: 200px;
    background: #f1f5f9;
    padding: 20px;
    position: relative;
}

.p-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.p-details {
    padding: 15px;
}

.p-details h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    height: 40px;
    overflow: hidden;
    margin-bottom: 10px;
    line-height: 1.4;
}

.p-details .price {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px;
}

.p-details .vat {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
}

/* --- BLOG SECTION --- */
.blog-sec {
    padding: 60px 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blog-img {
    height: 180px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-info {
    padding: 20px;
}

.blog-tag {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.blog-info h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
    height: 50px;
    overflow: hidden;
}

.blog-card .read-more {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
}

/* --- SEO CONTENT SECTION --- */
.seo-sec {
    padding: 80px 0;
}

.seo-content {
    max-width: 1000px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
}

.seo-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 25px 0 15px;
}

.seo-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.seo-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.seo-content li {
    margin-bottom: 10px;
    color: var(--text-muted);
    list-style: disc;
}

/* --- WELCOME / PERSUASION SECTION --- */
.seo-sec {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.welcome-box {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    padding: 80px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #eaeaea;
}

.welcome-badge {
    display: inline-block;
    background: #e6fdf2;
    color: #059669;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.welcome-box h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.3;
}

.main-intro {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.persuasion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: left;
    margin-bottom: 60px;
}

.p-item {
    display: flex;
    gap: 20px;
}

.p-icon {
    font-size: 2rem;
    color: #059669;
    flex-shrink: 0;
}

.p-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.p-text p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

.welcome-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.w-cat-box {
    background: #ffffff;
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid #eaeaea;
    transition: 0.3s;
}

.w-cat-box i {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 12px;
    display: block;
}

.w-cat-box span {
    font-weight: 700;
    color: var(--secondary);
}

.w-cat-box:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.w-cat-box:hover i,
.w-cat-box:hover span {
    color: white;
}

.welcome-action {
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

.welcome-action p {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* --- DYNAMIC PRODUCT TICKER SECTION (VIP Ultra-Premium) --- */
.collection-sec {
    padding: 35px 0;
    background: #020617;
    /* Deep midnight black */
    background-image:
        radial-gradient(circle at 20% 30%, rgba(5, 150, 105, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 183, 3, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 1) 0%, transparent 100%);
    overflow: hidden;
    position: relative;
}

/* Subtle Animated Grid Pattern for VIP feel */
.collection-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.container-full {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 5;
}

.collection-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #059669 50%, #fbbf24 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.collection-header p {
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 400;
    max-width: 600px;
    margin: 5px auto 0;
}

.ticker-product-wrap {
    margin-top: 50px;
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
    user-select: none;
    padding: 20px 0;
}

/* Luxury Soft Edge Masks */
.ticker-product-wrap::before,
.ticker-product-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 10;
}

.ticker-product-wrap::before {
    left: 0;
    background: linear-gradient(to right, #020617, transparent);
}

.ticker-product-wrap::after {
    right: 0;
    background: linear-gradient(to left, #020617, transparent);
}

.ticker-product-track {
    display: flex;
    gap: 40px;
    padding: 20px 0;
    width: max-content;
    animation: ticker-roll 120s linear infinite;
    /* Increased to 120s for ultra-luxury slow motion */
}

.ticker-product-track:hover {
    animation-play-state: paused;
}

@keyframes ticker-roll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.t-card {
    width: 220px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
}

.t-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.t-img-box {
    height: 160px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px 12px 0 0;
}

.t-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.t-info {
    padding: 12px;
    text-align: left;
}

.t-info h4 {
    color: #fff !important;
}

.t-price-box .t-price {
    color: var(--primary) !important;
}

.t-info .t-cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.t-info h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    height: 40px;
    overflow: hidden;
    line-height: 1.4;
}

.t-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.t-price-box .t-price {
    font-size: 1.1rem;
    font-weight: 900;
    color: #1e293b;
}

.t-price-box .t-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.t-card:hover .t-btn {
    transform: rotate(45deg);
    background: #000;
}

.ticker-controls {
    text-align: center;
    margin-top: 40px;
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.9rem;
}

.ticker-controls i {
    margin-right: 8px;
    color: var(--primary);
}

/* --- MEGA FOOTER --- */
.footer {
    background: #010413;
    border-top: 1px solid var(--border);
    padding: 100px 0 50px;
}

.f-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.f-logo-area .logo {
    margin-bottom: 25px;
}

.f-logo-area p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.f-col h5 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.f-links li {
    margin-bottom: 12px;
}

.f-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.f-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.f-contact-info {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.f-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.f-contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.f-contact-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
}

.f-contact-item strong {
    display: block;
    font-size: 1rem;
    color: var(--secondary);
}

.f-partners {
    margin-top: 40px;
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partner-row {
    display: flex;
    gap: 30px;
    align-items: center;
    opacity: 0.6;
}

.partner-row img {
    height: 25px;
    width: auto;
}

.f-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Category Collection Layout (Ref 1) --- */
.cat-collection {
    padding: 60px 0;
}

.cat-row {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 30px;
    margin-bottom: 60px;
    align-items: stretch;
}

.cat-list-column {
    border-left: 4px solid var(--accent);
    border-right: 4px solid var(--accent);
    padding: 0 25px;
    display: flex;
    flex-direction: column;
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.cat-header .square {
    width: 12px;
    height: 12px;
    background: var(--accent);
}

.cat-header h3 {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.cat-prod-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: 0.3s;
}

.cat-prod-item:hover {
    padding-left: 10px;
    background: #f8fafc;
}

.cat-prod-img {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.cat-prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-prod-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.cat-prod-info .price-from {
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
}

.cat-count {
    width: 30px;
    height: 30px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--accent);
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 4px;
}

.cat-banner-column {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 500px;
}

.cat-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.cat-banner-overlay h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.shop-now-btn {
    padding: 15px 40px;
    background: var(--accent);
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 4px;
}

/* --- Product Card with Yellow Label (Ref 2) --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.product-img {
    height: 300px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

.product-label-bar {
    background: var(--accent);
    padding: 15px 10px;
    text-align: center;
}

.product-label-bar h3 {
    font-size: 0.95rem;
    font-weight: 900;
    color: #020617;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
}

.product-price-bar {
    padding: 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary);
    border-top: 1px solid var(--border);
}

/* --- NEW PROVINCIAL STYLE FOOTER --- */
.new-footer {
    background: #f2f2f2;
    padding: 60px 0;
    color: #333;
    font-family: 'Outfit', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1.5fr;
    /* Added column for delivery */
    gap: 30px;
}

.footer-col h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.f-phone-big {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.2rem;
    font-weight: 900;
    color: #333;
}

.f-phone-big i {
    color: #fff;
    /* White icon for better contrast on the new theme */
    font-size: 2.5rem;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.payment-logos img {
    height: 35px;
    border: 1px solid #ddd;
    background: #fff;
    padding: 5px;
    border-radius: 4px;
}

/* 3rd Screenshot: Delivery Partners Styling */
.delivery-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.d-logo {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dhl {
    background: #FFCC00;
    color: #D40511;
}

/* Yellow/Red */
.fedex {
    background: #4D148C;
    color: #FF6600;
}

/* Purple/Orange */
.evri {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}

.ups {
    background: #351C15;
    color: #FFB500;
}

/* Brown/Yellow */

.hours-list {
    font-size: 0.9rem;
    margin-top: 15px;
}

.hours-list strong {
    display: block;
    margin-bottom: 5px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
}

.f-nav-links {
    list-style: none;
    padding: 0;
}

.f-nav-links li {
    margin-bottom: 8px;
}

.f-nav-links a {
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    transition: 0.2s;
}

.f-nav-links a:hover {
    color: var(--primary);
}

/* Bottom Copyright Bar */
.bottom-bar {
    background: #000;
    color: #fff;
    display: flex;
    align-items: stretch;
    min-height: 80px;
}

.bottom-logo-block {
    background: var(--primary);
    /* Reverting to Emerald Green as requested */
    padding: 0 40px;
    display: flex;
    align-items: center;
    width: 380px;
    justify-content: center;
}

.bottom-logo-block .logo-text {
    font-weight: 950;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #fff;
}

.bottom-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.copyright {
    font-size: 0.75rem;
    color: #fff;
    /* High-contrast white */
    font-weight: 800;
    /* Definitively bold */
    line-height: 1.6;
    max-width: 750px;
    letter-spacing: 0.2px;
}

.chat-cta {
    font-size: 1.1rem;
    font-weight: 950;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.2px;
}

.chat-cta i {
    font-size: 1.3rem;
    color: #fff;
    /* Clean white chat bubble matching the screenshot */
}

/* Hover effects for the chat link */
.chat-cta:hover {
    color: var(--primary);
}

/* --- Prime Chat Drawer System --- */
.prime-chat-drawer {
    position: fixed;
    right: -400px;
    bottom: 0;
    width: 380px;
    height: 500px;
    background: #fff;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.prime-chat-drawer.active {
    right: 20px;
}

.chat-header {
    background: var(--primary);
    padding: 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-weight: 900;
    font-size: 1.2rem;
}

.chat-body {
    flex: 1;
    padding: 20px;
    background: #f8fafc;
    overflow-y: auto;
    font-size: 0.9rem;
}

.chat-msg {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 15px;
    max-width: 85%;
}

.msg-bot {
    background: #fff;
    color: #333;
    border: 1px solid #e2e8f0;
    align-self: flex-start;
    border-left: 4px solid var(--primary);
}

.msg-user {
    background: var(--primary);
    color: #fff;
    align-self: flex-end;
    margin-left: auto;
    border-radius: 15px 15px 0 15px !important;
}

.chat-msg strong {
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prime-chat-drawer .chat-body {
    display: flex;
    flex-direction: column;
}

.basket-notify {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    width: 350px;
    transform: translateX(120%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
}

.basket-notify.active {
    transform: translateX(0);
    pointer-events: all;
}

.notify-content {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.notify-btns {
    display: flex;
    gap: 10px;
}

.notify-btns a {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-basket-view {
    background: #f1f5f9;
    color: var(--secondary);
}

.btn-basket-view:hover {
    background: #e2e8f0;
}

.btn-basket-go {
    background: var(--primary);
    color: white;
}

.btn-basket-go:hover {
    filter: brightness(1.1);
}

.chat-footer {
    padding: 15px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
}

.chat-footer input {
    flex: 1;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
}

.chat-send-btn {
    background: var(--primary);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width: 450px) {
    .prime-chat-drawer {
        width: 100%;
        right: -100%;
        border-radius: 20px 20px 0 0;
    }

    .prime-chat-drawer.active {
        right: 0;
    }
}

/* Standard responsiveness is handled at the bottom of the file */


/* --- PRODUCT PAGE ENHANCEMENTS --- */
.thumb-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s;
}

.thumb-item:hover,
.thumb-item.active {
    border-color: var(--primary);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Accordion Description Style */
.desc-accordion {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-top: 40px;
    background: rgba(30, 41, 59, 0.3) !important;
}

.desc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    cursor: pointer;
}

.desc-header h2 {
    color: var(--primary) !important;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 1px;
}

.desc-header .arrow {
    font-size: 1.2rem;
    color: var(--primary);
    transition: 0.3s;
}

.desc-content {
    padding: 0 20px 30px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

/* Related Products */
.related-section {
    margin-top: 100px;
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.related-title {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 2.2rem;
    font-weight: 950;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.related-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    text-align: left;
    transition: 0.3s;
}

.related-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.related-img {
    height: 180px;
    margin-bottom: 15px;
    overflow: hidden;
}

.related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-info h3 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 10px;
    height: 48px;
    overflow: hidden;
}

.related-price {
    display: block;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.related-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #FF443E;
    color: #fff;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
}

.related-btn:hover {
    background: #e53e3e;
}

/* --- PRE-FOOTER USP BAR --- */
.pre-footer-usp {
    background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pre-footer-usp::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotateGradient 15s linear infinite;
    pointer-events: none;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.usp-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.usp-card {
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 15px;
    cursor: pointer;
}

.usp-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.usp-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    transition: 0.3s;
}

.usp-card:hover i {
    color: #ff443e;
    /* Branding red popped on hover */
    transform: scale(1.2) rotate(5deg);
}

.usp-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.usp-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .usp-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .usp-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* --- PROFESSIONAL STORE BACKGROUNDS --- */
.product-page,
.category-page {
    position: relative;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Page Hero Banner System */
.page-hero {
    position: relative;
    width: 100%;
    height: 350px;
    background-color: #1e293b;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 50px;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
    z-index: 1;
}

.page-hero h1 {
    position: relative;
    z-index: 2;
    color: #ffffff !important;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.product-page .container,
.category-page .container {
    position: relative;
    z-index: 20;
}

/* --- CAR BRAKE VIP ANIMATION --- */
.car-brake-VIP {
    display: inline-block !important;
    animation: speed-brake 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    white-space: nowrap;
    opacity: 0;
    will-change: transform, opacity;
}

@keyframes speed-brake {
    0% {
        transform: translateX(150vw) skewX(-20deg);
        opacity: 0;
    }

    70% {
        transform: translateX(0) skewX(-20deg);
        opacity: 1;
    }

    85% {
        transform: translateX(-20px) skewX(0deg);
    }

    95% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* --- COMPREHENSIVE MULTI-DEVICE RESPONSIVENESS (CROSS-BROWSER) --- */
@media (max-width: 1400px) {
    .container {
        max-width: 1280px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .header-row {
        gap: 20px;
    }

    .footer-grid {
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-links {
        justify-content: center;
    }

    .header-row {
        gap: 15px;
    }

    .search-container {
        max-width: 250px;
    }

    .collection-header h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .header-row {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .search-container {
        order: 3;
        max-width: 100%;
        width: 100%;
    }

    .header-actions {
        order: 2;
    }

    .nav-inner {
        overflow-x: auto;
        padding: 12px 10px;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links {
        gap: 20px;
        white-space: nowrap;
        margin: 0 auto;
    }

    .nav-item {
        flex-shrink: 0;
    }

    .t-card {
        width: 170px;
    }

    .t-img-box {
        height: 120px;
    }

    .t-info h4 {
        font-size: 0.8rem;
        height: 32px;
        margin-bottom: 8px;
    }

    .t-price-box {
        padding-top: 10px;
    }

    .t-price-box .t-price {
        font-size: 0.95rem;
    }

    .collection-sec {
        padding: 25px 0;
    }

    .usp-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 10px;
    }

    .usp-card {
        padding: 25px 15px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }

    .logo {
        gap: 8px;
    }

    .logo span {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
    }

    .h-contact {
        display: none;
    }

    /* Hide phone on very small screens to save space */

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .bottom-bar {
        flex-direction: column;
        height: auto;
        padding: 30px 0;
        gap: 20px;
    }

    .bottom-logo-block {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0 0 20px 0;
        justify-content: center;
    }

    .bottom-content {
        text-align: center;
        gap: 10px;
    }

    .collection-header h2 {
        font-size: 1.4rem;
        letter-spacing: -1px;
    }

    .collection-header p {
        font-size: 0.85rem;
    }

    .usp-grid-4 {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }
}

/* Ensure no horizontal scrollbars on mobile browsers */
* {
    -webkit-tap-highlight-color: transparent;
}

/* =======================================
   ZALWAN E-COMMERCE PRODUCT LAYOUT
   ======================================= */
.zalwan-product-wrap {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}

/* Left: Gallery */
.zalwan-gallery {
    flex: 1.2;
    display: flex;
    gap: 15px;
    position: sticky;
    top: 120px;
}

.zalwan-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80px;
}

.thumb-item {
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.2s;
    opacity: 0.7;
}

.thumb-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.thumb-item:hover,
.thumb-item.active {
    opacity: 1;
    border-color: #f97316;
}

.zalwan-main-img {
    flex: 1;
    border: 1px solid #eaeaea;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zalwan-main-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Right: Details */
.zalwan-details {
    flex: 1;
    max-width: 500px;
}

.zalwan-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.3;
}

.zalwan-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 5px;
}

.zalwan-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: #e85d04;
}

.zalwan-price-vat {
    color: #e85d04;
    font-weight: 600;
    font-size: 1rem;
}

.zalwan-code {
    margin-left: auto;
    font-size: 0.8rem;
    color: #666;
}

.zalwan-vat-note {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 25px;
}

.zalwan-variants-box {
    margin-bottom: 25px;
}

.zalwan-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    background: #fff;
    cursor: pointer;
}

.zalwan-cart-action {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.zalwan-qty {
    width: 70px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    font-size: 1.1rem;
}

.zalwan-add-btn {
    flex: 1;
    background: #e85d04;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.zalwan-add-btn:hover {
    background: #d04f02;
}

/* Info Box */
.zalwan-info-box {
    border: 1px solid #eaeaea;
    border-radius: 4px;
}

.z-info-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
}

.z-info-row:last-child {
    border-bottom: none;
}

.z-info-row i {
    color: #555;
    font-size: 1.2rem;
    margin-top: 2px;
}

.z-info-text strong {
    color: #333;
    font-weight: 700;
}

.z-info-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    flex: 1;
}

.z-info-text span {
    font-size: 0.8rem;
    color: #888;
    display: block;
    margin-top: 4px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
}

.payment-icons .fa-cc-visa {
    color: #1a1f71;
}

.payment-icons .fa-cc-mastercard {
    color: #eb001b;
}

.payment-icons .fa-cc-paypal {
    color: #00457c;
}

/* Description Area */
.zalwan-description-block {
    margin-top: 40px;
}

.z-desc-header {
    background: #e9ecef;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #333;
    border-radius: 6px 6px 0 0;
}

.z-desc-content {
    border: 1px solid #e9ecef;
    border-top: none;
    padding: 30px;
    border-radius: 0 0 6px 6px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .zalwan-product-wrap {
        flex-direction: column;
    }

    .zalwan-gallery {
        position: static;
        flex-direction: column-reverse;
        width: 100%;
        top: auto;
    }

    .zalwan-thumbs {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .thumb-item {
        width: 60px;
        flex-shrink: 0;
    }

    .zalwan-details {
        max-width: 100%;
    }
}

/* --- PROMO BLOCK (Provincial Rubber Style) --- */
@media (max-width: 768px) {
    .promo-items {
        grid-template-columns: 1fr !important;
    }

    .promo-block h2 {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }
}

/* --- TRUSTED CLIENTS TICKER SEC --- */
.ticker-section {
    display: flex;
    align-items: center;
    background: #111827;
    color: #fff;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
}

.ticker-header {
    background: #1f2937;
    padding: 15px 30px;
    z-index: 2;
    position: relative;
    white-space: nowrap;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
}

.ticker-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #f3f4f6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticker-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.ticker-content {
    display: flex;
    width: max-content;
    animation: ticker-slide 40s linear infinite;
}

/* =======================================
   CROSS-BROWSER & MOBILE OPTIMIZATION (2026)
   ======================================= */

/* --- LOGO SIZING (Responsive) --- */
.main-header-img {
    height: 105px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
    -webkit-filter: brightness(1.05);
    filter: brightness(1.05);
}

.footer-logo-capsule {
    background: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-footer-img {
    height: 85px;
    width: auto;
    display: block;
}

/* --- MOBILE BREAKPOINTS --- */
@media (max-width: 991px) {
    .persuasion-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .welcome-box {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .main-header-img {
        height: 65px;
        /* Scaled down for mobile */
    }

    .main-footer-img {
        height: 55px;
    }

    .welcome-box h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .main-header-img {
        height: 50px;
    }

    .main-footer-img {
        height: 45px;
    }

    .usp-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* --- CROSS-BROWSER COMPATIBILITY --- */
.hero-sec::before {
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.aura-glow {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Smooth Scrolling for Browsers that support it */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* Tap Highlights (Mobile Browsers) */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevent image dragging on mobile */
img {
    -webkit-user-drag: none;
    user-select: none;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #9ca3af;
    white-space: nowrap;
    position: relative;
}

.ticker-item::after {
    content: "•";
    position: absolute;
    right: -5px;
    color: #4b5563;
}

.ticker-item:last-child::after {
    display: none;
}

.ticker-item i {
    font-size: 1.2rem;
    color: #6b7280;
}

.ticker-item:hover {
    color: #fff;
}

.ticker-item:hover i {
    color: #ef4444;
}

@keyframes ticker-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .ticker-section {
        flex-direction: column;
    }

    .ticker-header {
        width: 100%;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        padding: 10px;
    }
}
/* --- Premium Cookie Consent Popup --- */
.cookie-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.cookie-overlay.active {
    opacity: 1; visibility: visible;
}
.cookie-modal {
    background: #fff;
    width: 90%; max-width: 480px;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.cookie-overlay.active .cookie-modal {
    transform: translateY(0);
}
.c-modal-header h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem; color: #0f172a;
    text-align: center;
}
.c-modal-header p {
    font-size: 0.85rem; color: #64748b; margin-bottom: 25px; line-height: 1.6;
    text-align: center;
}
.c-options { margin-bottom: 25px; }
.c-option-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 15px; background: #f8fafc;
    border-radius: 8px; margin-bottom: 10px;
    border: 1px solid #e2e8f0;
}
.c-opt-left { display: flex; flex-direction: column; }
.c-opt-title { font-weight: 700; font-size: 0.95rem; color: #1e293b; }
.c-opt-desc { font-size: 0.75rem; color: #94a3b8; margin-top: 3px; }
.c-toggle {
    appearance: none; width: 44px; height: 24px;
    background: #cbd5e1; border-radius: 20px;
    position: relative; cursor: pointer; outline: none;
    transition: 0.3s;
}
.c-toggle::after {
    content: ''; position: absolute;
    top: 2px; left: 2px; width: 20px; height: 20px;
    background: #fff; border-radius: 50%;
    transition: 0.3s; box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.c-toggle:checked { background: #059669; }
.c-toggle:checked::after { transform: translateX(20px); }
.c-toggle:disabled { cursor: not-allowed; background: #059669; opacity: 0.5; }
.c-footer { display: flex; gap: 10px; flex-wrap: wrap; }
.c-btn {
    flex: 1; padding: 12px; border: none; border-radius: 8px;
    font-weight: 700; cursor: pointer; transition: 0.3s; font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
}
.c-btn-accept { background: #333; color: #fff; border: 1px solid #333; }
.c-btn-accept:hover { background: #000; }
.c-btn-deny { background: #fff; color: #333; border: 1px solid #ccc; }
.c-btn-deny:hover { background: #f1f5f9; }
.c-btn-save { background: #f8f9fa; color: #333; border: 1px solid #efefef; }
.c-btn-save:hover { background: #e2e8f0; }
.c-links {
    text-align: center; margin-top: 15px; font-size: 0.8rem;
}
.c-links a { color: #059669; text-decoration: none; font-weight: 600; }
.c-links a:hover { text-decoration: underline; }
@media (max-width: 480px) {
    .c-footer { flex-direction: column; }
    .c-btn { width: 100%; }
}
