/* ==========================================================================
   RESET & VARIABLES
   ========================================================================== */
:root {
    --primary-color: #8f3d28;
    /* Terracotta warm khas referensi foto */
    --primary-hover: #79321f;
    --secondary-color: #c98a56;
    /* Warm gold/sand accent */
    --text-main: #332d2a;
    --text-muted: #6e6561;
    --bg-canvas: #fcfaf8;
    --bg-light: #f7f2ee;
    --bg-white: #ffffff;
    --border-color: #eddcd3;
    --font-sans: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-script: 'Great Vibes', cursive;
    --shadow-sm: 0 4px 14px rgba(143, 61, 40, 0.06);
    --shadow-md: 0 10px 30px rgba(143, 61, 40, 0.10);
    --shadow-3d: 0 25px 50px -12px rgba(90, 35, 20, 0.25);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-canvas);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.section-title {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.section-title h2 {
    font-family: var(--font-serif);
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(143, 61, 40, 0.25);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar-container {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(252, 250, 248, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(143, 61, 40, 0.08);
    height: 78px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 4px rgba(143, 61, 40, 0.2));
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1.8px;
    line-height: 1.1;
    font-family: var(--font-sans);
    white-space: nowrap;
}

.logo-tagline {
    font-size: 0.58rem;
    font-weight: 600;
    color: #9d5a47;
    letter-spacing: 1.6px;
    margin-top: 2px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: clamp(12px, 1.6vw, 24px);
    align-items: center;
    flex-shrink: 0;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
    position: relative;
    padding: 6px 2px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 50px 0 90px 0;
    background-color: var(--bg-canvas);
    overflow: hidden;
}

/* Decorative Organic Soft Blobs */
.hero-blob-left {
    position: absolute;
    top: 15%;
    left: -120px;
    width: 420px;
    height: 520px;
    background: radial-gradient(ellipse at center, rgba(235, 195, 180, 0.45) 0%, rgba(246, 236, 230, 0.3) 60%, transparent 75%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

.hero-blob-right {
    position: absolute;
    top: -8%;
    right: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at 60% 40%, rgba(243, 218, 206, 0.55) 0%, rgba(247, 235, 227, 0.35) 55%, transparent 72%);
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 1.15fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    max-width: 520px;
}

.hero-headline {
    font-family: var(--font-sans);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-description {
    color: #48403d;
    font-size: 1.08rem;
    line-height: 1.68;
    margin-bottom: 34px;
}

.hero-description strong {
    color: #1f1b1a;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.98rem;
    padding: 13px 25px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    line-height: 1.3;
}

.btn-hero-wa {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.3);
}

.btn-hero-wa:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(16, 185, 129, 0.4);
    color: #ffffff !important;
}

.btn-hero-outline {
    background: #ffffff;
    color: #8f3d28 !important;
    border: 2px solid #8f3d28;
    box-shadow: 0 4px 14px rgba(143, 61, 40, 0.08);
}

.btn-hero-outline:hover {
    background: #8f3d28;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(143, 61, 40, 0.22);
}

/* ==========================================================================
   3D DUAL PHONE MOCKUP
   ========================================================================== */
.hero-visual-container {
    position: relative;
    width: 100%;
    min-height: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1600px;
}

.dual-phones-scene {
    position: relative;
    width: 490px;
    height: 520px;
    transform-style: preserve-3d;
}

/* Diffused ground shadows */
.phone-shadow {
    position: absolute;
    bottom: 22px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(80, 25, 12, 0.35) 0%, rgba(80, 25, 12, 0.12) 50%, transparent 75%);
    filter: blur(16px);
    pointer-events: none;
    z-index: 1;
    transform: rotateX(70deg);
}

.shadow-left {
    left: 20px;
    width: 220px;
    height: 60px;
}

.shadow-right {
    right: 35px;
    width: 220px;
    height: 60px;
}

/* Phone device geometry */
.phone-device {
    position: absolute;
    width: 240px;
    height: 485px;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-left {
    left: 25px;
    top: 35px;
    z-index: 5;
    transform: rotateY(-18deg) rotateX(10deg) rotateZ(-5deg);
    animation: floatLeft 6s ease-in-out infinite;
}

.phone-right {
    right: 25px;
    top: 5px;
    z-index: 4;
    transform: rotateY(-22deg) rotateX(12deg) rotateZ(-6deg);
    animation: floatRight 6s ease-in-out infinite 0.8s;
}

@keyframes floatLeft {
    0%, 100% {
        transform: rotateY(-18deg) rotateX(10deg) rotateZ(-5deg) translateY(0);
    }
    50% {
        transform: rotateY(-18deg) rotateX(10deg) rotateZ(-5deg) translateY(-10px);
    }
}

@keyframes floatRight {
    0%, 100% {
        transform: rotateY(-22deg) rotateX(12deg) rotateZ(-6deg) translateY(0);
    }
    50% {
        transform: rotateY(-22deg) rotateX(12deg) rotateZ(-6deg) translateY(-12px);
    }
}

/* Realistic Rose Gold iPhone Chassis */
.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1c1817;
    border-radius: 40px;
    padding: 8px;
    box-shadow:
        0 0 0 2px #d49a7e,
        0 0 0 4.5px #f6cdb7,
        0 0 0 6px #ba7758,
        -8px 12px 24px rgba(0, 0, 0, 0.25),
        -16px 24px 45px rgba(110, 45, 25, 0.28);
    overflow: hidden;
}

.dynamic-island {
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 15px;
    background: #000000;
    border-radius: 20px;
    z-index: 20;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.15);
}

.phone-speaker {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 2.5px;
    background: #333333;
    border-radius: 2px;
    z-index: 21;
}

.screen-glare {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.05) 30%, transparent 45%);
    pointer-events: none;
    z-index: 15;
    border-radius: 32px;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
}

/* Screen 1: Floral Ivory Invitation */
.screen-floral {
    background: #fdfaf6;
    color: #3b3330;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 28px 14px 14px 14px;
    position: relative;
}

.floral-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    overflow: hidden;
}

.floral-svg {
    width: 100%;
    height: 100%;
}

.floral-leaves {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    font-size: 11px;
    opacity: 0.8;
}

.inv-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 14px;
    z-index: 5;
}

.inv-script {
    font-family: var(--font-script);
    font-size: 1.55rem;
    color: #964832;
    line-height: 1.1;
    margin-bottom: 6px;
}

.inv-couple-avatar {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #d8a07f, #fce0ce, #b97656);
    box-shadow: 0 4px 12px rgba(143, 61, 40, 0.15);
    margin-bottom: 8px;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 22%;
    border-radius: 50%;
}

.inv-names {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #4a2318;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
}

.inv-date {
    font-size: 0.65rem;
    color: #7d6b63;
    font-weight: 500;
    margin-bottom: 12px;
}

.inv-countdown {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 14px;
    width: 100%;
}

.cd-box {
    background: #ffffff;
    border: 1px solid #ebd9ce;
    border-radius: 6px;
    padding: 4px 5px;
    min-width: 38px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.cd-val {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #8f3d28;
    line-height: 1.1;
}

.cd-txt {
    display: block;
    font-size: 0.52rem;
    color: #9c8b84;
    text-transform: uppercase;
}

.inv-btn-pill {
    background: #8f3d28;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 8px rgba(143, 61, 40, 0.25);
    cursor: pointer;
}

.floral-footer {
    margin-top: 14px;
    width: 100%;
}

.bottom-dots {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.bottom-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d8c2b5;
}

.bottom-dots span:nth-child(4) {
    background: #8f3d28;
    transform: scale(1.3);
}

/* Screen 2: Romantic Night Photo Invitation */
.screen-night {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 28px 14px 16px 14px;
    color: #ffffff;
}

.night-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 25%;
}

.night-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 10, 10, 0.25) 0%, rgba(20, 12, 10, 0.45) 55%, rgba(15, 8, 7, 0.90) 100%);
}

.night-body {
    position: relative;
    z-index: 5;
    margin-top: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inv-sub-dark {
    font-size: 0.58rem;
    letter-spacing: 1.8px;
    font-weight: 600;
    color: #f7d5c5;
    margin-bottom: 2px;
}

.inv-names-dark {
    font-family: var(--font-script);
    font-size: 1.7rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 2px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.inv-date-dark {
    font-size: 0.56rem;
    letter-spacing: 1.2px;
    color: #e5cfc5;
    font-weight: 600;
    margin-bottom: 12px;
}

.cd-box-dark {
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    padding: 4px 5px;
    min-width: 38px;
}

.cd-box-dark .cd-val {
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.1;
}

.cd-box-dark .cd-txt {
    color: #eedacf;
    font-size: 0.52rem;
}

.dark-btn {
    background: rgba(143, 61, 40, 0.88);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 200, 180, 0.35);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.night-nav-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.n-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #ffffff;
}

/* ==========================================================================
   FITUR
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--bg-white);
    padding: 30px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-box {
    width: 55px;
    height: 55px;
    background: #fdf2f2;
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 860px;
    margin: 0 auto;
    align-items: stretch;
    justify-content: center;
}

.single-plan-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 620px;
}

.single-pricing-card {
    width: 100%;
    max-width: 560px;
    background: linear-gradient(180deg, #ffffff 0%, #faf6f3 100%);
    border: 2px solid #8f3d28;
    border-radius: 24px;
    padding: 42px 34px;
    box-shadow: 0 16px 40px rgba(143, 61, 40, 0.12);
    position: relative;
    transition: all 0.3s ease;
}

.single-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(143, 61, 40, 0.2);
}

.price-discount-pill {
    display: inline-block;
    background: #fef3c7;
    color: #b45309;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
    border: 1px solid #fde68a;
}

.single-pricing-features-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 18px;
    font-size: 0.9rem;
    color: #334155;
}

.single-pricing-features-grid li {
    display: flex;
    align-items: center;
    gap: 9px;
    line-height: 1.4;
}

@media (max-width: 640px) {
    .single-pricing-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.btn-order-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    font-size: 1.05rem;
    padding: 15px 20px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
    cursor: pointer;
    margin-top: 15px;
}

.btn-order-wa:hover {
    background: linear-gradient(135deg, #20ba59, #0e7065);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    color: #fff !important;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 38px 28px;
    position: relative;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(143, 61, 40, 0.12);
}

.pricing-card.highlight {
    border: 2px solid var(--primary-color);
    box-shadow: 0 12px 30px rgba(143, 61, 40, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    right: 25px;
    background: #475569;
    color: #fff;
    font-size: 0.75rem;
    padding: 5px 14px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.pricing-badge.best-seller {
    background: linear-gradient(135deg, #d97706, #b45309);
    color: #fff;
}

.pricing-badge.assisted {
    background: linear-gradient(135deg, var(--primary-color), #5c2012);
    color: #fff;
}

.pricing-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.pricing-card .subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 25px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.95rem;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.pricing-list {
    margin-bottom: 30px;
}

.pricing-list li {
    margin-bottom: 12px;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-list li i {
    color: #27ae60;
}

/* ==========================================================================
   KATALOG TEMA
   ========================================================================== */
.katalog-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-family: var(--font-sans);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 30px;
}

.catalog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(143, 61, 40, 0.12);
    border-color: rgba(143, 61, 40, 0.25);
}

/* Mockup Studio Stage Wrapper */
.catalog-mockup-wrapper {
    position: relative;
    height: 330px;
    background: radial-gradient(circle at 50% 30%, #fefcfb 0%, #f5ece5 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 20px 15px 12px 15px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

/* Subtle background circular halo glow */
.catalog-mockup-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 190px;
    height: 190px;
    background: radial-gradient(circle, rgba(230, 185, 165, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Discount Tag */
.discount-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #e74c3c;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 15;
    box-shadow: 0 2px 6px rgba(231, 76, 60, 0.35);
    letter-spacing: 0.3px;
}

/* Mobile Phone Mockup Device */
.catalog-phone-device {
    position: relative;
    width: 172px;
    height: 300px;
    background: #191615;
    border-radius: 28px;
    padding: 5px;
    border: 2px solid #deb19b;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.15),
        0 12px 24px -4px rgba(90, 35, 20, 0.22);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    z-index: 5;
    overflow: hidden;
}

.catalog-card:hover .catalog-phone-device {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        0 20px 32px -4px rgba(90, 35, 20, 0.28);
    border-color: #f1caa7;
}

/* Speaker & Dynamic Island */
.cat-phone-speaker {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 2px;
    background: #444;
    border-radius: 2px;
    z-index: 20;
}

.cat-dynamic-island {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 9px;
    background: #000;
    border-radius: 10px;
    z-index: 19;
}

/* Screen Glare */
.cat-phone-glare {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.05) 30%, transparent 48%);
    pointer-events: none;
    z-index: 12;
}

/* Phone Screen Container */
.cat-phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #201815;
}

.cat-screen-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.catalog-card:hover .cat-screen-bg {
    transform: scale(1.06);
}

/* Invitation Overlays */
.cat-inv-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 10px 8px 12px 8px;
    z-index: 10;
}

/* Color Overlay Variants */
.overlay-maroon {
    background: linear-gradient(180deg, rgba(50, 10, 18, 0.18) 0%, rgba(60, 12, 22, 0.45) 45%, rgba(45, 10, 16, 0.94) 100%);
}

.overlay-emerald {
    background: linear-gradient(180deg, rgba(10, 40, 25, 0.18) 0%, rgba(10, 45, 30, 0.45) 45%, rgba(8, 35, 22, 0.94) 100%);
}

.overlay-rosegold {
    background: linear-gradient(180deg, rgba(60, 25, 25, 0.15) 0%, rgba(70, 30, 30, 0.45) 45%, rgba(55, 20, 22, 0.94) 100%);
}

.overlay-royal {
    background: linear-gradient(180deg, rgba(20, 15, 10, 0.18) 0%, rgba(30, 20, 12, 0.45) 45%, rgba(20, 12, 6, 0.95) 100%);
}

/* Non-Photo Basic Themes Backgrounds */
.cat-screen-art-maroon {
    background: linear-gradient(145deg, #4d101c 0%, #85263a 50%, #400a15 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.cat-screen-art-taupe {
    background: linear-gradient(145deg, #eee3da 0%, #dfcfc2 60%, #c9b4a4 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.cat-art-decor {
    position: absolute;
    top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ornament-svg {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.arch-frame {
    width: 68px;
    height: 85px;
    border: 1.5px solid #a68f7f;
    border-radius: 40px 40px 0 0;
    opacity: 0.65;
}

.floral-branch {
    font-size: 16px;
    margin-top: -35px;
}

/* Invitation Typography inside Mini Phone */
.cat-inv-badge {
    font-size: 0.48rem;
    letter-spacing: 1.4px;
    font-weight: 700;
    color: #f7d5c5;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.cat-inv-names {
    font-family: var(--font-script);
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.cat-inv-date {
    font-size: 0.52rem;
    letter-spacing: 0.8px;
    color: #eedacf;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.cat-inv-btn {
    background: rgba(143, 61, 40, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 0.56rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Light adjustments for Taupe basic card */
.taupe-badge {
    color: #7d6556;
}

.taupe-names {
    color: #4a382e;
    text-shadow: none;
}

.taupe-date {
    color: #7d6556;
}

.taupe-btn {
    background: #8f3d28;
    color: #fff;
    border: none;
}

.catalog-info {
    padding: 18px 20px 20px 20px;
    text-align: center;
    background: #fff;
    margin-top: auto;
}

.catalog-info h4 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #2b2523;
    margin-bottom: 6px;
}

.price-box {
    margin-bottom: 14px;
}

.price-box .strikethrough {
    text-decoration: line-through;
    color: #9c8e88;
    font-size: 0.85rem;
    margin-right: 6px;
}

.price-box .actual {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.15rem;
}

.btn-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 8px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}

.btn-demo:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* ==========================================================================
   MENGAPA KAMI
   ========================================================================== */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.why-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: #fdf2f2;
    color: var(--primary-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 16px auto;
}

.why-card h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ==========================================================================
   TESTIMONIAL
   ========================================================================== */
.testimonial-slider-container {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    box-sizing: border-box;
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-color);
}

.stars {
    color: #f1c40f;
    margin-bottom: 16px;
}

.testi-text {
    font-style: italic;
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
}

.client-name {
    font-weight: 700;
    color: var(--primary-color);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.nav-arrow:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--text-main);
    font-family: var(--font-sans);
}

.faq-arrow {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #faf7f5;
}

.faq-answer p {
    padding: 18px 24px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a1523 100%);
    color: #fff;
    padding: 70px 0;
}

.cta-banner h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.cta-banner p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #1e1e1e;
    color: #ccc;
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    color: #fff;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.contact-links li,
.quick-links li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.contact-links li i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.quick-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

/* FLOATING WA */
.float-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: var(--transition);
}

.float-wa:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
    .navbar-container {
        height: 72px;
    }

    .hero-section {
        padding: 40px 0 70px 0;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-text {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-headline {
        font-size: 2.8rem;
    }

    .hero-description {
        margin: 0 auto 28px auto;
        max-width: 540px;
    }

    .hero-actions {
        justify-content: center;
    }

    .dual-phones-scene {
        margin: 0 auto;
        transform: scale(0.88);
        transform-origin: center center;
    }

    .hero-visual-container {
        min-height: 480px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 12px;
    }

    .nav-content {
        gap: 8px;
    }

    .logo-brand {
        gap: 8px;
    }

    .logo-tagline {
        display: none;
    }

    .logo-title {
        font-size: 1.05rem;
        letter-spacing: 1px;
    }

    .logo-mark, .logo-svg {
        width: 30px;
        height: 30px;
    }

    .user-nav-capsule {
        max-width: 140px;
        flex-shrink: 1;
        min-width: 0;
    }

    .user-nav-btn {
        padding: 4px 10px;
        font-size: 0.76rem;
        max-width: 140px;
        gap: 4px;
        border-radius: 50px;
        overflow: hidden;
    }

    .user-nav-btn #navUserName,
    .user-nav-btn span {
        max-width: 70px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
        vertical-align: middle;
    }

    .hamburger {
        display: block;
        padding: 4px;
        font-size: 1.35rem;
    }

    .nav-menu {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #fdfbf9;
        flex-direction: column;
        gap: 18px;
        padding: 24px 0;
        box-shadow: var(--shadow-md);
        display: none;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-section {
        padding: 24px 0 40px 0;
        overflow: hidden;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        width: 100%;
    }

    .hero-text {
        max-width: 100%;
        padding: 0;
    }

    .hero-headline {
        font-size: clamp(1.85rem, 6vw, 2.3rem);
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 0.92rem;
        line-height: 1.55;
        margin: 0 auto 20px auto;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 4px;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
        font-size: 0.94rem;
        border-radius: 50px;
    }

    .hero-visual-container {
        min-height: auto;
        height: 360px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .dual-phones-scene {
        width: 280px;
        height: 350px;
        margin: 0 auto;
        transform: none;
    }

    .phone-device {
        width: 170px;
        height: 340px;
    }

    .phone-left {
        left: 0;
        top: 15px;
        transform: rotateY(-10deg) rotateX(4deg) rotateZ(-3deg);
    }

    .phone-right {
        right: 0;
        top: 0;
        transform: rotateY(-12deg) rotateX(6deg) rotateZ(-4deg);
    }

    .shadow-left, .shadow-right {
        width: 150px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.85rem;
    }

    .dual-phones-scene {
        width: 260px;
        height: 330px;
    }

    .phone-device {
        width: 155px;
        height: 310px;
    }

    .hero-visual-container {
        height: 330px;
    }
}

/* ==========================================================================
   VIP FLOATING / STICKY ACTION BAR (Prominent 2 Menus for Logged In Clients)
   ========================================================================== */
.vip-action-bar {
    position: sticky;
    top: 78px;
    z-index: 998;
    background: linear-gradient(135deg, #1f1a17 0%, #2a221c 100%);
    border-bottom: 2px solid #c98a56;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    padding: 10px 0;
    transition: all 0.3s ease;
    animation: slideDownBar 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDownBar {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }
}

.vip-action-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.vip-action-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f8fafc;
}

.vip-badge-glow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.vip-couple-names {
    font-size: 0.92rem;
    color: #f1f5f9;
}

.vip-couple-names strong {
    color: #fbbf24;
}

.vip-action-btns {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-vip-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.btn-vip-action:hover {
    transform: translateY(-2px);
}

/* Tombol 1: Client Portal (Pengaturan Lengkap Acara Live Editor) */
.btn-edit-event {
    background: linear-gradient(135deg, #8f3d28, #b85338);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(143, 61, 40, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-edit-event:hover {
    box-shadow: 0 6px 20px rgba(143, 61, 40, 0.6);
    background: linear-gradient(135deg, #a6452e, #cb5d40);
}

/* Tombol 2: Dashboard Pelanggan (Tamu, WA, QR Scanner) */
.btn-dashboard-client {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-dashboard-client:hover {
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.55);
    background: linear-gradient(135deg, #0369a1, #075985);
}

/* Tombol 3: Preview Web Undangan Klien */
.btn-view-site {
    background: rgba(255, 255, 255, 0.12);
    color: #f1f5f9;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-view-site:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.btn-vip-logout {
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-vip-logout:hover {
    background: #ef4444;
    color: #fff;
}

/* ==========================================================================
   NAVBAR USER CAPSULE & LOGIN BUTTON
   ========================================================================== */
.nav-auth-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.btn-nav-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff !important;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}

.btn-nav-wa:hover {
    background: linear-gradient(135deg, #20ba59, #0e7065);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.38);
    color: #ffffff !important;
}

.btn-nav-login {
    background: #8f3d28;
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-nav-login:hover {
    background: #79321f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(143, 61, 40, 0.25);
}

.user-nav-capsule {
    position: relative;
    max-width: 260px;
    flex-shrink: 0;
}

.user-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f7f2ee;
    border: 1px solid #eddcd3;
    padding: 6px 14px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    color: #332d2a;
    transition: all 0.2s;
    max-width: 100%;
    white-space: nowrap;
}

.user-nav-btn #navUserName {
    display: inline-block;
    max-width: 155px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .user-nav-capsule {
        max-width: 320px;
    }
    .user-nav-btn #navUserName {
        max-width: 200px;
    }
}

.user-nav-btn:hover {
    background: #eddcd3;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 260px;
    max-width: min(320px, calc(100vw - 24px));
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eddcd3;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.user-dropdown-menu.show {
    display: flex;
    animation: fadeInMenu 0.2s ease;
}

@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-dropdown-header {
    padding: 10px 16px;
    border-bottom: 1px solid #f1f5f9;
}

.user-dropdown-header .name {
    font-weight: 700;
    font-size: 0.88rem;
    color: #1e293b;
    word-break: break-word;
    line-height: 1.35;
}

.user-dropdown-header .email {
    font-size: 0.75rem;
    color: #64748b;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: all 0.15s;
}

.user-dropdown-item:hover {
    background: #f8fafc;
    color: #8f3d28;
}

.user-dropdown-item.text-danger {
    color: #ef4444;
}

.user-dropdown-item.text-danger:hover {
    background: #fef2f2;
}

/* ==========================================================================
   ORDER PROGRESS TRACKER (Paket Terima Beres Klien)
   ========================================================================== */
.order-progress-wrapper {
    margin: 20px 0 35px 0;
}

.order-progress-card {
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid #eddcd3;
    box-shadow: 0 10px 30px rgba(143, 61, 40, 0.08);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.order-progress-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8f3d28, #c98a56, #25d366);
}

.order-progress-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.badge-terima-beres {
    background: #fef3c7;
    color: #b45309;
    border: 1px solid #fcd34d;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.order-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.status-pending {
    background: #fef3c7;
    color: #b45309;
}
.status-pending .status-dot { background: #b45309; }

.status-progress {
    background: #dbeafe;
    color: #1d4ed8;
}
.status-progress .status-dot { background: #1d4ed8; }

.status-completed {
    background: #dcfce7;
    color: #15803d;
}
.status-completed .status-dot { background: #15803d; }

/* 3-Step Progress Timeline */
.progress-steps-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 30px 0;
}

.progress-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    flex: 1;
}

.step-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 3px solid #cbd5e1;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.progress-step-item.active .step-circle {
    background: #8f3d28;
    border-color: #f7b29a;
    color: #ffffff;
    box-shadow: 0 0 0 5px rgba(143, 61, 40, 0.15);
}

.progress-step-item.completed .step-circle {
    background: #15803d;
    border-color: #86efac;
    color: #ffffff;
}

.step-label {
    font-weight: 700;
    font-size: 0.88rem;
    color: #1e293b;
}

.step-desc {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 2px;
}

.step-connector {
    flex: 1;
    height: 4px;
    background: #e2e8f0;
    margin: 0 10px;
    position: relative;
    top: -16px;
    z-index: 1;
}

.step-connector.completed {
    background: #15803d;
}

.progress-footer-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

/* ==========================================================================
   MODAL COMPONENT (Auth, QRIS Simulation & Order Admin)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: #ffffff;
    border-radius: 18px;
    width: 100%;
    max-width: 480px;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #eddcd3;
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-close-modal {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-close-modal:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.modal-body {
    padding: 24px;
}

/* Auth Tabs */
.modal-tabs {
    display: flex;
    background: #f8fafc;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.modal-tab-btn {
    flex: 1;
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
    background: transparent;
    font-size: 0.88rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-tab-btn.active {
    background: #ffffff;
    color: #8f3d28;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    font-size: 16px; /* Prevents auto-zoom on iOS Safari/Chrome */
    font-family: inherit;
    min-height: 48px;
    box-sizing: border-box;
    transition: all 0.2s;
}

@media (min-width: 769px) {
    .form-control {
        font-size: 0.92rem;
        min-height: 42px;
        padding: 10px 14px;
        border-radius: 8px;
    }
}

.form-control:focus {
    outline: none;
    border-color: #8f3d28;
    box-shadow: 0 0 0 3px rgba(143, 61, 40, 0.15);
}

@media (max-width: 640px) {
    .modal-overlay {
        align-items: flex-end;
        padding: 0;
    }
    .modal-card {
        border-radius: 22px 22px 0 0;
        max-height: 88vh;
        margin: 0;
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        animation: sheetModalUp 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .modal-card::before {
        content: '';
        display: block;
        width: 42px;
        height: 5px;
        background: #cbd5e1;
        border-radius: 999px;
        margin: 12px auto -6px;
    }
    .btn.btn-primary.full-width {
        min-height: 48px;
        font-size: 1rem;
    }
}

@keyframes sheetModalUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Quick 1-Click Demo Buttons */
.quick-test-box {
    background: #f7f2ee;
    border-radius: 10px;
    border: 1px dashed #c98a56;
    padding: 12px;
    margin-top: 16px;
    text-align: center;
}

.btn-quick-fill {
    background: #ffffff;
    border: 1px solid #eddcd3;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #8f3d28;
    cursor: pointer;
    margin-top: 6px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-quick-fill:hover {
    background: #8f3d28;
    color: #fff;
}

/* QRIS Modal Card */
.qris-box {
    text-align: center;
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.qris-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
}

.qris-qr-wrapper {
    background: #fff;
    padding: 16px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    margin: 10px 0;
}

.qris-amount-box {
    margin-top: 12px;
}

.qris-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: #8f3d28;
}

/* Toast Floating */
.vow-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #1e293b;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vow-toast.show {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .vip-action-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .vip-action-btns {
        width: 100%;
        justify-content: flex-start;
    }
    .progress-steps-row {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .step-connector {
        display: none;
    }
    .progress-step-item {
        flex-direction: row;
        gap: 12px;
        text-align: left;
    }
}

/* ==========================================================================
   KATALOG HORIZONTAL SLIDER (MENYAMPING) - LUXURY CAROUSEL & 3D DEVICES
   ========================================================================== */
.catalog-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fcfaf8 0%, #f7f2ee 100%);
    padding: 90px 0 80px;
}

/* Controls Bar (Filter + Arrows Nav) */
.catalog-controls-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.katalog-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.katalog-filter .filter-btn {
    background: #ffffff;
    border: 1px solid #eddcd3;
    color: #6e6561;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(143, 61, 40, 0.04);
}

.katalog-filter .filter-btn:hover {
    border-color: #c98a56;
    color: #8f3d28;
    background: #fff8f5;
    transform: translateY(-1px);
}

.katalog-filter .filter-btn.active {
    background: linear-gradient(135deg, #8f3d28, #c98a56);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(143, 61, 40, 0.25);
}

/* Slider Nav Arrows & Counter Badge */
.catalog-slider-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cat-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #eddcd3;
    color: #8f3d28;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(143, 61, 40, 0.08);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-nav-btn:hover {
    background: #8f3d28;
    color: #ffffff;
    border-color: #8f3d28;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(143, 61, 40, 0.22);
}

.cat-nav-btn:active {
    transform: scale(0.95);
}

.cat-counter-badge {
    background: #ffffff;
    border: 1.5px solid #eddcd3;
    color: #8f3d28;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(143, 61, 40, 0.05);
    letter-spacing: 1px;
}

/* Carousel Outer Container */
.catalog-carousel-container {
    position: relative;
    width: 100%;
}

/* Horizontal Track (Menyamping) */
.catalog-horizontal-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 14px 6px 36px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.catalog-horizontal-track::-webkit-scrollbar {
    display: none;
}

.catalog-horizontal-track.is-dragging {
    cursor: grabbing;
    user-select: none;
    scroll-behavior: auto;
}

/* Catalog Card */
.catalog-card {
    flex: 0 0 330px;
    max-width: 330px;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #eddcd3;
    box-shadow: 0 10px 30px rgba(143, 61, 40, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(143, 61, 40, 0.16);
    border-color: #c98a56;
}

/* Mockup Presentation Box */
.catalog-mockup-wrapper {
    position: relative;
    background: linear-gradient(160deg, #fdfbf9 0%, #f4ede7 100%);
    padding: 30px 20px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #eddcd3;
    overflow: hidden;
}

/* Floating Tag Badges */
.discount-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 15;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.tag-terracotta {
    background: linear-gradient(135deg, #8f3d28, #c98a56);
    color: #ffffff;
}

.tag-parisian {
    background: linear-gradient(135deg, #7a1c2e, #b8860b);
    color: #ffffff;
}

.tag-monochrome {
    background: linear-gradient(135deg, #18181b, #3f3f46);
    color: #ffffff;
}

.tag-botanical {
    background: linear-gradient(135deg, #1e3a1e, #2d5a27);
    color: #ffffff;
}

.tag-royal {
    background: linear-gradient(135deg, #09090b, #b8860b);
    color: #ffd700;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* 3D Smartphone Device Mockup */
.catalog-phone-device {
    position: relative;
    width: 215px;
    height: 380px;
    background: #0f141c;
    border-radius: 36px;
    border: 5px solid #232a35;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.catalog-card:hover .catalog-phone-device {
    transform: scale(1.02);
}

.cat-phone-speaker {
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 3px;
    background: #333a46;
    border-radius: 4px;
    z-index: 25;
}

.cat-dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 14px;
    background: #000000;
    border-radius: 12px;
    z-index: 24;
}

.cat-phone-screen {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    overflow: hidden;
}

.cat-screen-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-card:hover .cat-screen-bg {
    transform: scale(1.08);
}

.cat-phone-glare {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 30%, transparent 60%);
    pointer-events: none;
    z-index: 20;
}

/* Invitation Screen Mockup Overlay */
.cat-inv-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 14px 16px;
    text-align: center;
    color: #ffffff;
    z-index: 10;
}

.overlay-rosegold {
    background: linear-gradient(180deg, transparent 0%, rgba(143, 61, 40, 0.94) 75%);
}

.overlay-maroon {
    background: linear-gradient(180deg, transparent 0%, rgba(122, 28, 46, 0.94) 75%);
}

.overlay-emerald {
    background: linear-gradient(180deg, transparent 0%, rgba(30, 58, 30, 0.94) 75%);
}

.overlay-royal {
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.95) 75%);
}

.cat-inv-badge {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2px;
}

.cat-inv-names {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 2px 0 4px;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.cat-inv-date {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.cat-inv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Card Content Info */
.catalog-info {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.catalog-theme-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.theme-style-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.catalog-info h4 {
    font-family: var(--font-serif);
    font-size: 1.12rem;
    color: var(--text-main);
    line-height: 1.35;
    margin: 0;
}

.catalog-features-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
    min-height: 38px;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px dashed #eddcd3;
}

.price-box .strikethrough {
    font-size: 0.82rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.price-box .actual {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Dual Action Buttons (Demo & Pesan) */
.catalog-card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.btn-demo {
    flex: 1;
    padding: 10px 12px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #475569;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-demo:hover {
    background: #e2e8f0;
    color: #0f172a;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.btn-choose-theme {
    flex: 1;
    padding: 10px 12px;
    background: linear-gradient(135deg, #8f3d28, #c98a56);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(143, 61, 40, 0.2);
    transition: all 0.2s ease;
}

.btn-choose-theme:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(143, 61, 40, 0.32);
    filter: brightness(1.05);
}

/* Bottom Progress Scroll Bar */
.catalog-scroll-indicator {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.indicator-bar {
    width: 180px;
    height: 5px;
    background: #eddcd3;
    border-radius: 999px;
    overflow: hidden;
}

.indicator-progress {
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, #8f3d28, #c98a56);
    border-radius: 999px;
    transition: width 0.15s ease-out;
}

.indicator-hint {
    font-size: 0.8rem;
    color: #8f7f77;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Responsive Breakpoints for Catalog */
@media (max-width: 768px) {
    .catalog-controls-bar {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .katalog-filter {
        justify-content: center;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 4px;
    }

    .catalog-card {
        flex: 0 0 290px;
        max-width: 290px;
    }

    .catalog-phone-device {
        width: 195px;
        height: 345px;
    }
}

@media (max-width: 480px) {
    .catalog-card {
        flex: 0 0 270px;
        max-width: 270px;
    }

    .catalog-phone-device {
        width: 180px;
        height: 320px;
    }

    .catalog-info {
        padding: 16px;
    }
}

/* =========================================================
   FLOATING ACTION BUTTON (FAB) FOR LOGGED-IN CLIENTS (LEFT SIDE)
   ========================================================= */
.order-status-fab {
    position: fixed;
    bottom: 28px;
    left: 28px;
    right: auto;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #ffffff;
    padding: 10px 18px 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: fabSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    user-select: none;
}

.order-status-fab:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(15, 23, 42, 0.98);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45), 0 0 24px rgba(37, 99, 235, 0.35);
}

.fab-pulse-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border: 2px solid #0f172a;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulseGlow 2s infinite;
}

.fab-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
    flex-shrink: 0;
}

.fab-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fab-badge {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #60a5fa;
    line-height: 1;
}

.fab-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.fab-subtitle {
    font-size: 0.74rem;
    color: #94a3b8;
    line-height: 1;
}

.fab-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #cbd5e1;
    margin-left: 4px;
    transition: transform 0.2s, background 0.2s, color 0.2s;
}

.order-status-fab:hover .fab-arrow {
    transform: translateX(3px);
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

@keyframes fabSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1.15);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@media (max-width: 600px) {
    .order-status-fab {
        bottom: 18px;
        left: 12px;
        right: auto;
        max-width: calc(100vw - 84px);
        border-radius: 50px;
        padding: 8px 12px 8px 8px;
        gap: 8px;
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.4);
    }
    .fab-content {
        min-width: 0;
        flex: 1;
        overflow: hidden;
    }
    .fab-title {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 130px;
    }
    .fab-subtitle {
        font-size: 0.68rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 130px;
    }
    .fab-badge {
        font-size: 0.62rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 130px;
    }
    .fab-icon-wrap {
        width: 34px;
        height: 34px;
        font-size: 0.92rem;
        flex-shrink: 0;
    }
    .fab-arrow {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        flex-shrink: 0;
        margin-left: 2px;
    }
}

/* ==========================================================================
   SWEETALERT2 CUSTOM PROFESSIONAL THEME (TEGUH UNDANGAN)
   ========================================================================== */
.swal2-container {
    z-index: 999999 !important;
}
.swal2-popup.teguh-swal-popup {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    border-radius: 20px !important;
    border: 1px solid rgba(201, 138, 86, 0.25) !important;
    box-shadow: 0 25px 60px -15px rgba(143, 61, 40, 0.25) !important;
    padding: 2rem !important;
}
.swal2-title.teguh-swal-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 0.5rem !important;
}
.swal2-html-container.teguh-swal-html {
    font-size: 0.92rem !important;
    color: #64748b !important;
    line-height: 1.6 !important;
}
.swal2-confirm.teguh-swal-confirm {
    background: linear-gradient(135deg, #8f3d28, #c98a56) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    padding: 10px 24px !important;
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(143, 61, 40, 0.3) !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}
.swal2-confirm.teguh-swal-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(143, 61, 40, 0.4) !important;
}
.swal2-cancel.teguh-swal-cancel {
    background: #f1f5f9 !important;
    color: #64748b !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
    border-radius: 12px !important;
    border: none !important;
    margin-right: 8px !important;
    transition: background 0.2s !important;
}
.swal2-cancel.teguh-swal-cancel:hover {
    background: #e2e8f0 !important;
    color: #334155 !important;
}
.swal2-icon.swal2-success {
    border-color: #16a34a !important;
    color: #16a34a !important;
}
.swal2-icon.swal2-error {
    border-color: #ef4444 !important;
    color: #ef4444 !important;
}
.swal2-icon.swal2-warning {
    border-color: #f59e0b !important;
    color: #f59e0b !important;
}
.swal2-icon.swal2-info {
    border-color: #0284c7 !important;
    color: #0284c7 !important;
}
.swal2-backdrop-show {
    backdrop-filter: blur(6px) !important;
    background: rgba(15, 23, 42, 0.45) !important;
}

/* ==========================================================================
   QUICK ORDER MODAL (SEAMLESS INTAKE TO WHATSAPP)
   ========================================================================== */
.quick-order-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    visibility: hidden;
}

.quick-order-backdrop.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.quick-order-dialog {
    background: #ffffff;
    border-radius: 22px;
    width: 100%;
    max-width: 620px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px -12px rgba(15, 23, 42, 0.35);
    border: 1px solid #eddcd3;
    animation: orderModalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

@keyframes orderModalPop {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(12px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.quick-order-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 24px 16px 24px;
    border-bottom: 1px solid #f1e6df;
    background: #fdfaf8;
}

.quick-order-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quick-order-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.quick-order-title {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}

.quick-order-subtitle {
    font-size: 0.8rem;
    color: #64748b;
    margin: 2px 0 0 0;
}

.quick-order-close-btn {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #64748b;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.quick-order-close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}

.quick-order-body {
    padding: 20px 24px;
    overflow-y: auto;
    flex: 1;
}

.quick-order-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.quick-order-field {
    margin-bottom: 14px;
}

.quick-order-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.quick-order-input,
.quick-order-select,
.quick-order-textarea {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 0.9rem;
    color: #0f172a;
    font-family: var(--font-sans);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.quick-order-input:focus,
.quick-order-select:focus,
.quick-order-textarea:focus {
    border-color: #8f3d28;
    box-shadow: 0 0 0 3px rgba(143, 61, 40, 0.15);
}

.quick-order-slug-wrapper {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    overflow: hidden;
}

.quick-order-slug-prefix {
    padding: 9px 10px;
    font-size: 0.8rem;
    color: #64748b;
    background: #f1f5f9;
    border-right: 1.5px solid #cbd5e1;
    white-space: nowrap;
    font-family: monospace;
}

.quick-order-slug-input {
    border: none !important;
    background: transparent !important;
    padding: 9px 12px;
    font-size: 0.88rem;
    font-family: monospace;
    color: #8f3d28;
    font-weight: 700;
    width: 100%;
    outline: none;
}

.quick-order-payment-box {
    background: #fdfaf7;
    border: 1.5px dashed rgba(143, 61, 40, 0.35);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.payment-box-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.payment-box-title {
    font-size: 0.84rem;
    font-weight: 800;
    color: #8f3d28;
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-box-amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: #16a34a;
}

.payment-bank-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #eddcd3;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.84rem;
}

.btn-copy-account {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-copy-account:hover {
    background: #8f3d28;
    color: #ffffff;
    border-color: #8f3d28;
}

.order-dropzone {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.order-dropzone:hover {
    border-color: #8f3d28;
    background: rgba(143, 61, 40, 0.04);
}

.order-dropzone-preview {
    max-height: 120px;
    max-width: 100%;
    margin: 0 auto 8px auto;
    border-radius: 8px;
    display: none;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.quick-order-footer {
    padding: 16px 24px 20px 24px;
    border-top: 1px solid #f1e6df;
    background: #fdfaf8;
}

.btn-submit-quick-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit-quick-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(22, 163, 74, 0.45);
}

.btn-submit-quick-order:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.quick-order-trust {
    text-align: center;
    font-size: 0.74rem;
    color: #64748b;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

@media (max-width: 600px) {
    .quick-order-grid-2 {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .quick-order-dialog {
        max-height: 96vh;
        border-radius: 16px;
    }
    .quick-order-header {
        padding: 16px 18px 12px 18px;
    }
    .quick-order-body {
        padding: 14px 18px;
    }
    .quick-order-footer {
        padding: 12px 18px 16px 18px;
    }
}