* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.page-wrapper {
    position: relative;
    min-height: 100vh;
}

.background-pattern {
    position: fixed;
    inset: 0;
    opacity: 0.03;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.2), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 1.25rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #d4af37;
}

.nav-brand {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, #d4af37, #f4e4b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-center {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.3s;
}

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

.nav-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
    transition: transform 0.3s;
}

.icon-btn:hover {
    transform: scale(1.1);
}

.icon-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #d4af37;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #d4af37;
    color: #000;
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-season {
    color: #d4af37;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.125rem;
    color: #999;
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #d4af37, #f4e4b6);
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.hero-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border: 1px solid #d4af37;
}

.badge-text {
    color: #d4af37;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    text-transform: uppercase;
}

/* Featured Section */
.featured-section {
    padding: 6rem 4rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 3rem;
}

.view-all {
    color: #d4af37;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    transition: transform 0.3s;
    display: inline-block;
}

.view-all:hover {
    transform: translateX(5px);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    cursor: pointer;
    transition: transform 0.3s;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #111;
}

.product-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.badge.new {
    background: #d4af37;
    color: #000;
}

.badge.exclusive {
    background: #fff;
    color: #000;
}

.badge.limited {
    background: #000;
    color: #d4af37;
    border: 1px solid #d4af37;
}

.badge.ar-badge {
    background: rgba(0, 0, 0, 0.8);
    color: #d4af37;
    border: 1px solid #d4af37;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.quick-view,
.add-to-cart {
    padding: 0.75rem 2rem;
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    cursor: pointer;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
    font-weight: 600;
}

.quick-view:hover,
.add-to-cart:hover {
    background: #d4af37;
    color: #000;
}

.product-info {
    text-align: center;
}

.product-name {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    font-weight: 400;
}

.product-category {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-price {
    color: #d4af37;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Collections */
.collections-section {
    padding: 6rem 4rem;
    background: rgba(212, 175, 55, 0.02);
}

.collections-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.collection-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.collection-card.large img {
    height: 600px;
}

.collection-card:not(.large) img {
    aspect-ratio: 1;
}

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

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.collection-overlay h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.collection-link {
    color: #d4af37;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    transition: transform 0.3s;
    display: inline-block;
}

.collection-card:hover .collection-link {
    transform: translateX(10px);
}

/* AR Feature */
.ar-feature-section {
    padding: 8rem 4rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
}

.ar-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.feature-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.feature-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-description {
    font-size: 1.125rem;
    color: #999;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-list li {
    padding: 0.75rem 0;
    color: #ccc;
    font-size: 1.05rem;
}

.ar-demo-box {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ar-viewfinder {
    width: 60%;
    height: 60%;
    border: 3px dashed #d4af37;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

.ar-label {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

/* About */
.about-section {
    padding: 8rem 4rem;
}

.about-content.centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.25rem;
    color: #999;
    margin-bottom: 4rem;
    line-height: 1.8;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.stat h3 {
    font-size: 4rem;
    font-weight: 300;
    background: linear-gradient(135deg, #d4af37, #f4e4b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 4rem;
    background: rgba(0, 0, 0, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37, #f4e4b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.social-icon:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.footer-col h4 {
    color: #d4af37;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d4af37;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    color: #fff;
    font-size: 0.875rem;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: #d4af37;
    border: none;
    color: #000;
    cursor: pointer;
    font-weight: 700;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    color: #666;
    font-size: 0.875rem;
}

/* Shop Page */
.shop-header {
    padding: 6rem 4rem 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.shop-header h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.shop-header p {
    color: #999;
    font-size: 1.125rem;
}

.shop-section {
    padding: 4rem;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
}

.shop-filters {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 2.5rem;
}

.filter-group h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.filter-option {
    display: block;
    padding: 0.5rem 0;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.filter-option:hover {
    color: #d4af37;
}

.filter-option input {
    margin-right: 0.5rem;
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.results-count {
    color: #999;
    font-size: 0.875rem;
}

.sort-select {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    color: #fff;
    cursor: pointer;
}

.shop-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* AR Modal */
.ar-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.ar-modal.active {
    display: flex;
}

.ar-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 80vh;
}

.ar-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: transparent;
    border: none;
    color: #d4af37;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10;
}

.ar-viewer {
    width: 100%;
    height: 100%;
    background: #111;
    border: 2px solid #d4af37;
}

.ar-camera-view {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ar-overlay-ui {
    text-align: center;
}

.ar-controls {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.ar-control {
    width: 4rem;
    height: 4rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.ar-control:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.ar-instruction {
    color: #d4af37;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-content,
    .ar-feature-grid {
        grid-template-columns: 1fr;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .products-grid,
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-center {
        display: none;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .stats-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
