/* Pemboleh Ubah */
:root {
    --primary-white: #ffffff;
    --primary-black: #000000;
    --primary-gray: #666666;
    --light-gray: #f5f5f5;
    --medium-gray: #cccccc;
    --dark-gray: #333333;
}

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Gaya asas badan halaman */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-white);
    color: var(--primary-black);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Pembantu Latar Belakang Kabur */
.bg-blur {
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .bg-blur {
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(0, 0, 0, 0.03);
    }
}

/* Bahagian Skrin Penuh */
.fullscreen-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Banner Penghantaran Percuma */
.shipping-banner {
    background: var(--dark-gray);
    color: var(--primary-white);
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
}

/* Navigasi Tetap dan Transparan */
.navbar {
    position: fixed;
    top: 32px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0) !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: none;
    z-index: 1001;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-scrolled {
    background: rgba(255, 255, 255, 0.85) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(204, 204, 204, 0.3);
}

@supports not ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
    .nav-scrolled {
        background: rgba(255, 255, 255, 0.96) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        border-bottom: 1px solid rgba(204, 204, 204, 0.35);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

/* Togol Menu Mudah Alih */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dark-gray);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* Pautan Navigasi Tengah (Desktop) */
.nav-links-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.nav-links-center a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-links-center a:hover {
    color: var(--primary-black);
}

.nav-links-center a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-black);
    transition: width 0.3s ease;
}

.nav-links-center a:hover::after {
    width: 100%;
}

.separator {
    color: var(--medium-gray);
    font-weight: 300;
}

/* Navigasi Mudah Alih */
/* Menu sisi kanan yang muncul untuk peranti mudah alih */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1003;
    transition: right 0.3s ease;
    padding: 80px 20px 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

@supports not ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
    .mobile-nav {
        background: rgba(255, 255, 255, 0.98);
        border-left: 1px solid rgba(0, 0, 0, 0.04);
    }
}

/* Kelas aktif untuk menunjukkan menu */
.mobile-nav.active {
    right: 0;
}

/* Senarai pautan dalam menu mudah alih */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 15px;
}

.mobile-nav-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 1rem;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    background: var(--light-gray);
    color: var(--primary-black);
}

/* Tindihan latar belakang untuk menu mudah alih */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    display: none;
}

.mobile-nav-overlay.active {
    display: block;
}

/* Butang Troli Kanan */
.cart-btn-right {
    background: #444 !important;
    border: none;
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-left: auto;
}

.cart-btn-right:hover {
    background: #333 !important;
    transform: translateY(-1px);
}


/* Bahagian Hero (Home/Hero Section) */
/* Bahagian utama laman web dengan imej latar belakang dan kandungan */
.hero-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

/* Hero background (same approach as testimonial-bg / faq-bg) */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
}

/* Kelas pilihan untuk kabur latar belakang */
.hero-bg.blur {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

/* Tindihan hero (tidak digunakan) */
.hero-overlay {
    display: none;
}

/* Kandungan hero di atas latar belakang */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 40px;
}

/* Susun atur kiri dan kanan dalam hero */
.hero-left {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 40%;
}
.hero-right {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 40%;
    text-align: right;
}

/* Teks pengenalan hero */
.hero-intro {
    color: var(--dark-gray);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-align: center;
}

/* Bekas imej logo dalam hero */
.hero-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Bekas untuk dua logo bersebelahan */
.double-logo-container {
    display: flex;
    justify-content: center;   /* center kiri-kanan */
    align-items: center;       /* center atas-bawah */
    gap: 0;
    margin-top: 0;
}

/* Logo utama hero */
.double-logo-item,
.double-logo-item1 {
    width: 85px;
    height: 85px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}
.double-logo-item:hover,
.double-logo-item1:hover {
    transform: scale(1.05);
}

.double-logo-item img,
.double-logo-item1 img {
    width: 80%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-logo {
    width: 340px;
    height: 130px;
    background: transparent;
    border: none;
    transition: transform 0.3s ease;
    margin-bottom: 12px;
}
.hero-logo:hover {
    transform: scale(1.05);
}

.hero-logo1 {
    width: 200px;
    height: 60px;
    background: transparent;
    border: none;
    transition: transform 0.3s ease;
}
.hero-logo1:hover {
    transform: scale(1.05);
}

/* Teks penerangan hero */
.hero-text {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    background: none;
    padding: 0;
    border: none;
    text-align: justify;
}

/* Butang beli dalam hero */
.buy-btn {
    background: var(--dark-gray) !important;
    color: white !important;
    border: none;
    padding: 10px 30px;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}
.buy-btn:hover {
    background: #222 !important;
    transform: translateY(-2px);
}


/* Bahagian Tentang dan Lain-lain */
.about-section {
    min-height: 100vh;
    background: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
}

.about-container {
    max-width: none;
    margin: 0 auto;
    text-align: center;
}

/* Tajuk bahagian */
.section-title {
    color: var(--dark-gray);
    margin-bottom: 40px;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 2rem;
}

/* Teks kandungan bahagian tentang */
.about-text {
    width: 60%;
    margin: 0 auto;
    color: var(--primary-gray);
    line-height: 1.7;
    font-size: 1rem;
    border: 1px solid var(--medium-gray);
    padding: 30px;
    border-radius: 8px;
    background: var(--light-gray);
    text-align: justify;
}


/* Pakej */
/* Bahagian untuk memaparkan produk atau pakej */
.packages-section {
    min-height: 100vh;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    padding: 100px 40px;
    position: relative;
}

/* Kad produk dalam bahagian pakej */
.package-card--product {
    position: relative;
    background: #fff;
    border-radius: 6px;
    border: 1px solid var(--medium-gray);
    padding: 18px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card--product:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    opacity: 1;
}

/* Bekas imej produk */
.package-figure {
    width: 100%;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

/* Imej produk dalam kad */
.package-image {
    max-width: 75%;
    max-height: 100%;
    object-fit: contain;
}

/* Style sama untuk semua badge pakej */
.package-name-badge,
.package-unit-badge,
.package-price-badge {
    position: absolute;
    left: 16px;
    background: rgba(255,255,255,0.92);
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    color: #333;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Nama produk - paling atas */
.package-name-badge {
    bottom: 134px;
    font-weight: 700;
    font-size: 0.8rem;
    max-width: calc(100% - 32px);
}

/* Unit label - tengah (30px gap) */
.package-unit-badge {
    bottom: 94px;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Harga - bawah (30px gap) */
.package-price-badge {
    bottom: 54px;
    font-weight: 800;
    font-size: 0.85rem;
}

/* Label penghantaran - satu baris */
.package-shipping-label {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-gray);
    white-space: nowrap;
}

/* Responsif Pakej - Tablet landscape */
@media (max-width: 992px) {
    .package-card--product {
        min-height: 400px;
    }

    .package-figure {
        height: 230px;
    }

    .package-name-badge {
        bottom: 148px;
        font-size: 0.85rem;
    }

    .package-unit-badge {
        bottom: 100px;
        font-size: 0.75rem;
    }

    .package-price-badge {
        bottom: 52px;
        font-size: 0.9rem;
    }

    .package-shipping-label {
        font-size: 0.75rem;
        bottom: 14px;
        gap: 6px;
    }
}

/* Responsif Pakej - Tablet */
@media (max-width: 768px) {
    .package-card--product {
        min-height: 340px;
    }

    .package-figure {
        height: 180px;
    }

    .package-name-badge,
    .package-unit-badge,
    .package-price-badge {
        padding: 6px 12px;
        left: 12px;
    }

    .package-name-badge {
        font-size: 0.8rem;
        bottom: 135px;
    }

    .package-unit-badge {
        font-size: 0.75rem;
        bottom: 93px;
    }

    .package-price-badge {
        font-size: 0.85rem;
        bottom: 51px;
    }

    .package-shipping-label {
        font-size: 0.7rem;
        bottom: 16px;
    }
}

/* Responsif Pakej - Phone kecil */
@media (max-width: 576px) {
    .packages-section {
        padding: 60px 15px;
    }

    .package-card--product {
        min-height: 320px;
    }

    .package-figure {
        height: 160px;
    }

    .package-name-badge,
    .package-unit-badge,
    .package-price-badge {
        padding: 5px 10px;
        left: 10px;
    }

    .package-name-badge {
        font-size: 0.75rem;
        bottom: 125px;
    }

    .package-unit-badge {
        font-size: 0.7rem;
        bottom: 88px;
    }

    .package-price-badge {
        font-size: 0.8rem;
        bottom: 51px;
    }

    .package-shipping-label {
        font-size: 0.65rem;
        bottom: 14px;
        gap: 5px;
    }
}


/* Testimoni */
/* Bahagian untuk memaparkan ulasan pelanggan */
.testimonials-section {
    min-height: 100vh;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    padding: 100px 40px;
    position: relative;
}

/* Latar belakang testimoni */
.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
}

/* Bekas testimoni */
.testimonials-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Kad testimoni individu */
.testimonial-card {
    background: var(--primary-white);
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    padding: 25px;
    height: 250px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

/* Teks testimoni */
.testimonial-text {
    flex-grow: 1;
    color: var(--primary-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
}

/* Nama pengarang testimoni */
.testimonial-author {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Tarikh testimoni */
.testimonial-date {
    color: var(--medium-gray);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* Bintang penilaian */
.stars {
    color: #ffc107;
    font-size: 0.9rem;
}

/* Gaya kawalan karusel */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    margin: 0 -60px;
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #7e7e7e;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

/* FAQ */
/* Bahagian untuk soalan lazim */
.faq-section {
    min-height: 100vh;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    padding: 100px 40px;
    position: relative;
}

/* Latar belakang FAQ */
.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
}

/* Bekas FAQ */
.faq-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Kotak FAQ */
.faq-box {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    padding: 10px 20px; 
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(0.9px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@supports not (
    (-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))
) {
    .faq-box {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    }
}

/* Item FAQ individu */
.faq-item {
    border-bottom: 1px solid var(--medium-gray);
    padding: 15px 0;
}
.faq-item:last-child {
    border-bottom: none;
}

/* Soalan FAQ */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Ikon toggle FAQ */
.faq-icon {
    width: 24px;
    height: 24px;
    background: var(--dark-gray);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Ikon toggle aktif */
.faq-question.active .faq-icon {
    transform: rotate(180deg);
    background: #222;
}

/* Jawapan FAQ */
.faq-answer {
    color: var(--primary-gray);
    font-size: 0.85rem;
    line-height: 1.6;
    padding-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer.active {
    max-height: 500px;
}

/* FAQ 2 column layout */
.faq-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-column .faq-item:last-child {
    border-bottom: none;
}

/* Mobile: jadikan 1 column */
@media (max-width: 768px) {
    .faq-two-column {
        grid-template-columns: 1fr;
    }
}


/* Footer */
/* Bahagian kaki halaman laman web */
.footer {
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 50px 40px 20px;
}

/* Logo footer */
.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    overflow: hidden;
    background: transparent;
}

/* Imej logo dalam footer */
.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Alamat syarikat dalam footer */
.footer-address {
    color: #5a5a5a;
    font-size: 0.7rem;
    line-height: 1.6;
}

/* Senarai pautan footer */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    text-align: center;
    margin-bottom: 8px;
}

.footer-links a {
    color: #5a5a5a;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

/* Pembahagi dalam footer */
.footer-divider {
    border-top: 1px solid #444;
    margin: 40px 0 20px;
}

/* Hak cipta */
.copyright {
    color: #888;
    font-size: 0.8rem;
    text-align: center;
}

/* Responsif */
/* Penyesuaian untuk skrin besar (kurang daripada 1200px) */
@media (max-width: 1200px) {

    .hero-left,
    .hero-right {
        max-width: 45%;
    }

    .about-text {
        width: 100%;
        margin: 0 auto;
    }

    .testimonial-card {
        height: auto;
        margin-bottom: 20px;
    }

    .testimonial-text {
        overflow: visible;
        text-align: justify;
    }

    .hero-text {
        border: 1px solid var(--medium-gray); 
        padding: 10px; 
        border-radius: 8px; 
        background: #f5f5f590;
    }
}

/* Penyesuaian untuk tablet (kurang daripada 992px) */
@media (max-width: 992px) {
    .nav-links-center {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-left,
    .hero-right {
        position: relative;
        left: 0;
        right: 0;
        max-width: 100%;
        text-align: center;
        transform: none;
        top: 0;
        margin-bottom: 30px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-images {
        flex-direction: row;
        justify-content: center;
        gap: 14px;
        margin-bottom: 20px;
    }

    .hero-logo {
        margin: 0 !important;
        margin-right: 10px !important;
    }

    .hero-logo:nth-child(3) {
        margin-top: 0;
    }

    .carousel-control-prev,
    .carousel-control-next {
        margin: 0 -30px;
    }

    .carousel-control-prev {
        left: -50px;
    }

    .carousel-control-next {
        right: -50px;
    }

    .about-text {
        width: 100%;
        margin: 0 auto;
    }

    .testimonial-card {
        height: auto;
        margin-bottom: 20px;
    }

    .testimonial-text {
        overflow: visible;
        text-align: justify;
    }

    .hero-text {
        border: 1px solid var(--medium-gray); 
        padding: 10px; 
        border-radius: 8px; 
        background: #f5f5f590;
    }

}

/* Penyesuaian untuk telefon (kurang daripada 768px) */
@media (max-width: 768px) {
    .fullscreen-section {
        padding: 80px 20px;
        min-height: auto;
    }

    .hero-section,
    .about-section,
    .packages-section,
    .testimonials-section,
    .faq-section {
        min-height: auto;
        padding: 100px 20px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .hero-logo {
        width: 265px;
        height: 105px;
    }

    .hero-logo1 {
        width: 150px;
        height: 45px;
    }

    .double-logo-item,
    .double-logo-item1 {
        width: 70px;
        height: 70px;
    }

    .package-card {
        height: 250px;
        margin-bottom: 20px;
    }

    .about-text {
        width: 100%;
        margin: 0 auto;
    }

    .testimonial-card {
        height: auto;
        margin-bottom: 20px;
    }

    .testimonial-text {
        overflow: visible;
        text-align: justify;
    }

    .hero-text {
        border: 1px solid var(--medium-gray); 
        padding: 10px; 
        border-radius: 8px; 
        background: #f5f5f590;
    }

}

/* Penyesuaian untuk telefon kecil (kurang daripada 576px) */
@media (max-width: 576px) {
    .shipping-banner {
        font-size: 0.75rem;
    }

    .cart-btn-right {
        padding: 6px 15px;
        font-size: 0.85rem;
    }

    .hero-images {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .hero-logo {
        width: 200px;
        height: 80px;
        margin: 0 !important;
        margin-bottom: 12px !important;
    }

    .hero-logo1 {
        width: 120px;
        height: 38px;
    }

    .double-logo-item,
    .double-logo-item1 {
        width: 60px;
        height: 60px;
    }

    .about-text {
        padding: 20px;
        width: 100%;
        margin: 0 auto;
    }

    .testimonial-card {
        height: auto;
        margin-bottom: 20px;
    }

    .testimonial-text {
        overflow: visible;
        text-align: justify;
    }

    .hero-text {
        border: 1px solid var(--medium-gray); 
        padding: 10px; 
        border-radius: 8px; 
        background: #f5f5f590;
    }
}

/* Cart Section */
.cart-section {
    min-height: 100vh;
    background: var(--primary-white);
    padding: 130px 20px 60px;
}

/* Progress Steps Container - Full Width Background */
.progress-steps-wrapper {
    background: var(--light-gray);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 30px 20px;
    margin-bottom: 50px;
    z-index: 1; /* Ensure it stays below the fixed navbar (z-index: 1001) */
}

/* Progress Steps */
.argmc-tabs-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.argmc-tabs-list.three-tabs .argmc-tab-item {
    flex: 1;
}

.argmc-tab-item {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Garis SEBELAH KIRI (::before) - Dari kiri ke bulatan */
.argmc-tab-item::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--medium-gray);
    z-index: 0;
    transition: background 0.3s ease;
}

/* Garis SEBELAH KANAN (::after) - Dari bulatan ke kanan */
.argmc-tab-item::after {
    content: '';
    position: absolute;
    top: 28px;
    right: 0;
    width: 50%;
    height: 3px;
    background: var(--medium-gray);
    z-index: 0;
    transition: background 0.3s ease;
}

/* Garis sebelah kiri jadi hitam untuk visited steps */
.argmc-tab-item.visited::before {
    background: var(--primary-black);
}

/* Garis sebelah kanan jadi hitam untuk current step */
.argmc-tab-item.current::after {
    background: var(--primary-black);
}

/* Garis sebelah kanan jadi hitam untuk visited (completed) steps yang bukan current */
.argmc-tab-item.visited:not(.current)::after {
    background: var(--primary-black);
}

.argmc-tab-item-outer {
    position: relative;
    z-index: 1;
}

.argmc-tab-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.argmc-tab-number-wrapper {
    position: relative;
}

/* Bulatan - Default: Putih dengan border gray */
.argmc-tab-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Current step - Bulatan Hitam */
.argmc-tab-item.current .argmc-tab-number {
    background: var(--primary-black);
    border-color: var(--primary-black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Visited (completed) steps - Bulatan Hitam */
.argmc-tab-item.visited:not(.current) .argmc-tab-number {
    background: var(--primary-black);
    border-color: var(--primary-black);
}

/* Nombor - Default: Gray */
.number-text {
    color: var(--primary-gray);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 2px;
    transition: color 0.3s ease;
}

.number-text span {
    font-size: 1.1rem;
}

/* Current step - Nombor Putih */
.argmc-tab-item.current .number-text {
    color: white;
}

/* Tick Icon - Putih */
.tab-completed-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show tick untuk visited (tapi bukan current) */
.argmc-tab-item.visited:not(.current) .tab-completed-icon {
    opacity: 1;
}

/* Hide nombor bila show tick */
.argmc-tab-item.visited:not(.current) .number-text {
    opacity: 0;
}

/* Text Label - Default: Gray */
.argmc-tab-text {
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-gray);
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Current step text - Hitam & Bold */
.argmc-tab-item.current .argmc-tab-text {
    color: var(--primary-black);
    font-weight: 700;
}

/* Visited step text - Hitam */
.argmc-tab-item.visited:not(.current) .argmc-tab-text {
    color: var(--primary-black);
}

/* Responsive Design */
@media (max-width: 768px) {
    .progress-steps-wrapper {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .argmc-tabs-list {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .argmc-tab-item::before,
    .argmc-tab-item::after {
        top: 22px;
        height: 2px;
    }
    
    .argmc-tab-number {
        width: 44px;
        height: 44px;
        border-width: 2px;
    }
    
    .number-text {
        font-size: 1.1rem;
    }
    
    .number-text span {
        font-size: 0.9rem;
    }
    
    .tab-completed-icon {
        font-size: 1.3rem;
    }
    
    .argmc-tab-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .progress-steps-wrapper {
        padding: 15px 10px;
    }
    
    .argmc-tabs-list {
        padding: 0 10px;
    }
    
    .argmc-tab-item::before,
    .argmc-tab-item::after {
        top: 19px;
        height: 2px;
    }
    
    .argmc-tab-number {
        width: 38px;
        height: 38px;
    }
    
    .number-text {
        font-size: 1rem;
    }
    
    .tab-completed-icon {
        font-size: 1.1rem;
    }
    
    .argmc-tab-text {
        font-size: 0.7rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .argmc-tabs-list {
        margin-bottom: 30px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .argmc-tab-item::before,
    .argmc-tab-item::after {
        top: 22px;
        height: 2px;
    }
    
    .argmc-tab-number {
        width: 44px;
        height: 44px;
        border-width: 2px;
    }
    
    .number-text {
        font-size: 1.1rem;
    }
    
    .number-text span {
        font-size: 0.9rem;
    }
    
    .tab-completed-icon {
        font-size: 1.3rem;
    }
    
    .argmc-tab-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .argmc-tabs-list {
        padding: 0 10px;
    }
    
    .argmc-tab-item::before,
    .argmc-tab-item::after {
        top: 19px;
        height: 2px;
    }
    
    .argmc-tab-number {
        width: 38px;
        height: 38px;
    }
    
    .number-text {
        font-size: 1rem;
    }
    
    .tab-completed-icon {
        font-size: 1.1rem;
    }
    
    .argmc-tab-text {
        font-size: 0.7rem;
    }
}

/* Cart Header */
.cart-header {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--medium-gray);
}

.cart-header h3 {
    margin: 0;
    color: var(--dark-gray);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Cart Items(Step1) */
.cart-items {
    background: white;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-right: 20px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    padding: 5px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name,
.cart-item-prod-name {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.cart-item-pack-name {
    color: var(--primary-gray);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.cart-item-price {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.cart-item-set {
    color: var(--primary-gray);
    font-size: 0.85rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-label {
    font-size: 0.85rem;
    color: var(--primary-gray);
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-gray);
    padding: 5px 10px;
    border-radius: 4px;
}

.qty-btn {
    background: none;
    border: none;
    color: var(--dark-gray);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 5px;
}

.qty-btn:hover {
    color: var(--primary-black);
}

.qty-display {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.cart-item-total {
    font-weight: 700;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #000000;
    cursor: pointer;
    padding: 5px 10px;
    margin-left: 15px;
    font-size: 1.5rem;
}

.cart-item-remove:hover {
    color: #555555;
}

/* Coupon Section */
.coupon-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
    display: flex;
    gap: 10px;
}

.coupon-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-size: 0.9rem;
}

.coupon-btn {
    padding: 10px 25px;
    background: var(--dark-gray);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.coupon-btn:hover {
    background: var(--primary-black);
}

/* Cart Summary */
.cart-summary {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
    margin-bottom: 20px;
}

.cart-summary h4 {
    margin: 0 0 20px 0;
    color: var(--dark-gray);
    font-size: 1.3rem;
    font-weight: 600;
}

.summary-divider {
    border-top: 1px solid var(--medium-gray);
    margin: 15px 0;
}

.summary-table {
    width: 100%;
    font-size: 0.9rem;
    border-collapse: collapse;
    margin-top: 10px;
}

.summary-table td,
.summary-table th {
    padding: 6px 0;
    color: var(--primary-gray);
}

.summary-table tfoot td {
    padding-top: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-gray);
}

.summary-table tfoot tr.summary-total td {
    font-size: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--primary-gray);
    font-size: 0.9rem;
} 

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

/* Cart Actions */
.cart-actions {
    display: flex;
    gap: 10px;
}

.btn-cart {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-cart.btn-cancel {
    background: white;
    color: var(--dark-gray);
    border: 1px solid var(--medium-gray);
}
.btn-cart.btn-cancel:hover {
    background: var(--light-gray);
}
.btn-cart.btn-next {
    background: var(--dark-gray);
    color: white;
}
.btn-cart.btn-next:hover {
    background: var(--primary-black);
}


/* Shipping Form */
.shipping-form {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
    margin-top: 20px;
}

.shipping-form h4 {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-size: 0.9rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--dark-gray);
}

.input-group {
    display: flex;
}

.input-group-text {
    padding: 10px 15px;
    background: var(--light-gray);
    border: 1px solid var(--medium-gray);
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.input-group .form-control {
    border-radius: 0 4px 4px 0;
}

.shipping-info {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 20px;
}

.payment-option {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.payment-option input[type="radio"] {
    margin-top: 3px;
}

.payment-option label {
    flex: 1;
    cursor: pointer;
    margin: 0;
}

.payment-option label strong {
    display: block;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.payment-option label p {
    margin: 0;
    color: var(--primary-gray);
    font-size: 0.85rem;
}

.payment-option-disabled {
    background: var(--medium-gray);
    cursor: not-allowed;
}

.payment-option-disabled label,
.payment-option-disabled input[type="radio"] {
    cursor: not-allowed;
}

.payment-option-disabled label strong {
    color: var(--primary-gray);
}

.bank-selection {
    margin-top: 20px;
}

.bank-selection label {
    display: block;
    margin-bottom: 10px;
    color: var(--dark-gray);
    font-weight: 500;
}

.country-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: var(--light-gray);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--dark-gray);
}


/* Cart Items Preview (Step 2) */
.cart-items-preview {
    background: white;
    border-radius: 8px;
    margin-bottom: 20px;
}

.bill-summary {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
    margin-bottom: 20px;
}

.bill-summary h4 {
    margin: 0 0 20px 0;
    color: var(--dark-gray);
    font-size: 1.3rem;
    font-weight: 600;
}

.bill-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--primary-gray);
    font-size: 0.9rem;
} 

.bill-total {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.preview-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
}

.preview-item:last-child {
    border-bottom: none;
}

.preview-item-set,
.preview-item-quantity {
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
    color: var(--primary-gray);
}

.preview-item-image,
.thankyou-item-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-right: 20px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    padding: 5px;
}

.preview-item-info,
.thankyou-item-info {
    display: flex;
    flex-direction: column;
}

.preview-item-name,
.preview-item-prod-name,
.preview-item-price,
.thankyou-item-name,
.thankyou-item-prod-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.preview-item-pack-name,
.thankyou-item-pack-name {
    font-size: 0.8rem;
    color: var(--primary-gray);
    margin-bottom: 3px;
}

/* Thank You Page (Step 3) */
.btn-tq {
    flex: 0 0 auto; /* ikut content */
    padding: 10px 15px; /* padding kiri/kanan */
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-tq.btn-print {
    background: var(--dark-gray);
    color: white;
}
.btn-tq.btn-print:hover {
    background: var(--primary-black);
}
.btn-tq.btn-shop {
    background: var(--primary-gray);
    color: white;
}
.btn-tq.btn-shop:hover {
    background: var(--dark-gray);
}

.thankyou-container {
    background: white;
    padding: 60px 40px;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.thankyou-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.thankyou-item-set {
    color: var(--primary-gray);
    font-size: 0.85rem;
}

.thankyou-item-info {
    display: flex;
    text-align: left;
    flex-direction: column;
}

.thankyou-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 20px;
}

.thankyou-container h2 {
    color: var(--dark-gray);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.thankyou-message {
    font-size: 1.1rem;
    color: var(--primary-gray);
    margin-bottom: 20px;
}

.thankyou-note {
    font-size: 0.95rem;
    color: var(--primary-gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tracking-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--primary-gray);
}

.tracking-link {
    color: var(--dark-gray);
    font-weight: 600;
    text-decoration: none;
}

.tracking-link:hover {
    text-decoration: underline;
}

/* item summary */
.item-box{
    background: var(--light-gray);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
    width: 97%;
    margin: 0 auto;
}

.item-box h4 {
    color: var(--primary-black);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.order-table {
    width: 80%;
    font-size: 0.85rem;
    margin: 0 auto;
}

.order-table th {
    padding: 10px 5px;
    text-align: center;
    border-bottom: 1px solid var(--medium-gray);
    color: var(--dark-gray);
    font-weight: 600;
}

.order-table td {
    padding: 10px 5px;
    text-align: center;
    color: var(--primary-gray);
}

.order-table tbody tr:last-child td {
    border-bottom: none;
}

/* shipping summary */
.shipping-summary-box {
    background: var(--light-gray);
    padding: 10px 30px;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
}

.shipping-summary-box h4 {
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.shipping-summary-box p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: var(--primary-gray);
}

.shipping-address-box {
    text-align: left;
}

#shippingDetails p {
    margin: 6px 0;
}

#shippingDetails .ship-address {
    margin: 0;
}

#shippingDetails .ship-name {
    margin-bottom: 8px;
    color: var(--dark-gray)
}

#shippingDetails .ship-phone {
    margin-top: 8px;
}

/* total summary */
.tq-total-box{
    background: var(--light-gray);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
}

.tq-total-box h4 {
    color: var(--primary-black);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.payment-info {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}

.payment-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--primary-gray);
    font-weight: 600;
}

.total-item-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.total-item-table th {
    text-align: center;
    padding: 4px 0;
    color: var(--dark-gray);
}

.total-item-table td {
    text-align: center;
    padding: 6px 0;
    color: var(--primary-gray);
}

.total-item-table tbody tr:last-child td {
    border-bottom: none;
}


/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.empty-cart h3 {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.empty-cart p {
    color: var(--primary-gray);
    margin-bottom: 30px;
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cart-btn-right {
    position: relative;
}

/* Add to Cart Button for Packages */
.package-add-btn {
    position: absolute;
    right: 16px;
    bottom: 48px;
    background: var(--dark-gray);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.package-add-btn:hover {
    background: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.package-add-btn i {
    margin-right: 5px;
}

/* Adjust package card layout */
.package-card--product {
    min-height: 400px;
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-section {
        padding: 110px 15px 40px;
    }

    .cart-progress {
        gap: 20px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.8rem;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-image {
        margin-bottom: 15px;
    }

    .cart-item-details {
        width: 100%;
        margin-bottom: 15px;
    }

    .cart-item-quantity {
        width: 100%;
        justify-content: space-between;
    }

    .cart-actions {
        flex-direction: column;
    }

    .coupon-section {
        flex-direction: column;
    }

    .thankyou-container {
        padding: 40px 20px;
    }

    .thankyou-icon {
        font-size: 3.5rem;
    }

    .thankyou-container h2 {
        font-size: 1.8rem;
    }

    .thankyou-item-info {
        font-size: 0.8rem;
    }

    .order-table {
        font-size: 0.75rem;
    }
    

    .order-table th,
    .order-table td {
        padding: 8px 3px;
    }
    
    .item-box {
        max-width: 95%;
    }

    .package-card--product {
        min-height: 360px;
    }
    
    .package-add-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* TRACKING PAGE */
.tr_tracking-section { 
    min-height: 100vh;
    background: var(--primary-white);
    padding: 120px 20px 60px;
}

.tr_shipping-container{
  display: flex;
  gap: 20px; 
  align-items: flex-start; 
  justify-content: space-between;
  flex-wrap: wrap; 
}
    
/* Main Content */ 
.tr_tracking-content { 
    max-width: 1000px; 
    margin: 0 auto; 
} 
    
/* Title */ 
.tr_tracking-title { 
    text-align: center; 
    font-size: 2rem; 
    font-weight: 800; 
    background: var(--light-gray);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 30px 20px;
    margin-bottom: 30px;
} 
    
/* Phone Form */
.tr_tracking-form-container { 
    text-align: center; 
    margin-bottom: 40px; 
} 

.tr_tracking-instruction { 
    font-size: 14px; 
    color: #333; 
    margin-bottom: 20px; 
    font-weight: 500; 
} 

.tr_tracking-form { 
    max-width: 300px;
    margin: 0 auto; 
} 

.tr_phone-input-container {
    display: flex;
    justify-content: center;
    gap: 8px; 
    flex-wrap: nowrap;
    max-width: 100%;
    margin: 0 auto;
}

.tr_input-group {
    display: flex;
    flex: 1;
    min-width: 0;
}

.tr_country-code-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 4px 0 0 4px;
    padding: 8px; 
    min-width: 45px; 
    height: 30px;
}

.tr_country-code {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.tr_phone-input { 
    flex: 1; 
    border: 1px solid #ccc; 
    border-left: none;
    border-radius: 0 4px 4px 0;
    padding: 10px 10px; 
    font-size: 14px;
    outline: none; 
    min-width: 0; 
    width: 100%; 
    height: 30px;
    box-sizing: border-box;
} 

.tr_phone-input::placeholder { 
    color: #999; 
    font-size: 13px; 
} 

.tr_check-button { 
    background: #dddddd7e; 
    color: rgb(0, 0, 0); 
    border: 1px solid #c7c7c7;
    border-radius: 2px; 
    padding: 4px 30px; 
    font-size: 12px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: background 0.3s ease; 
    white-space: nowrap; 
    margin: 0; 
    min-width: 60px; 
    height: 30px; 
    box-sizing: border-box;
}

.tr_check-button:hover { 
    background: #bebebe; 
    border-color: #b9b9b9;
}

/* Orders Section */ 
.tr_tracking-orders { 
    text-align: center; 
} 

.tr_orders-subtitle { 
    font-size: 13px; 
    color: #333; 
    margin-bottom: 25px; 
    font-weight: 500; 
    text-align: center; 
} 

/* Invoice Container */ 
.tr_invoice-container { 
    max-width: 800px; 
    margin: 0 auto; 
} 

/* Invoice Item */ 
.tr_invoice-item { 
    border-bottom: 1px solid #ccc; 
    border-radius: 4px; 
    margin-bottom: 10px; 
    overflow: hidden; 
} 

.tr_invoice-item.tr_expanded { 
    border-color: #999; 
} 

.tr_invoice-header{
    display: flex;
    justify-content: center; 
    align-items: center;    
    padding: 12px 16px;
    box-sizing: border-box;
}

.tr_invoice-header:hover { 
    background: #f0f0f0; 
} 

.tr_invoice-title { 
    display: flex;
    align-items: center;
    gap: 16px;    
    flex-wrap: nowrap;   
} 

.tr_invoice-number { 
    font-size: 15px; 
    font-weight: 600; 
    color: #333; 
} 

.tr_invoice-date { 
    font-size: 13px; 
    color: #666; 
} 

.tr_invoice-toggle i { 
    font-size: 14px; 
    color: #666; 
    transition: transform 0.3s ease; 
} 

.tr_invoice-item.tr_expanded .tr_invoice-toggle i { 
    transform: rotate(180deg); 
} 

/* Invoice Details */ 
.tr_invoice-details { 
    padding: 10px; 
    text-align: left; 
    background: white; 
    border-top: 1px solid #eee; 
    display: none; 
} 

.tr_invoice-item.tr_expanded .tr_invoice-details { 
    display: block; 
} 

.tr_order-status { 
    font-size: 13px; 
    margin-bottom: 20px; 
    padding-bottom: 4px; 
}

.tr_order-status p { 
    color: #333; 
    margin: 0; 
} 

.tr_status-completed { 
    background: #28a745; 
    color: white; 
    padding: 1px 4px; 
    border-radius: 4px; 
    font-size: 8px; 
    font-weight: 500; 
    margin-left: 5px; 
}

.tr_status-delivered,
.tr_status-shipped,
.tr_status-unknown {
    padding: 1px 4px; 
    border-radius: 4px; 
    font-size: 8px; 
    font-weight: 500; 
    margin-left: 5px;
}

/* Shipping Info */ 
.tr_shipping-info {
    flex: 0 0 300px;
    margin-bottom: 25px;
    background: var(--light-gray);
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}

.tr_shipping-info h4 { 
    font-size: 16px; 
    color: #333; 
    margin-bottom: 15px; 
    font-weight: 600; 
} 

.tr_customer-name, 
.tr_customer-address, 
.tr_customer-phone { 
    font-size: 14px; 
    color: #333; 
    margin: 5px 0; 
    line-height: 1.5; 
} 

/* Tracking Timeline */
.tr_tracking-timeline {
    flex: 1;
    min-width: 0;
    position: relative;
    padding-left: 30px;
    margin-top: 20px;
}

.tr_tracking-timeline::before { 
    content: ''; 
    position: absolute; 
    left: 8px; 
    top: 0; 
    bottom: 0; 
    width: 2px; 
    background: #ddd; 
} 

.tr_timeline-item { 
    position: relative; 
    margin-bottom: 25px; 
} 

.tr_timeline-item:last-child { 
    margin-bottom: 0; 
} 

.tr_timeline-item::before { 
    content: ''; 
    position: absolute; 
    left: -23px; 
    top: 3px; 
    width: 10px; 
    height: 10px; 
    background: #444; 
    border-radius: 50%; 
    border: 2px solid white; 
    box-shadow: 0 0 0 2px #444; 
} 

.tr_timeline-status { 
    font-size: 14px; 
    color: #333; 
    font-weight: 500; 
    margin-bottom: 5px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
} 

.tr_timeline-status i { 
    font-size: 12px; 
    color: #444; 
    width: 16px; 
    text-align: center; 
} 

.tr_timeline-meta { 
    display: flex; 
    gap: 15px; 
    align-items: center; 
    color: #666; 
    font-size: 12px; 
    padding-left: 26px; 
} 

.tr_timeline-date { 
    font-weight: 500; 
} 

.tr_timeline-location { 
    background: #f0f0f0; 
    padding: 2px 8px; 
    border-radius: 4px; 
    font-size: 11px; 
} 

.text-muted  { 
    font-size: 12px; 
}

/* Responsive */ 
@media (max-width: 768px) { 
    
    .tr_tracking-section {
        padding-top: 100px;
    }

    .tr_tracking-title {
        font-size: 20px;
    }

    .tr_tracking-content { 
        padding: 30px 15px; 
    } 

    /* Phone Input Group */
    .tr_phone-input-container {
        flex-direction: row;
        max-width: 100%;
        gap: 6px; 
    }
    
    .tr_input-group {
        flex: 1;
    }
    
    .tr_country-code-box { 
        padding: 0 6px; 
        min-width: 40px; 
        height: 34px; 
    } 

    .tr_country-code {
        font-size: 12px; 
    }
    
    .tr_phone-input { 
        padding: 5px 8px; 
        font-size: 12px;
        height: 34px; 
    } 
    
    .tr_check-button { 
        padding: 5px 10px; 
        font-size: 12px; 
        min-width: 60px; 
        height: 34px; 
    }

    /* Order status adjustments */
    .tr_order-status {
        font-size: 10px;
    }

    .tr_shipping-info h4 { 
        font-size: 14px; 
    }

    .tr_invoice-number,
    .tr_timeline-status,
    .tr_customer-name, 
    .tr_customer-address, 
    .tr_customer-phone {
        font-size: 12px;
    }

    .text-muted,
    .tr_invoice-date { 
        font-size: 10px; 
    }

    .tr_invoice-header { 
        padding: 12px 15px; 
    } 
    
    .tr_invoice-title{
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }

    .tr_invoice-title { 
        flex: 1; 
        margin-right: 10px; 
    } 

    .tr_timeline-meta { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 5px; 
    }

    /* Shipping container for mobile */
    .tr_shipping-container {
        flex-direction: column;
        gap: 15px;
    }

} 

/* Untuk layar yang sangat kecil (mobile kecil) */
@media (max-width: 480px) {
    .tr_tracking-form {
        max-width: 100%; 
    }
    
    .tr_phone-input-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tr_input-group {
        width: 100%;
        margin-bottom: 6px;
    }
    
    .tr_check-button {
        width: 100%;
        max-width: 200px;
    }
}

/* Coupon Styles */
.coupon-wrapper {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.coupon-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
}

.coupon-input:focus {
    outline: none;
    border-color: #007bff;
}

.coupon-btn {
    padding: 10px 20px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.coupon-btn:hover {
    background: #218838;
}

.coupon-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Applied Coupon Display */
.applied-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    padding: 10px 12px;
    margin-bottom: 15px;
}

.applied-coupon-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #155724;
    font-weight: 500;
}

.applied-coupon-info i {
    color: #28a745;
}

.remove-coupon-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.2s;
}

.remove-coupon-btn:hover {
    background: rgba(220, 53, 69, 0.1);
}

/* Voucher discount highlight */
#voucherDiscount.has-discount,
#voucherDiscount2.has-discount {
    color: #28a745;
    font-weight: 600;
}