*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
}

body{
    background:#f5f5f5;
    display:flex;
    flex-direction:column;
    min-height:100vh;
}

/* NAVBAR */

.navbar{
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.logo-text h1{
    color:#0d3b85;
    font-size:28px;
    margin:0;
    font-weight:bold;
}

.logo-text p{
    margin:0;
    color:#555;
    font-size:14px;
}

.menu a{
    text-decoration:none;
    color:black;
    margin-left:20px;
}

/* HERO */

.hero{
    height:500px;
    background:url('../image/tampilan_atas.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding:60px 80px;
    color:white;
    position:relative;
    margin-bottom:0;
}

.hero::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    height:150px;
    background:linear-gradient(to bottom, transparent, #0d3b85);
    pointer-events:none;
}

.hero-content{
    max-width:600px;
    position:relative;
    z-index:1;
}

.hero h1{
    font-size:52px;
    margin-bottom:20px;
    text-shadow:0 2px 10px rgba(0,0,0,0.3);
}

.hero p{
    font-size:20px;
    line-height:1.6;
    text-shadow:0 1px 5px rgba(0,0,0,0.2);
}

/* BUTTON */

.btn{
    display:inline-block;
    background: linear-gradient(135deg, #0d4fb8, #2563eb);
    color:white !important;
    padding:12px 25px;
    border-radius:10px;
    text-decoration:none;
    margin-top:20px;
    font-weight:600;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(13, 79, 184, 0.2);
    border: none;
    cursor: pointer;
}

.btn:hover{
    background: linear-gradient(135deg, #0b439c, #1d52c7);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(13, 79, 184, 0.3);
}

.btn-register{
    display:inline-block;
    background:white;
    color:#0d4fb8;
    border: 1px solid;
    border-color: #0d4fb8;
    padding:10px 25px;
    border-radius:8px;
    text-decoration:none;
    margin-top:20px;
}

/* TITLE */

.section-title{
    text-align:center;
    margin:50px 0 20px;
    color:#0d3b85;
    font-size:36px;
}

/* PRODUK */

.produk-container{
    width:90%;
    margin: 20px auto 100px;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:35px;
}

.card{
    background:white;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(13, 79, 184, 0.12);
    border-color:#e2e8f0;
}

.card img{
    width:100%;
    height:230px;
    object-fit:cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover img{
    transform: scale(1.06);
}

.card-body{
    padding:25px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.card-body h3{
    margin-bottom:8px;
    color:#0f172a;
    font-size:20px;
    font-weight:700;
}

.card-body p{
    color:#64748b;
    font-size:14px;
    margin-bottom:10px;
}

.harga{
    color:#0d4fb8;
    font-weight:800;
    font-size:18px;
    margin:5px 0 12px;
}

/* =========================
   GALERI PERUSAHAAN
========================= */

.galeri-section{
    padding:0 80px 60px;
    background:#0d3b85;
    margin-top:0;
    position:relative;
}

.galeri-title{
    text-align:center;
    font-size:36px;
    color:white;
    padding-top:30px;
    margin-bottom:8px;
}

.section-desc{
    text-align:center;
    color:rgba(255,255,255,0.65);
    font-size:16px;
    margin-bottom:40px;
    margin-top:0;
}

.galeri-container{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
    max-width:1200px;
    margin:auto;
}

.galeri-item{
    position:relative;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,0.25);
    cursor:pointer;
    aspect-ratio:4/3;
    border:2px solid rgba(255,255,255,0.1);
    transition:transform 0.4s ease, box-shadow 0.4s ease;
}

.galeri-item:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,0.35);
}

.galeri-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.5s ease, filter 0.5s ease;
}

.galeri-item:hover img{
    transform:scale(1.1);
    filter:brightness(0.7);
}

.galeri-overlay{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:25px 20px;
    background:linear-gradient(transparent, rgba(0,0,0,0.85));
    color:white;
    transform:translateY(100%);
    transition:transform 0.4s ease;
}

.galeri-item:hover .galeri-overlay{
    transform:translateY(0);
}

.galeri-overlay h4{
    font-size:18px;
    margin-bottom:4px;
    font-weight:700;
}

.galeri-overlay p{
    font-size:13px;
    opacity:0.85;
    margin:0;
}

/* =========================
   MENGAPA MEMILIH KAMI
========================= */

.why-us-section{
    background:linear-gradient(135deg, #0d3b85 0%, #0d4fb8 50%, #2563eb 100%);
    padding:70px 80px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.why-us-section::before{
    content:'';
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background:radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    animation:floatBg 15s linear infinite;
}

@keyframes floatBg{
    0%{ transform:rotate(0deg); }
    100%{ transform:rotate(360deg); }
}

.why-us-stars{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-bottom:45px;
    margin-top:-15px;
}

.why-us-stars i{
    color:#fbbf24;
    font-size:26px;
    animation:starPulse 2s ease-in-out infinite;
}

.why-us-stars i:nth-child(1){ animation-delay:0s; }
.why-us-stars i:nth-child(2){ animation-delay:0.15s; }
.why-us-stars i:nth-child(3){ animation-delay:0.3s; }
.why-us-stars i:nth-child(4){ animation-delay:0.45s; }
.why-us-stars i:nth-child(5){ animation-delay:0.6s; }

@keyframes starPulse{
    0%, 100%{ transform:scale(1); opacity:1; }
    50%{ transform:scale(1.2); opacity:0.8; }
}

.stats-container{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
    max-width:1100px;
    margin:auto;
    position:relative;
    z-index:1;
}

.stat-card{
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:20px;
    padding:35px 20px 30px;
    text-align:center;
    transition:all 0.4s ease;
}

.stat-card:hover{
    background:rgba(255,255,255,0.18);
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.2);
}

.stat-icon{
    width:60px;
    height:60px;
    background:rgba(255,255,255,0.15);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
}

.stat-icon i{
    font-size:24px;
    color:#fbbf24;
}

.stat-number{
    font-size:48px;
    font-weight:800;
    color:white;
    display:inline;
    line-height:1;
    margin:0;
}

.stat-suffix{
    font-size:24px;
    font-weight:700;
    color:rgba(255,255,255,0.8);
    margin-left:2px;
}

.stat-label{
    font-size:15px;
    color:rgba(255,255,255,0.7);
    margin-top:8px;
    font-weight:500;
    letter-spacing:0.5px;
}

/* =========================
   TENTANG HOME
========================= */

.tentang-home{
    background:white;
    padding:80px 80px 60px;
    margin-top:0;
}

.tentang-home-header{
    text-align:center;
    margin-bottom:50px;
}

.tentang-home-header h2{
    font-size:36px;
    color:#0d3b85;
    margin-bottom:12px;
    font-weight:800;
}

.line-center{
    width:60px;
    height:4px;
    background:linear-gradient(90deg, #0d4fb8, #2563eb);
    border-radius:10px;
    margin:0 auto 15px;
}

.tentang-home-sub{
    color:#64748b;
    font-size:16px;
    margin:0;
}

.tentang-home-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    max-width:1100px;
    margin:auto;
}

.tentang-home-img img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,0.12);
    object-fit:cover;
    aspect-ratio:4/3;
}

.tentang-home-text p{
    color:#444;
    line-height:1.9;
    font-size:15px;
    margin-bottom:18px;
}

.tentang-home-text p strong{
    color:#0d3b85;
}

.tentang-home-fitur{
    display:flex;
    gap:20px;
    margin-top:25px;
    flex-wrap:wrap;
}

.fitur-item{
    display:flex;
    align-items:center;
    gap:10px;
    background:#f0f5ff;
    padding:10px 18px;
    border-radius:12px;
    transition:all 0.3s ease;
}

.fitur-item:hover{
    background:#dbe8ff;
    transform:translateY(-2px);
}

.fitur-icon{
    width:36px;
    height:36px;
    background:linear-gradient(135deg, #0d4fb8, #2563eb);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.fitur-icon i{
    color:white;
    font-size:14px;
}

.fitur-item span{
    font-weight:600;
    color:#0d3b85;
    font-size:14px;
}

/* RESPONSIVE GALERI & STATS & TENTANG */

@media(max-width:1024px){
    .galeri-container{
        grid-template-columns:repeat(2, 1fr);
    }
    .stats-container{
        grid-template-columns:repeat(2, 1fr);
    }
    .tentang-home-grid{
        gap:35px;
    }
}

@media(max-width:768px){
    .hero{
        height:350px;
        padding:40px 25px;
    }
    .hero h1{
        font-size:32px;
    }
    .hero p{
        font-size:16px;
    }
    .galeri-section{
        padding:0 20px 40px;
    }
    .galeri-title{
        font-size:28px;
        padding-top:20px;
    }
    .why-us-section{
        padding:50px 20px;
    }
    .galeri-container{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }
    .stats-container{
        grid-template-columns:1fr 1fr;
        gap:15px;
    }
    .stat-number{
        font-size:36px;
    }
    .stat-suffix{
        font-size:18px;
    }
    .tentang-home{
        padding:50px 25px 40px;
    }
    .tentang-home-header h2{
        font-size:28px;
    }
    .tentang-home-grid{
        grid-template-columns:1fr;
        gap:30px;
    }
    .tentang-home-fitur{
        justify-content:center;
    }
}

@media(max-width:480px){
    .galeri-container{
        grid-template-columns:1fr;
    }
    .stats-container{
        grid-template-columns:1fr 1fr;
    }
    .tentang-home-fitur{
        flex-direction:column;
        align-items:stretch;
    }
    .fitur-item{
        justify-content:center;
    }
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#082a63;
    color:white;
    margin-top:auto !important;
    position:relative;
}

.footer::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:4px;
    background:linear-gradient(90deg, #0d4fb8, #2563eb, #0d4fb8);
}

.footer-main{
    padding:60px 80px 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.3fr 0.8fr 1.4fr;
    gap:50px;
    align-items:start;
}

.footer-col h3{
    font-size:20px;
    margin-bottom:22px;
    position:relative;
    padding-bottom:12px;
}

.footer-col h3::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:35px;
    height:3px;
    background:#2563eb;
    border-radius:10px;
}

/* FOOTER LOGO */

.footer-logo{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.footer-logo img{
    width:55px;
    height:55px;
    object-fit:contain;
    border-radius:50%;
    background:white;
    padding:4px;
}

.footer-logo h3{
    font-size:22px;
    margin:0;
    padding:0;
    color:white;
}

.footer-logo h3::after{
    display:none;
}

.footer-desc{
    color:rgba(255,255,255,0.7);
    line-height:1.8;
    font-size:14px;
    margin-bottom:22px;
}

/* SOCIAL ICONS */

.footer-social{
    display:flex;
    gap:10px;
}

.footer-social a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-decoration:none;
    font-size:18px;
    transition:all 0.3s ease;
    border:1px solid rgba(255,255,255,0.15);
}

.footer-social a:hover{
    transform:translateY(-3px);
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

.footer-social a:nth-child(1):hover{
    background:#25d366;
    border-color:#25d366;
}

.footer-social a:nth-child(2):hover{
    background:#ea4335;
    border-color:#ea4335;
}

.footer-social a:nth-child(3):hover{
    background:#2563eb;
    border-color:#2563eb;
}

/* FOOTER LINKS */

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:rgba(255,255,255,0.7);
    text-decoration:none;
    font-size:15px;
    transition:all 0.3s ease;
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.footer-links a i{
    font-size:10px;
    color:#2563eb;
    transition:transform 0.3s ease;
}

.footer-links a:hover{
    color:white;
    padding-left:5px;
}

.footer-links a:hover i{
    transform:translateX(3px);
}

/* FOOTER CONTACT */

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    text-decoration:none;
    color:white;
    padding:12px 14px;
    border-radius:12px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    transition:all 0.3s ease;
}

.contact-item:hover{
    background:rgba(255,255,255,0.1);
    transform:translateX(5px);
}

.contact-icon{
    width:38px;
    height:38px;
    border-radius:10px;
    background:rgba(37,99,235,0.2);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.contact-icon i{
    color:#60a5fa;
    font-size:16px;
}

.contact-icon.wa{
    background:rgba(37,211,102,0.15);
}

.contact-icon.wa i{
    color:#25d366;
}

.contact-icon.email{
    background:rgba(234,67,53,0.15);
}

.contact-icon.email i{
    color:#ea4335;
}

.contact-label{
    display:block;
    font-size:11px;
    color:rgba(255,255,255,0.5);
    text-transform:uppercase;
    letter-spacing:0.5px;
    font-weight:600;
    margin-bottom:2px;
}

.contact-value{
    display:block;
    font-size:13px;
    color:rgba(255,255,255,0.85);
    line-height:1.5;
}

/* FOOTER BOTTOM */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding:20px 80px;
    text-align:center;
}

.footer-bottom p{
    color:rgba(255,255,255,0.5);
    font-size:13px;
    margin:0;
}

/* FOOTER RESPONSIVE */

@media(max-width:1024px){
    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }
}

@media(max-width:768px){
    .footer-main{
        padding:40px 25px 20px;
    }
    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }
    .footer-bottom{
        padding:18px 25px;
    }
    .footer-col h3::after{
        left:50%;
        transform:translateX(-50%);
    }
    .footer-col{
        text-align:center;
    }
    .footer-logo{
        justify-content:center;
    }
    .footer-social{
        justify-content:center;
    }
    .footer-links a{
        justify-content:center;
    }
    .contact-item{
        text-align:left;
    }
}

.tentang{
    background:#eef3fb;
    padding:70px 80px;
    margin-top:60px;
}

.tentang-container{
    display:flex;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
}

.tentang-image{
    flex:1;
}

.tentang-image img{
    width:100%;
    border-radius:12px;
}

.tentang-content{
    flex:1;
}

.tentang-content h2{
    color:#0d3b85;
    font-size:40px;
    margin-bottom:10px;
}

.line{
    width:80px;
    height:4px;
    background:#0d4fb8;
    margin-bottom:25px;
    border-radius:10px;
}

.tentang-content p{
    line-height:1.8;
    color:#333;
    margin-bottom:20px;
}

.fitur{
    display:flex;
    gap:20px;
    margin-top:30px;
    flex-wrap:wrap;
}

.fitur-box{
    background:white;
    padding:20px;
    border-radius:12px;
    text-align:center;
    width:180px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.fitur-box h3{
    font-size:35px;
    margin-bottom:10px;
    color:#0d4fb8;
}

.fitur-box p{
    font-weight:bold;
    color:#0d3b85;
}

.user-login{
    margin-left:20px;
    color:#0d3b85;
    font-weight:bold;
}

/* =========================
   HALAMAN KERANJANG
========================= */

.keranjang-container{
    width:90%;
    margin:50px auto;
}

/* TABLE */

.table-keranjang{
    width:100%;
    border-collapse:collapse;
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

/* HEADER TABLE */

.table-keranjang th{
    background:#0d4fb8;
    color:white;
    padding:18px;
    font-size:17px;
}

/* ISI TABLE */

.table-keranjang td{
    padding:20px;
    border-bottom:1px solid #eee;
    text-align:center;
    vertical-align:middle;
    font-size:15px;
}

/* GAMBAR */

.table-keranjang img{
    width:100px;
    height:80px;
    object-fit:cover;
    border-radius:10px;
}

/* HOVER ROW */

.table-keranjang tr:hover{
    background:#f7faff;
}

/* TOTAL */

.total-box{
    margin-top:30px;
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    text-align:right;
}

.total-box h2{
    color:#0d3b85;
    margin-bottom:20px;
}

/* BUTTON HAPUS */

.btn-hapus{
    background:#e53935;
    color:white;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    transition:0.3s;
    font-size:14px;
}

.btn-hapus:hover{
    background:#c62828;
}

/* BUTTON CHECKOUT */

.total-box .btn{
    padding:14px 30px;
    font-size:16px;
}

/* KERANJANG KOSONG */

.kosong{
    padding:30px;
    text-align:center;
    color:#777;
    font-size:18px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .table-keranjang{
        display:block;
        overflow-x:auto;
    }

    .table-keranjang th,
    .table-keranjang td{
        font-size:14px;
        padding:12px;
    }

    .table-keranjang img{
        width:80px;
        height:70px;
    }

    .total-box{
        text-align:center;
    }
}

/* =========================
   HERO TENTANG
========================= */

.tentang-hero{
    height:350px;
    background:url('../images/tampilan_atas.jpg');
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}

.tentang-hero-content{
    position:relative;
    color:white;
    text-align:center;
    z-index:2;
}

.tentang-hero-content h1{
    font-size:60px;
    margin-bottom:10px;
}

.tentang-hero-content p{
    font-size:20px;
}

/* =========================
   CONTENT
========================= */

/* =========================
   HERO TENTANG
========================= */

.tentang-hero{
    height:400px;

    background:
    linear-gradient(
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.5)
    ),

    url('../image/hero_tentang.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;
}

/* OVERLAY */

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
}

/* CONTENT */

.tentang-hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:white;
}

.tentang-hero-content h1{
    font-size:65px;
    margin-bottom:15px;
}

.tentang-hero-content p{
    font-size:22px;
}

.tentang-page{
    padding:90px 80px;
    background:#f8fafc;
}

.tentang-wrapper{
    display:flex;
    align-items:center;
    gap:70px;
    flex-wrap:wrap;
}

.tentang-kiri{
    flex:1.1;
    position:relative;
}

.tentang-kiri img{
    width:100%;
    border-radius:24px;
    box-shadow:0 20px 40px rgba(13, 79, 184, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display:block;
}

.tentang-kiri:hover img{
    transform: translateY(-5px);
    box-shadow:0 30px 50px rgba(13, 79, 184, 0.22);
}

.tentang-kanan{
    flex:1;
}

.tentang-kanan h2{
    font-size:42px;
    color:#0f172a;
    font-weight:800;
    letter-spacing:-0.5px;
}

.line{
    width:60px;
    height:4px;
    background: linear-gradient(90deg, #0d4fb8, #2563eb);
    margin:15px 0 25px;
    border-radius:10px;
}

.tentang-kanan p{
    line-height:1.8;
    margin-bottom:18px;
    color:#475569;
    font-size:16px;
}

/* =========================
   VISI MISI
   ========================= */

.visi-misi{
    display:flex;
    gap:24px;
    flex-wrap:wrap;
    margin-top:35px;
}

.box-visi,
.box-misi{
    flex:1;
    background:white;
    padding:30px;
    border-radius:20px;
    border:1px solid #f1f5f9;
    box-shadow:0 10px 25px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.box-visi:hover,
.box-misi:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(13, 79, 184, 0.08);
    border-color:#e2e8f0;
}

.box-title-container{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.box-icon{
    width:40px;
    height:40px;
    background:#eff6ff;
    color:#0d4fb8;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    transition: all 0.3s;
}

.box-visi:hover .box-icon,
.box-misi:hover .box-icon{
    background:#0d4fb8;
    color:white;
}

.box-visi h3,
.box-misi h3{
    color:#0f172a;
    font-size:18px;
    font-weight:700;
    margin:0;
}

.box-visi p{
    color:#64748b;
    font-size:14px;
    line-height:1.6;
    margin:0;
}

.box-misi ul{
    list-style:none;
    padding:0;
    margin:0;
}

.box-misi li{
    display:flex;
    align-items:center;
    gap:10px;
    color:#64748b;
    font-size:14px;
    margin-bottom:12px;
    line-height:1.4;
}

.box-misi li::before{
    content:"✓";
    color:#10b981;
    font-weight:900;
    font-size:15px;
}

.box-misi li:last-child{
    margin-bottom:0;
}

/* =========================
   KEUNGGULAN
========================= */

.keunggulan{
    padding:80px 80px 120px;
    background:white;
}

.keunggulan-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:35px;
    margin-top:40px;
}

.keunggulan-box{
    background:white;
    padding:50px 35px;
    border-radius:20px;
    text-align:center;
    border:1px solid #f1f5f9;
    box-shadow:0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.keunggulan-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(13, 79, 184, 0.1);
    border-color:#e2e8f0;
}

.keunggulan-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #0d4fb8;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 16px rgba(13, 79, 184, 0.08);
}

.keunggulan-box:hover .keunggulan-icon {
    background: linear-gradient(135deg, #0d4fb8, #2563eb);
    color: white;
    transform: rotate(10deg) scale(1.05);
    box-shadow: 0 10px 20px rgba(13, 79, 184, 0.2);
}

.keunggulan-box h3{
    color:#0f172a;
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
}

.keunggulan-box p{
    color:#64748b;
    font-size:14px;
    line-height:1.6;
}



/* =========================
   CHECKOUT
========================= */

.checkout-container{
    width:90%;
    margin:50px auto;
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.checkout-form{
    flex:2;
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.checkout-form h2{
    margin-bottom:25px;
    color:#0d3b85;
}

.checkout-form input,
.checkout-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
}

.checkout-form textarea{
    height:120px;
    resize:none;
}

.btn-checkout{
    background:#0d4fb8;
    color:white;
    border:none;
    padding:15px 30px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
}

.checkout-total{
    flex:1;
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
    height:fit-content;
}

.checkout-total h2{
    margin-bottom:20px;
    color:#0d3b85;
}

.checkout-item{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.checkout-total h3{
    margin-top:20px;
    color:#0d4fb8;
}

/* =========================
   SUCCESS CHECKOUT
========================= */

.success-checkout{
    width:500px;
    margin:100px auto;
    background:white;
    padding:50px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

.success-icon{
    width:100px;
    height:100px;
    background:#28c76f;
    color:white;
    border-radius:50%;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:50px;
    margin-bottom:30px;
}

.success-checkout h1{
    color:#0d3b85;
    margin-bottom:15px;
}

.success-checkout p{
    color:#666;
    line-height:1.8;
    margin-bottom:10px;
}

.btn-home{
    display:inline-block;
    margin-top:25px;
    background:#0d4fb8;
    color:white;
    padding:14px 28px;
    border-radius:10px;
    text-decoration:none;
}

/* =========================
   MENU NAVBAR
========================= */

.menu{
    display:flex;
    align-items:center;
    gap:25px;
}

/* LINK MENU */

.menu a{
    position:relative;
    text-decoration:none;
    color:#222;
    font-weight:600;
    padding:10px 0;
    transition:0.3s;
}

/* ICON */

.menu a i{
    margin-right:6px;
    color:#0d4fb8;
    transition:0.3s;
}

/* HOVER TEXT */

.menu a:hover{
    color:#0d4fb8;
    transform:translateY(-2px);
}

/* HOVER ICON */

.menu a:hover i{
    transform:scale(1.2);
}

/* GARIS ANIMASI */

.menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;

    width:0%;
    height:3px;

    background:#0d4fb8;

    border-radius:10px;

    transition:0.4s;
}

/* SAAT HOVER */

.menu a:hover::after{
    width:100%;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#082a63;
    color:white;
    padding:50px 70px;
}

/* GRID */

.footer-grid{
    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:50px;

    align-items:start;
}

/* LOGO AREA */

.footer-logo{
    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;
}

/* LOGO IMAGE */

.footer-logo img{
    width:60px;
    height:60px;

    object-fit:contain;

    border-radius:50%;

    background:white;

    padding:5px;
}

/* TITLE */

.footer-logo h3{
    color:white;
    font-size:26px;
}

/* TEXT */

.footer p{
    line-height:1.8;
    color:#ddd;
}

/* LINK */

.footer a{
    color:#ddd;
    text-decoration:none;
}

.footer a:hover{
    color:white;
}

/* RESPONSIVE */

@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer{
        padding:40px 25px;
    }
}

/* SUCCESS TAMBAH KERANJANG */

/* HALAMAN BERHASIL TAMBAH KERANJANG */

/* =========================
   SUCCESS TAMBAH KERANJANG BARU
========================= */

.success-container{
    width:100%;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:40px 20px;

    background:
    linear-gradient(
    rgba(13,59,133,0.88),
    rgba(13,79,184,0.88)
    ),
    url('../image/tampilan_atas.jpg');

    background-size:cover;
    background-position:center;
}

.success-box{
    width:520px;

    background:white;

    border-radius:30px;

    padding:60px 45px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

.check-icon{
    width:120px;
    height:120px;

    margin:auto;
    margin-bottom:30px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:60px;
    color:white;

    background:linear-gradient(
    135deg,
    #0d4fb8,
    #2563eb
    );
}

.success-box h1{
    color:#0d3b85;
    font-size:42px;
    margin-bottom:15px;
}

.success-box p{
    color:#555;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.success-button{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-lanjut,
.btn-checkout{
    padding:15px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.btn-lanjut{
    background:white;
    border:2px solid #0d4fb8;
    color:#0d4fb8;
}

.btn-lanjut:hover{
    background:#0d4fb8;
    color:white;
}

.btn-checkout{
    background:#0d4fb8;
    color:white;
}

.btn-checkout:hover{
    background:#2563eb;
}

/* ===================================
   ADMIN PANEL
=================================== */

.admin-container{
    display:flex;
    min-height:100vh;
    background:#f4f7fc;
}

/* SIDEBAR */

.sidebar{
    width:250px;
    background:#0d47a1;
    color:white;
    min-height:100vh;
    padding-top:20px;
    position:fixed;
}

.sidebar h2{
    text-align:center;
    margin-bottom:30px;
    font-size:24px;
}

.sidebar ul{
    list-style:none;
}

.sidebar ul li{
    margin:5px 0;
}

.sidebar ul li a{
    display:block;
    color:white;
    text-decoration:none;
    padding:15px 25px;
    transition:0.3s;
}

.sidebar ul li a:hover{
    background:#1565c0;
}

/* MAIN */

.main{
    margin-left:250px;
    width:100%;
    padding:30px;
}

/* NAVBAR */

.navbar-admin{
    background:white;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.navbar-admin h2{
    color:#0d47a1;
}

/* JUDUL HALAMAN */

.page-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.page-header h1{
    color:#0d47a1;
}

/* BUTTON */

.btn-primary{
    background:#0d47a1;
    color:white;
    text-decoration:none;
    padding:12px 20px;
    border-radius:10px;
    font-weight:bold;
}

.btn-primary:hover{
    background:#1565c0;
}

.btn-edit{
    background:#28a745;
    color:white;
    padding:8px 12px;
    text-decoration:none;
    border-radius:8px;
}

.btn-hapus{
    background:#dc3545;
    color:white;
    padding:8px 12px;
    text-decoration:none;
    border-radius:8px;
}

.btn-detail{
    background:#17a2b8;
    color:white;
    padding:8px 12px;
    text-decoration:none;
    border-radius:8px;
}

/* CARD DASHBOARD */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:30px;
}

.card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    text-align:center;
}

.card h2{
    font-size:40px;
    color:#0d47a1;
}

.card p{
    margin-top:10px;
    color:#666;
}

/* TABLE */

.table-box{
    background:white;
    border-radius:15px;
    padding:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    overflow-x:auto;
}

.table-admin{
    width:100%;
    border-collapse:collapse;
}

.table-admin th{
    background:#0d47a1;
    color:white;
    padding:15px;
    text-align:center;
}

.table-admin td{
    padding:15px;
    border-bottom:1px solid #eee;
    text-align:center;
}

.table-admin tr:hover{
    background:#f7f9fc;
}

.table-admin img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:10px;
}

/* STATUS PESANAN */

.status-menunggu{
    background:#ffc107;
    color:black;
    padding:6px 12px;
    border-radius:20px;
}

.status-diproses{
    background:#17a2b8;
    color:white;
    padding:6px 12px;
    border-radius:20px;
}

.status-dikirim{
    background:#0d6efd;
    color:white;
    padding:6px 12px;
    border-radius:20px;
}

.status-selesai{
    background:#28a745;
    color:white;
    padding:6px 12px;
    border-radius:20px;
}

/* FORM ADMIN */

.form-admin{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.form-admin input,
.form-admin textarea,
.form-admin select{
    width:100%;
    padding:12px;
    margin-top:8px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
}

.form-admin button{
    background:#0d47a1;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:10px;
    cursor:pointer;
}

.form-admin button:hover{
    background:#1565c0;
}

/* LAPORAN */

.report-card{
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    margin-bottom:20px;
}

.report-card h3{
    color:#0d47a1;
    margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .sidebar{
        width:100%;
        position:relative;
        min-height:auto;
    }

    .main{
        margin-left:0;
    }

    .navbar-admin{
        flex-direction:column;
        gap:10px;
    }

}

/* HALAMAN PELANGGAN */

.table-admin td,
.table-admin th{
    vertical-align: middle;
}

.status-menunggu{
    background:#ffc107;
    color:#000;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
}

.status-selesai{
    background:#28a745;
    color:white;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
}

.btn-edit{
    background:#28a745;
    color:#fff;
    padding:8px 15px;
    border-radius:6px;
    text-decoration:none;
    font-size:14px;
}

.btn-edit:hover{
    background:#218838;
}

.btn-detail{
    background:#ffc107;
    color:#000;
    padding:8px 12px;
    border-radius:6px;
    text-decoration:none;
    margin:2px;
    display:inline-block;
}

.btn-edit{
    background:#17a2b8;
    color:white;
    padding:8px 12px;
    border-radius:6px;
    text-decoration:none;
    margin:2px;
    display:inline-block;
}

.btn-primary{
    background:#0d6efd;
    color:white;
    padding:8px 12px;
    border-radius:6px;
    text-decoration:none;
    margin:2px;
    display:inline-block;
}

.btn-hapus{
    background:#28a745;
    color:white;
    padding:8px 12px;
    border-radius:6px;
    text-decoration:none;
    margin:2px;
    display:inline-block;
}




/* ================= HALAMAN KONTAK ================= */


.menu a.admin-btn {
    background: linear-gradient(135deg, #0d4fb8, #2563eb);
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(13, 79, 184, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.menu a.admin-btn:hover {
    transform: translateY(-1.5px);
    box-shadow: 0 6px 18px rgba(13, 79, 184, 0.3);
    background: linear-gradient(135deg, #0b439c, #1d52c7);
}

.menu a.admin-btn::after {
    display: none;
}

/* ================= HALAMAN PEMBAYARAN MIDTRANS ================= */

.payment-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    animation: fadeInSlide 0.5s ease-out;
}

.payment-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    text-align: center;
}

.payment-header {
    margin-bottom: 30px;
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0ebff, #c2d9ff);
    color: #0d4fb8;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    animation: pulseIcon 2s infinite;
}

.payment-header h2 {
    color: #0d3b85;
    font-size: 26px;
    margin-bottom: 8px;
}

.payment-header p {
    color: #666;
    font-size: 14px;
}

.payment-details {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
    color: #475569;
}

.detail-row strong {
    color: #0f172a;
}

.payment-details hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 15px 0;
}

.total-row {
    font-size: 18px;
    font-weight: bold;
    color: #0f172a !important;
}

.price-amount {
    color: #0d4fb8;
    font-size: 20px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-menunggu {
    background: #fef3c7;
    color: #d97706;
}

.status-diproses {
    background: #dbeafe;
    color: #2563eb;
}

.status-dikirim {
    background: #e0e7ff;
    color: #4f46e5;
}

.status-selesai {
    background: #dcfce7;
    color: #16a34a;
}

.status-dibatalkan {
    background: #fee2e2;
    color: #dc2626;
}

.btn-pay {
    width: 100%;
    background: linear-gradient(135deg, #0d4fb8, #2563eb);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(13, 79, 184, 0.2);
    display: inline-block;
    text-decoration: none;
    margin-bottom: 15px;
}

.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 79, 184, 0.3);
    background: linear-gradient(135deg, #0b439c, #1d52c7);
}

.btn-back {
    display: block;
    color: #475569;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
    margin-top: 10px;
}

.btn-back:hover {
    color: #0d4fb8;
}

.payment-success-msg {
    color: #16a34a;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
}

/* ================= HALAMAN STATUS PEMBAYARAN ================= */

.status-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 20px;
    animation: fadeInSlide 0.5s ease-out;
}

.status-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 50px 40px;
    text-align: center;
}

.status-icon {
    width: 90px;
    height: 90px;
    font-size: 80px;
    margin: 0 auto 25px auto;
}

.status-icon.success {
    color: #22c55e;
}

.status-icon.pending {
    color: #eab308;
}

.status-icon.error {
    color: #ef4444;
}

.status-card h1 {
    color: #0f172a;
    font-size: 28px;
    margin-bottom: 15px;
}

.status-desc {
    color: #334155;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.status-note {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.status-details {
    background: #f8fafc;
    border-radius: 12px;
    padding: 18px 24px;
    margin-bottom: 35px;
    border: 1px solid #f1f5f9;
}

.status-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary-action {
    background: #0d4fb8;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary-action:hover {
    background: #0b439c;
    transform: translateY(-1px);
}

.btn-secondary-action {
    background: #f1f5f9;
    color: #475569;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary-action:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* ================= HALAMAN RIWAYAT PESANAN ================= */

.riwayat-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    animation: fadeInSlide 0.5s ease-out;
}

.section-subtitle {
    color: #64748b;
    font-size: 16px;
    text-align: center;
    margin-bottom: 35px;
}

.riwayat-box {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border: 1px solid #f1f5f9;
}

/* TABLE STYLES (DESKTOP) */
.table-responsive {
    overflow-x: auto;
}

.table-riwayat {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.table-riwayat th {
    background: #f8fafc;
    color: #475569;
    font-weight: bold;
    padding: 18px 24px;
    border-bottom: 2px solid #e2e8f0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-riwayat td {
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 15px;
    vertical-align: middle;
}

.table-riwayat tr:last-child td {
    border-bottom: none;
}

.table-riwayat tr:hover {
    background-color: #fafbfc;
}

/* BUTTONS */
.btn-pay-small {
    background: linear-gradient(135deg, #0d4fb8, #2563eb);
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(13, 79, 184, 0.15);
}

.btn-pay-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(13, 79, 184, 0.25);
}

.btn-detail-small {
    background: #f1f5f9;
    color: #475569 !important;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.btn-detail-small:hover {
    background: #e2e8f0;
    color: #1e293b !important;
}

/* MOBILE CARDS (HIDDEN ON DESKTOP) */
.mobile-orders-list {
    display: none;
}

.empty-riwayat {
    text-align: center;
    padding: 50px 20px;
}

.empty-icon {
    font-size: 64px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.empty-riwayat h3 {
    color: #334155;
    font-size: 22px;
    margin-bottom: 8px;
}

.empty-riwayat p {
    color: #64748b;
    margin-bottom: 25px;
}

.btn-shop {
    background: #0d4fb8;
    color: white !important;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
}

.btn-shop:hover {
    background: #0b439c;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .riwayat-box {
        padding: 0;
        background: transparent;
        box-shadow: none;
        border: none;
    }
    
    .table-responsive {
        display: none;
    }
    
    .mobile-orders-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .order-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
        border: 1px solid #f1f5f9;
        padding: 20px;
        transition: transform 0.3s;
    }
    
    .order-card:hover {
        transform: translateY(-2px);
    }
    
    .order-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 12px;
        margin-bottom: 15px;
    }
    
    .order-id-group {
        display: flex;
        flex-direction: column;
    }
    
    .order-id-label {
        font-size: 10px;
        color: #94a3b8;
        text-transform: uppercase;
        font-weight: bold;
        letter-spacing: 0.5px;
    }
    
    .order-id-val {
        font-size: 16px;
        font-weight: bold;
        color: #0f172a;
    }
    
    .order-card-body {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .order-info-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #475569;
        font-size: 14px;
    }
    
    .order-info-item i {
        color: #94a3b8;
        font-size: 16px;
        width: 20px;
        text-align: center;
    }
    
    .info-label {
        display: block;
        font-size: 11px;
        color: #94a3b8;
    }
    
    .info-value {
        font-weight: 500;
        color: #334155;
    }
    
    .info-value.price {
        color: #0d4fb8;
        font-weight: bold;
        font-size: 15px;
    }
    
    .order-card-actions {
        display: flex;
        gap: 10px;
    }
    
    .btn-pay-card {
        flex: 1;
        background: linear-gradient(135deg, #0d4fb8, #2563eb);
        color: white !important;
        text-align: center;
        padding: 12px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        box-shadow: 0 4px 12px rgba(13, 79, 184, 0.2);
    }
    
    .btn-detail-card {
        flex: 1;
        background: #f1f5f9;
        color: #475569 !important;
        text-align: center;
        padding: 12px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
}

.btn-detail-order {
    background: #475569;
    color: white !important;
    padding: 8px 14px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 8px;
}

.btn-detail-order:hover {
    background: #1e293b;
    transform: translateY(-1.5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-check-status-small {
    background: #0ea5e9;
    color: white !important;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(14, 165, 233, 0.2);
}

.btn-check-status-small:hover {
    background: #0284c7;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3);
}

.btn-check-status-card {
    flex: 1;
    background: #0ea5e9;
    color: white !important;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(14, 165, 233, 0.2);
}

.btn-check-status-card:hover {
    background: #0284c7;
}