/* ============================================
   Mayra's Boutique & Fajas - Premium Stylesheet
   Colors: Black, Gold (#D4AF37), Rich Pink (#D4728C)
   Font Strategy:
     1. Playfair Display (serif) → "MAYRA'S" brand headings
     2. Great Vibes (script)     → "Boutique & Fajas" accents
     3. Montserrat (sans-serif)  → Body, nav, utility text
   ============================================ */

:root {
    --black: #000000;
    --dark: #0a0a0a;
    --dark-surface: #111111;
    --dark-card: #1a1a1a;
    --gold: #D4AF37;
    --gold-light: #E8C84A;
    --gold-dark: #B8960E;
    --pink: #D4728C;
    --pink-light: #E08BA3;
    --pink-dark: #B85A74;
    --white: #ffffff;
    --text: #e0e0e0;
    --text-muted: #999999;
    --font-heading: 'Playfair Display', 'Didot', 'Bodoni MT', serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white);
}

/* Script accent font — used for "Boutique & Fajas" signature elements */
.script-accent {
    font-family: var(--font-script);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Brand serif — reinforces the editorial feel on the "MAYRA'S" name */
.brand-serif {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold { color: var(--gold); }
.pink { color: var(--pink); }

/* ============================================
   Preloader
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-text .script-accent {
    display: block;
    font-size: 1.4rem;
    text-transform: none;
    letter-spacing: 1px;
    color: var(--pink);
    margin-top: 5px;
}

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

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--pink));
    border-radius: 2px;
    animation: preloaderBar 1.5s ease-in-out forwards;
}

@keyframes preloaderBar {
    to { width: 100%; }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 30px rgba(212, 175, 55, 0.1);
    border-bottom-color: rgba(212, 175, 55, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.logo-accent {
    font-family: var(--font-script);
    color: var(--pink);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

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

.nav-links a {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--gold));
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--pink);
}

.nav-cta {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 25px;
    font-weight: 500 !important;
    box-shadow: 0 4px 15px rgba(212, 114, 140, 0.3);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 114, 140, 0.4);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

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

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

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    animation: heroZoom 8s ease-in-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    animation: float linear infinite;
    opacity: 0;
}

@keyframes float {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid var(--gold);
    border-radius: 30px;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: fadeInDown 1s ease 0.3s both;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-brand {
    display: block;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.hero-title-script {
    display: block;
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--pink);
    margin-top: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: none;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--pink);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.1s both;
}

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.3s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.hero-feature i {
    color: var(--gold);
    font-size: 0.9rem;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll a {
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.hero-scroll a:hover {
    opacity: 1;
}

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 35px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(212, 114, 140, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 114, 140, 0.5);
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.85rem;
    background: var(--pink);
    color: var(--white);
    border-radius: 25px;
}

.btn-small:hover {
    background: var(--pink-light);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
    justify-content: center;
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--dark-surface);
}

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

.section-tag {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 10px;
}

.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--gold));
    margin: 15px auto 20px;
    border-radius: 3px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.section-cta p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* ============================================
   About Section
   ============================================ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text);
}

.about-lead {
    font-size: 1.2rem;
    color: var(--white) !important;
    font-weight: 300;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

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

.contact-info {
    padding: 25px;
    background: var(--dark-surface);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--pink);
    font-size: 0.95rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: var(--pink);
}

.contact-item a:hover {
    color: var(--pink-light);
}

.about-image {
    position: relative;
}

.image-frame {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.about-image-accent {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--pink);
    border-radius: 15px;
    z-index: 1;
    opacity: 0.3;
}

.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* ============================================
   Product Grid
   ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

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

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

.product-card {
    background: var(--dark-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 114, 140, 0.4);
    box-shadow: 0 15px 40px rgba(212, 114, 140, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.6s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 14px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    z-index: 2;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--gold);
}

.product-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Placeholder cards */
.placeholder-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px;
    min-height: 300px;
    background: linear-gradient(135deg, var(--dark-card), var(--dark-surface));
}

.placeholder-img i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.4;
}

.placeholder-img span {
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.6;
}

.dress-placeholder {
    min-height: 380px;
    background: linear-gradient(135deg, #1a1020, #201525, #1a1020);
    border: 2px dashed rgba(212, 175, 55, 0.15);
}

.faja-placeholder {
    min-height: 300px;
    background: linear-gradient(135deg, #1a1518, #201820, #1a1518);
}

.placeholder-card {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.placeholder-card:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

/* ============================================
   Category Cards (Lashes & Contacts)
   ============================================ */
.category-card {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 40px 35px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    border-color: var(--pink);
    box-shadow: 0 15px 40px rgba(212, 114, 140, 0.15);
    transform: translateY(-8px);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 114, 140, 0.2), rgba(212, 175, 55, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.category-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i {
    color: var(--pink);
    font-size: 0.8rem;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(212, 114, 140, 0.1), rgba(212, 175, 55, 0.05)),
        var(--dark);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Order Form
   ============================================ */
.order-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--dark-card);
    border-radius: 20px;
    padding: 45px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.order-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--gold), var(--pink));
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 10px;
}

.form-section h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.form-section h3 i {
    margin-right: 8px;
    color: var(--pink);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-row:has(.form-group:nth-child(3)) {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 20px rgba(212, 114, 140, 0.15);
    background: rgba(17, 17, 17, 0.8);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4728C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

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

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text);
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.radio-label:has(input:checked) {
    border-color: var(--pink);
    background: rgba(212, 114, 140, 0.1);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--pink);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: var(--pink);
    border-radius: 50%;
}

/* File Upload */
.file-upload {
    position: relative;
    border: 2px dashed rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(17, 17, 17, 0.5);
}

.file-upload:hover {
    border-color: var(--pink);
    background: rgba(212, 114, 140, 0.05);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.file-upload-content i {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.6;
}

.file-upload-content span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.file-upload-content small {
    color: var(--text-muted);
    opacity: 0.6;
    font-size: 0.75rem;
}

.file-preview {
    position: relative;
    display: inline-block;
}

.file-preview img {
    max-height: 150px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.file-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--pink);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: background 0.3s ease;
}

.file-remove:hover {
    background: var(--pink-dark);
}

.form-success {
    text-align: center;
    padding: 50px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 114, 140, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-icon i {
    font-size: 2.5rem;
    color: var(--gold);
}

.form-success h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.form-success p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
}

.form-success a {
    color: var(--pink);
    font-weight: 500;
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
    position: relative;
}

.map-section iframe {
    display: block;
    filter: grayscale(100%) brightness(0.4) contrast(1.2);
    transition: filter 0.3s ease;
}

.map-section:hover iframe {
    filter: grayscale(50%) brightness(0.6);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-left: 60px;
    pointer-events: none;
}

.map-info {
    background: rgba(0, 0, 0, 0.9);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.map-info h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.map-info h3 i {
    color: var(--pink);
    margin-right: 8px;
}

.map-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-surface);
    padding: 70px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-logo .script-accent {
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0.5px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-contact h4,
.footer-hours h4,
.footer-links h4 {
    color: var(--pink);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-contact p,
.footer-hours p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-contact i {
    color: var(--gold);
    margin-right: 6px;
}

.footer-contact a {
    color: var(--pink);
}

.footer-contact a:hover {
    color: var(--pink-light);
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--pink);
    padding-left: 5px;
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(212, 114, 140, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 114, 140, 0.5);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-title-script {
        font-size: 1.8rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-accent {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .map-overlay {
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title-script {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .hero-features {
        gap: 15px;
    }

    .hero-feature {
        font-size: 0.75rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-grid,
    .product-grid.two-col,
    .product-grid.three-col {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .product-img {
        height: 420px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row:has(.form-group:nth-child(3)) {
        grid-template-columns: 1fr;
    }

    .order-form-container {
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .radio-group {
        flex-direction: column;
        gap: 10px;
    }

    .about-stats {
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .map-overlay {
        padding: 15px;
        align-items: flex-end;
        padding-bottom: 20px;
    }

    .map-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-title-script {
        font-size: 1.2rem;
    }

    .hero-brand {
        letter-spacing: 3px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }

    .about-stats {
        gap: 20px;
    }

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