/* ==================== */
/* RESET & BASE STYLES */
/* ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --dark-black: #000000;
    --light-black: #1a1a1a;
    --darker-black: #080808;
    --gold: #d4af37;
    --light-gold: #e6c567;
    --white: #ffffff;
    --off-white: #f8f8f8;
    --gray: #888888;
    --light-gray: #aaaaaa;
    --dark-gray: #333333;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ==================== */
/* TYPOGRAPHY */
/* ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

h1 {
    font-size: 3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    position: relative;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

/* ==================== */
/* LUXURY ELEMENTS */
/* ==================== */
.gold-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 15px auto 30px;
    border-radius: 2px;
}

.luxury-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.luxury-badge:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.luxury-badge:hover:before {
    left: 100%;
}

.luxury-button {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.luxury-button:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.luxury-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.luxury-button:hover:before {
    left: 100%;
}

.luxury-card {
    position: relative;
    overflow: hidden;
}

.luxury-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxury-card:hover:before {
    opacity: 1;
}

.gold-accent {
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
    margin: 1rem auto 0;
}

.luxury-card:hover .gold-accent {
    width: 50px;
}

.luxury-header {
    text-align: center;
    margin-bottom: 2rem;
}

.luxury-header h2 {
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.subtitle {
    color: var(--light-gray);
    font-size: 1.1rem;
    font-style: italic;
}

/* ==================== */
/* HEADER */
/* ==================== */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 30px;
}

.logo h1 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 0;
    background: linear-gradient(to right, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 300;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
}

.nav a:hover {
    color: var(--gold);
}

.nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav a:hover:after {
    width: 100%;
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="200" height="200" fill="%231a1a1a"/><path d="M0 100 L200 100 M100 0 L100 200" stroke="%232a2a2a" stroke-width="1"/></svg>');
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    margin-top: 85px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 60%, var(--black) 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    color: var(--light-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== */
/* CATEGORY HERO */
/* ==================== */
.category-hero {
    height: 60vh;
    margin-top: 85px;
}

.category-hero .hero-title {
    font-size: 3.5rem;
}

/* ==================== */
/* SECTIONS */
/* ==================== */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

/* ==================== */
/* CATEGORIES */
/* ==================== */
.categories {
    background: linear-gradient(to bottom, var(--black), var(--darker-black));
    position: relative;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.category-card {
    background: rgba(20, 20, 20, 0.8);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-15px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.category-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.category-card p {
    color: var(--light-gray);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ==================== */
/* PRODUCTS */
/* ==================== */
.featured-products {
    background: var(--black);
}

.category-products {
    padding: 4rem 0;
    background: var(--black);
}

.category-products .section-title {
    font-size: 2.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.product-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.luxury-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    z-index: 2;
}

.product-info {
    padding: 2rem;
}

.product-description {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

.rating {
    color: var(--gold);
    font-size: 1.2rem;
}

.buy-button {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 1.2rem;
    text-align: center;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.buy-button:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.buy-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.buy-button:hover:before {
    left: 100%;
}

.no-products {
    text-align: center;
    grid-column: 1 / -1;
    padding: 3rem;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.no-products h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* ==================== */
/* COLLECTIONS */
/* ==================== */
.collections {
    background: linear-gradient(to bottom, var(--darker-black), var(--black));
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.collection-card {
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.collection-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.collection-image {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    transition: all 0.4s ease;
}

.collection-card:hover .collection-image {
    transform: scale(1.05);
}

.collection-image h3 {
    color: white;
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.collection-content {
    background: rgba(20, 20, 20, 0.9);
    padding: 2rem;
    text-align: center;
}

.collection-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* ==================== */
/* ABOUT */
/* ==================== */
.about {
    background: linear-gradient(135deg, var(--darker-black), var(--black));
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--gold);
    margin: 3rem 0;
    padding: 2rem;
    border-left: none;
    text-align: center;
    position: relative;
}

blockquote:before, blockquote:after {
    content: '"';
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.3);
    position: absolute;
}

blockquote:before {
    top: -20px;
    left: -20px;
}

blockquote:after {
    bottom: -40px;
    right: -20px;
}

.signature {
    color: var(--gold);
    font-style: italic;
    margin-top: 2rem;
    font-size: 1.2rem;
}

/* ==================== */
/* FOOTER */
/* ==================== */
.footer {
    background: var(--dark-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section a {
    display: block;
    color: var(--light-gray);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-section a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.affiliate-note {
    font-size: 0.85rem;
    color: #666666;
    margin-top: 0.8rem;
    font-style: italic;
}

/* ==================== */
/* ADMIN MODAL */
/* ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, var(--light-black), var(--dark-black));
    margin: 5% auto;
    padding: 3rem;
    border: 1px solid var(--gold);
    width: 90%;
    max-width: 700px;
    position: relative;
    border-radius: 0;
    color: var(--off-white);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.close {
    color: var(--gold);
    float: right;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 25px;
    top: 20px;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--white);
    transform: rotate(90deg);
}

.admin-dashboard {
    max-width: 95%;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

.admin-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.admin-section:last-child {
    border-bottom: none;
}

.admin-section h3 {
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--gold);
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    background: rgba(40, 40, 40, 0.8);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.delete-product {
    background: #ff4444;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #ff4444;
}

.delete-product:hover {
    background: transparent;
    color: #ff4444;
    transform: translateY(-2px);
}

.admin-product-card {
    background: rgba(30, 30, 30, 0.7);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.admin-product-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.admin-product-card h4 {
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.admin-product-info {
    font-size: 0.95rem;
    color: var(--light-gray);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* ==================== */
/* MESSAGES */
/* ==================== */
.message {
    padding: 1.2rem;
    margin: 1.5rem 0;
    border-radius: 0;
    text-align: center;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
}

.error {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
}

/* ==================== */
/* ANIMATIONS */
/* ==================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== */
/* RESPONSIVE DESIGN */
/* ==================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .category-hero .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .nav {
        gap: 1.5rem;
    }
    
    .hero {
        margin-top: 140px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 15% 5%;
        padding: 2rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .category-hero {
        height: 50vh;
    }
    
    .category-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .category-products .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .close {
        font-size: 28px;
        right: 15px;
        top: 15px;
    }
    
    .category-hero .hero-title {
        font-size: 2rem;
    }
}

/* ==================== */
/* UTILITY CLASSES */
/* ==================== */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.text-white {
    color: var(--white);
}

.text-gray {
    color: var(--light-gray);
}

.bg-black {
    background: var(--black);
}

.bg-dark {
    background: var(--darker-black);
}

.margin-top {
    margin-top: 3rem;
}

.margin-bottom {
    margin-bottom: 3rem;
}

.padding-top {
    padding-top: 3rem;
}

.padding-bottom {
    padding-bottom: 3rem;
}

/* ==================== */
/* HOVER EFFECTS */
/* ==================== */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

/* ==================== */
/* CATEGORY LINKS */
/* ==================== */
.categories-grid a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
}

.categories-grid a:hover {
    transform: translateY(-15px);
    text-decoration: none;
}