/* ============================================
   Dress Haute Couturee - Luxury Bridal Theme
   ============================================ */

:root {
    --primary: #1a1a1a;
    --secondary: #c9a87c; /* Soft gold */
    --accent: #f8f1e9;
    --text: #333;
    --text-muted: #777;
    --border: #e8e0d5;
    --white: #ffffff;
    --font-script: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', system-ui, sans-serif;
}

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

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-script);
    font-weight: 600;
    letter-spacing: 0.02em;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--secondary);
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}

.top-bar a {
    color: rgba(255,255,255,0.85);
}

.top-bar a:hover {
    color: var(--secondary);
}

/* Brand */
.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.brand-script {
    font-family: var(--font-script);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.05em;
}

.brand-main {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--secondary);
}

/* Navbar */
.navbar {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary) !important;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary) !important;
}

.nav-icon {
    color: var(--primary);
    transition: color 0.2s;
}

.nav-icon:hover {
    color: var(--secondary);
}

/* Hero */
.hero {
    position: relative;
    height: 85vh;
    min-height: 520px;
    background: linear-gradient(135deg, #f8f1e9 0%, #ebe3d6 50%, #f5efe6 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 480px;
}

/* Buttons */
.btn-primary-custom {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.85rem 2.2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background: var(--secondary);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.85rem 2.2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: white;
}

/* Section */
.section-title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

/* Product Card */
.product-card {
    border: none;
    background: transparent;
    transition: transform 0.3s;
    height: 100%;
}

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

.product-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--accent);
}

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

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

.product-card .badge-custom {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.7rem;
    text-transform: uppercase;
}

.product-card .badge-rental {
    background: var(--secondary);
}

.product-card .card-body {
    padding: 1.2rem 0.2rem;
    text-align: center;
}

.product-card .card-title {
    font-family: var(--font-script);
    font-size: 1.35rem;
    margin-bottom: 0.3rem;
}

.product-card .card-price {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-card .card-price strong {
    color: var(--primary);
    font-weight: 600;
}

/* Categories Grid */
.category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
}

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

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

.category-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.category-card .overlay h3 {
    color: white;
    font-size: 1.6rem;
    margin: 0;
}

/* Footer */
.footer {
    background: #f9f6f2;
    border-top: 1px solid var(--border);
}

.footer-brand {
    font-family: var(--font-script);
    font-size: 1.5rem;
}

.footer-title {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    color: var(--primary);
}

.footer-links a,
.footer-contact li {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

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

.footer-contact i {
    width: 20px;
    color: var(--secondary);
}

.social-links a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--primary);
    margin-right: 0.5rem;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white !important;
}

/* Forms */
.form-control, .form-select {
    border-radius: 0;
    border-color: var(--border);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.15rem rgba(201, 168, 124, 0.25);
}

.form-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Product Detail */
.product-gallery img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: var(--accent);
}

.product-detail-title {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.product-detail-price {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Admin Sidebar */
.admin-sidebar {
    min-height: 100vh;
    background: var(--primary);
    color: white;
}

.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.7) !important;
    padding: 0.7rem 1.2rem !important;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: white !important;
    background: rgba(255,255,255,0.1);
}

/* Utility */
.text-gold {
    color: var(--secondary) !important;
}

.bg-soft {
    background: var(--accent);
}

.letter-spacing {
    letter-spacing: 0.15em;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 420px;
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
}