
        /* --- CUSTOM VARIABLES & OVERRIDES --- */
        :root {
            /* Orchellia Palette */
            --primary-rose: #E18892;
            --primary-rose-dark: #cf4f5d; 
            --primary-rose-light: #F8D9DC;
            --secondary-warm: #896E6F;
            --accent-soft: #E6B5BB;
            --accent-bg: #E18892;
            --accent-light: #FAF7F4;
            --success-green: #5B9E68;
            --text-dark: #2C2C2C;
            --text-muted: #6E6E6E;
            
            /* UI Tokens */
            --radius-lg: 16px;
            --shadow-sm: 0 2px 8px rgba(159, 119, 131, 0.05);
            --shadow-md: 0 8px 24px rgba(159, 119, 131, 0.08);
            --shadow-hover: 0 16px 40px rgba(159, 119, 131, 0.12);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
    @font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/montserrat/Montserrat[wght].woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    }
    
    h1, h2, h3, h4, h5, h6, .navbar-brand, .modal-title {
            font-family: 'Montserrat', serif;
            font-weight: 700;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: #FFFFFF;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        

        /* --- BOOTSTRAP COMPONENT OVERRIDES --- */
        
        /* Buttons */
        .btn-primary {
            background-color: var(--primary-rose) !important;
            border-color: var(--primary-rose) !important;
            color: #fff;
            padding: 0.75rem 1.75rem;
            border-radius: 999px; /* Pill shape */
            transition: var(--transition);
        }

        .btn-primary:hover, .btn-primary:focus {
            background-color: var(--primary-rose-dark) !important;
            border-color: var(--primary-rose-dark) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(159, 119, 131, 0.3);
        }

        .btn-outline-primary {
            color: var(--text-dark) !important;
            border-color: var(--primary-rose) !important;
            padding: 0.75rem 1.75rem;
            border-radius: 999px;
        }

        .btn-outline-primary:hover, .btn-outline-primary:focus {
            background-color: var(--primary-rose) !important;
            color: #fff;
            border-color: var(--primary-rose) !important;
        }
        .btn-premium {
            background: linear-gradient(45deg, var(--color-primary), #eda08c);
            color: var(--color-white);
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            box-shadow: 0 5px 15px rgba(224, 168, 153, 0.4);
            transition: all 0.3s ease;
        }
        .btn-premium:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(224, 168, 153, 0.6);
            color: var(--primary-rose-dark);
        }
        .btn-outline-premium {
            border: 2px solid var(--color-primary);
            color: var(--color-primary);
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 600;
            background: transparent;
        }
        .btn-outline-premium:hover {
            background-color: var(--accent-soft);
            color: var(--primary-rose-dark);
        }

        /* Navbar */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: var(--transition);
            box-shadow: 0 1px 0 rgba(0,0,0,0.05);
        }
        
        .navbar-scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        .navbar-brand img {
            height: 40px;
            width: 200px;
        }

        .nav-link {
            color: var(--text-dark) !important;
                        background-color: var(--primary-rose);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            margin: 0 0.5rem;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 50%;
            background-color: var(--primary-rose) !important;
            transition: width 0.3s ease, left 0.3s ease;
        }

        .nav-link:hover::after {
            
            width: 100%;
            left: 0;
        }

        /* Form Controls */
        .form-control-custom {
            border-radius: 999px;
            border: 1px solid #E0E0E0;
            background-color: #F9F9F9;
            padding: 0.5rem 1rem 0.5rem 2.5rem;
            font-size: 0.85rem;
            width: 200px;
            transition: var(--transition);
        }

        .form-control-custom:focus {
            background-color: #fff;
            border-color: var(--primary-rose);
            width: 240px;
            box-shadow: none;
        }

        /* --- SECTIONS STYLING --- */
        .announcement-bar {
            background-color: var(--primary-rose);
            color: var(--accent-light);
            overflow: hidden;
            white-space: nowrap;
            padding: 12px 0;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .marquee-wrapper {
            /* Ini yang akan digeser-geser sama JS */
            display: flex;
            width: max-content; 
            /* Kita mulai dari posisi kanan layar */
            transform: translateX(100vw); 
        }

        .marquee-content {
            padding-right: 50px;
        }



        /* Hero Section */
        .hero {
            padding: 4rem 0 5rem;
            background: linear-gradient(to right, #fff 50%, var(--accent-bg) 50%);
            overflow: hidden;
        }

        .hero-tag {
            display: inline-block;
            background-color: var(--primary-rose-light);
            color: var(--primary-rose-dark);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.4rem 1rem;
            border-radius: 999px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--primary-rose-dark);
        }

        .hero-img {
            width: 90%;
            height: auto;
            border-radius: 200px 200px 0 0; /* Arch shape */
            box-shadow: var(--shadow-md);
            animation: float 6s ease-in-out infinite;
        }

        .hero-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.8rem;
            font-size: 0.9rem;
            color: var(--success-green);
        }

        /* Floating Badge */
        .hero-float-card {
            position: absolute;
            bottom: 40px;
            left: -20px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(8px);
            padding: 1rem 1.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 1rem;
            max-width: 220px;
            animation: fadeInUp 1s ease-out 0.3s backwards;
            z-index: 10;
        }

        /* Categories */
        .categories {
            padding: 4rem 0;
            background-color: var(--accent-soft) !important;
        }

        .cat-item {
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .cat-img-wrapper {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1rem;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .cat-item:hover .cat-img-wrapper {
            border-color: var(--white);
            transform: scale(1.05);
        }

        .cat-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cat-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: #f5f0f0;
        }

        /* Product Card */
        .product-card {
            border: 1px solid rgba(0,0,0,0.03);
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: #e2e2e2;
            transition: var(--transition);
            position: relative;
            height: 100%;
        }

        .product-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }

        .product-badges {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .badge-rose { background-color: var(--primary-rose); }
        .badge-green { background-color: var(--success-green); }

        .product-img-box {
            position: relative;
            padding-top: 100%; /* 1:1 Aspect Ratio */
            overflow: hidden;
            background-color: #f0f0f0;
            box-shadow: #1A1A1A;
        }

        .product-img-box img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img-box img {
            transform: scale(1.08);
        }

        .product-actions {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 10px;
            background: rgba(255,255,255,0.9);
            transition: bottom 0.3s ease;
        }

        .product-card:hover .product-actions {
            bottom: 0;
        }

        .action-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background-color: var(--primary-rose-dark);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.2s;
        }

        .action-btn:hover {
            background-color: var(--primary-rose);
        }

        /* Promo Section */
        .promo-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 2.5rem;
            color: white;
            text-decoration: none;
            height: 100%;
            min-height: 250px;
        }

        .promo-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            z-index: 1;
        }

        .promo-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
            z-index: 2;
        }

        .promo-content {
            position: relative;
            z-index: 3;
        }

        .promo-card:hover img {
            transform: scale(1.05);
        }

        /* Split Section */
        .split-section-bg-left {
            background-color: var(--primary-rose);
            color: white;
        }

        .check-list li {
            list-style: none;
            margin-bottom: 0.5rem;
        }

        /* Testimonial */
        .testimonial-card {
            background-color: var(--accent-bg);
            padding: 2rem;
            border-radius: var(--radius-lg);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .quote-icon {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            font-size: 2rem;
            color: var(--primary-rose-light);
            opacity: 0.5;
            font-family: serif;
        }

        .t-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Footer */
        footer {
            background-color: #1A1A1A;
            color: #fff;
            padding: 4rem 0 1rem;
        }

        .footer-heading {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .footer-links a {
            color: #aaa;
            font-size: 0.9rem;
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: var(--primary-rose);
            padding-left: 5px;
        }

        .form-control-dark {
            background-color: #222;
            border: 1px solid #444;
            color: #fff;
        }
        .form-control-dark:focus {
            background-color: #222;
            border-color: var(--primary-rose);
            color: #fff;
            box-shadow: none;
        }

        /* --- ANIMATIONS --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- MODAL CUSTOMIZATION --- */
        .modal-content {
            border-radius: var(--radius-lg);
            border: none;
            overflow: hidden;
        }
        
        .modal-img-col {
            background-color: var(--accent-bg);
            padding: 0;
        }
        
        .modal-img-col img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- TOAST --- */
        .toast-custom {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-rose-dark);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 9999;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .toast-custom.show {
            transform: translateY(0);
            opacity: 1;
        }

        /* --- FLOATING WA & MODAL --- */
        .float-wa {
            position: fixed; bottom: 30px; right: 30px;
            background-color: #25d366; color: white;
            width: 65px; height: 65px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 32px; box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            z-index: 100; transition: 0.3s;
        }
        .float-wa:hover { transform: scale(1.1); background-color: #128c7e; color: white;}

        .modal-promo .modal-content {
            border: none;
            border-radius: 20px;
            overflow: hidden;
        }
        .modal-promo .modal-body {
            padding: 0;
            display: flex;
        }
        .modal-img {
            width: 40%;
            background: url('../../img/orce13.webp') center/cover;
            min-height: 400px;
        }
        .modal-text {
            width: 60%;
            padding: 50px;
            text-align: center;
            background: var(--color-secondary);
        }
        /* --- RESPONSIVE TWEAKS --- */
        @media (max-width: 991.98px) {
            .hero-content h1 { font-size: 2.5rem; }
            .navbar { background-color: white !important; } /* Navbar selalu solid di mobile */
             .modal-promo .modal-body { flex-direction: column; }
             .modal-img, .modal-text { width: 100%; }
             .modal-img { height: 200px; min-height: auto;}
        }
        
       .ecommerce-icons {
    margin-bottom: 20px;
}

.ecommerce-icons img {
    width: 50px;
    height: 50px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    will-change: transform;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.ecommerce-icons a:hover img {
    transform: scale(1.15);
    opacity: 0.85;
}

#promoCarousel img {
  object-fit: cover;
  max-height: 1820px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.faq-wrapper {
    max-width: 900px;
    margin: auto;
}

.accordion-item {
    background: none;
    border: none;
    margin-bottom: 16px;
}

.accordion-button {
    background: #fdf6f8;
    border-radius: 50px !important;
    padding: 20px 28px;
    font-size: 18px;
    font-weight: 600;
    color: #e18892;
    box-shadow: none;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    background: #e18892;
    transform: scale(1.02);
}

.accordion-button:not(.collapsed) {
    background: #e18892;
    color: #e18892;
}

.accordion-collapse {
    margin-top: 10px;
    overflow: hidden;
}

.accordion-body {
    background: #d6848d;
    color: #fff;
    border-radius: 40px;
    padding: 24px 28px;
    font-size: 15px;
    line-height: 1.6;
}

.faq-section {
    background-color: #fdf6f8;
}

