/* Reset e Cores */
:root {
    --deep-red: #8b0000;
    --crimson: #dc143c;
    --burgundy: #5c0a0a;
    --black: #0a0a0a;
    --charcoal: #1a1a1a;
    --white: #ffffff;
    --gold: #d4af37;
    --rose-gold: #b76e79;
    --gradient-passion: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
    --gradient-luxury: linear-gradient(135deg, #0a0a0a 0%, #5c0a0a 100%);
    --shadow-elegant: 0 10px 40px rgba(139, 0, 0, 0.3);
    --shadow-hover: 0 20px 60px rgba(139, 0, 0, 0.4);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: #e8e8e8;
    line-height: 1.7;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Disclaimer Bar */
.disclaimer-bar {
    background-color: var(--charcoal);
    color: #999;
    text-align: center;
    padding: 8px 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
}

/* Header */
.main-header {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px 0;
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-passion) 1;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(220, 20, 60, 0.3);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo a {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: var(--white);
    letter-spacing: 3px;
    font-weight: 700;
    transition: transform 0.3s ease;
    display: inline-block;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo span {
    background: var(--gradient-passion);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-nav a {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #ccc;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 50%;
    background: var(--gradient-passion);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

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

.main-nav a:hover {
    color: var(--crimson);
}

.header-actions a {
    margin-left: 25px;
    font-size: 20px;
    color: var(--crimson);
    transition: transform 0.3s ease;
    display: inline-block;
}

.header-actions a:hover {
    transform: scale(1.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    background: var(--gradient-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(220, 20, 60, 0.2) 0%, transparent 70%),
                radial-gradient(circle at 70% 50%, rgba(139, 0, 0, 0.2) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out;
}

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

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 72px;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 0 0 40px rgba(220, 20, 60, 0.8);
    font-weight: 900;
    line-height: 1.1;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 50px;
    color: #ddd;
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    background: var(--gradient-passion);
    color: var(--white);
    padding: 20px 50px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-elegant);
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* Intro */
.intro-section {
    padding: 120px 0;
    text-align: center;
    background: var(--charcoal);
}

.intro-section h2 {
    font-family: 'Cinzel', serif;
    background: var(--gradient-passion);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 52px;
    margin-bottom: 40px;
    font-weight: 900;
}

.intro-section p {
    max-width: 850px;
    margin: 0 auto 30px;
    font-size: 20px;
    line-height: 1.9;
    color: #ccc;
}

/* Categories */
.categories-section {
    padding: 100px 0;
    background: var(--black);
}

.section-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 48px;
    margin-bottom: 70px;
    color: var(--white);
    font-weight: 900;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: var(--gradient-passion);
    margin: 30px auto 0;
    border-radius: 10px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
}

.category-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.5s ease;
}

.category-card:hover {
    border-color: var(--crimson);
    transform: scale(1.02);
}

.cat-img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.bg-lace { 
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}
.bg-silk { 
    background: linear-gradient(135deg, #3a1515 0%, #2c0a0a 100%);
}
.bg-leather { 
    background: linear-gradient(135deg, #1a0a0a 0%, #0a0505 100%);
}

.category-card:hover .cat-img {
    transform: scale(1.15);
}

.cat-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
    text-align: center;
}

.cat-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
}

.cat-info a {
    color: var(--crimson);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--crimson);
}

.cat-info a:hover {
    color: var(--white);
    border-color: var(--white);
}

/* Featured Products */
.featured-products {
    padding: 120px 0;
    background: var(--charcoal);
}

.product-carousel {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding-bottom: 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--crimson) var(--charcoal);
}

.product-item {
    flex: 0 0 350px;
    background: var(--black);
    padding: 0;
    text-align: center;
    border: 2px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-item:hover {
    border-color: var(--crimson);
    transform: translateY(-10px);
    box-shadow: var(--shadow-elegant);
}

.prod-img {
    height: 320px;
    margin-bottom: 0;
}

.bg-dark-red { background: var(--gradient-passion); }
.bg-black { background: linear-gradient(135deg, #222 0%, #0a0a0a 100%); }
.bg-red { background: var(--gradient-luxury); }

.product-item h5 {
    font-size: 20px;
    margin: 25px 20px 15px;
    color: var(--white);
    font-weight: 700;
}

.product-item .price {
    display: block;
    color: var(--crimson);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
}

.add-cart {
    background: var(--gradient-passion);
    border: none;
    color: var(--white);
    padding: 14px 35px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    margin: 0 20px 25px;
    transition: all 0.3s ease;
}

.add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.5);
}

/* VIP Club */
.vip-club {
    padding: 120px 0;
    text-align: center;
    background: var(--gradient-passion);
    position: relative;
    overflow: hidden;
}

.vip-club::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="stars" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23stars)"/></svg>');
}

.vip-club h2 {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 900;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.vip-club p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.vip-form {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.vip-form input {
    padding: 20px 30px;
    width: 400px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--black);
    border-radius: 50px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.vip-form button {
    padding: 20px 45px;
    background: var(--white);
    color: var(--crimson);
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.vip-form button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    background: linear-gradient(135deg, #050505 0%, #0a0a0a 100%);
    font-size: 15px;
    color: #888;
    border-top: 2px solid var(--crimson);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 50px;
}

.col-brand h4 {
    color: var(--white);
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.col-brand p {
    color: #999;
    line-height: 1.8;
}

.col-links h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.col-links a {
    display: block;
    margin-bottom: 12px;
    color: #aaa;
    transition: all 0.3s ease;
}

.col-links a:hover {
    color: var(--crimson);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
    font-size: 13px;
    color: #666;
}
