/* css/landing.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Share+Tech+Mono&display=swap');

:root {
    /* Color Palette - Pomodoro Red Theme */
    --primary-red: #ba4949;
    --primary-red-rgb: 186, 73, 73;
    --dark-red: #8b3232;
    --light-red: #fee2e2;
    --glow-red: rgba(186, 73, 73, 0.15);
    
    /* Neutral Tones */
    --text-dark: #121316;                     /* Elegant charcoal black */
    --text-muted: #5e6472;                    /* Muted slate grey */
    --text-light: #f8f9fa;
    --bg-light: #fafafc;                      /* Off-white */
    --bg-white: #ffffff;
    
    /* Dark Mode (Focus Mode) Tones */
    --bg-dark: #121316;
    --border-light: #eaeaea;                  /* Fine lines for grid layout */
    --border-dark: rgba(255, 255, 255, 0.08);
    
    /* Branch Furniture Style - Sharp and Structural */
    --border-radius-sm: 4px;
    --border-radius-md: 6px;
    --border-radius-lg: 8px;
    
    --transition-fast: 0.2s ease;
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Subtle premium shadows */
    --shadow-flat: 0 2px 8px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 12px 30px rgba(186, 73, 73, 0.06);
}

/* BASE STYLES */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-red-rgb), 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

/* NAVBAR */
.custom-navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    padding: 0.8rem 0;
    transition: all var(--transition-fast);
    z-index: 1000;
}

.custom-navbar.scrolled {
    padding: 0.4rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.navbar-brand img {
    height: 80px;
    width: auto;
    transition: opacity var(--transition-fast);
}

.navbar-brand:hover img {
    opacity: 0.85;
}

.custom-navbar .nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color var(--transition-fast);
    letter-spacing: 0.5px;
}

.custom-navbar .nav-link:hover {
    color: var(--primary-red) !important;
}

.btn-premium-nav {
    background: var(--primary-red);
    color: white !important;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
    padding: 0.6rem 1.4rem !important;
    border: none;
    letter-spacing: 0.5px;
    transition: background-color var(--transition-fast);
}

.btn-premium-nav:hover {
    background: var(--dark-red);
}

.btn-outline-nav {
    background: transparent;
    color: var(--primary-red) !important;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
    padding: 0.55rem 1.3rem !important;
    border: 1px solid var(--primary-red);
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-nav:hover {
    background: var(--light-red);
    color: var(--dark-red) !important;
}

.btn-premium-lg {
    background: var(--primary-red);
    color: white !important;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    padding: 1rem 2rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-premium-lg:hover {
    background: var(--dark-red);
}

.btn-outline-lg {
    background: transparent;
    color: var(--text-dark) !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 2.2rem;
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--border-light);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-lg:hover {
    background: var(--bg-light);
    border-color: var(--text-muted);
}

.hero-section {
    padding: 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Left side red gradient column */
.bg-red-gradient {
    position: relative;
    padding-top: 11rem !important;
    padding-bottom: 7rem !important;
}

/* Right side product slider column */
.bg-hero-slider-side {
    position: relative;
    padding-top: 11rem !important;
    padding-bottom: 7rem !important;
}

.hero-text-side {
    max-width: 500px;
}

.hero-badge-white {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-title-white {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-title-white span {
    color: #ffc9c9; /* Soft coral pink on red background */
}

.hero-subtitle-white {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.btn-hero-white {
    background: #ffffff;
    color: var(--primary-red) !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 2.2rem;
    border-radius: var(--border-radius-sm);
    border: none;
    transition: background-color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-white:hover {
    background: var(--light-red);
}

.btn-hero-outline-white {
    background: transparent;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 2.2rem;
    border-radius: var(--border-radius-sm);
    border: 2px solid #ffffff;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-outline-white:hover {
    background: #ffffff;
    color: var(--primary-red) !important;
}

/* Slider wrapper */
.hero-slider-wrapper {
    border: none;
    background: transparent;
    padding: 0;
    border-radius: var(--border-radius-md);
    max-width: 680px;
    width: 100%;
}

.hero-slider-container {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
    background: transparent;
}

.hero-slider-container .carousel-item {
    height: 520px;
    background: transparent;
}

.hero-slider-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bounded container keeps quality high */
}

/* SECTION STRUCTURE */
.section-padding {
    padding: 6.5rem 0;
}

.section-border-bottom {
    border-bottom: 1px solid var(--border-light);
}

/* Latar Belakang Section with Custom Background Image & Dark Overlay */
.section-bg-latar-belakang {
    position: relative;
    background-image: linear-gradient(rgba(18, 19, 22, 0.88), rgba(18, 19, 22, 0.95)), url('../assets/bg_frustrated.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
}

.section-bg-latar-belakang .section-subtitle-tag {
    color: #ffc9c9; /* Soft red-pink subtitle */
}

.section-bg-latar-belakang .section-main-title {
    color: #ffffff;
}

.section-bg-latar-belakang .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.section-bg-latar-belakang .branch-grid-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.section-bg-latar-belakang .branch-grid-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-bg-latar-belakang .branch-grid-col {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.section-bg-latar-belakang .branch-grid-col:last-child {
    border-right: none;
}

.section-bg-latar-belakang .text-dark {
    color: #ffffff !important;
}

.section-bg-latar-belakang .text-muted {
    color: rgba(255, 255, 255, 0.65) !important;
}

.section-bg-latar-belakang .icon-box-lg {
    color: #ffc9c9;
}

.section-bg-latar-belakang .card-accent-red {
    background: rgba(186, 73, 73, 0.12) !important;
    border-color: rgba(186, 73, 73, 0.25) !important;
}

@media (max-width: 991.98px) {
    .section-bg-latar-belakang {
        background-attachment: scroll; /* Disable parallax on mobile/tablet for performance */
    }
}

@media (max-width: 575.98px) {
    .section-bg-latar-belakang .branch-grid-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .section-bg-latar-belakang .branch-grid-col:last-child {
        border-bottom: none;
    }
}

.section-title-group {
    margin-bottom: 4rem;
}

.section-subtitle-tag {
    color: var(--primary-red);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-main-title {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-dark);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0.8rem auto 0 auto;
    line-height: 1.6;
}

/* ASYMMETRIC GRID / BORDERED GRID (Branch Style) */
.branch-grid-container {
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: var(--bg-white);
}

.branch-grid-row {
    display: flex;
    margin: 0;
    border-bottom: 1px solid var(--border-light);
}

.branch-grid-row:last-child {
    border-bottom: none;
}

.branch-grid-col {
    padding: 3rem;
    flex: 1;
    border-right: 1px solid var(--border-light);
}

.branch-grid-col:last-child {
    border-right: none;
}

.icon-box-lg {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

/* RED CARD ACCENT (Breaks white saturation) */
.card-accent-red {
    background: #fffafa !important;
    border-color: rgba(var(--primary-red-rgb), 0.15) !important;
}

/* COMPACT GRID FOR STEPS (Side-by-Side Horizontal Layout) */
.step-card-compact {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.step-card-compact:hover {
    transform: translateY(-4px);
    border-color: var(--primary-red);
}

.step-num-badge {
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(var(--primary-red-rgb), 0.7); /* Vibrant Pomodoro Red */
    line-height: 1;
    margin-bottom: 0.8rem;
    font-family: 'Share Tech Mono', monospace;
}

.step-title-compact {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.2px;
}

.step-desc-compact {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.step-img-box-small {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-light);
    background: var(--bg-light);
}

.step-img-box-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

.step-card-compact:hover .step-img-box-small img {
    transform: scale(1.04);
}

/* CUSTOM POMODORO 6-STEPS GRID (Replaces static blurry image) */
.pomodoro-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pomodoro-step-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pomodoro-step-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-hover);
}

.pomodoro-step-card .step-icon {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1.2rem;
    transition: transform var(--transition-fast);
    display: inline-block;
}

.pomodoro-step-card:hover .step-icon {
    transform: scale(1.15) rotate(-5deg);
}

.pomodoro-step-card .step-num-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-red);
    margin-bottom: 0.4rem;
    font-family: 'Share Tech Mono', monospace;
}

.pomodoro-step-card h5 {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
}

.pomodoro-step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* PRODUCT GALLERY - Grid Branch Style */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.gallery-grid-item {
    border-right: 1px solid var(--border-light);
    background: var(--bg-white);
    transition: transform var(--transition-fast);
}

.gallery-grid-item:last-child {
    border-right: none;
}

.gallery-img-box {
    height: 280px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-light);
    position: relative;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-grid-item:hover .gallery-img-box img {
    transform: scale(1.04);
}

.gallery-info {
    padding: 1.8rem;
}

.gallery-info h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.gallery-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* TESTIMONIALS SECTION (Branch Style) */
.testimonials-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.92) 100%), url('../assets/testimonial_students.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonial-grid-branch {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin: 3rem 0;
}

.testimonial-item-branch {
    padding: 3rem;
    border-right: 1px solid var(--border-light);
}

.testimonial-item-branch:last-child {
    border-right: none;
}

.testimonial-stars {
    color: var(--primary-red);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.testimonial-quote-text {
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.8rem;
}

.testimonial-author-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* DASHBOARD PREVIEW */
.dashboard-preview-container {
    background: var(--bg-dark);
    color: white;
    border-radius: var(--border-radius-lg);
    padding: 5rem 4rem;
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.dashboard-preview-container::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-red-rgb), 0.1) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.dashboard-preview-img-wrapper {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    padding: 8px;
    border-radius: var(--border-radius-md);
}

.dashboard-preview-img-wrapper img {
    border-radius: var(--border-radius-sm);
    width: 100%;
    height: auto;
}

/* PRICING & CTA SECTION */
.pricing-grid-branch {
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    background: var(--bg-white);
    overflow: hidden;
    max-width: 650px;
    margin: 0 auto;
}

.pricing-header-branch {
    padding: 3rem;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
    background: var(--bg-light);
    position: relative;
}

.pricing-badge-branch {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-body-branch {
    padding: 3rem;
}

/* CALL TO ACTION */
.cta-section {
    background: linear-gradient(135deg, rgba(186, 73, 73, 0.9) 0%, rgba(139, 50, 50, 0.92) 100%), url('../assets/cta_student.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 7rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
}

.cta-desc {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 2.2rem auto;
    line-height: 1.6;
}

.btn-cta-white {
    background: var(--bg-white);
    color: var(--primary-red) !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 2.2rem;
    border-radius: var(--border-radius-sm);
    border: none;
    transition: background-color var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-white:hover {
    background: var(--light-red);
}

/* FOOTER */
.custom-footer {
    background: var(--bg-white);
    color: var(--text-muted);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid var(--border-light);
}

.footer-logo {
    height: 38px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

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

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

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.9rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-info-list i {
    color: var(--primary-red);
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--border-radius-sm);
    background: var(--bg-light);
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 1.1rem;
    border: 1px solid var(--border-light);
}

.social-icon-btn:hover {
    background: var(--primary-red);
    color: white;
}

/* ==========================================================================
   CHECKOUT & E-COMMERCE STYLING
   ========================================================================== */
.checkout-section {
    padding: 9rem 0 6rem 0;
    background: var(--bg-light);
}

.checkout-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    padding: 2.5rem;
    box-shadow: var(--shadow-flat);
    margin-bottom: 2rem;
    transition: box-shadow var(--transition-fast);
}

.checkout-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.checkout-title {
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 10px;
}

.form-label-premium {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control-premium {
    border-radius: var(--border-radius-sm);
    border: 1px solid #d1d5db;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: border-color var(--transition-fast);
}

.form-control-premium:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(var(--primary-red-rgb), 0.1);
    outline: none;
    background: var(--bg-white);
}

.payment-method-btn {
    border: 1px solid #d1d5db;
    border-radius: var(--border-radius-sm);
    padding: 1.2rem;
    text-align: center;
    background: var(--bg-white);
    cursor: pointer;
    transition: all var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    color: var(--text-muted);
}

.payment-method-btn i {
    font-size: 1.8rem;
    color: var(--text-muted);
}

.payment-method-btn:hover {
    border-color: var(--primary-red);
    color: var(--text-dark);
}

.payment-method-btn.active {
    border-color: var(--primary-red);
    background: var(--light-red);
    color: var(--primary-red);
}

.payment-method-btn.active i {
    color: var(--primary-red);
}

.quantity-widget {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    max-width: 120px;
    background: var(--bg-white);
}

.quantity-btn {
    background: #f3f4f6;
    border: none;
    padding: 0.5rem 0.9rem;
    font-weight: 800;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
}

.quantity-btn:hover {
    background: #e5e7eb;
}

.quantity-val {
    flex-grow: 1;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.success-container {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
    padding: 3rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-flat);
}

.success-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ebfbee;
    color: #40c057;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.8rem auto;
}

.qr-code-placeholder {
    width: 200px;
    height: 200px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    margin: 1.5rem auto;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-flat);
}

.qr-code-placeholder img {
    max-width: 100%;
    height: auto;
}

.va-box {
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px dashed #d1d5db;
}

.va-number {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-red);
    margin: 0.5rem 0;
    font-family: 'Share Tech Mono', monospace;
}

.btn-copy-va {
    background: none;
    border: 1px solid #d1d5db;
    color: var(--text-muted);
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.btn-copy-va:hover {
    color: var(--primary-red);
    background: var(--light-red);
    border-color: var(--primary-red);
}

.receipt-details {
    text-align: left;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

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

/* RESPONSIVENESS */
@media (max-width: 991.98px) {
    .navbar-brand img {
        height: 52px;
    }
    .bg-red-gradient, .bg-hero-slider-side {
        padding-top: 7rem !important;
        padding-bottom: 5rem !important;
        text-align: center;
    }
    .hero-text-side {
        max-width: 100%;
        margin: 0 auto;
    }
    .hero-title-white {
        font-size: 2.5rem;
        letter-spacing: -0.8px;
    }
    .hero-subtitle-white {
        margin: 0 auto 2rem auto;
    }
    .btn-hero-white, .btn-hero-outline-white {
        justify-content: center;
    }
    .hero-slider-wrapper {
        margin: 0 auto;
    }
    .hero-slider-container .carousel-item {
        height: 440px;
    }
    .pomodoro-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid, .testimonial-grid-branch {
        grid-template-columns: 1fr;
    }
    .gallery-grid-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
    .gallery-grid-item:last-child {
        border-bottom: none;
    }
    .testimonial-item-branch {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding: 2rem;
    }
    .testimonial-item-branch:last-child {
        border-bottom: none;
    }
    .dashboard-preview-container {
        padding: 3rem 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title-white {
        font-size: 2.1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-hero-white, .btn-hero-outline-white {
        justify-content: center;
    }
    .section-main-title {
        font-size: 1.8rem;
    }
    .cta-title {
        font-size: 1.9rem;
    }
    .pomodoro-steps-grid {
        grid-template-columns: 1fr;
    }
    .branch-grid-row {
        flex-direction: column;
    }
    .branch-grid-col {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding: 2rem;
    }
    .branch-grid-col:last-child {
        border-bottom: none;
    }
}

/* CAROUSEL CONTROLS */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: var(--border-radius-sm);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
}

.carousel-control-prev { left: 10px; }
.carousel-control-next { right: 10px; }

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--light-red);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 16px;
    height: 16px;
    filter: invert(29%) sepia(21%) saturate(1637%) hue-rotate(314deg) brightness(91%) contrast(92%); /* Pomodoro Red */
}

.carousel-indicators [data-bs-target] {
    width: 20px;
    height: 4px;
    border-radius: 0;
    background-color: #ffffff;
    opacity: 0.4;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #ffffff;
}
