/* NLAhome - Luxury MUA & E-Commerce Styling */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary: #1A365D; /* Imperial Dark Navy Blue */
    --primary-hover: #0F2540;
    --primary-light: rgba(26, 54, 93, 0.12);
    --bg-dark: #0D131E; /* Midnight Deep Navy Charcoal */
    --bg-card-dark: #151C28;
    --bg-light: #F7FAFC; /* Sleek Ice-Cream White */
    --bg-card-light: #FFFFFF;
    --text-dark: #E2E8F0;
    --text-muted-dark: #94A3B8;
    --text-light: #1E293B;
    --text-muted-light: #64748B;
    
    /* Active theme variables (will be controlled or fallback) */
    --bg: var(--bg-light);
    --bg-card: var(--bg-card-light);
    --text: var(--text-light);
    --text-muted: var(--text-muted-light);
    --border: rgba(26, 54, 93, 0.18);
    --shadow: 0 10px 30px rgba(26, 54, 93, 0.06);
    
    --success: #10B981;
    --success-light: #ECFDF5;
    --danger: #EF4444;
    --danger-light: #FEF2F2;
    --warning: #F59E0B;
    --warning-light: #FEF3C7;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode class */
body.dark-theme {
    --bg: var(--bg-dark);
    --bg-card: var(--bg-card-dark);
    --text: var(--text-dark);
    --text-muted: var(--text-muted-dark);
    --border: rgba(26, 54, 93, 0.15);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    transition: var(--transition);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Navbar */
header {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.brand-logo {
    height: 60px;
    width: auto;
    border-radius: 6px;
    background-color: #FFFFFF;
    padding: 3px;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.08);
    transition: var(--transition);
}

.logo-container:hover .brand-logo {
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0 6px 18px rgba(26, 54, 93, 0.15);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.logo-text span {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    display: block;
    letter-spacing: 4px;
    margin-top: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

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

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

.btn-icon {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    font-size: 1.2rem;
    position: relative;
    transition: var(--transition);
    padding: 5px;
}

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

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Theme Toggle Button */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary);
}

.theme-toggle:hover {
    background-color: var(--primary);
    color: white;
}

/* Button Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.2);
}

.btn-danger {
    background-color: var(--danger);
    color: white;
    border: 1px solid var(--danger);
}

.btn-danger:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}

/* Main Container Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(85vh - 75px);
    gap: 4rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

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

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-frame {
    border: 2px solid var(--primary);
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
    width: 85%;
    max-width: 450px;
}

.hero-image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    box-shadow: var(--shadow);
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: 20px;
    left: 20px;
    border: 1px solid var(--primary);
    z-index: -1;
    border-radius: 8px;
    opacity: 0.5;
}

/* Services / Packages Section */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 4rem auto 3rem;
}

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.15);
}

.service-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--bg-card);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--primary);
}

.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-name {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: auto;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

.service-price span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    font-weight: 400;
}

/* Booking Section */
.booking-section {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 4rem;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }
}

/* Interactive Calendar */
.calendar-wrapper {
    display: flex;
    flex-direction: column;
}

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

.calendar-month {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 1rem;
}

.calendar-day-name {
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary);
    padding: 8px 0;
    text-transform: uppercase;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background-color: var(--bg);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.calendar-day.empty {
    background-color: transparent;
    border-color: transparent;
    cursor: default;
}

.calendar-day:not(.empty):hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.day-number {
    font-weight: 500;
    font-size: 0.95rem;
}

.day-status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: block;
}

/* Availability Colors */
.day-available {
    background-color: var(--bg-card);
}

.day-available .day-status {
    background-color: var(--success);
}

.day-booked {
    background-color: rgba(198, 40, 40, 0.08) !important;
    border-color: rgba(198, 40, 40, 0.2) !important;
    color: var(--text-muted) !important;
}

.day-booked .day-status {
    background-color: var(--danger);
}

.day-blocked {
    background-color: rgba(0, 0, 0, 0.05) !important;
    border-color: var(--border) !important;
    opacity: 0.4;
    cursor: not-allowed !important;
}

.day-blocked .day-status {
    background-color: var(--text-muted);
}

.day-selected {
    background-color: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
    box-shadow: 0 5px 12px rgba(197, 168, 128, 0.4);
}

.day-selected .day-status {
    background-color: white !important;
}

.calendar-legend {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    margin-top: 1rem;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Time Slot Selector */
.slots-container {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.slots-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.slot-card {
    border: 1px solid var(--border);
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    background-color: var(--bg);
    font-size: 0.9rem;
    font-weight: 500;
}

.slot-card:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.slot-card.selected {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.slot-card.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background-color: rgba(0, 0, 0, 0.05);
}

/* Form Styles */
.form-card {
    background-color: var(--bg);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
}

.form-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background-color: var(--bg-card);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

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

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

/* Summary Box */
.summary-box {
    background-color: var(--primary-light);
    border: 1px dashed var(--primary);
    padding: 1.2rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.summary-row.total {
    font-weight: bold;
    border-top: 1px solid var(--primary);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    color: var(--primary);
    font-size: 1.05rem;
}

/* E-Commerce Shop Section */
.products-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.product-img {
    height: 220px;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.15rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    flex: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

/* Shopping Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: var(--bg-card);
    border-left: 1px solid var(--border);
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    z-index: 200;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

@media (max-width: 450px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-size: 1.3rem;
    font-weight: bold;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-item-price {
    color: var(--primary);
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 2px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty-btn {
    background-color: var(--bg);
    border: 1px solid var(--border);
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    background-color: var(--bg);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* Modals & Overlays */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 500px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    z-index: 180;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-light);
}

.modal-title {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: bold;
}

.modal-body {
    padding: 2rem;
    max-height: 65vh;
    overflow-y: auto;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Payment Gateway Mockup Style */
.payment-card-visual {
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.payment-card-visual::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.15);
    z-index: 1;
}

.payment-logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);
    z-index: 2;
    position: relative;
}

.payment-price {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    font-weight: bold;
    font-family: 'Outfit', sans-serif;
    z-index: 2;
    position: relative;
}

.payment-price span {
    font-size: 0.8rem;
    font-weight: normal;
    opacity: 0.6;
}

/* Admin Dashboard Layout */
.admin-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

.admin-sidebar {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    height: fit-content;
}

.admin-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-menu-item {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.admin-menu-item:hover, .admin-menu-item.active {
    background-color: var(--primary-light);
    color: var(--primary);
}

.admin-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

/* Tables styling */
.admin-table-container {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    text-align: left;
}

.admin-table th, .admin-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.admin-table tr:hover {
    background-color: var(--bg);
}

.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-paid {
    background-color: var(--success-light);
    color: var(--success);
}

.status-pending {
    background-color: var(--warning-light);
    color: var(--warning);
}

.status-cancelled {
    background-color: var(--danger-light);
    color: var(--danger);
}

/* Alert Boxes */
.alert {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background-color: var(--success-light);
    color: var(--success);
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.alert-danger {
    background-color: var(--danger-light);
    color: var(--danger);
    border: 1px solid rgba(198, 40, 40, 0.2);
}

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.d-none { display: none !important; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* Testimonials / Before-After Section */
.gallery-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.ba-slider-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.ba-card {
    max-width: 350px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ba-images {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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


.ba-info {
    padding: 1.25rem;
    text-align: center;
}

.ba-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.ba-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Footer styling */
footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
    transition: var(--transition);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

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

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: var(--transition);
}

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

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
}

/* ==========================================================================
   ADDITIONAL LUXURY ELEMENTS: WEDDING, ATTIRE, ATRIBUT & BOUQUET
   ========================================================================== */

.category-filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.6rem 1.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.35);
}

/* Attire styling */
.attire-tabs-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.attire-tab-btn {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.attire-tab-btn:hover,
.attire-tab-btn.active {
    color: var(--primary);
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.attire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.attire-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.attire-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.15);
}

.attire-img {
    height: 320px;
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
}

.attire-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.attire-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.attire-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.attire-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.attire-option-toggle {
    display: flex;
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2px;
    margin-bottom: 1.2rem;
    position: relative;
}

.attire-opt-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 18px;
    cursor: pointer;
    color: var(--text-muted);
    text-transform: uppercase;
    transition: var(--transition);
}

.attire-opt-btn.active {
    background-color: var(--primary);
    color: white;
}

.attire-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: auto;
}

.attire-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

.attire-price span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    font-weight: 400;
}

/* Accessories (Atribut) Sewa/Jual toggle styling */
.atribut-toggle-option {
    display: flex;
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px;
    margin-bottom: 1rem;
}

.atribut-opt-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 6px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    text-transform: uppercase;
}

.atribut-opt-btn.active {
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 2px;
}

/* Bouquet Coming Soon styling */
.coming-soon-card {
    background: linear-gradient(135deg, rgba(197, 168, 128, 0.08), rgba(252, 248, 245, 0.9));
    border: 1px solid var(--primary);
    border-radius: 16px;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto 3rem;
}

body.dark-theme .coming-soon-card {
    background: linear-gradient(135deg, rgba(197, 168, 128, 0.15), rgba(26, 26, 26, 0.9));
}

.coming-soon-badge {
    background-color: var(--primary);
    color: white;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 30px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.coming-soon-title {
    font-size: 2.8rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.coming-soon-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto 2rem;
}

.coming-soon-form {
    display: flex;
    max-width: 450px;
    margin: 0 auto;
    gap: 10px;
}

@media (max-width: 600px) {
    .coming-soon-form {
        flex-direction: column;
    }
}

/* ==========================================
   NAVIGATION DROPDOWN MENU (LUXURY THEME)
   ========================================== */
.nav-dropdown-wrapper {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    padding: 0.8rem 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    z-index: 1000;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.nav-dropdown-wrapper:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(5px);
}

.nav-dropdown li {
    width: 100%;
}

.nav-dropdown li a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    text-align: left;
}

.nav-dropdown li a::after {
    display: none;
}

.nav-dropdown li a:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    padding-left: 1.8rem;
}

/* Adjust dropdown trigger link hover behavior */
.nav-dropdown-wrapper:hover .dropdown-trigger {
    color: var(--primary);
}

.nav-dropdown-wrapper:hover .dropdown-trigger::after {
    width: 100%;
}

/* ==========================================
   NESTED & DOUBLE DROPDOWN STYLING
   ========================================== */
.nav-dropdown-wrapper-nested {
    position: relative;
}

.nav-dropdown-nested {
    position: absolute;
    top: 0;
    left: 100%;
    transform: translateX(10px);
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 0.8rem 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    z-index: 1100;
}

.nav-dropdown-wrapper-nested:hover .nav-dropdown-nested {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0px);
}

.nav-dropdown-nested li a:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    padding-left: 1.8rem !important;
}

.nav-dropdown-wrapper-double {
    position: relative;
}

.nav-dropdown-double {
    position: absolute;
    top: 0;
    left: 100%;
    transform: translateX(10px);
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    padding: 0.8rem 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    z-index: 1200;
}

.nav-dropdown-wrapper-double:hover .nav-dropdown-double {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0px);
}

.nav-dropdown-double li a:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    padding-left: 1.8rem !important;
}

/* ==========================================
   LUXURY TOGGLE SWITCH
   ========================================== */
.toggle-switch-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border);
    transition: .3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .toggle-slider {
    background-color: var(--primary);
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.toggle-label-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================
   DISCLAIMER BANNER
   ========================================== */
.disclaimer-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(220, 53, 69, 0.06);
    border-left: 4px solid var(--danger);
    padding: 1.2rem 1.5rem;
    border-radius: 6px;
    margin: 1.8rem 0;
    color: #c62828;
    font-size: 0.85rem;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.05);
}

body.dark-theme .disclaimer-banner {
    background-color: rgba(220, 53, 69, 0.12);
    color: #ff8a80;
}

.disclaimer-banner i {
    font-size: 1.8rem;
    color: var(--danger);
}

/* ==========================================
   PROMO FLYER BANNER
   ========================================== */
.promo-banner-container {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    padding: 0 2rem;
}

.promo-banner-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.promo-banner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.1);
}

.promo-banner-header {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.promo-banner-header i {
    color: #FFD700;
}

.promo-banner-content {
    width: 100%;
    max-height: 380px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.promo-banner-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.promo-banner-card:hover .promo-banner-content img {
    transform: scale(1.02);
}

/* ==========================================
   ATTIRE TAB DROPDOWN
   ========================================== */
.attire-tab-dropdown {
    position: relative;
    display: inline-block;
}

.attire-tab-dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-card);
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 100;
    border-radius: 6px;
    border: 1px solid var(--border);
    margin-top: 5px;
    overflow: hidden;
}

.attire-tab-dropdown:hover .attire-tab-dropdown-content {
    display: block;
}

.attire-tab-dropdown-content a {
    color: var(--text-muted);
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.attire-tab-dropdown-content a:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

/* Keyframe animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* ==========================================
   PROMO FLYER BANNER SLIDER
   ========================================== */
.promo-slider-container {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background-color: var(--bg-card-dark);
}

.promo-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.promo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.promo-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.promo-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease-in-out;
    filter: brightness(0.9);
}

.promo-slide.active .promo-slide-image {
    transform: scale(1.06);
}

.promo-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(13, 19, 30, 0.9) 25%, rgba(13, 19, 30, 0.6) 55%, rgba(13, 19, 30, 0.15) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 5rem;
    z-index: 3;
    color: white;
}

.promo-slide-badge {
    background-color: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 12px;
    border-radius: 30px;
    margin-bottom: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.promo-slide-title {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    line-height: 1.25;
}

.promo-slide-text {
    font-size: 0.95rem;
    max-width: 550px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.promo-slide-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border-radius: 30px;
}

.promo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.promo-arrow:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
}

.promo-arrow.prev {
    left: 20px;
}

.promo-arrow.next {
    right: 20px;
}

.promo-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.promo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition);
}

.promo-dot.active {
    background-color: white;
    width: 26px;
    border-radius: 10px;
}

/* Responsive adjustments for Flyer Slider */
@media (max-width: 768px) {
    .promo-slider-container {
        height: 280px;
    }
    
    .promo-slide-overlay {
        padding: 2rem 3rem;
        background: linear-gradient(to right, rgba(13, 19, 30, 0.95) 50%, rgba(13, 19, 30, 0.7) 100%);
    }
    
    .promo-slide-title {
        font-size: 1.5rem;
    }
    
    .promo-slide-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .promo-arrow {
        width: 36px;
        height: 36px;
    }
    
    .promo-arrow.prev {
        left: 10px;
    }
    
    .promo-arrow.next {
        right: 10px;
    }
}

/* Bouquet Coming Soon Premium Section */
.bouquet-coming-soon-card {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.03) 0%, rgba(197, 168, 128, 0.08) 50%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(26, 54, 93, 0.15);
    border-radius: 20px;
    padding: 6rem 2rem;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.05);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: var(--transition);
}

body.dark-theme .bouquet-coming-soon-card {
    background: linear-gradient(135deg, rgba(13, 19, 30, 0.95) 0%, rgba(197, 168, 128, 0.1) 50%, rgba(21, 28, 40, 0.98) 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bouquet-coming-soon-card:hover {
    transform: translateY(-5px);
    border-color: #C5A880;
    box-shadow: 0 30px 60px rgba(197, 168, 128, 0.12);
}

/* Elegant Icon Wrapper and Animations */
.bouquet-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bouquet-icon-back {
    font-size: 4rem;
    color: rgba(197, 168, 128, 0.2);
    position: absolute;
    animation: rotateSlow 20s linear infinite;
}

.bouquet-icon-front {
    font-size: 2.8rem;
    color: var(--primary);
    position: absolute;
    animation: pulseSoft 4s ease-in-out infinite;
    text-shadow: 0 10px 20px rgba(26, 54, 93, 0.15);
}

body.dark-theme .bouquet-icon-front {
    color: #C5A880;
    text-shadow: 0 10px 20px rgba(197, 168, 128, 0.3);
}

/* Badge styling */
.bouquet-badge {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C5A880;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Title Coming Soon styled with luxury gold/navy gradient */
.bouquet-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 30%, #C5A880 70%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: gradientShift 6s ease infinite;
    background-size: 200% auto;
}

body.dark-theme .bouquet-title {
    background: linear-gradient(135deg, #FFFFFF 30%, #C5A880 70%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Divider */
.bouquet-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #C5A880, transparent);
    margin: 0 auto 2rem;
}

/* Descriptions */
.bouquet-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto 1rem;
    line-height: 1.8;
}

.bouquet-subdesc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Keyframe animations */
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseSoft {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* About Us Premium Section Styling */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-image-side {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-collage {
    position: relative;
    width: 90%;
    max-width: 400px;
    border: 2px solid var(--primary);
    padding: 1rem;
    border-radius: 12px;
}

.about-img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-badge-floating {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.3);
    border: 1px solid rgba(197, 168, 128, 0.3);
}

body.dark-theme .about-badge-floating {
    background-color: var(--bg-card-dark);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border-color: #C5A880;
}

.about-badge-floating i {
    font-size: 1.4rem;
    color: #C5A880;
}

.about-badge-floating span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

body.dark-theme .about-title {
    color: white;
}

.about-gold-line {
    width: 80px;
    height: 3px;
    background-color: #C5A880;
    margin-bottom: 2rem;
}

.about-text-p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.2rem;
}

.about-sub-brands {
    margin-top: 2rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.sub-brands-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.dark-theme .sub-brands-title {
    color: #C5A880;
}

.brands-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brand-item {
    border-left: 3px solid #C5A880;
    padding-left: 12px;
}

.brand-handle {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    display: block;
}

body.dark-theme .brand-handle {
    color: white;
}

.brand-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}
