/* ============================================
   MEMORABILIA HUB - Premium Styles
   Gold & Black Luxury Theme
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Premium Gold & Black Palette */
    --gold-100: #FDF8E7;
    --gold-200: #F7E7B0;
    --gold-300: #E6C65C;
    --gold-400: #D4A835;
    --gold-500: #C9A227;
    --gold-600: #B8942A;
    --gold-gradient: linear-gradient(135deg, #D4A835 0%, #F7E7B0 50%, #C9A227 100%);
    --gold-shine: linear-gradient(90deg, #D4A835 0%, #F7E7B0 25%, #D4A835 50%, #F7E7B0 75%, #D4A835 100%);

    --black-900: #0A0A0A;
    --black-800: #111111;
    --black-700: #1A1A1A;
    --black-600: #222222;
    --black-500: #2D2D2D;
    --black-400: #3D3D3D;

    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #CCCCCC;
    --gray-400: #999999;
    --gray-500: #777777;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1400px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 30px rgba(201, 162, 39, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black-900);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-400);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: var(--transition-medium);
}

.navbar.scrolled .nav-logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-medium);
}

.nav-link:hover {
    color: var(--gold-400);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(201, 162, 39, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, var(--black-900) 0%, var(--black-800) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    opacity: 0.3;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-400);
    margin-bottom: 32px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--black-900);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--gold-400), transparent);
    opacity: 0.3;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray-500);
    font-size: 0.75rem;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--gold-400);
    border-bottom: 2px solid var(--gold-400);
    transform: rotate(45deg);
    opacity: 0.5;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   COLLECTION / PRODUCTS
   ============================================ */
.collection {
    padding: var(--section-padding) 0;
    background: var(--black-800);
    position: relative;
}

.collection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.2), transparent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--black-700);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 380px;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: var(--shadow-strong), 0 0 60px rgba(201, 162, 39, 0.1);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--black-600);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.product-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold-gradient);
    color: var(--black-900);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.product-info {
    padding: 28px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-team {
    font-size: 0.85rem;
    color: var(--gold-400);
    margin-bottom: 12px;
}

.product-description {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-400);
}

.product-link svg {
    transition: var(--transition-fast);
}

.product-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--black-900);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 40px;
}

.features {
    display: grid;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--black-800);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-medium);
}

.feature:hover {
    border-color: rgba(201, 162, 39, 0.2);
    background: var(--black-700);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 10px;
    color: var(--gold-400);
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding: 40px;
    background: linear-gradient(145deg, var(--black-700), var(--black-800));
    border-radius: 24px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.about-image-wrapper img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.about-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gold-gradient);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--black-800);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    padding: 40px;
    background: var(--black-700);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    border-color: rgba(201, 162, 39, 0.2);
    transform: translateY(-4px);
}

.testimonial-stars {
    font-size: 1.25rem;
    color: var(--gold-400);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    color: var(--black-900);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.author-location {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--black-900);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.2), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 10px;
    color: var(--gold-400);
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

a.contact-value:hover {
    color: var(--gold-400);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-700);
    border-radius: 10px;
    color: var(--gray-400);
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background: var(--gold-gradient);
    color: var(--black-900);
    transform: translateY(-4px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--black-800);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-400);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--black-700);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-400);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--black-700);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 40px;
    background: var(--black-800);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: auto;
    width: 180px;
    max-height: 100px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--gray-500);
    max-width: 280px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--black-800);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        padding: 40px;
        transition: var(--transition-medium);
        border-left: 1px solid rgba(201, 162, 39, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

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

    .hero-stats {
        gap: 24px;
    }

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

    .products-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 28px;
    }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.gold-shimmer {
    background: var(--gold-shine);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

/* Smooth scroll offset for fixed nav */
section[id] {
    scroll-margin-top: 100px;
}

/* Selection styling */
::selection {
    background: var(--gold-400);
    color: var(--black-900);
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--gold-400);
    outline-offset: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   PRODUCT CARDS - ENHANCED
   ============================================ */
.product-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.product-card:hover .product-hover-overlay {
    opacity: 1;
}

.view-product {
    padding: 12px 24px;
    background: var(--gold-gradient);
    color: var(--black-900);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.product-card:hover .view-product {
    transform: translateY(0);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-from {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-400);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    padding: 100px 0 20px;
    background: var(--black-900);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
}

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

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

.breadcrumb-separator {
    color: var(--gray-600);
}

.breadcrumb-current {
    color: var(--gray-300);
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-page {
    background: var(--black-900);
}

.product-section {
    padding: 40px 0 80px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    position: relative;
    background: var(--black-800);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.main-image {
    width: 100%;
    height: auto;
    cursor: zoom-in;
    transition: var(--transition-medium);
}

.gallery-main:hover .main-image {
    transform: scale(1.02);
}

.gallery-zoom {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-zoom:hover {
    background: var(--gold-gradient);
    color: var(--black-900);
}

.gallery-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: var(--gold-gradient);
    color: var(--black-900);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
}

.gallery-badge.badge-new {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.thumb {
    position: relative;
    aspect-ratio: 1;
    background: var(--black-800);
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

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

.thumb:hover {
    border-color: rgba(201, 162, 39, 0.5);
}

.thumb.active {
    border-color: var(--gold-400);
}

/* Product Details */
.product-details {
    padding: 20px 0;
}

.product-header {
    margin-bottom: 24px;
}

.product-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-400);
    margin-bottom: 12px;
}

.product-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.product-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
}

.product-price-display {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-label {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.price-main {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-description-full {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: 32px;
}

/* Product Options */
.product-options {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-options,
.frame-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.size-option,
.frame-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px;
    background: var(--black-800);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.size-option:hover,
.frame-option:hover {
    border-color: rgba(201, 162, 39, 0.5);
    background: var(--black-700);
}

.size-option.active,
.frame-option.active {
    border-color: var(--gold-400);
    background: rgba(201, 162, 39, 0.1);
}

.size-name,
.frame-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.size-dimensions {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.frame-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-400);
}

/* Selected Price Box */
.selected-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    margin-bottom: 24px;
}

.selected-config {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-300);
}

.config-separator {
    color: var(--gold-400);
}

.final-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-400);
}

/* CTA */
.product-actions {
    margin-bottom: 32px;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1rem;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 12px;
}

/* Product Features */
.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: var(--black-800);
    border-radius: 12px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--gray-300);
}

.feature-item svg {
    color: var(--gold-400);
    flex-shrink: 0;
}

/* Shipping Info */
.shipping-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
    background: var(--black-800);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.shipping-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.shipping-item svg {
    color: var(--gray-500);
    flex-shrink: 0;
}

/* ============================================
   RELATED PRODUCTS
   ============================================ */
.related-products {
    padding: 80px 0;
    background: var(--black-800);
}

.related-products .section-header {
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    display: block;
    background: var(--black-700);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-medium);
}

.related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.3);
}

.related-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.related-info {
    padding: 20px;
}

.related-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.related-info p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.related-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-400);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold-gradient);
    color: var(--black-900);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

/* ============================================
   FOOTER DISCLAIMER
   ============================================ */
.footer-disclaimer {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 8px;
}

/* ============================================
   PRODUCT PAGE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-gallery {
        position: relative;
        top: 0;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(6, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .size-options,
    .frame-options {
        grid-template-columns: 1fr;
    }

    .selected-price-box {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-title {
        font-size: 1.75rem;
    }

    .price-main {
        font-size: 2rem;
    }

    .btn-large {
        padding: 16px 24px;
    }
}

/* ============================================
   CART SYSTEM STYLES
   ============================================ */

/* Cart Icon in Nav */
.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    margin-left: 16px;
}

.cart-icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: var(--white);
    transition: var(--transition-fast);
}

.cart-icon-wrapper:hover svg {
    color: var(--gold-400);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    color: var(--black-900);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    padding: 0 4px;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
}

.cart-drawer.open {
    pointer-events: all;
}

.cart-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: var(--transition-medium);
}

.cart-drawer.open .cart-drawer-overlay {
    opacity: 1;
}

.cart-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: var(--black-800);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: var(--transition-medium);
    border-left: 1px solid rgba(201, 162, 39, 0.2);
}

.cart-drawer.open .cart-drawer-content {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-drawer-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.cart-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition-fast);
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-empty {
    text-align: center;
    color: var(--gray-500);
    padding: 40px 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--black-700);
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.cart-item-variant {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.cart-item-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-400);
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--black-700);
    border-radius: 6px;
    padding: 4px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--gray-400);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 4px;
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.cart-item-quantity span {
    min-width: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--white);
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--gray-500);
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cart-item-remove:hover {
    color: #ef4444;
}

.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--black-900);
}

.cart-discount-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.2), rgba(34, 139, 34, 0.1));
    border: 1px solid rgba(34, 139, 34, 0.4);
    border-radius: 8px;
    margin-bottom: 16px;
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 600;
}

.cart-discount-banner svg {
    stroke: #4ade80;
    flex-shrink: 0;
}

.cart-totals {
    margin-bottom: 16px;
}

.cart-subtotal,
.cart-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--gray-400);
}

.cart-discount {
    color: #4ade80;
}

.cart-discount-amount {
    color: #4ade80;
    font-weight: 500;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.cart-total span:first-child {
    color: var(--gray-400);
}

.cart-total-amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-400);
}

.cart-checkout-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
}

.cart-checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Cart Notification Toast */
.cart-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--black-800);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    box-shadow: var(--shadow-strong);
    color: var(--white);
    font-size: 0.9rem;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-medium);
    z-index: 3000;
}

.cart-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.cart-notification svg {
    color: #22c55e;
    flex-shrink: 0;
}

/* Add to Cart Button Styles */
.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    background: var(--gold-gradient);
    color: var(--black-900);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-add-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-add-cart svg {
    width: 20px;
    height: 20px;
}

/* Cart Responsive */
@media (max-width: 480px) {
    .cart-drawer-content {
        max-width: 100%;
    }

    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 12px;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cart-notification {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}
