/* ============================================================
   SECUP - Main Stylesheet
   Theme: Elegant Coffee | Mobile-First Design
   ============================================================ */

:root {
    --coffee-dark: #1A120B;
    --coffee-primary: #3C2A21;
    --coffee-secondary: #6F4E37;
    --coffee-light: #8B6914;
    --cream: #F5F0EB;
    --cream-dark: #E8DFD0;
    --gold: #C9A227;
    --gold-light: #E5C158;
    --accent: #D4A574;
    --text-primary: #2C1810;
    --text-secondary: #6B5B4F;
    --text-light: #9B8B7F;
    --white: #FFFFFF;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 24, 16, 0.12);
    --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.16);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--cream) 0%, #FAF7F2 50%, var(--cream-dark) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   LOADING OVERLAY - Coffee Animation
   ============================================================ */
.loading-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--coffee-dark) 0%, var(--coffee-primary) 100%);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading-overlay.active { display: flex; }

.coffee-loader {
    position: relative;
    width: 120px;
    height: 140px;
}

.coffee-loader .cup {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, var(--cream) 0%, #E0D5C8 100%);
    border-radius: 0 0 40px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3), inset 0 -4px 10px rgba(0,0,0,0.1);
}

.coffee-loader .cup::before {
    content: '';
    position: absolute;
    top: 10px;
    right: -25px;
    width: 30px;
    height: 35px;
    border: 6px solid var(--cream);
    border-radius: 0 20px 20px 0;
}

.coffee-loader .coffee {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 10px;
    background: linear-gradient(90deg, #3C2A21 0%, #6F4E37 50%, #3C2A21 100%);
    border-radius: 50%;
    animation: coffeeWave 2s ease-in-out infinite;
}

@keyframes coffeeWave {
    0%, 100% { transform: translateX(-50%) scaleX(1); }
    50% { transform: translateX(-50%) scaleX(0.9); }
}

.steam {
    position: absolute;
    width: 8px;
    height: 30px;
    background: linear-gradient(to top, rgba(255,255,255,0.3), transparent);
    border-radius: 50%;
    filter: blur(4px);
    animation: steamRise 2s ease-out infinite;
}

.steam-1 { left: 35%; top: 20px; animation-delay: 0s; }
.steam-2 { left: 50%; top: 15px; animation-delay: 0.6s; }
.steam-3 { left: 65%; top: 20px; animation-delay: 1.2s; }

@keyframes steamRise {
    0% { transform: translateY(0) scaleX(1); opacity: 0.6; }
    100% { transform: translateY(-40px) scaleX(1.5); opacity: 0; }
}

.loading-text {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: var(--cream);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-secup {
    background: linear-gradient(135deg, rgba(26, 18, 11, 0.95) 0%, rgba(60, 42, 33, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar-secup .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--coffee-dark);
    box-shadow: 0 2px 12px rgba(201, 162, 39, 0.4);
}

.brand-text { display: flex; flex-direction: column; }
.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 2px;
}
.brand-tagline {
    font-size: 0.6rem;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.navbar-secup .nav-link {
    color: var(--cream) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    margin: 0 2px;
}

.navbar-secup .nav-link:hover {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold) !important;
}

.navbar-toggler {
    border: none;
    color: var(--gold) !important;
    font-size: 1.3rem;
    padding: 0.5rem;
}

.navbar-toggler:focus { box-shadow: none; }

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content {
    padding-top: 80px;
    min-height: calc(100vh - 300px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    background: linear-gradient(135deg, var(--coffee-dark) 0%, var(--coffee-primary) 50%, var(--coffee-secondary) 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title span {
    color: var(--gold);
    display: block;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.hero-desc {
    color: var(--accent);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 500px;
}

.hero-icon {
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* ============================================================
   ORDER FORM - pesancup.php
   ============================================================ */
.order-section {
    padding: 2rem 0 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Form Card Glassmorphism */
.form-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--coffee-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--cream-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-card-title i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Form Controls */
.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-label .required {
    color: var(--danger);
    margin-left: 2px;
}

.form-control, .form-select {
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    background: var(--white);
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
    background: var(--white);
}

.form-control::placeholder {
    color: var(--text-light);
    font-size: 0.85rem;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.input-group-text {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    border: 2px solid var(--cream-dark);
    border-right: none;
    color: var(--coffee-secondary);
    font-weight: 500;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Kategori Selector */
.kategori-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (min-width: 576px) {
    .kategori-grid { grid-template-columns: repeat(3, 1fr); }
}

.kategori-item {
    position: relative;
    cursor: pointer;
}

.kategori-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.kategori-card {
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-md);
    padding: 1rem 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.kategori-card .kat-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.kategori-card .kat-label {
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.kategori-card .kat-desc {
    font-size: 0.65rem;
    color: var(--text-light);
    line-height: 1.2;
}

.kategori-item input[type="radio"]:checked + .kategori-card {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.2);
    transform: scale(1.02);
}

.kategori-item:hover .kategori-card {
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Sender Type Toggle */
.sender-toggle {
    display: flex;
    background: var(--cream-dark);
    border-radius: var(--radius-md);
    padding: 4px;
    gap: 4px;
}

.sender-toggle .sender-option {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    border: none;
    background: transparent;
}

.sender-toggle .sender-option.active {
    background: var(--white);
    color: var(--coffee-primary);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}

.sender-toggle .sender-option i {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

/* Gift Selection */
.gift-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 576px) {
    .gift-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
    .gift-grid { grid-template-columns: repeat(5, 1fr); }
}

.gift-item {
    position: relative;
    cursor: pointer;
}

.gift-item input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.gift-card {
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-md);
    padding: 1rem 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.gift-card .gift-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 1.3rem;
    color: var(--coffee-secondary);
}

.gift-card .gift-name {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.gift-card .gift-price {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold);
}

.gift-item input[type="radio"]:checked + .gift-card {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, transparent 100%);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.15);
}

.gift-item:hover .gift-card {
    transform: translateY(-3px);
    border-color: var(--accent);
}

/* Payment Method */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.payment-item {
    position: relative;
    cursor: pointer;
}

.payment-item input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-card {
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.payment-card .pay-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--coffee-secondary);
    flex-shrink: 0;
}

.payment-card .pay-info h6 {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.payment-card .pay-info p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}

.payment-item input[type="radio"]:checked + .payment-card {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, transparent 100%);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.15);
}

/* Price Summary */
.price-summary {
    background: linear-gradient(135deg, var(--coffee-dark) 0%, var(--coffee-primary) 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: var(--cream);
    position: sticky;
    top: 90px;
}

.price-summary h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-align: center;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.total {
    border-top: 2px solid var(--gold);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.price-row .price-value {
    font-weight: 600;
}

/* Submit Button */
.btn-secup {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--coffee-dark);
    border: none;
    border-radius: var(--radius-md);
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.btn-secup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(201, 162, 39, 0.4);
    color: var(--coffee-dark);
}

.btn-secup:active {
    transform: translateY(0);
}

.btn-secup i {
    margin-right: 8px;
}

/* ============================================================
   INVOICE PAGE
   ============================================================ */
.invoice-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.invoice-header {
    background: linear-gradient(135deg, var(--coffee-dark) 0%, var(--coffee-primary) 100%);
    padding: 2rem;
    text-align: center;
    color: var(--cream);
}

.invoice-header h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.invoice-body {
    padding: 2rem;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px dashed var(--cream-dark);
}

.invoice-row.label-value {
    flex-direction: column;
    gap: 4px;
}

.invoice-row.label-value .label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.invoice-row.label-value .value {
    font-weight: 600;
    color: var(--text-primary);
}

.invoice-total {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, transparent 100%);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    text-align: center;
}

.invoice-total h4 {
    color: var(--gold);
    font-weight: 700;
    margin: 0;
}

/* ============================================================
   CONFIRMATION & QR PAGE
   ============================================================ */
.qr-container {
    text-align: center;
    padding: 2rem;
}

.qr-code-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: inline-block;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
    position: relative;
}

.qr-code-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 3px solid var(--gold);
    border-radius: calc(var(--radius-lg) + 4px);
    opacity: 0.5;
}

.qr-code-img {
    width: 250px;
    height: 250px;
    object-fit: contain;
}

.card-link-box {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin: 1rem 0;
    border: 2px dashed var(--accent);
}

.card-link-box .link-text {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--coffee-secondary);
    word-break: break-all;
}

/* ============================================================
   CARD PAGE (Public QR Scan)
   ============================================================ */
.card-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--coffee-dark) 0%, var(--coffee-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.card-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.card-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.card-header .card-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.card-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--coffee-dark);
    margin: 0;
    font-size: 1.5rem;
}

.card-header .card-category {
    color: var(--coffee-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.card-body {
    padding: 2rem;
}

.card-message {
    background: linear-gradient(135deg, var(--cream) 0%, #FFF8F0 100%);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--gold);
}

.card-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 0;
    font-style: italic;
}

.card-sender {
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.card-sender strong {
    color: var(--coffee-primary);
    display: block;
    font-size: 1rem;
    margin-top: 4px;
}

.card-footer-brand {
    text-align: center;
    padding: 1.5rem;
    background: var(--cream);
    border-top: 1px solid var(--cream-dark);
}

.card-footer-brand img,
.card-footer-brand i {
    font-size: 2rem;
    color: var(--gold);
}

.card-footer-brand p {
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.secup-footer {
    background: linear-gradient(135deg, var(--coffee-dark) 0%, var(--coffee-primary) 100%);
    color: var(--cream);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--accent);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--coffee-dark);
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-badge {
    background: rgba(255,255,255,0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.footer-badge:hover {
    background: var(--gold);
    color: var(--coffee-dark);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
    color: var(--accent);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ============================================================
   ANIMATIONS & UTILITIES
   ============================================================ */
.fade-in { animation: fadeIn 0.5s ease-in; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pulse-gold { animation: pulseGold 2s infinite; }
@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(201, 162, 39, 0); }
}

.text-gold { color: var(--gold) !important; }
.bg-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important; }

/* Mobile Optimizations */
@media (max-width: 576px) {
    .hero-title { font-size: 1.6rem; }
    .hero-title span { font-size: 0.9rem; }
    .form-card { padding: 1.25rem; }
    .kategori-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .kategori-card { padding: 0.75rem 0.4rem; }
    .kategori-card .kat-icon { font-size: 1.5rem; }
    .kategori-card .kat-label { font-size: 0.7rem; }
    .gift-grid { grid-template-columns: repeat(2, 1fr); }
    .payment-grid { grid-template-columns: 1fr; }
    .price-summary { position: static; margin-top: 1.5rem; }
    .brand-name { font-size: 1.2rem; }
    .brand-tagline { font-size: 0.5rem; }
}

/* Scrollbar Styling */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--coffee-secondary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--coffee-primary); }

/* Selection Color */
::selection {
    background: var(--gold);
    color: var(--coffee-dark);
}