/* --- 1. Enhanced Root Variables & Reset --- */
:root {
    --primary: #1a1a1a;       /* Deep Black */
    --primary-dark: #000000;
    --primary-light: #333333;
    
    --accent: #ff3e3e;        /* Vibrant Red */
    --accent-dark: #d32f2f;
    --accent-light: #ff6b6b;
    --accent-gradient: linear-gradient(135deg, #ff3e3e 0%, #ff6b6b 100%);
    
    --secondary: #3498db;     /* Blue */
    --secondary-dark: #2980b9;
    --success: #2ecc71;       /* Green */
    --warning: #f39c12;       /* Orange */
    
    --gray: #888888;
    --gray-dark: #555555;
    --gray-light: #aaaaaa;
    --light-gray: #f4f4f4;
    --lighter-gray: #fafafa;
    
    --white: #ffffff;
    --off-white: #f9f9f9;
    
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
    --shadow-hover: 0 15px 35px rgba(0,0,0,0.2);
    
    --border-radius-sm: 8px;
    --border-radius: 15px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    
    --container-padding: 5%;
    --section-spacing: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

/* Selection Color */
::selection {
    background-color: var(--accent-light);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--accent-light);
    color: var(--white);
}

/* --- 2. Enhanced Navigation Bar --- */
.navbar, .topnav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 18px var(--container-padding);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar.scrolled {
    padding: 12px var(--container-padding);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links, .tabs {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a, .tabs li a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after, .tabs li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.tabs li a:hover::after,
.tabs li a.active::after {
    width: 100%;
}

.nav-links a:hover, 
.nav-links a.active,
.tabs li a:hover,
.tabs li a.active {
    color: var(--accent);
}

.nav-icons, .nav_ele {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-icon-btn, .nav_ele a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.3rem;
    position: relative;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.nav-icon-btn:hover, .nav_ele a:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    color: var(--accent);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-gradient);
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(255, 62, 62, 0.3);
}

/* --- 3. Enhanced Hero Section --- */
.hero-wrapper {
    padding: 40px var(--container-padding);
    margin-top: 20px;
}

.hero-card {
    position: relative;
    height: 80vh;
    max-height: 800px;
    min-height: 600px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transform: scale(1.1);
    transition: transform 10s ease;
}

.hero-card:hover .hero-bg {
    transform: scale(1.15);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(0,0,0,0.3) 0%, 
        rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    color: white;
    padding: 40px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    background: linear-gradient(to right, #fff 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    border-radius: var(--border-radius-xl);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transition: var(--transition-slow);
    z-index: 1;
}

.cta-btn:hover::before {
    left: 0;
}

.cta-btn span {
    position: relative;
    z-index: 2;
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: white;
    box-shadow: var(--shadow-hover);
}

.cta-btn i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* --- 4. Enhanced Product & Category Grids --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 var(--container-padding);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.category-scroll, .collection-nav ul {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 30px 0;
    scrollbar-width: none;
    margin: 0 var(--container-padding);
}

.category-scroll::-webkit-scrollbar,
.collection-nav ul::-webkit-scrollbar {
    display: none;
}

.cat-btn, .collection-btn {
    padding: 12px 60px;
    text-align: center;
    border-radius: var(--border-radius-xl);
    border: 2px solid var(--light-gray);
    background: white;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
    color: var(--primary);
    position: relative;
    overflow: hidden;
    
}

.cat-btn::before,
.collection-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transition: var(--transition);
}

.cat-btn.active::before,
.collection-btn.active::before {
    left: 0;
}

.cat-btn span,
.collection-btn span {
    position: relative;
    z-index: 2;
}

.cat-btn.active, 
.collection-btn.active {
    border-color: transparent;
    color: white;
}

.cat-btn:hover:not(.active),
.collection-btn:hover:not(.active) {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.product-grid, .tshirt-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    padding: 40px var(--container-padding);
    margin: 0 auto;
    max-width: 1400px;
}

.tshirt-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
}

.tshirt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.tshirt-card:hover::before {
    transform: scaleX(1);
}

.tshirt-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.tshirt-image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.tshirt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.tshirt-card:hover .tshirt-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gradient);
    color: white;
    padding: 5px 15px;
    border-radius: var(--border-radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.tshirt-info {
    padding: 25px;
    position: relative;
}

.tshirt-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary);
    transition: var(--transition);
}

.tshirt-card:hover .tshirt-title {
    color: var(--accent);
}

.tshirt-price {
    color: var(--accent);
    font-weight: 900;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.original-price {
    color: var(--gray-light);
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 500;
}

.add-to-cart-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(10px);
}

.tshirt-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 5px 15px rgba(255, 62, 62, 0.3);
}

/* --- 5. Enhanced Footer --- */
footer {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 100px var(--container-padding) 40px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.footer-col h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gradient);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover i {
    opacity: 1;
}

.newsletter {
    margin-top: 30px;
}

.newsletter p {
    color: var(--gray);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #333;
    background: rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    color: white;
    font-family: var(--font-main);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent);
}

.newsletter-btn {
    padding: 12px 25px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 62, 62, 0.3);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transform: translateY(100%);
    transition: var(--transition);
}

.social-links a:hover::before {
    transform: translateY(0);
}

.social-links a i {
    position: relative;
    z-index: 2;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(10deg);
}

.copyright {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 40px;
    color: var(--gray);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* --- 6. Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stagger-children.active > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.active > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.4s; }

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 62, 62, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 62, 62, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 62, 62, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* --- 7. Loading Animations --- */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--light-gray);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* --- 8. Utility Classes --- */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--accent-gradient) !important;
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.shadow-hover {
    transition: var(--transition);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-hover) !important;
}

/* --- 9. Mobile Responsiveness --- */
@media (max-width: 1200px) {
    :root {
        --container-padding: 4%;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
        --section-spacing: 50px;
    }
    
    .nav-links, .tabs {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        text-align: center;
        box-shadow: var(--shadow);
        border-top: 1px solid var(--light-gray);
    }

    .nav-links.open {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-card {
        height: 60vh;
        min-height: 500px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .product-grid, .tshirt-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        background: none;
        border: none;
        padding: 10px;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary);
        margin: 5px 0;
        transition: var(--transition);
        border-radius: 3px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .cta-btn {
        padding: 15px 30px;
        font-size: 0.85rem;
    }
    
    .product-grid, .tshirt-container {
        grid-template-columns: 1fr;
    }
    
    .cat-btn, .collection-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* --- 10. Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* --- About Page Specific Styles --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero {
    text-align: center;
    padding: 80px 0 40px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
    padding: 40px 0;
}

.story-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.values-section,
.team-section {
    margin: 100px 0;
    padding: 60px 0;
}

.values-grid,
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card,
.team-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 25px;
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before,
.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.value-card:hover::before,
.team-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover,
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.team-image {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    width: 120px;
    height: 120px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-card h3,
.team-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.value-card p,
.team-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    text-align: center;
    padding: 80px 0 40px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 80px 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-details p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.contact-details a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--accent-dark);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 62, 62, 0.1);
}

.form-control.error {
    border-color: #ff3e3e;
}

.form-control.success {
    border-color: #2ecc71;
}

.error-message {
    color: #ff3e3e;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 62, 62, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

/* FAQ Section */
.faq-section {
    margin: 100px 0;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--lighter-gray);
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer.active {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: 1rem;
}

/* Cart Page Styles */
.cart-hero {
    text-align: center;
    padding: 80px 0 40px;
}

.cart-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 2fr 1fr;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
    align-items: center;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.cart-item-meta {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.cart-item-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 2px solid var(--light-gray);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.quantity-input {
    width: 50px;
    padding: 8px;
    text-align: center;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
}

.remove-btn {
    padding: 8px 20px;
    background: transparent;
    color: #ff3e3e;
    border: 2px solid #ff3e3e;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.remove-btn:hover {
    background: #ff3e3e;
    color: white;
}

.cart-summary {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.summary-total {
    font-size: 1.3rem;
    font-weight: 800;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin: 25px 0 15px;
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 62, 62, 0.3);
}

.continue-shopping {
    display: block;
    text-align: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.continue-shopping:hover {
    color: var(--accent);
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: var(--border-radius);
    border: 2px dashed var(--light-gray);
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-cart h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.empty-cart p {
    color: var(--gray);
    margin-bottom: 30px;
}

/* Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.modal-header p {
    color: var(--gray);
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.modal-actions button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.modal-actions .btn-secondary {
    background: var(--light-gray);
    color: var(--primary);
}

.modal-actions .btn-secondary:hover {
    background: #ddd;
}

.modal-actions .btn-primary {
    background: var(--accent-gradient);
    color: white;
}

.modal-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 62, 62, 0.3);
}

/* Search Page Styles */
.search-hero {
    text-align: center;
    padding: 80px 0 40px;
}

.search-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-container {
    margin: 40px auto;
    max-width: 800px;
}

.search-box {
    display: flex;
    gap: 15px;
    background: white;
    padding: 5px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow);
    border: 2px solid var(--light-gray);
}

.search-input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    outline: none;
}

.search-btn {
    padding: 15px 35px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 62, 62, 0.3);
}

.filters-section {
    margin: 60px 0;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.filter-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent);
}

.results-section {
    margin: 60px 0;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.results-count {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.no-results {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: var(--border-radius);
    border: 2px dashed var(--light-gray);
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.no-results p {
    color: var(--gray);
}

/* Product Page Styles */
.product-details-container {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary);
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 30px;
}

.product-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 30px;
}

.original-price {
    font-size: 1.5rem;
    color: var(--gray-light);
    text-decoration: line-through;
    margin-left: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating-count {
    color: var(--gray);
}

.options-section {
    margin-bottom: 40px;
}

.options-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-option,
.color-option {
    padding: 12px 25px;
    border: 2px solid var(--light-gray);
    background: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.size-option.active,
.color-option.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.size-option:hover:not(.active),
.color-option:hover:not(.active) {
    border-color: var(--accent);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.quantity-selector label {
    font-weight: 600;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--light-gray);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.quantity-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.quantity-input {
    width: 70px;
    padding: 10px;
    text-align: center;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
}

.product-actions {
    display: flex;
    gap: 20px;
}

.add-to-cart-btn,
.buy-now-btn {
    flex: 1;
    padding: 18px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--accent);
}

.add-to-cart-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 62, 62, 0.3);
}

.buy-now-btn {
    background: var(--accent-gradient);
    color: white;
}

.buy-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 62, 62, 0.3);
}

.product-specs {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--light-gray);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.spec-label {
    color: var(--gray);
    font-weight: 600;
}

.spec-value {
    color: var(--primary);
    font-weight: 500;
}

.loading {
    text-align: center;
    padding: 100px;
    font-size: 1.2rem;
    color: var(--gray);
}

.error {
    text-align: center;
    padding: 100px;
    color: var(--accent);
    font-size: 1.3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero h1,
    .cart-hero h1,
    .search-hero h1 {
        font-size: 2.5rem;
    }
    
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .product-details-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-image {
        height: 400px;
    }
    
    .product-info {
        position: static;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   COLLECTION BUTTONS - WORKING VERSION
   ============================================ */

/* Main container for collection navigation */
.collection-nav {
    margin: 40px auto;
    padding: 0 var(--container-padding);
    max-width: 1400px;
    position: relative;
}

/* The list container */
.collection-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

/* Individual collection buttons */
.collection-btn {
    display: inline-block;
    padding: 12px 28px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    color: #333;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.collection-btn span {
    position: relative;
    z-index: 2;
}

/* Hover effect */
.collection-btn:hover {
    background: #fff5f7;
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 61, 113, 0.1);
}

/* Active button */
.collection-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 61, 113, 0.2);
}

.collection-btn.active:hover {
    background: #ff2a65;
    border-color: #ff2a65;
}

/* ============================================
   MOBILE FIXES FOR COLLECTION BUTTONS
   ============================================ */
@media (max-width: 768px) {
    .collection-nav {
        margin: 30px auto;
        padding: 0 15px;
        position: relative;
    }
    
    /* Add gradient fade effect at the end */
    .collection-nav::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 60px;
        background: linear-gradient(90deg, transparent, white);
        pointer-events: none;
    }
    
    /* Horizontal scroll for mobile */
    .collection-nav ul {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    /* Hide scrollbar but keep functionality */
    .collection-nav ul::-webkit-scrollbar {
        display: none;
    }
    
    /* Button size for mobile */
    .collection-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    /* Add some margin to the first and last buttons */
    .collection-nav ul li:first-child .collection-btn {
        margin-left: 5px;
    }
    
    .collection-nav ul li:last-child .collection-btn {
        margin-right: 40px;
    }
}

.collection-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transition: var(--transition);
}

.collection-btn.active::before {
    left: 0;
}

.collection-btn span {
    position: relative;
    z-index: 2;
}

.collection-btn.active {
    border-color: transparent;
    color: white;
}

.collection-btn:hover:not(.active) {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Product grid spacing */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px var(--container-padding);
    margin: 0 auto;
    max-width: 1400px;
}

/* Product card buttons */
.add-to-cart-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(10px);
    font-size: 1.2rem;
}

.tshirt-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 5px 15px rgba(255, 62, 62, 0.3);
}
/* Fix for View Product buttons */
.tshirt-info {
    padding: 25px;
    position: relative;
    min-height: 180px; /* Ensure enough space for the button */
}

/* For product grid cards - keep the circular icon style */
.tshirt-info .add-to-cart-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(10px);
    font-size: 1.2rem;
}

.tshirt-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.tshirt-info .add-to-cart-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 5px 15px rgba(255, 62, 62, 0.3);
}

/* If you want a regular button style instead of circular icon, add this alternative: */
.view-product-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    padding: 10px 20px;
    background: var(--accent-gradient);
    color: rgb(0, 255, 13);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(10px);
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.tshirt-card:hover .view-product-btn {
    opacity: 1;
    transform: translateY(0);
}

.view-product-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 62, 62, 0.3);
}
/* Product Page Styles */
.product-details-container {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding: 0 var(--container-padding);
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary);
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 30px;
}

.product-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 30px;
}

.original-price {
    font-size: 1.5rem;
    color: var(--gray-light);
    text-decoration: line-through;
    margin-left: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating-count {
    color: var(--gray);
}

.options-section {
    margin-bottom: 40px;
}

.options-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-option,
.color-option {
    padding: 12px 25px;
    border: 2px solid var(--light-gray);
    background: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.size-option.active,
.color-option.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.size-option:hover:not(.active),
.color-option:hover:not(.active) {
    border-color: var(--accent);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.quantity-selector label {
    font-weight: 600;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--light-gray);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.quantity-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.quantity-input {
    width: 70px;
    padding: 10px;
    text-align: center;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.add-to-cart-btn,
.buy-now-btn {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--accent);
}

.add-to-cart-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 17, 17, 0.3);
}

.buy-now-btn {
    background: var(--accent-gradient);
    color: white;
}

.buy-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 62, 62, 0.3);
}

.product-specs {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--light-gray);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.spec-label {
    color: var(--gray);
    font-weight: 600;
}

.spec-value {
    color: var(--primary);
    font-weight: 500;
}

.loading {
    text-align: center;
    padding: 100px;
    font-size: 1.2rem;
    color: var(--gray);
}

.error {
    text-align: center;
    padding: 100px;
    color: var(--accent);
    font-size: 1.3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-details-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-image {
        height: 400px;
    }
    
    .product-info {
        position: static;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-title {
        font-size: 2rem;
    }
}

/* Universal Mobile Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Universal mobile navigation */
@media (max-width: 768px) {
    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
        order: 3; /* Put it at the end */
        margin-left: auto;
    }
    
    /* Hide nav-links by default on mobile */
    .nav-links,
    .tabs {
        display: none !important;
    }
    
    /* Show nav-links when open */
    .nav-links.open,
    .tabs.open {
        display: flex !important;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        box-shadow: var(--shadow);
        border-top: 1px solid var(--light-gray);
        z-index: 1000;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        animation: slideDown 0.3s ease;
    }
    
    /* Nav items */
    .nav-links li,
    .tabs li {
        margin: 15px 0;
        list-style: none;
    }
    
    .nav-links a,
    .tabs a {
        font-size: 1.1rem;
        padding: 12px 0;
        display: block;
        width: 100%;
        text-decoration: none;
        color: var(--primary);
        font-weight: 600;
        transition: var(--transition);
    }
    
    .nav-links a:hover,
    .nav-links a.active,
    .tabs a:hover,
    .tabs a.active {
        color: var(--accent);
    }
    
    /* Animation */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Adjust navbar layout for mobile */
    .nav-container,
    .topnav ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    /* Make sure nav-icons are visible */
    .nav-icons,
    .nav_ele {
        display: flex;
        gap: 15px;
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    .nav-links,
    .tabs {
        display: flex !important;
    }
    
    .hamburger {
        display: none !important;
    }
}
/* Temporary fix - add this to your index.html inside <style> tags */
.collection-nav {
    margin: 30px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.collection-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.collection-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    color: #333;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.collection-btn:hover {
    background: #fff5f7;
    border-color: #ff3d71;
    color: #ff3d71;
}

.collection-btn.active {
    background: #ff3d71;
    border-color: #ff3d71;
    color: white;
}

/* Mobile */
@media (max-width: 768px) {
    .collection-nav ul {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .collection-btn {
        flex-shrink: 0;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
  