:root {
    /* Brand Colors */
    --primary-bg: #0A0A0A;
    --action-color: #9B1B30;
    --neutral-bg: #F5EBE0;
    --highlight-color: #D4AF37;

    /* Typography */
    --text-light: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #A0A0A0;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Utilities */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
    letter-spacing: 0.02em;
}

p {
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Base Layout & Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.section-padding {
    padding: 120px 0;
}

/* Typography Base */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 42px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: normal; /* Allow text wrap on small screens */
}

.btn i {
    font-size: 1.2rem;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: var(--action-color);
    color: var(--text-light);
}

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

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

.btn-outline:hover {
    background-color: var(--highlight-color);
    color: var(--primary-bg);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    /* Glassmorphism effect */
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    /* Subtle gold border */
    transition: var(--transition-fast);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.navbar .logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.footer .logo {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer .logo img {
    height: 100px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition-fast);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--highlight-color);
    transition: width var(--transition-fast);
}

.nav-links a:not(.btn):hover {
    color: var(--highlight-color);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .navbar {
        height: 60px;
    }

    .hero-content {
        margin-top: 60px;
    }

    .menu-toggle {
        display: block;
        padding: 10px; /* Enhanced tap target */
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background-color: var(--primary-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right var(--transition-fast);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 15px; /* Larger tap targets */
        width: 100%;
        text-align: center;
    }
}

/* Scroll Animations Base */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-on-scroll.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Social Buttons Container */
.social-cta-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    width: 100%;
}

.social-cta-container .btn {
    min-width: 250px;
}

/* Section Shared */
.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.divider {
    height: 3px;
    width: 80px;
    background-color: var(--highlight-color);
    margin: 0 auto 2.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--primary-bg);
    overflow: hidden;
}

.hero-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3)), url('../assets/hero_bg.png') center/cover no-repeat;
    z-index: 0;
    will-change: transform;
}

/* Staggered Animations */
.fade-up-1 { opacity: 0; animation: fadeUp 1s ease 0.2s forwards; }
.fade-up-2 { opacity: 0; animation: fadeUp 1s ease 0.4s forwards; }
.fade-up-3 { opacity: 0; animation: fadeUp 1s ease 0.6s forwards; }

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: var(--nav-height);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 2rem;
    color: var(--text-light);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.text-highlight {
    color: var(--highlight-color);
    font-style: italic;
    font-weight: 500;
    display: block; /* Ensure it drops to next line on mobile correctly */
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
}

/* Services Section */
.services {
    background-color: var(--primary-bg);
}

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

.service-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, transparent, rgba(155, 27, 48, 0.1));
    transition: height var(--transition-slow);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    height: 100%;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--highlight-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background-color: var(--highlight-color);
    color: var(--primary-bg);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Portfolio Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.8s ease;
    filter: brightness(0.85);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-overlay span {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Social Proof (Testimonials) */
.social-proof {
    background-color: var(--neutral-bg);
    color: var(--text-dark);
}

.social-proof .section-header h2 {
    color: var(--text-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--action-color);
}

.testimonial-card .quote {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--action-color);
    font-family: var(--font-heading);
}

/* Experience Section */
.experience-container {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.experience-content {
    flex: 1;
}

.experience-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
}

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

.experience-list {
    list-style: none;
    margin-bottom: 2rem;
}

.experience-list li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.experience-image {
    flex: 1;
    position: relative;
    padding: 20px 20px 0 0;
}

.experience-image img {
    border-radius: 4px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.experience-image .image-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border: 3px solid var(--highlight-color);
    border-radius: 4px;
    z-index: 1;
}

@media (max-width: 900px) {
    .experience-container {
        flex-direction: column;
        gap: 3rem;
    }

    .experience-image img {
        width: 100%;
        height: auto;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        padding: 0 10px;
    }
    
    .section-header p {
        padding: 0 15px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 15px;
    }

    .btn {
        width: 100%;
        padding: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 0.8rem;
    }
    
    .gallery-overlay span {
        font-size: 1.1rem;
    }

    .experience-container {
        gap: 2rem;
    }
    
    .experience-content h2 {
        font-size: 2rem;
    }

    .booking-card {
        padding: 3rem 1.5rem;
    }

    .footer-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 70px;
    }

    .navbar .logo img {
        height: 50px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero {
        height: auto;
        padding: 120px 0 80px;
        min-height: 100vh;
        width: 100%;
        overflow: hidden;
    }

    .hero-content {
        padding: 0 10px;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .text-highlight {
        font-size: 2.2rem;
        margin-top: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        opacity: 0.85;
        line-height: 1.6;
        width: 100%;
    }
    
    .hero-buttons {
        gap: 1.2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100% !important;
        max-width: 320px;
        padding: 16px 20px;
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        aspect-ratio: 1 / 1;
        width: 100%;
    }

    .social-cta-container {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        margin-top: 3rem;
        padding: 0;
        width: 100%;
    }

    .social-cta-container .btn {
        width: 100% !important;
        max-width: 100%;
        margin: 0 !important;
        min-width: 0;
    }

    .testimonial-card {
        padding: 2rem 1.2rem;
    }

    .booking-card {
        padding: 3rem 1.2rem;
        width: 100%;
    }

    .booking-card h2 {
        font-size: 2rem;
    }

    .btn-large {
        padding: 16px 20px;
        font-size: 1.1rem;
        width: 100% !important;
    }

    .floating-whatsapp {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .info-list li {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .nav-container .logo {
        font-size: 1.5rem;
    }
    
    .nav-container .logo img {
        height: 32px !important;
    }
}

.booking-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 5rem 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--highlight-color);
}

.booking-card h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.booking-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.booking-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 1rem;
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
}

.btn-large i {
    font-size: 1.5rem;
}

.booking-email {
    color: var(--text-muted);
    font-size: 1.05rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.booking-email:hover {
    color: var(--highlight-color);
}

/* Footer Section */
.footer {
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-desc {
    color: var(--text-muted);
    margin: 1.5rem 0;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--highlight-color);
    color: var(--primary-bg);
    transform: translateY(-3px);
}

.footer h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-family: var(--font-heading);
}

.info-list,
.hours-list {
    list-style: none;
}

.info-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.info-list i {
    color: var(--highlight-color);
    margin-top: 4px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-muted);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.hours-list .closed {
    color: var(--action-color);
}

.footer-bottom {
    background-color: #000;
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: var(--transition-fast);
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    background-color: #1DA851;
    transform: scale(1.1);
}

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

/* ======================================================
   SECTION EYEBROW
   ====================================================== */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--highlight-color);
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* ======================================================
   PRODUCTS SECTION
   ====================================================== */
.products-section {
    background-color: var(--primary-bg);
}

/* Filter tabs */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--highlight-color);
    color: var(--highlight-color);
}

.filter-btn.active {
    background: var(--highlight-color);
    border-color: var(--highlight-color);
    color: var(--primary-bg);
    font-weight: 600;
}

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Product card */
.product-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition-slow), border-color var(--transition-fast), box-shadow var(--transition-slow);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.product-card.hidden {
    display: none;
}

/* Product image wrap */
.product-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25,0.8,0.25,1), filter 0.5s ease;
    filter: brightness(0.9);
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

/* Category badge */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--highlight-color);
    color: var(--primary-bg);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    z-index: 2;
}

.badge-cosmetics {
    background: #C2507A;
    color: #fff;
}

.badge-fashion {
    background: #6B5CE7;
    color: #fff;
}

.badge-nails {
    background: #E07B53;
    color: #fff;
}

/* Per-product WhatsApp inquire button */
.product-quick-inquire {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
    z-index: 3;
}

.product-card:hover .product-quick-inquire {
    opacity: 1;
    transform: translateY(0);
}

.product-quick-inquire:hover {
    background: #1DA851;
}

/* Product info */
.product-info {
    padding: 1.5rem 1.5rem 1.2rem;
}

.product-info h3 {
    font-size: 1.15rem;
    font-family: var(--font-heading);
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.product-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--highlight-color);
    letter-spacing: -0.01em;
}

.product-avail {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4CAF50;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-avail--order {
    color: #FFC107;
}

/* Instagram note */
.products-instagram-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.products-instagram-note i {
    font-size: 1.4rem;
    color: #E1306C;
}

.products-instagram-note a {
    color: var(--highlight-color);
    font-weight: 500;
    transition: opacity var(--transition-fast);
}

.products-instagram-note a:hover {
    opacity: 0.75;
}

/* ======================================================
   BOOKING SECTION — 2-COLUMN LAYOUT
   ====================================================== */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
}

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

/* Info panel */
.booking-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bip-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.bip-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(212,175,55,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--highlight-color);
    margin-top: 2px;
}

.bip-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.bip-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.55;
}

.bip-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.bip-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.bip-contact-link i {
    color: var(--highlight-color);
    width: 18px;
    text-align: center;
}

.bip-contact-link:hover {
    color: var(--text-light);
}

/* Form wrapper */
.booking-form-wrap {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 12px;
    padding: 2.5rem;
}

/* ======================================================
   SHARED FORM STYLES (booking + quick inquiry)
   ====================================================== */
.wa-form,
.qip-form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

@media (max-width: 580px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form-wrap {
        padding: 1.5rem;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.req {
    color: var(--action-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    width: 100%;
    transition: border-color var(--transition-fast), background var(--transition-fast);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--highlight-color);
    background: rgba(212,175,55,0.05);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: var(--action-color);
}

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

.form-group input[type="date"] {
    color-scheme: dark;
}

/* Select wrapper with custom arrow */
.select-wrap {
    position: relative;
}

.select-wrap select {
    padding-right: 40px;
    cursor: pointer;
}

.select-wrap select option,
.select-wrap select optgroup {
    background: #1a1a1a;
    color: var(--text-light);
}

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--highlight-color);
    pointer-events: none;
    font-size: 0.8rem;
}

/* Submit button */
.wa-submit-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 16px;
    margin-top: 0.4rem;
    border-radius: 6px;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ======================================================
   QUICK INQUIRY PANEL (Floating Slide-up)
   ====================================================== */
.quick-inquiry-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    border-radius: 100px;
    padding: 14px 22px 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 200;
    box-shadow: 0 8px 25px rgba(37,211,102,0.35);
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    animation: float 3.5s ease-in-out infinite;
    user-select: none;
}

.quick-inquiry-trigger i {
    font-size: 1.4rem;
}

.quick-inquiry-trigger:hover {
    background: #1DA851;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(37,211,102,0.45);
    animation: none;
}

@media (max-width: 480px) {
    .quick-inquiry-trigger {
        bottom: 20px;
        right: 16px;
        padding: 12px 16px 12px 14px;
        font-size: 0.85rem;
    }
    .quick-inquiry-trigger span {
        display: none;
    }
}

/* Panel */
.quick-inquiry-panel {
    position: fixed;
    bottom: -100%;
    right: 24px;
    width: min(400px, calc(100vw - 32px));
    background: #161616;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 16px 16px 0 0;
    padding: 1.8rem;
    z-index: 300;
    transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.6);
}

.quick-inquiry-panel.open {
    bottom: 0;
}

/* Panel header */
.qip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.qip-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-light);
    font-weight: 600;
}

.qip-title i {
    font-size: 1.3rem;
}

.qip-close {
    background: rgba(255,255,255,0.07);
    border: none;
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
    font-size: 0.95rem;
}

.qip-close:hover {
    background: rgba(255,255,255,0.15);
    color: var(--text-light);
}

.qip-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.4rem;
}

/* Backdrop */
.qip-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 250;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
}

.qip-backdrop.visible {
    opacity: 1;
    pointer-events: all;
}