/* Root Variables */
:root {
    /* Teal & Red Theme */
    --primary: #00B7C2;      /* Teal */
    --primary-dark: #0A2A2F; /* Dark teal bg */
    --accent: #FF3B3B;       /* Red highlight */
    --accent-dark: #cc2a2a;
    --accent-gradient: linear-gradient(135deg, var(--primary), var(--accent));
    
    --bg-dark: #081A1C;      /* Main background */
    --bg-gradient: linear-gradient(135deg, #081A1C, #0A2A2F, #00B7C2);
    
    --secondary: #A0C4C7;
    --light: transparent;
    --white: rgba(0, 183, 194, 0.05); 
    --text-light: #E6F7F8;   /* Text */
    --dark: var(--text-light); 
    --btn-text: #ffffff;
    
    --glass-bg: rgba(8, 26, 28, 0.7);
    --glass-border: rgba(0, 183, 194, 0.3);
    --shadow-soft: 0 8px 32px rgba(0, 183, 194, 0.15); /* Faint teal shadow */
    
    --hero-grad-start: transparent;
    --hero-grad-end: transparent;
    --nav-bg: rgba(8, 26, 28, 0.85); /* Matches --bg-dark */
    --brand-invert: 1;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--bg-gradient);
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

section { padding: 80px 0; }

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title .underline {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: #000000;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
    background: #111111;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 183, 194, 0.5);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: 2px solid #000000;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: #000000;
    color: #ffffff;
    border-color: #333333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

/* WhatsApp specific hero button */
.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:hover {
    background: #1fba58;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

/* Call specific hero button */
.btn-call {
    background: #000000;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.btn-call:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255, 59, 59, 0.5);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, background-color 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}

.navbar.scrolled {
    background: rgba(8, 26, 28, 0.85); /* Darker glass when scrolling down the page */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 183, 194, 0.3);
    padding: 15px 0;
}

.navbar.hidden {
    transform: translateY(-100%);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.logo i {
    color: var(--primary);
    margin-right: 8px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: auto;
}

.nav-links li a {
    font-weight: 500;
    font-size: 1rem;
    color: #ffffff;
}

.nav-links li a:hover {
    color: var(--primary); /* Teal glow hover */
    text-shadow: 0 0 10px rgba(0, 183, 194, 0.6);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--hero-grad-start) 0%, var(--hero-grad-end) 100%);
    padding-top: 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
}

.hero-img-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: var(--transition);
}

.hero-img-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-img-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Trust Strip */
.trust-strip {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.trust-container {
    display: flex;
    justify-content: space-around;
    padding: 30px;
    border-radius: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

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

.trust-item i {
    font-size: 2.5rem;
    color: var(--accent);
}

.trust-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.trust-item p {
    color: var(--secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Category Showcase */
.showcase {
    background-color: var(--light);
}

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

.showcase-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition);
    background-size: cover;
    background-position: center;
}

.category-men {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('images/category_men.png');
}
.category-women {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('images/category_women.png');
}
.category-kids {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('images/category_kids.png');
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    transition: var(--transition);
    background: rgba(0,0,0,0.2);
}

.showcase-card:hover::before {
    background: rgba(0,0,0,0);
}

.showcase-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.showcase-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.showcase-content h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
}

.btn-sm:hover {
    background: var(--white);
    color: var(--primary);
}

/* Offers Section */
.offers {
    padding-bottom: 80px;
    background: transparent;
}

.offer-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background: var(--accent-gradient);
    border-radius: 20px;
    color: var(--btn-text);
    flex-wrap: wrap;
    gap: 30px;
}

.offer-text {
    flex: 1;
    min-width: 300px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: #ffffff;
    color: var(--primary-dark);
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.offer-text h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}

.offer-text p {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
}

.offer-image {
    font-size: 9rem;
    color: #ffffff;
    opacity: 0.95;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.features {
    margin-top: 30px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
}

.features li i {
    color: var(--primary);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    padding: 30px;
    text-align: center;
}

.stat-card h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 1px 2px 5px rgba(0,0,0,0.2);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
}
/* Brands Section */
.brands {
    background: var(--white);
}

.brands-container {
    max-width: 900px;
    margin: 0 auto;
}

.brands-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.brand-tab {
    padding: 15px 35px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark);
    margin: 5px;
}

.brand-tab:hover {
    background: var(--accent-gradient);
    color: var(--btn-text);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.brand-tab.active {
    background: var(--accent-gradient);
    color: var(--btn-text);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.brand-display {
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
}

.brand-img-wrapper {
    width: 100%;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.brand-img-wrapper img {
    max-width: 100%;
    max-height: 450px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.5s ease-in-out;
}

.fade {
    opacity: 1;
}

.hidden {
    opacity: 0;
}

/* Brand Logos Row */
.brand-row {
    padding: 30px 0;
    margin: 50px 0;
    border-radius: 0; /* Full width look */
    border-left: none;
    border-right: none;
}

.brand-row-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.brand-logo-item {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) invert(var(--brand-invert));
    opacity: 0.6;
    transition: var(--transition);
}

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

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

/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    height: 250px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.product-info p {
    color: var(--secondary);
    font-size: 0.95rem;
}

/* Why Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.icon-box {
    width: 75px;
    height: 75px;
    background: #ffffff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.feature-item h3 {
    margin-bottom: 10px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    font-style: italic;
}

.client-info {
    margin-top: 20px;
    font-style: normal;
}

.client-info h4 {
    color: var(--primary);
}

.client-info span {
    font-size: 0.85rem;
    color: var(--secondary);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 5px;
}

.map-container {
    overflow: hidden;
    padding: 10px;
}

.map-container iframe {
    border-radius: 10px;
}

/* Footer */
footer {
    background: var(--white);
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

/* Floating Socials */
.floating-socials {
    position: fixed;
    right: 25px;
    bottom: 110px;
    z-index: 1000;
}

/* Always-visible WhatsApp Button */
.floating-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #ffffff;
    padding: 13px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulseGreen 2.5s infinite;
    white-space: nowrap;
}

.floating-whatsapp-btn i {
    font-size: 1.3rem;
}

.floating-whatsapp-btn:hover {
    background: #1fba58;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
    color: #ffffff;
}

/* Always-visible Link/Share Button */
.floating-link-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    padding: 13px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 6px 25px rgba(139, 61, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.floating-link-btn i {
    font-size: 1.2rem;
}

.floating-link-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 61, 255, 0.65);
}

@keyframes pulseGreen {
    0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6); }
    50% { box-shadow: 0 6px 35px rgba(37, 211, 102, 0.9), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* Copy-link tooltip */
.floating-link-btn .copy-tooltip {
    display: none;
    position: absolute;
    right: 110%;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.floating-link-btn.copied .copy-tooltip {
    display: block;
}

.social-expand-btn {
    display: none;
}

.social-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: #ffffff !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link.whatsapp { color: #25D366; }
.social-link.instagram { color: #E1306C; }
.social-link.facebook { color: #1877F2; }
.social-link.maps { color: #EA4335; }

/* Sticky Call Now */
.sticky-call {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #ff6b35, #e0392d);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
    box-shadow: 0 6px 25px rgba(224, 57, 45, 0.55);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    animation: pulseRed 2.5s infinite;
}

.sticky-call:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(224, 57, 45, 0.7);
    color: #ffffff;
}

.sticky-call i {
    font-size: 1.2rem;
}

@keyframes pulseRed {
    0%, 100% { box-shadow: 0 6px 25px rgba(224, 57, 45, 0.55); }
    50% { box-shadow: 0 6px 35px rgba(224, 57, 45, 0.8), 0 0 0 8px rgba(224, 57, 45, 0.15); }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 { font-size: 3rem; }
    
    .hero-btns { justify-content: center; }
    
    .about-stats { flex-direction: row; justify-content: center; }
    
    .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.5s;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger { display: block; }
    
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}

/* Touch active state for mobile expand */
.floating-socials.touch-active .social-list {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-socials.touch-active .social-expand-btn {
    transform: rotate(90deg);
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Mobile - stack floating buttons and reduce size */
@media (max-width: 600px) {
    .floating-whatsapp-btn,
    .floating-link-btn {
        padding: 11px 16px;
        font-size: 0.85rem;
    }

    .floating-socials {
        right: 15px;
        bottom: 90px;
        gap: 8px;
    }

    .sticky-call {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}


.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-toggle {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.theme-toggle:hover {
    transform: rotate(15deg) scale(1.1);
    background: var(--primary);
    color: var(--white);
}

body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* CTA Section */
.cta-section {
    padding: 30px 0 80px 0;
    background: transparent;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    flex-wrap: wrap;
    gap: 30px;
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--btn-text);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--btn-text);
    opacity: 0.9;
    margin-bottom: 0;
}

.cta-btn {
    background: var(--btn-text);
    color: var(--primary);
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.cta-btn:hover {
    background: var(--bg-color);
    color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-action {
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
    }
}

/* =============================================
   MEN'S COLLECTION MODAL
   ============================================= */
.collection-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.collection-modal.open {
    opacity: 1;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
}

.modal-box {
    position: relative;
    background: linear-gradient(145deg, rgba(25,8,65,0.97), rgba(15,8,45,0.98));
    border: 1px solid rgba(139, 61, 255, 0.4);
    border-radius: 24px;
    padding: 40px;
    max-width: 950px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.65), 0 0 50px rgba(139,61,255,0.2);
    transform: translateY(40px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.collection-modal.open .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: #e0392d;
    border-color: #e0392d;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.modal-header h2 i {
    color: var(--primary);
    margin-right: 10px;
}

.modal-header p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

.modal-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 35px;
}

.modal-product-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.modal-product-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(139,61,255,0.3);
}

.modal-product-img {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.tortoise-placeholder {
    background: linear-gradient(135deg, #3d1c00, #8b4513, #c47a3a);
}

.frame-icon-display {
    font-size: 4.5rem;
    color: rgba(255,255,255,0.45);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.trending { background: #f59e0b; color: #000; }
.product-badge.premium  { background: linear-gradient(135deg, #c47a3a, #8b4513); }

.modal-product-info {
    padding: 16px;
}

.modal-product-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.modal-product-info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.55;
    margin-bottom: 14px;
}

.modal-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.price-tag {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
}

.modal-footer-cta {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.modal-footer-cta .btn {
    font-size: 1rem;
    padding: 14px 36px;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-products { grid-template-columns: 1fr 1fr; }
    .modal-box { padding: 24px 16px; }
    .modal-header h2 { font-size: 1.5rem; }
}

@media (max-width: 500px) {
    .modal-products { grid-template-columns: 1fr; }
}

/* Women's Card Premium Image Treatment */
.modal-product-img img {
    padding: 20px;
    object-fit: contain;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}

/* Recent Gallery Section */
.recent-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item img:hover {
    transform: scale(1.08);
}

/* Image Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: zoomIn 0.3s ease;
    object-fit: contain;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #ffffff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3001;
}

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

/* Offers Section */
.offers {
    padding: 60px 0;
}

.offer-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 60px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 183, 194, 0.2), rgba(10, 42, 47, 0.8));
    border: 1px solid rgba(0, 183, 194, 0.4);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.offer-text {
    flex: 1;
    z-index: 2;
}

.badge {
    background: #ffffff;
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.offer-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.offer-text p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    max-width: 80%;
}

.offer-icon {
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 2;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .offer-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .offer-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .offer-icon {
        margin-top: 30px;
        font-size: 7rem;
    }
}
