/* =========================================================
   GLOBAL STYLES
========================================================= */

.object-fit-cover { object-fit: cover; }

.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

/* Fade Animations */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease;
}
.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(20px);
    transition: 0.8s ease;
}
.fade-left.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.8s ease;
}
.fade-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Hide Scrollbar */
::-webkit-scrollbar { width: 0; height: 0; }
html { scrollbar-width: none; }
body { -ms-overflow-style: none; scrollbar-width: none; }

/* =========================================================
   HERO SECTION DESKTOP
========================================================= */

.hero-bg-fixed {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background:
        linear-gradient(
            to right,
            rgba(255,255,255,0.95),
            rgba(255,255,255,0.5),
            rgba(255,255,255,0)
        ),
        url('/image/bg-hero.jpg') center/cover no-repeat;
    z-index: -1;
    filter: brightness(0.9);
}

.hero-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section {
    padding: 120px 0;
    min-height: 90vh;
}

.hero-section h1 {
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

.hero-section p {
    color: #555;
    font-size: 1.05rem;
    max-width: 480px;
}

.hero-section .btn {
    background-color: #C5A572;
    color: #000;
    border: none;
    border-radius: 50px;
    transition: 0.3s ease;
}

.hero-section .btn:hover {
    background: #e2c88f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197,165,114,0.4);
}

.hero-img {
    max-width: 420px;
    animation: float 4s ease-in-out infinite;
}

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


/* =========================================================
   BANNER / PROMO
========================================================= */

.banner-card {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    transition: 0.3s ease;
}
.banner-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.22);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.promo-full-bg {
    width: 100%;
    padding: 80px 0;
    background:
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/image/bg-pattern.jpg') center/cover no-repeat;
    border-radius: 16px;
}

/* =============================================
   PROMO SLIDE-IN ANIMATIONS
============================================= */

.slide-left, .slide-right {
    opacity: 0;
    transition: 1.3s ease;
}

/* Start positions */
.slide-left {
    transform: translateX(-60px);
}

.slide-right {
    transform: translateX(60px);
}

/* Active state (fade + slide to normal) */
.slide-left.active,
.slide-right.active {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   BRAND MARQUEE
========================================================= */

.brand-marquee { overflow: hidden; }

.brand-track {
    width: max-content;
    white-space: nowrap;
    animation: scroll 35s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =========================================================
   BEST SELLER SLIDER — FINAL CLEAN VERSION
========================================================= */

.best-seller-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
}

.best-seller-track {
    display: flex;
    transition: 0.5s ease;
    width: 100%;
}

/* BEST SELLER — FIX RATIO SAMA TINGGI */
.best-seller-track .product-card {
    flex: 0 0 calc(33.33% - 12px);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    height: 340px; 
    display: flex;
    flex-direction: column;
}

.best-seller-track .product-card img {
    height: 180px;        
    width: 100%;
    object-fit: cover;   
    padding: 0 !important;
    border-bottom: 0;
}

.best-seller-track .product-card .card-body {
    flex-grow: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slide-page {
    min-width: 100%;
    display: flex;
    gap: 16px;
}

.rating { color: #000; margin-bottom: 6px; }

.price { font-weight: 700; color: #000; }

.best-seller-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 5px;
}

.best-seller-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d4d4d4;
    transition: 0.3s;
}

.best-seller-dots button.active {
    background: #C5A572;
    transform: scale(1.25);
}


/* =========================================================
   NAVBAR (Desktop + Mobile)
========================================================= */

.navbar-brand {
  font-family: 'Playfair Display', serif;
  color: #C5A572;
  letter-spacing: 1px;
  transition: 0.3s;
}


.navbar-brand:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link {
  color: #ddd !important;
  font-weight: 500;
  position: relative;
  padding: 8px 14px;
  transition: 0.3s;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background: #C5A572;
  transition: 0.3s;
  border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #C5A572 !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 20px);
}

.nav-item.dropdown .nav-link::after {
    display: none !important;
}

/* USER NAME: biasa, tanpa animasi */
.nav-item.dropdown .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    transition: 0.2s ease;
}

/* Hover: hanya ganti warna (tanpa garis bawah) */
.nav-item.dropdown .nav-link:hover {
    color: #C5A572 !important;
}


/* Cart button desktop */
.navbar .btn-outline-light {
  border: 1px solid transparent;
  transition: 0.3s;
}

.navbar .btn-outline-light:hover {
  background-color: #C5A572;
  color: #000 !important;
  transform: translateY(-2px);
}

.navbar .badge {
  background: #C5A572;
  color: #000;
  font-weight: 600;
  font-size: 0.75rem;
}

/* Dropdown items desktop */
.dropdown-menu {
  background: #111;
  border: none;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item {
  color: #ddd !important;
  text-align: center;
}

.dropdown-menu .dropdown-item:hover {
  background: #C5A572;
  color: #000 !important;
}

/* Auth Buttons */
.nav-auth-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 8px 18px !important;
    border-radius: 10px !important;
    transition: all 0.25s ease !important;
}

/* Login Button */
.nav-auth-login {
    border: 1px solid #C5A572 !important;
    color: #C5A572 !important;
    background: transparent !important;
}

.nav-auth-login:hover {
    background-color: #C5A572 !important;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197,165,114,0.4);
}

/* Register Button */
.nav-auth-register {
    background-color: #C5A572 !important;
    color: #000 !important;
    border: none !important;
}

.nav-auth-register:hover {
    background-color: #e4c48a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197,165,114,0.45);
}

.navbar {
    transform: translateY(0) !important;
    opacity: 1 !important;
    transition: transform 0.35s ease, opacity 0.35s ease !important;
}

/* Hide */
.nav-hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
}

/* Show */
.nav-visible {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* Remove leftover lock state */
.nav-locked {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* ==============================
   DETAIL PRODUCT - RELATED ITEMS
   ============================== */

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Hover */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Gambar */
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Zoom */
.product-card:hover img {
    transform: scale(1.05);
}

/* Judul produk */
.product-card h6,
.product-card p.fw-semibold {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

/* Hover warna */
.product-card:hover p.fw-semibold {
    color: #ad833f;
}

.product-card .card-body {
    padding: 14px;
    text-align: center;
}

/* Harga */
.product-card p.fw-bold {
    font-size: 16px;
    color: #212529;
}

/* Garis pemisah di bawah produk utama */
hr.my-5 {
    border-top: 2px solid #ad833f;
    opacity: 0.8;
}

/* Heading "More from Brand" */
h4.text-center span.text-warning {
    color: #D4AF37 !important; /* warna emas lembut */
}

    .product-card-hover {
        transition: all 0.3s ease;
    }
    .product-card-hover:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
    }

/* ======================================
   OUR PRODUCTS — FINAL RESPONSIVE FIX
====================================== */

/* Desktop */
.our-products .our-product-card {
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    
}

.our-products .our-product-card:hover {
    transform: translateY(-6px); /* naik lembut */
    box-shadow: 0 10px 28px rgba(0,0,0,0.18); /* shadow premium */
}

.our-products .our-product-card img {
    height: 180px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.our-products .our-product-card:hover img {
    transform: scale(1.05); /* zoom sedikit */
}

/* Title */
.our-products .product-name {
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.our-products .price {
    color: #000;
    font-weight: 700;
}

.our-products img { object-fit: contain; padding: 10px; }

.our-products .card-body { text-align: center; padding: 14px; }

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.our-products .col-6,
.our-products .col-md-3 {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}

.our-products .col-6,
.our-products .col-md-3 {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}

.our-products .col-6:nth-child(1),
.our-products .col-md-3:nth-child(1) { animation-delay: 0.1s; }
.our-products .col-6:nth-child(2),
.our-products .col-md-3:nth-child(2) { animation-delay: 0.2s; }
.our-products .col-6:nth-child(3),
.our-products .col-md-3:nth-child(3) { animation-delay: 0.3s; }
.our-products .col-6:nth-child(4),
.our-products .col-md-3:nth-child(4) { animation-delay: 0.4s; }

/* =========================================================
   RATING STARS ORDER REVIEW
========================================================= */
    .star-rating i {
        font-size: 20px;
        cursor: pointer;
        color: #ccc;
        transition: 0.2s;
    }

    .star-rating {
        display: flex;
        justify-content: center;
        gap: 4px;
    }

    .rated-stars {
        display: flex;
        justify-content: center;
        gap: 2px;
    }

    .star {
        font-size: 32px;
        cursor: pointer;
        color: #ddd;
        transition: 0.2s;
    }
    
    .star.selected,
    .star:hover {
        color: #f7c200;
    }

/* =========================================================
   ORDER REVIEW DESKTOP
========================================================= */

    .order-card-desktop {
        border: 1px solid #e5e5e5;
        transition: 0.25s ease;
    }

    .order-card-desktop:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }

    .order-card-desktop h5 {
        color: #1a1a1a;
    }

    .order-card-desktop img {
        border-radius: 12px;
    }

/* =========================================================
    HERO LIST PRODUCT
========================================================= */

    .hero-list-wrapper {
        margin-bottom: 40px;
    }

    .hero-list-image {
        height: 260px;
    }

    .hero-list-image img {
        height: 100%;
        object-fit: cover;
    }

    /* WHITE CARD UNDER BANNER */
    .hero-list-card {
        background: #ffffffee;
        margin-top: -35px;
        border: 1px solid #e5e5e5;
        backdrop-filter: blur(6px);
    }


/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 991px) {

        .hero-list-text {
        text-align: center;
    }

    .hero-list-text h1 {
        font-size: 2rem !important;
    }

    .hero-list-text p {
        margin: 0 auto 15px;
    }

    .hero-list-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px !important;
    }

    .hero-list-image {
        height: 200px;
    }

    .star-rating i,
    .rated-stars i {
        font-size: 18px;
    }

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: transform 0.35s ease, opacity 0.35s ease !important;
}

    /* Collapse spacing */
  .navbar-collapse {
    padding: 18px 12px;
  }

  /* Center simple links */
  .navbar-nav .simple-link .nav-link {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
  }

  /* Separator */
  .nav-separator {
    width: 60%;
    height: 1px;
    background: #C5A572;
    margin: 12px auto 20px auto;
    opacity: 0.4;
  }

  /* Center action buttons */
  .navbar-nav .action-btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* Cart & profile buttons */
  .navbar-nav .action-btn > a,
  .navbar-nav .action-btn > .dropdown-toggle {
    width: 80%;
    max-width: 260px;
    background: #1b1b1b;
    border: 1px solid #C5A57244;
    padding: 10px 14px;
    border-radius: 10px;
    color: #C5A572 !important;
    font-weight: 600;
    text-align: center;
    transition: 0.25s;
  }

  .navbar-nav .action-btn > a:hover,
  .navbar-nav .action-btn > .dropdown-toggle:hover {
    background: #C5A572;
    color: #000 !important;
  }

  /* Dropdown mobile */
  .navbar-nav .action-btn.dropdown .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    width: 80% !important;
    max-width: 260px !important;

    margin-top: 6px !important;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    z-index: 9999;
  }

  .navbar-nav .action-btn.dropdown {
    display: flex !important;
    justify-content: center !important;
    width: 100%;
  }

  /* Hide navbar on scroll down */
.nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Navbar locked (no hide during mobile menu open) */
.nav-locked {
    transform: translateY(0) !important;
    opacity: 1 !important;
}


  .navbar-nav .action-btn.dropdown .dropdown-item { padding: 10px; }

  /* Remove hover line on mobile */
    .navbar-nav .nav-link::after { display: none !important; }

    .navbar-collapse { padding: 18px 12px; }

    .navbar-nav .nav-link::after { display: none !important; }

    .hero-section { text-align: center; padding: 60px 20px; }

    .hero-image img { 
        max-width: 80%; 
                background:
            linear-gradient(
                to bottom,
                rgba(255, 255, 255, 0.85),   
                rgba(255, 255, 255, 0.90),
                rgba(255, 255, 255, 0.70)
            ),
            url('/image/bg-hero.jpg') center/cover no-repeat !important;

        filter: brightness(1); 
        margin-top: 10px; }
}

@media (max-width: 576px) {

        .hero-list-text {
        text-align: center;
    }

    .hero-list-text h1 {
        font-size: 2rem !important;
    }

    .hero-list-text p {
        margin: 0 auto 15px;
    }

    .hero-list-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px !important;
    }

    .hero-list-image {
        height: 200px;
    }

    .best-seller-track .product-card {
        flex: 0 0 82% !important;
        min-width: 82% !important;
        max-width: 82% !important;
        height: auto !important;
        scroll-snap-align: center;
    }

    .best-seller-track .product-card img {
        height: 180px !important;
        object-fit: cover !important;
        padding: 0 !important;
    }

         .best-seller-track .product-card.active {
        transform: translateY(-6px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.15);
        transition: 0.3s ease;
    }

    /* Nonaktifkan hover biasa di mobile */
    .best-seller-track .product-card:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .best-seller-track .product-card .card-body {
        flex-grow: 1;
        padding: 14px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .best-seller-slider {
        padding: 0 !important;
        margin-top: 10px !important;
    }

    .slide-page {
        display: contents !important; 
        min-width: auto !important;
    }

    .best-seller-track {
        overflow-x: auto !important;
        display: flex !important;
        scroll-snap-type: x mandatory;
    }

    .best-seller-track::-webkit-scrollbar {
        display: none;
    }

    .best-seller-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 8px;
    }

    .product-card .ratio {
        height: 180px !important;
        max-height: 180px !important;
    }

    .product-card img {
        height: 100% !important;
        object-fit: cover !important;
    }

    .product-card {
        flex: 0 0 80% !important;
        min-width: 80% !important;
        max-width: 80% !important;
        scroll-snap-align: center;
    }

    .product-card .card-body {
        padding: 5px !important;
    }

        .banner-card {
        flex-direction: column !important;
        text-align: center;
        padding: 18px !important;
    }

    .banner-card img {
        max-width: 140px !important;
        margin-top: 14px;
    }

    .hero-bg-fixed {
        height: 110vh !important;
        background:
            linear-gradient(
                to bottom,
                rgba(255, 255, 255, 0.85),   
                rgba(255, 255, 255, 0.90),
                rgba(255, 255, 255, 0.70)
            ),
            url('/image/bg-hero.jpg') center/cover no-repeat !important;

        filter: brightness(1); 
    }


    .hero-wrapper {
        min-height: 110vh !important;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding-top: 50px !important; 
        padding-bottom: 40px !important;
        text-align: center;
        position: relative;
    }

    
    .hero-section {
        padding: 0 20px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;              
        justify-content: center;          
    }

    .hero-section h1 {
        font-size: 1.9rem !important;
        line-height: 1.3;
        margin-bottom: 14px;
        text-align: center;
    }

    .hero-section p {
        max-width: 90%;
        margin: 0 auto 18px auto;
        text-align: center;
    }

    .hero-section .btn {
        margin-top: 10px;
    }

     .navbar {
        padding: 8px 12px !important;
    }

    .navbar-brand {
        font-size: 18px;
    }

    .navbar-toggler {
        padding: 4px 8px !important;
    }

    /* Our Products versi mobile */
  
    .our-products .col-6 {
        padding-left: 6px;
        padding-right: 6px;
    }

    /* Tinggi card dibuat lebih compact */
    .our-product-card {
        height: 100%;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
    }

    /* Gambar tidak boleh tinggi banget */
    .our-product-card .ratio {
        max-height: 150px; /* Default mobile */
        overflow: hidden;
    }

    /* Nama produk maksimum 2 baris */
    .product-name {
        font-size: 0.85rem;
        height: 2.4em;
        overflow: hidden;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    /* Harga lebih kecil biar compact */
    .price {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    /* Button tetap sejajar bagian bawah card */
    .our-product-card .card-body {
        padding: 10px;
        display: flex;
        flex-direction: column;
    }

    .our-product-card button {
        margin-top: auto;
        padding: 6px 10px !important;
        font-size: 0.75rem;
    }

    /* ============================
    LIST PRODUCT MOBILE CLEAN
    ============================ */
    .product-list {
        padding-left: 4px;
        padding-right: 4px;
        margin-top: 10px;
    }

    .product-list .col-6 {
        padding-left: 6px;
        padding-right: 6px;
    }

    /* CARD LIST — MOBILE */
    .product-list .product-card {
        background: #ffffff;
        border-radius: 14px;
        overflow: hidden;
        height: auto !important;
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        border: 1px solid #eee;
    }

    .product-list .product-card .ratio {
        height: 150px !important;
        max-height: 150px !important;
        overflow: hidden;
    }

    .product-list .product-card img {
        height: 150px !important;
        object-fit: cover !important;
        width: 100%;
    }

    /* Body */
    .product-list .product-card .card-body {
        padding: 10px !important;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    /* Title (maksimal 2 baris) */
    .product-list .product-card h6 {
        font-size: 14px;
        height: 2.6em;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 4px;
    }

    /* Brand */
    .product-list .product-card p.text-muted {
        margin-bottom: 2px;
        font-size: 13px;
    }

    /* Price */
    .product-list .product-card .price {
        font-size: 13.5px;
        margin-bottom: 8px;
    }

    /* Add to Cart Button */
    .product-list .product-card button {
        padding: 6px !important;
        font-size: 12px !important;
        border-radius: 20px;
        margin-top: auto;
    }

    /* Brand Header mobile */
    .product-list-title {
        font-size: 17px;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

    .product-list-header {
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 5px;
    }

    .product-list-header a {
        font-size: 13px !important;
    }


    /* ================================================================
    ORDER REVIEW MOBILE
    ================================================================== */

    /* card wrapper */
    .mobile-order-list {
        margin-top: -20px;
    }

    .order-card {
        display: block;
        background: #fff;
        border-radius: 14px;
        padding: 16px;
        margin-bottom: 14px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        border: 1px solid #eee;
    }

    .order-card h5 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #333;
    }

    .order-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 6px;
        font-size: 14px;
    }

    .order-label {
        font-weight: 600;
        color: #666;
    }

    .order-value {
        color: #222;
        font-weight: 500;
    }

    /* Buttons */
    .order-card .btn {
        width: 100%;
        margin-top: 10px;
        border-radius: 12px !important;
        padding: 10px !important;
        font-weight: 600;
    }
}