/* ══════════════════════════════════════════════════════════════
   FRONTEND CSS — JRC Store
   Font System:
     Montserrat → logo, hero, heading, nama produk, tombol (tegas & bertenaga)
     Poppins    → body, deskripsi, harga, testimoni, nav, footer (nyaman dibaca)
   ══════════════════════════════════════════════════════════════ */

/* --- Global Variables --- */

:root {
    --primary-color: #00539c;
    --secondary-color: #060606;
    --accent-color: #FFF8E0;
    --text-dark: #2c2c2c;
    --text-light: #6c7685;
    --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
}

/* --- Base Typography --- */

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: #f4f6fb;
}

/* Montserrat untuk semua heading */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

/* Montserrat untuk tombol */
.btn,
.btn-primary,
.btn-outline-primary,
.btn-brand,
.add-to-cart-btn,
.variant-btn,
.btn-add-cart,
.btn-login-cart {
    font-family: var(--font-heading);
}

/* --- Navbar (Poppins) --- */

.navbar {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-family: var(--font-body);
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.navbar-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.navbar-user-initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

/* --- Footer (Poppins) --- */
.footer,
.footer p,
.footer a,
.footer li {
    font-family: var(--font-body);
}

.footer h5,
.footer h6 {
    font-family: var(--font-heading);
}

/* --- Product names & titles (Montserrat) --- */
.product-title,
.card-title,
.section-title,
.category-pill-title,
.custom-hero-title,
.recommended-product-name,
.cfgr-prod-name,
.cfgr-section-title,
.hero-title {
    font-family: var(--font-heading);
}

/* --- Prices, descriptions, testimonials (Poppins) --- */
.product-price,
.price-input,
.description-text,
.cfgr-desc-text,
.rating-text,
.meta-value,
.meta-label,
.breadcrumb-item,
.quantity-label,
.price-label,
.variant-label,
.order-price-val,
.cfgr-price-val {
    font-family: var(--font-body);
}

.navbar .container,
.footer .container {
    max-width: 1300px;
    padding-left: 20px;
    padding-right: 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #315f93;
    border-color: #315f93;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
}

.product-card {
    height: 100%;
}

.product-image {
    height: 200px;
    object-fit: cover;
}

.footer {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 40px 0 0;
    border-top: 1px solid #e4d9aa;
}

.footer a {
    color: var(--text-dark);
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.footer-brand span {
    color: var(--text-dark);
}

.footer-brand i {
    margin-right: 4px;
}

.footer-desc {
    font-size: 12px;
    color: #5a6270;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    font-size: 12px;
    color: #5a6270;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.footer-links li a i {
    font-size: 9px;
}

.footer-links li a:hover {
    color: var(--primary-color);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.05);
    color: #475569;
    font-size: 16px;
    transition: all 0.2s ease;
}

.footer-social-icon:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.footer-bottom {
    margin-top: 24px;
    padding: 16px 0;
    border-top: 1px solid #e4d9aa;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 11px;
    color: #94a3b8;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* --- Extracted from home.blade.php --- */

/* ── HERO BANNER (16:9, gambar utuh tanpa crop) ── */
.home-hero-banner {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background-color: #0f172a;
}

#homeBannerCarousel {
    width: 100%;
    height: 100%;
}

#homeBannerCarousel .carousel-inner {
    height: 100%;
}

#homeBannerCarousel .carousel-item {
    height: 100%;
}

.hero-banner-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

#homeBannerCarousel .home-banner-img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

/* Custom carousel-fade override for smoother transition */
#homeBannerCarousel.carousel-fade .carousel-item {
    transition: opacity 0.8s ease-in-out;
}

/* Hero Indicators (minimalist dots) */
.hero-indicators {
    bottom: 18px;
    z-index: 5;
    gap: 6px;
    margin: 0 auto;
}

.hero-indicators button,
.hero-indicators [data-bs-target] {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.35) !important;
    transition: background 0.3s ease;
    opacity: 1 !important;
    padding: 0 !important;
    margin: 0 3px !important;
    box-sizing: border-box;
    text-indent: -999px;
}

.hero-indicators button.active,
.hero-indicators .active {
    background: #ffffff !important;
}

/* Hero Control Arrows (ikon saja, tanpa bulatan) */
#homeBannerCarousel .carousel-control-prev.hero-control,
#homeBannerCarousel .carousel-control-next.hero-control {
    background: transparent;
    background-image: none;
    border: 0;
    filter: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.hero-control {
    width: 56px;
    z-index: 5;
    padding: 0 12px;
}

.carousel-control-prev.hero-control {
    left: 6px;
}

.carousel-control-next.hero-control {
    right: 6px;
}

.home-hero-banner:hover #homeBannerCarousel .carousel-control-prev.hero-control,
.home-hero-banner:hover #homeBannerCarousel .carousel-control-next.hero-control {
    opacity: 1;
}

#homeBannerCarousel .carousel-control-prev.hero-control:focus,
#homeBannerCarousel .carousel-control-next.hero-control:focus {
    box-shadow: none;
    outline: none;
}

.hero-control-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: #ffffff;
    font-size: 1.125rem;
    line-height: 1;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    transition: transform 0.2s ease, color 0.2s ease;
}

.hero-control:hover .hero-control-icon {
    transform: scale(1.08);
    color: #ffffff;
    background: transparent;
    box-shadow: none;
}

/* ── HOME SECTIONS (full-width) ── */
.home-section {
    padding: 50px 0;
    background: #ffffff;
    position: relative;
}

.home-section-light {
    background: #f8f9fb;
}

/* Section side label */
.section-label-side {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #b8c2d0;
    margin-bottom: 8px;
}

/* Section heading with gold underline */
.section-heading-wrapper {
    text-align: center;
    margin-bottom: 28px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.section-heading-bar {
    width: 40px;
    height: 3px;
    background: #F5A623;
    border-radius: 2px;
    margin: 0 auto;
}

/* ── CATEGORY CARDS (rounded rectangle) ── */
.category-card-item {
    text-align: center;
    padding: 20px 12px;
    border-radius: 14px;
    border: 2px solid transparent;
    background: #f5f7fa;
    transition: all 0.3s ease;
}

.category-card-item:hover {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(61, 116, 182, 0.12);
    transform: translateY(-3px);
}

.category-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffffff;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.category-card-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.category-card-name {
    font-family: var(--font-body);
    font-weight: 600;
    color: #2c2c2c;
    font-size: 14px;
}

.btn-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50px;
}

/* ── TESTIMONIAL CARDS ── */
.testimonial-card {
    background: #ffffff;
    border: 1px solid #e8ecf3;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.testimonial-stars {
    margin-bottom: 16px;
    color: #F5A623;
    font-size: 15px;
    display: flex;
    gap: 2px;
}

.testimonial-photo {
    max-height: 100px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.testimonial-text {
    font-family: var(--font-body);
    color: #4a5568;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.testimonial-avatar-placeholder {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: #2c2c2c;
}

.testimonial-time {
    font-family: var(--font-body);
    font-size: 12px;
    color: #94a3b8;
}

/* ── CTA SECTION ── */
.home-section-cta {
    background: #f8f9fb;
    padding: 30px 0 50px;
}

.cta-banner {
    background: var(--accent-color);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.cta-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cta-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .home-section {
        padding: 36px 0;
    }

    .section-heading {
        font-size: 1.05rem;
    }

    .section-heading-wrapper {
        margin-bottom: 22px;
    }

    #homeBannerCarousel .carousel-control-prev.hero-control,
    #homeBannerCarousel .carousel-control-next.hero-control {
        opacity: 1;
    }

    .hero-control-icon {
        font-size: 1rem;
    }

    .row.g-3>[class*="col-"] .card.product-card .product-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .home-section {
        padding: 24px 0;
    }

    .section-heading {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .section-heading-wrapper {
        margin-bottom: 16px;
    }

    .section-label-side {
        font-size: 10px;
    }

    .category-card-item {
        padding: 14px 8px;
        border-radius: 12px;
    }

    .category-card-icon {
        width: 56px;
        height: 56px;
    }

    .category-card-icon img {
        width: 38px;
        height: 38px;
    }

    .category-card-name {
        font-size: 12px;
    }

    .product-card .product-image {
        height: 160px;
    }

    .testimonial-card {
        padding: 20px 18px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .cta-banner {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .cta-title {
        font-size: 1.1rem;
    }

    .hero-indicators {
        bottom: 10px;
    }

    .hero-indicators button,
    .hero-indicators [data-bs-target] {
        width: 5px !important;
        height: 5px !important;
    }

    .hero-indicators button.active {
        width: 5px !important;
    }

    .hero-control-icon {
        font-size: 0.9rem;
    }
}


/* --- Products Page --- */

.products-page {
    background: #ffffff;
    padding: 32px 0 50px;
}

.products-breadcrumb {
    margin-bottom: 8px;
}

.products-breadcrumb .breadcrumb {
    font-size: 13px;
}

.products-page-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: #2c2c2c;
    margin: 0;
}

.products-count {
    font-family: var(--font-body);
    font-size: 12px;
    color: #94a3b8;
}

/* Filter Sidebar */
.filter-sidebar {
    background: #f8f9fb;
    border: 1px solid #e8ecf3;
    border-radius: 12px;
    padding: 20px 18px;
}

.filter-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: #2c2c2c;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8ecf3;
}

.filter-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 6px;
    display: block;
}

.filter-input {
    font-size: 13px !important;
    padding: 8px 12px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
}

.filter-input:focus {
    box-shadow: 0 0 0 3px rgba(61, 116, 182, 0.1) !important;
    border-color: var(--primary-color) !important;
}

.filter-btn {
    font-size: 13px !important;
    padding: 9px 16px !important;
}

.filter-btn-reset {
    font-size: 13px !important;
    padding: 8px 16px !important;
    border-color: #e2e8f0 !important;
    color: #94a3b8 !important;
}

.filter-btn-reset:hover {
    background: #f1f5f9 !important;
    color: #64748b !important;
}

@media (max-width: 576px) {
    .products-page {
        padding: 24px 0 36px;
    }

    .products-page-title {
        font-size: 0.95rem;
    }

    .filter-sidebar {
        padding: 16px 14px;
    }

    .filter-title {
        font-size: 13px;
    }
}

/* --- Extracted from products/index.blade.php --- */

.product-card {
    border: 1px solid #e8ecf3;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.product-image-wrapper {
    background: #ffffff;
    padding: 14px;
    height: 195px;
    display: grid;
    place-items: center;
}

.product-image {
    object-fit: contain;
    width: 100%;
    height: 100%;

}

.product-price {
    color: var(--primary-color, #3D74B6);
    font-weight: 600;
    font-size: 14px;
}

.product-title-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 39px;
    line-height: 1.5;
}

/* --- Extracted from products/show.blade.php --- */

.product-detail-container {
    background: #f8f9fa;
    padding: 30px 0 50px;
}

.breadcrumb-wrapper {
    padding: 10px 0;
    margin-bottom: 20px;
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
    font-size: 13px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.product-detail-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8ecf3;
    overflow: hidden;
}

/* Product Images Section */
.product-images-wrapper {
    padding: 30px;
    height: 100%;
    background: #ffffff;
}

.main-image-container {
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: 100%;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
}

.thumbnail-image {
    flex: 1;
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
    background: #f8f9fa;
    padding: 5px;
}

.placeholder-thumb {
    background: #f8f9fa;
}

.thumbnail-image:hover,
.thumbnail-image.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

/* Product Info Section */
.product-info-wrapper {
    padding: 30px;
    height: 100%;
}

.product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    /* Reduced from 2rem */
    font-weight: 700;
    color: #2c2c2c;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.wishlist-icon {
    font-size: 1.2rem;
    color: #dc3545;
    transition: transform 0.2s;
}

.wishlist-icon:hover {
    transform: scale(1.1);
}

.wishlist-icon-btn {
    border: none;
    background: transparent;
    padding: 0;
    margin-left: 15px;
    margin-top: 4px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.wishlist-icon-btn.active .wishlist-icon {
    color: #dc3545;
}

.wishlist-card-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #dc3545;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.wishlist-card-btn:hover {
    border-color: #dc3545;
    background: #fff1f2;
    transform: translateY(-1px);
}

.wishlist-card-btn.active {
    border-color: #dc3545;
    background: #fff1f2;
    color: #dc3545;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8ecf3;
}

.rating-stars {
    color: #f5a623;
    font-size: 1rem;
    /* Reduced from 1.2rem */
}

.rating-text {
    color: #64748b;
    font-size: 12px;
    /* Reduced from 0.95rem */
}

.product-meta {
    margin-bottom: 24px;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    /* Reduced from 0.95rem */
}

.meta-label {
    font-weight: 600;
    color: #64748b;
    min-width: 80px;
}

.meta-value {
    color: #2c2c2c;
    font-weight: 500;
}

/* Variant Selection */
.variant-section {
    margin-bottom: 24px;
}

.variant-label {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.variant-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-btn {
    padding: 6px 14px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    font-size: 13px;
    /* Reduced from 0.9rem */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #64748b;
}

.variant-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #f8f9fb;
}

.variant-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

/* Quantity and Price */
.quantity-price-section {
    margin-bottom: 24px;
    background: #f8f9fb;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e8ecf3;
}

.quantity-row,
.price-row {
    display: flex;
    align-items: center;
}

.quantity-row {
    margin-bottom: 16px;
}

.quantity-label,
.price-label {
    font-weight: 600;
    font-size: 13px;
    min-width: 90px;
    color: #64748b;
}

.quantity-input-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.quantity-input {
    width: 50px;
    padding: 6px 0;
    border: none;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #2c2c2c;
}

.quantity-input:focus {
    outline: none;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #64748b;
    transition: all 0.2s;
}

.quantity-btn:hover {
    background: #f1f5f9;
    color: var(--primary-color);
}

.price-input {
    padding: 0;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    min-width: 150px;
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    padding: 10px 15px;
    font-size: 13px !important;
    font-weight: 600 !important;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Description Section */
.description-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e8ecf3;
}

.description-label {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.description-text {
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

/* Recommended Products */
.recommended-section {
    margin-top: 40px;
    padding-top: 30px;
}

.recommended-section .section-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.recommended-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8ecf3;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.recommended-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-color);
}

.recommended-product-image {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: #ffffff;
    padding: 15px;
    border-bottom: 1px solid #e8ecf3;
}

.recommended-product-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.recommended-product-name {
    font-weight: 600;
    font-size: 13px;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.recommended-product-price {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.recommended-view-detail-btn {
    margin-top: auto;
    width: 100%;
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 6px 12px !important;
}

@media (max-width: 768px) {
    .product-title {
        font-size: 1.5rem;
    }

    .thumbnail-image {
        height: 80px;
        padding: 3px;
    }

    .variant-buttons {
        flex-direction: column;
    }

    .variant-btn {
        width: 100%;
    }
}


/* --- Extracted from custom/index.blade.php --- */

.custom-hero-title {
    font-weight: 800;
    font-size: 26px;
    text-align: center;
    color: #2c2c2c;
}

.custom-hero-subtitle {
    text-align: center;
    color: #6c7685;
    font-size: 14px;
    max-width: 520px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.custom-wrapper {
    min-height: calc(100vh - 220px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
}

.custom-card {
    border: 1px solid #e8ecf3;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.custom-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.custom-image-wrapper {
    background: #ffffff;
    padding: 12px 12px 0 12px;
    height: auto;
    display: block;
    overflow: hidden;
}

.custom-image {
    object-fit: contain;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
}

.custom-price {
    color: var(--primary-color, #3D74B6);
    font-weight: 500;
    font-size: 16px;
}


/* --- Extracted from custom/show.blade.php --- */

:root {
    --bg: #EFF3F8;
    --bg2: #FFFFFF;
    --bg3: #F5F8FC;
    --border: #E2E8F0;
    --border2: #CBD5E1;
    --blue: #1565C0;
    --blue-lt: #1976D2;
    --blue-soft: #E8F0FE;
    --blue-glow: rgba(21, 101, 192, 0.12);
    --text: #1A202C;
    --text2: #4A5568;
    --text3: #94A3B8;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.09);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.11);
    --radius: 14px;
    --radius-sm: 8px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.cfgr-page {
    background: var(--bg);
    font-family: var(--font-heading);
    color: var(--text);
    padding-bottom: 60px;
    min-height: 100vh;
}

/* ── BREADCRUMB ── */
.cfgr-breadcrumb {
    padding: 14px 0 8px;
    font-size: 13px;
    color: var(--text3);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.cfgr-breadcrumb a {
    color: var(--blue);
    text-decoration: none;
}

.cfgr-breadcrumb a:hover {
    text-decoration: underline;
}

/* ── HEADER BAND ── */
.cfgr-header {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 20px 0 18px;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
}

.cfgr-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue) 0%, #42A5F5 60%, var(--blue-lt) 100%);
}

.cfgr-header::after {
    content: none;
}

.cfgr-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.cfgr-prod-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
}

.cfgr-prod-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--text);
    line-height: 1.2;
}

.cfgr-prod-rating {
    font-size: 13px;
    color: var(--text2);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.cfgr-prod-rating .stars {
    color: #F59E0B;
    letter-spacing: 1px;
}

.cfgr-price-badge {
    text-align: right;
    flex-shrink: 0;
}

.cfgr-price-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 4px;
}

.cfgr-price-val {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--blue);
}

/* ── MAIN LAYOUT ── */
.cfgr-layout {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 20px;
    align-items: start;
}

@media (max-width: 1050px) {
    .cfgr-layout {
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }
    .cfgr-layout > * {
        width: 100%;
    }
    .cfgr-desc { margin-top: 0 !important; }
}

/* ── CANVAS PANEL ── */
.cfgr-canvas-panel {
    position: sticky;
    top: 16px;
}

.cfgr-canvas-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cfgr-canvas-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--bg3);
}

.cfgr-canvas-dots {
    display: flex;
    gap: 5px;
}

.cfgr-canvas-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.cfgr-canvas-dots span:nth-child(1) {
    background: #FF5F57;
}

.cfgr-canvas-dots span:nth-child(2) {
    background: #FEBC2E;
}

.cfgr-canvas-dots span:nth-child(3) {
    background: #28C840;
}

.cfgr-canvas-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text3);
    font-family: var(--font-heading);
}

.cfgr-zoom-btns {
    display: flex;
    gap: 4px;
}

.cfgr-zoom-btns button {
    width: 26px;
    height: 26px;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--text2);
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}

.cfgr-zoom-btns button:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

/* Canvas stage */
.cfgr-canvas-stage {
    background: #FFFFFF;
    min-height: 480px;
    display: block;
    text-align: center;
    position: relative;
    overflow: auto;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.cfgr-canvas-stage::before {
    content: none;
}

.cfgr-canvas-stage::after {
    content: none;
}

.cfgr-zoom-wrap {
    display: inline-block;
    vertical-align: middle;
    transform-origin: center center;
    transition: transform 0.2s ease;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 28px;
}

#productPreviewImage {
    display: none;
    max-width: 100%;
}

#productRecolorCanvas {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-height: 440px;
    max-width: 100%;
    width: auto;
    height: auto;
    pointer-events: none;
    display: none;
}

#detailCompositeCanvas {
    max-height: 440px;
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.10));
    transition: filter .3s ease;
}

.composite-stiker-wrap {
    position: relative;
    max-width: 100%;
    display: inline-block; /* To shrink wrap the canvas inside */
}

.stiker-canvas-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.canvas-placeholder-msg {
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text3);
    font-size: 12px;
    text-align: center;
}

.canvas-placeholder-msg svg {
    opacity: 0.3;
}

/* Chips infobar */
.cfgr-canvas-infobar {
    display: flex;
    gap: 6px;
    padding: 12px 14px;
    border-top: 1px solid var(--border);
    background: var(--bg3);
    flex-wrap: wrap;
    min-height: 46px;
    align-items: center;
}

.cfgr-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text2);
    transition: all .2s;
    font-family: var(--font-heading);
}

.cfgr-chip.has-val {
    border-color: rgba(21, 101, 192, 0.3);
    background: var(--blue-soft);
    color: var(--blue);
}

.cfgr-chip .chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border2);
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.cfgr-chip.has-val .chip-dot {
    background: var(--blue);
}

/* Product info below canvas */
.cfgr-desc {
    margin-top: 14px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

.cfgr-desc-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 8px;
}

.cfgr-desc-text {
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.7;
    font-weight: 500;
}

/* ── CONFIG PANEL ── */
.cfgr-config-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cfgr-section {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
    transition: box-shadow .2s, border-color .2s;
    animation: fadeUp .35s ease both;
}

.cfgr-section:hover {
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.09);
    border-color: var(--border2);
}

.cfgr-section:nth-child(1) {
    animation-delay: .04s;
}

.cfgr-section:nth-child(2) {
    animation-delay: .08s;
}

.cfgr-section:nth-child(3) {
    animation-delay: .12s;
}

.cfgr-section:nth-child(4) {
    animation-delay: .16s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cfgr-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
}

.cfgr-section-icon {
    width: 30px;
    height: 30px;
    background: var(--blue-soft);
    border: 1px solid rgba(21, 101, 192, 0.2);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
}

.cfgr-section-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--text);
    font-family: var(--font-heading);
}

.cfgr-section-body {
    padding: 14px 16px;
}

/* Komponen block */
.komp-block {
    margin-bottom: 18px;
}

.komp-block:last-child {
    margin-bottom: 0;
}

.komp-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.komp-name::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.komp-day-info {
    font-size: 11px;
    font-weight: 600;
    color: var(--text3);
    margin-bottom: 6px;
}

/* Pills */
.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 11px;
}

.pill-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: var(--bg3);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text2);
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    transition: all .18s;
    font-family: var(--font-heading);
}

.pill-item:hover {
    border-color: var(--blue-lt);
    color: var(--blue);
    background: var(--blue-soft);
}

.pill-item.active {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.pill-extra {
    font-size: 10px;
    opacity: 0.75;
    font-weight: 500;
}

.komponen-real-select,
.warna-real-select {
    display: none;
}

/* Warna row */
.warna-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.warna-row-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text2);
    white-space: nowrap;
}

.swatch-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.swatch-item {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.swatch-item:hover {
    transform: scale(1.25);
}

.swatch-item.active {
    border-color: var(--text);
    transform: scale(1.2);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #888, 0 2px 6px rgba(0, 0, 0, 0.15);
}

.swatch-none {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px dashed var(--border2);
    background: var(--bg3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    font-size: 11px;
    flex-shrink: 0;
    transition: all .15s;
}

.swatch-none:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-soft);
}

.swatch-none.active {
    border-color: var(--blue);
    border-style: solid;
    color: var(--blue);
    background: var(--blue-soft);
}

.swatch-sel-badge {
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 5px;
    background: var(--bg3);
    color: var(--text2);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all .2s;
    white-space: nowrap;
    font-family: var(--font-heading);
}

.swatch-sel-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.warna-loading {
    font-size: 12px;
    color: var(--text3);
    font-style: italic;
}

/* ── SPEC FIELDS ── */
.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.spec-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text2);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.spec-field select,
.spec-field input,
.spec-field textarea {
    width: 100%;
    background: var(--bg3);
    border: 1.5px solid var(--border);
    color: var(--text);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 11px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
}

.spec-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}

.spec-field select:focus,
.spec-field input:focus,
.spec-field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.spec-field textarea {
    resize: vertical;
    min-height: 72px;
    line-height: 1.6;
}

/* Upload */
.upload-area {
    border: 1.5px dashed var(--border2);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    background: var(--bg3);
    position: relative;
}

.upload-area:hover {
    border-color: var(--blue);
    background: var(--blue-soft);
}

.upload-area input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
}

.upload-area-icon {
    color: var(--text3);
    margin-bottom: 6px;
}

.upload-area:hover .upload-area-icon {
    color: var(--blue);
}

.upload-area-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--text2);
    font-family: var(--font-heading);
}

.upload-area:hover .upload-area-text {
    color: var(--blue);
}

.upload-area-sub {
    font-size: 11.5px;
    color: var(--text3);
    margin-top: 3px;
    font-weight: 500;
}

.upload-filename {
    font-size: 12px;
    color: var(--blue);
    margin-top: 6px;
    font-weight: 600;
}

/* Engraving */
.engraving-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    cursor: pointer;
}

.eng-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    font-family: var(--font-heading);
}

.eng-sub {
    font-size: 12px;
    color: var(--text3);
    margin-top: 1px;
    font-weight: 500;
}

.ios-toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
}

.ios-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ios-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--border2);
    border-radius: 22px;
    transition: .25s;
}

.ios-slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: .25s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

input:checked+.ios-slider {
    background: var(--blue);
}

input:checked+.ios-slider:before {
    transform: translateX(18px);
}

.engraving-fields {
    padding: 0 16px 16px;
    display: none;
}

/* ── ORDER BAR ── */
.cfgr-order-bar {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

.qty-wrap {
    display: flex;
    align-items: center;
    background: var(--bg3);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 36px;
    height: 40px;
    background: none;
    border: none;
    color: var(--text2);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    font-weight: 300;
    font-family: var(--font-heading);
}

.qty-btn:hover {
    background: var(--blue-soft);
    color: var(--blue);
}

#qtyInput {
    width: 48px;
    height: 40px;
    background: none;
    border: none;
    border-left: 1.5px solid var(--border);
    border-right: 1.5px solid var(--border);
    color: var(--text);
    text-align: center;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    outline: none;
    -moz-appearance: textfield;
}

#qtyInput::-webkit-outer-spin-button,
#qtyInput::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.order-price-wrap {
    flex: 1;
}

.order-price-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text3);
    font-family: var(--font-heading);
}

.order-price-val {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.3px;
}

.btn-add-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    height: 44px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all .2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-add-cart:hover {
    background: var(--blue-lt);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    color: #fff;
}

.btn-add-cart:active {
    transform: translateY(0);
}

.btn-login-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    height: 44px;
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-login-cart:hover {
    background: var(--blue-soft);
    color: var(--blue);
}

.note-txt {
    font-size: 11.5px;
    color: var(--text3);
    line-height: 1.5;
    margin-top: 4px;
    font-weight: 500;
}

/* ── Stiker Panel ── */
.composite-stiker-wrap {
    position: relative;
    display: inline-block;
    max-width: 100%;
    isolation: isolate;
}

.stiker-canvas-wrap {
    position: absolute;
    left: 0;
    top: 0;
    transform: none;
    z-index: 50 !important;
    pointer-events: none;
}

.stiker-canvas-wrap.has-active {
    pointer-events: auto;
}

#stikerFabricCanvas {
    display: block;
    background: transparent;
}

#detailCompositeCanvas {
    position: relative;
    z-index: 10;
}

.stiker-canvas-wrap .canvas-container {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 51 !important;
}

.stiker-canvas-wrap .canvas-container .lower-canvas {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 51 !important;
}

.stiker-canvas-wrap .canvas-container .upper-canvas {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 52 !important;
}

.stiker-panel {
    margin-top: 14px;
}

.stiker-panel-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 16px;
    background: var(--bg3);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all .2s;
}

.stiker-panel-toggle:hover {
    background: var(--border);
}

.stiker-toggle-arrow {
    margin-left: auto;
    font-size: 10px;
    transition: transform .25s;
    color: var(--text3);
}

.stiker-panel[aria-expanded="true"] .stiker-toggle-arrow {
    transform: rotate(180deg);
}

.stiker-panel-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.stiker-panel[aria-expanded="true"] .stiker-panel-body {
    max-height: 800px;
}

.stiker-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 0 16px;
    background: var(--bg3);
}

.stiker-tab {
    padding: 10px 16px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    color: var(--text3);
    font-family: var(--font-heading);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all .2s;
}

.stiker-tab:hover {
    color: var(--text2);
}

.stiker-tab.active {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

.stiker-tab-content {
    display: none;
    padding: 14px 16px;
}

.stiker-tab-content.active {
    display: block;
}

.btn-stiker-add {
    padding: 8px 16px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: all .2s;
}

.btn-stiker-add:hover {
    background: var(--blue-lt);
}

.stiker-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    background: var(--bg3);
}

.btn-stiker-action {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--border);
    background: var(--bg2);
    color: var(--text2);
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: all .15s;
}

.btn-stiker-action:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-soft);
}

.btn-stiker-action.btn-stiker-clear {
    border-color: #dc3545;
    color: #dc3545;
}

.btn-stiker-action.btn-stiker-clear:hover {
    background: rgba(220, 53, 69, 0.1);
}

.stiker-stroke-toggle-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}

.stiker-stroke-toggle-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.stiker-stroke-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stiker-harga-info {
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    border-top: 1px solid var(--border);
    font-family: var(--font-heading);
}

/* Responsive */
@media (max-width: 768px) {
    .cfgr-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cfgr-price-badge {
        text-align: left;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

    .cfgr-order-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-add-cart,
    .btn-login-cart {
        width: 100%;
    }
}


/* --- Checkout Page --- */

.checkout-section {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8ecf3;
    padding: 0;
    margin-bottom: 20px;
    overflow: hidden;
}

.checkout-section-body {
    padding: 20px 24px;
}

.section-header {
    background: #f8fafc;
    color: #1e293b;
    padding: 14px 24px;
    border-bottom: 1px solid #e8ecf3;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.section-header i {
    color: var(--primary-color);
    margin-right: 8px;
}

.address-option {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    line-height: 1.6;
}

.address-option:hover {
    border-color: var(--primary-color);
    background: #fafbfd;
}

.address-option.selected {
    border-color: var(--primary-color);
    background: #eff6ff;
    box-shadow: 0 0 0 1px var(--primary-color);
}

.address-option input[type="radio"] {
    margin-right: 8px;
}

.address-option strong {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
}

.address-option small {
    font-size: 12px;
}

.checkout-voucher-group {
    display: flex;
    gap: 10px;
}

.checkout-voucher-group input {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s;
}

.checkout-voucher-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(61, 116, 182, 0.12);
}

.checkout-voucher-btn {
    padding: 10px 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.checkout-voucher-btn:hover {
    background: #2c5e9e;
}

.checkout-select-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 6px;
    display: block;
}

.checkout-select {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-family: var(--font-body);
    color: #1e293b;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    appearance: auto;
}

.checkout-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(61, 116, 182, 0.12);
}

.checkout-select:disabled {
    background: #f1f5f9;
    color: #94a3b8;
}

.checkout-add-address-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.checkout-add-address-btn:hover {
    border-color: var(--primary-color);
    background: #eff6ff;
    color: var(--primary-color);
}

/* ── Order Summary ── */
.order-summary-item {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
}

.order-summary-item:last-child {
    border-bottom: none;
}

.order-summary-item .d-flex span:first-child {
    color: #475569;
}

.order-summary-item .d-flex span:last-child {
    font-weight: 600;
    color: #1e293b;
}

.checkout-summary-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 12px 0;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.checkout-total-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.checkout-total-value {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
}

.checkout-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 10px;
}

.checkout-submit-btn:hover {
    background: #2c5e9e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 116, 182, 0.3);
}

.checkout-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.checkout-back-btn:hover {
    background: #f1f5f9;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.checkout-note {
    font-size: 11px;
    color: #94a3b8;
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
}


/* --- About Page --- */

.about-page {
    background: #ffffff;
    padding: 40px 0 50px;
}

.about-breadcrumb {
    margin-bottom: 10px;
}

.about-breadcrumb .breadcrumb {
    font-size: 13px;
}

.about-subtitle {
    text-align: center;
    font-family: var(--font-body);
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: #2c2c2c;
    margin-bottom: 14px;
}

.about-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* TikTok videos (About page) */
.about-tiktok-videos {
    display: flex;
    gap: 1rem;
    padding-bottom: 0.75rem;
    width: 100%;
}

.about-tiktok-videos--single {
    justify-content: center;
    overflow: visible;
}

.about-tiktok-videos--multiple {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.about-tiktok-video-item {
    flex-shrink: 0;
}

.about-tiktok-video-item iframe {
    display: block;
    max-width: 100%;
    width: 350px;
    height: 540px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 576px) {
    .about-tiktok-video-item iframe {
        width: min(100%, 320px);
        height: 480px;
    }
}

/* Value Cards */
.about-value-card {
    text-align: center;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px solid #e8ecf3;
    background: #f8f9fb;
    height: 100%;
    transition: all 0.3s ease;
}

.about-value-card:hover {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(61, 116, 182, 0.1);
    transform: translateY(-2px);
}

.about-value-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 12px;
}

.about-value-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.about-value-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Stats Card */
.about-stats-card {
    background: var(--primary-color);
    border-radius: 14px;
    padding: 32px 20px;
    color: #ffffff;
}

.about-stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: #ffffff;
}

.about-stat-label {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

/* Feature Items */
.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #f0f2f5;
    height: 100%;
    transition: all 0.2s ease;
}

.about-feature-item:hover {
    background: #f8f9fb;
}

.about-feature-check {
    color: #22c55e;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-feature-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: #2c2c2c;
    margin-bottom: 4px;
}

.about-feature-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .about-page {
        padding: 24px 0 36px;
    }

    .about-subtitle {
        font-size: 12px;
    }

    .about-section-title {
        font-size: 0.9rem;
    }

    .about-text {
        font-size: 12px;
    }

    .about-value-card {
        padding: 18px 12px;
    }

    .about-value-icon {
        font-size: 1.5rem;
    }

    .about-value-title {
        font-size: 13px;
    }

    .about-value-text {
        font-size: 12px;
    }

    .about-stats-card {
        padding: 24px 16px;
    }

    .about-stat-number {
        font-size: 1.3rem;
    }

    .about-stat-label {
        font-size: 11px;
    }

    .about-feature-item {
        padding: 12px;
    }

    .about-feature-title {
        font-size: 13px;
    }

    .about-feature-text {
        font-size: 12px;
    }
}


/* --- Extracted from faq_view.blade.php --- */

.faq-section {
    background: #ffffff;
    min-height: 80vh;
    padding: 40px 0;
}

.faq-content-wrapper {
    padding: 10px 0;
}

.faq-subtitle {
    text-align: center;
    font-family: var(--font-body);
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 28px;
}

.faq-search-input {
    border-radius: 10px;
    padding: 10px 18px;
    border: 1px solid #e2e8f0;
    font-size: 13px;
    background: #f8f9fb;
    transition: all 0.3s ease;
}

.faq-search-input:focus {
    box-shadow: 0 0 0 3px rgba(61, 116, 182, 0.1);
    border-color: var(--primary-color);
    background: #ffffff;
}

.faq-category-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-color);
    margin-top: 24px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f2f5;
}

.faq-section .accordion-item {
    border: 1px solid #e8ecf3;
    border-radius: 10px !important;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    padding: 14px 18px;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #f8fbff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .08);
    font-size: 14px;
}

.faq-section .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.faq-section .accordion-button::after {
    width: 14px;
    height: 14px;
    background-size: 14px;
}

.faq-section .accordion-body {
    font-family: var(--font-body);
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
    padding: 14px 18px;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #888;
    display: none;
}

@media (max-width: 576px) {
    .faq-section {
        padding: 24px 0;
    }

    .faq-subtitle {
        font-size: 12px;
    }

    .faq-search-input {
        font-size: 12px;
        padding: 9px 14px;
    }

    .faq-category-title {
        font-size: 13px;
    }

    .faq-section .accordion-button {
        font-size: 13px;
        padding: 12px 14px;
    }

    .faq-section .accordion-body {
        font-size: 12px;
        padding: 12px 14px;
    }
}


/* --- Extracted from profile/profile_tracking.blade.php --- */

.tracking-timeline {
    position: relative;
    padding-left: 35px;
    margin-top: 10px;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -35px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e2e8f0;
    z-index: 1;
}

.timeline-item.active .timeline-dot {
    background: var(--primary-color, #3D74B6);
    box-shadow: 0 0 0 4px rgba(61, 116, 182, 0.2);
}

.timeline-date {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 4px;
    font-family: monospace;
}

.timeline-title {
    font-weight: 600;
    font-size: 1rem;
    color: #334155;
    margin-bottom: 2px;
}

.timeline-item.active .timeline-title {
    color: var(--primary-color, #3D74B6);
}

.timeline-desc {
    font-size: 0.85rem;
    color: #64748b;
}


/* --- Extracted from profile/profile_alamat.blade.php --- */

:root {
    --profile-primary: #3D74B6;
    --profile-primary-dark: #2a5a8f;
}

.address-card-v2 {
    background: #fff;
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s ease;
}

.address-card-v2:hover {
    box-shadow: 0 4px 14px rgba(61, 116, 182, 0.08);
}

.address-card-v2--utama {
    border: 2px solid var(--profile-primary);
    box-shadow: 0 2px 12px rgba(61, 116, 182, 0.12);
}

.address-badge-utama {
    background: #E3F2FD;
    color: var(--profile-primary);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
}

.address-link-action {
    font-size: 0.875rem;
    font-weight: 500;
}

.address-link-primary {
    color: var(--profile-primary) !important;
}

.address-link-primary:hover {
    color: var(--profile-primary-dark) !important;
}

.address-link-danger {
    color: #dc3545 !important;
}

.address-link-muted {
    color: #9ca3af !important;
}

.address-link-muted:hover {
    color: #6b7280 !important;
}

.add-address-dash {
    display: block;
    width: 100%;
    border: 2px dashed #cfe2f8;
    border-radius: 12px;
    padding: 1.15rem 1rem;
    text-align: center;
    color: var(--profile-primary);
    font-weight: 600;
    font-size: 0.95rem;
    background: #fafbfd;
    transition: background 0.2s, border-color 0.2s;
}

.add-address-dash:hover {
    border-color: var(--profile-primary);
    background: #E3F2FD;
    color: var(--profile-primary-dark);
}


/* --- Extracted from profile/orders.blade.php --- */

.profile-sidebar {
    background: linear-gradient(135deg, #3D74B6 0%, #2a5a8f 100%);
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
}

.profile-sidebar .sidebar-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.profile-sidebar .sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-sidebar .sidebar-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-sidebar .sidebar-menu li:last-child {
    border-bottom: none;
}

.profile-sidebar .sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.profile-sidebar .sidebar-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.profile-sidebar .sidebar-menu a.active {
    background: rgba(255, 255, 255, 0.25);
    font-weight: 600;
}

.profile-sidebar .sidebar-menu a i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.info-box {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.info-box-header {
    background: linear-gradient(135deg, #3D74B6 0%, #2a5a8f 100%);
    color: white;
    padding: 15px 20px;
    margin: -25px -25px 20px -25px;
    border-radius: 10px 10px 0 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.order-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: white;
    transition: all 0.3s;
}

.order-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.order-item {
    border-bottom: 1px solid #f0f0f0;
}

.order-item:last-child {
    border-bottom: none;
}


/* --- Extracted from profile/order-detail.blade.php --- */

:root {
    --od-primary: var(--primary-color, #3D74B6);
    --od-primary-dark: #2a5a8f;
    --od-soft: #faf6ef;
    --od-soft-border: #eee8dc;
    --od-muted: #6b7280;
    --od-text: #111827;
    --od-card: #ffffff;
    --od-border: #e5e7eb;
}

.od-card {
    background: var(--od-card);
    border: 1px solid var(--od-border);
    border-radius: 14px;
    overflow: hidden;
}

.od-card--soft {
    background: var(--od-soft);
    border-color: var(--od-soft-border);
}

.od-thumb {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    background: #f3f4f6;
    flex-shrink: 0;
}

.od-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--od-text);
    margin: 0;
    line-height: 1.35;
}

.od-sub {
    font-size: 0.875rem;
    color: var(--od-muted);
}

.od-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .35rem .8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .8rem;
    background: #E3F2FD;
    color: #1e40af;
    white-space: nowrap;
}

.od-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--od-primary);
}

/* --- Order Detail Design System --- */
:root {
    --od-primary: var(--primary-color, #3D74B6);
    --od-primary-dark: #2a5a8f;
    --od-soft: #fafafa;
    --od-soft-border: #f1f5f9;
    --od-muted: #64748b;
    --od-text: #1e293b;
    --od-card: #ffffff;
    --od-border: #e2e8f0;
}

.od-card {
    background: var(--od-card);
    border: 1px solid var(--od-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.od-card--soft {
    background: var(--od-soft);
    border-color: var(--od-soft-border);
}

.od-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    background: #f8fafc;
    flex-shrink: 0;
}

.od-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--od-text);
    margin: 0;
    line-height: 1.3;
}

.od-sub {
    font-size: 0.8rem;
    color: var(--od-muted);
}

.od-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    background: #eff6ff;
    color: var(--od-primary);
    white-space: nowrap;
}

.od-pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--od-primary);
}

.od-section-label {
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.7rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.od-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.od-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--od-text);
}

.od-row .label {
    color: var(--od-muted);
    font-weight: 500;
}

.od-row .value {
    font-weight: 700;
}

.od-stepper {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.od-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    position: relative;
}

.od-step .circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.65rem;
    border: 2px solid #e2e8f0;
    color: #94a3b8;
    background: #fff;
    z-index: 2;
}

.od-step.active .circle,
.od-step.done .circle {
    border-color: var(--od-primary);
    color: var(--od-primary);
}

.od-step.done .circle {
    background: var(--od-primary);
    color: #fff;
}

.od-step .label {
    margin-top: 6px;
    font-size: 0.62rem;
    font-weight: 700;
    color: #94a3b8;
    text-align: center;
    line-height: 1.2;
    max-width: 64px;
}

.od-step .time {
    margin-top: 2px;
    font-size: 0.6rem;
    font-weight: 500;
    color: #94a3b8;
    white-space: nowrap;
}

.od-step.active .label,
.od-step.done .label {
    color: var(--od-primary);
}

.od-step-connector {
    height: 2px;
    background: #e2e8f0;
    flex: 1;
    min-width: 12px;
    margin-top: 10px;
}

.od-step-connector.done {
    background: var(--od-primary);
}

.spec-pill {
    font-size: 0.7rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 3px 8px;
    border-radius: 6px;
    color: #64748b;
    display: inline-block;
    margin: 2px 4px 2px 0;
    font-weight: 500;
}

.od-progress-track {
    height: 10px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
}

.od-progress-track .bar {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--od-primary), #60a5fa);
}

/* --- Order Detail Utilities --- */
.od-btn {
    font-size: 0.75rem !important;
    padding: 0.45rem 0.9rem !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}
.od-btn-primary {
    background-color: var(--od-primary) !important;
    color: #ffffff !important;
    border: 1px solid var(--od-primary) !important;
}
.od-btn-primary:hover {
    background-color: var(--od-primary-dark) !important;
    border-color: var(--od-primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(61, 116, 182, 0.25) !important;
}
.od-btn-outline {
    background-color: transparent !important;
    color: var(--od-primary) !important;
    border: 1.5px solid var(--od-primary) !important;
}
.od-btn-outline:hover {
    background-color: #f0f7ff !important;
    border-color: var(--od-primary-dark) !important;
    color: var(--od-primary-dark) !important;
    transform: translateY(-1px);
}
.od-form-label {
    font-size: 0.62rem !important;
    font-weight: 800 !important;
    color: #94a3b8 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.od-form-control {
    font-size: 0.8rem !important;
    padding: 0.4rem 0.75rem !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
}
.od-form-control:focus {
    border-color: var(--od-primary) !important;
    box-shadow: 0 0 0 3px rgba(61, 116, 182, 0.1) !important;
}


/* --- Extracted from profile/detail-pengembalian.blade.php --- */

:root {
    --od-primary: var(--primary-color, #3D74B6);
    --od-muted: #6b7280;
    --od-text: #111827;
    --od-border: #e5e7eb;
    --od-card: #ffffff;
    --od-soft: #faf6ef;
    --od-soft-border: #eee8dc;
}

.od-card {
    background: var(--od-card);
    border: 1px solid var(--od-border);
    border-radius: 14px;
    overflow: hidden;
}

.od-card--soft {
    background: var(--od-soft);
    border-color: var(--od-soft-border);
}

.od-thumb {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
    background: #f3f4f6;
    flex-shrink: 0;
}

.od-title {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--od-text);
    margin: 0;
    line-height: 1.35;
}

.od-sub {
    color: var(--od-muted);
    font-size: .9rem;
}

.od-section-label {
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: .75rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: .5rem;
}


/* --- Extracted from profile/partials/pesanan_page_styles.blade.php --- */

:root {
    --pesanan-primary: #3D74B6;
    --pesanan-primary-dark: #2a5a8f;
}

.pesanan-page-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.pesanan-page-sub {
    font-size: 0.875rem;
    color: #6b7280;
}

.pesanan-tab {
    display: inline-block;
    padding: 0.65rem 0.35rem;
    margin-right: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s ease;
}

.pesanan-tab:hover {
    color: var(--pesanan-primary);
}

.pesanan-tab.active {
    color: var(--pesanan-primary);
    font-weight: 600;
    border-bottom-color: var(--pesanan-primary);
}

.order-card-mock {
    background: #fff;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px;
}

.order-card-mock__head {
    background: #faf6ef;
    border-bottom: 1px solid #eee8dc;
}

.order-card-mock__thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    background: #f3f4f6;
}

.btn-detail-pesanan {
    background: #E3F2FD;
    color: var(--pesanan-primary);
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    padding: 0.45rem 1rem;
}

.btn-detail-pesanan:hover {
    background: #BBDEFB;
    color: var(--pesanan-primary-dark);
}

.btn-detail-pesanan.is-disabled,
.btn-detail-pesanan:disabled {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    pointer-events: none;
}

.status-pill-mock {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-pill-mock .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.order-progress-mini {
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
    overflow: hidden;
    max-width: 140px;
}

.order-progress-mini .bar {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #3D74B6, #60a5fa);
}


/* --- Extracted from auth/login.blade.php --- */

/* Sembunyikan icon mata bawaan browser Edge agar tidak double */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}


/* --- Extracted from auth/register.blade.php --- */

/* Sembunyikan icon mata bawaan browser Edge agar tidak double */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

/* --- Product Detail Tabs --- */
.custom-product-tabs {
    border-bottom: 2px solid #e2e8f0;
    gap: 30px;
    margin-bottom: 0;
}

.custom-product-tabs .nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    color: #94a3b8;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 0;
    background: transparent;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.custom-product-tabs .nav-link:hover {
    color: #475569;
    border-color: #cbd5e1;
}

.custom-product-tabs .nav-link.active {
    color: #1e293b;
    border-color: #1e293b;
    background: transparent;
}

/* ══════════════════════════════════════════════════════════════
   CART PAGE STYLES
   ══════════════════════════════════════════════════════════════ */

.cart-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8ecf3;
    overflow: hidden;
}

.cart-header {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #e8ecf3;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-col-product {
    flex: 1;
    min-width: 0;
}

.cart-col-price {
    width: 130px;
    text-align: center;
    flex-shrink: 0;
}

.cart-col-qty {
    width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.cart-col-subtotal {
    width: 140px;
    text-align: right;
    flex-shrink: 0;
}

.cart-col-action {
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

/* Cart Item Row */
.cart-item-row {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
}

.cart-item-row:last-child {
    border-bottom: none;
}

.cart-item-row:hover {
    background: #fafbfd;
}

/* Product Info */
.cart-product-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-product-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.cart-product-detail {
    min-width: 0;
}

.cart-product-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 3px;
}

.cart-product-meta {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

/* Price */
.cart-price-value {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Quantity Input */
.cart-qty-input {
    width: 54px;
    height: 34px;
    text-align: center;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease;
    -moz-appearance: textfield;
}

.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-qty-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(61, 116, 182, 0.15);
}

/* Subtotal */
.cart-subtotal-value {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: #1e293b;
}

.cart-weight-info {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
}

/* Delete Button */
.cart-delete-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    color: #ef4444;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-delete-btn:hover {
    background: #fef2f2;
    border-color: #ef4444;
    color: #dc2626;
}

/* Config Details (Custom) */
.cart-config-details {
    font-size: 12px;
    color: #64748b;
}

.cart-config-details summary {
    cursor: pointer;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 12px;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cart-config-details summary::-webkit-details-marker {
    display: none;
}

.cart-config-details[open] summary i {
    transform: rotate(90deg);
}

.cart-config-details summary i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.cart-config-body {
    margin-top: 8px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    font-size: 12px;
    line-height: 1.6;
}

.cart-config-label {
    font-weight: 600;
    color: #475569;
    margin-bottom: 2px;
}

.cart-config-list {
    margin: 0 0 4px 0;
    padding-left: 16px;
}

.cart-config-list li {
    margin-bottom: 1px;
}

/* Mobile Label */
.cart-mobile-label {
    display: none;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

/* ── Summary Card ── */
.cart-summary-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8ecf3;
    overflow: hidden;
    position: sticky;
    top: 90px;
}

.cart-summary-header {
    padding: 16px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e8ecf3;
}

.cart-summary-header h5 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

.cart-summary-body {
    padding: 20px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
    color: #475569;
}

.cart-summary-row span:last-child {
    font-weight: 600;
    color: #1e293b;
}

.cart-summary-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 14px 0;
}

.cart-summary-total {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cart-summary-total span:first-child {
    font-family: var(--font-heading);
    color: #1e293b;
}

.cart-summary-total span:last-child {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 10px;
}

.cart-checkout-btn:hover {
    background: #2c5e9e;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 116, 182, 0.3);
}

.cart-continue-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cart-continue-btn:hover {
    background: #f1f5f9;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ── Empty State ── */
.cart-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8ecf3;
}

.cart-empty-state i.bi-cart-x {
    font-size: 64px;
    color: #cbd5e1;
    display: block;
    margin-bottom: 16px;
}

.cart-empty-state h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.cart-empty-state p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.cart-shop-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cart-shop-btn:hover {
    background: #2c5e9e;
    color: #ffffff;
    transform: translateY(-1px);
}

/* ── Cart Mobile Responsive ── */
@media (max-width: 767.98px) {
    .cart-header {
        display: none !important;
    }

    .cart-item-row {
        flex-wrap: wrap;
        gap: 12px;
        padding: 16px;
    }

    .cart-col-product {
        width: 100%;
        flex: none;
    }

    .cart-col-price,
    .cart-col-qty,
    .cart-col-subtotal {
        width: auto;
        text-align: left;
        flex: 1;
    }

    .cart-col-action {
        width: auto;
        display: flex;
        align-items: flex-end;
    }

    .cart-mobile-label {
        display: block;
    }

    .cart-product-img {
        width: 64px;
        height: 64px;
    }
}

/* ══════════════════════════════════════════════════════════════
   PROFILE SECTION STYLES
   ══════════════════════════════════════════════════════════════ */

.profile-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8ecf3;
    overflow: hidden;
}

.profile-card-header {
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    background: #f8fafc;
}

.profile-card-header h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #1e293b;
}

.profile-card-header p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

.profile-card-body {
    padding: 24px;
}

.profile-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
}

.profile-control {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-family: var(--font-body);
    color: #1e293b;
    width: 100%;
    outline: none;
    transition: all 0.2s ease;
}

.profile-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(61, 116, 182, 0.1);
}

.profile-control:disabled {
    background: #f1f5f9;
    color: #64748b;
}

.profile-control.is-invalid {
    border-color: #ef4444;
}

.profile-btn-save {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.profile-btn-save:hover {
    background: #2c5e9e;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 116, 182, 0.2);
}

.profile-stat-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8ecf3;
    padding: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.2s ease;
}

.profile-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.profile-stat-value {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.profile-stat-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* Sidebar Specific */
.profile-sidebar-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8ecf3;
    overflow: hidden;
}

.profile-sidebar-user {
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.profile-sidebar-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid #f1f5f9;
}

.profile-sidebar-initial {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #eff6ff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 12px;
    border: 3px solid #f1f5f9;
}

.profile-sidebar-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.profile-sidebar-email {
    font-size: 12px;
    color: #64748b;
}

.profile-sidebar-nav {
    padding: 12px;
}

.profile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.profile-nav-item i {
    font-size: 16px;
    margin-right: 12px;
    color: #94a3b8;
    transition: color 0.2s;
}

.profile-nav-item:hover {
    background: #f8fafc;
    color: var(--primary-color);
}

.profile-nav-item:hover i {
    color: var(--primary-color);
}


.profile-nav-item.active {
    background: #eff6ff;
    color: var(--primary-color);
}

.profile-nav-item.active i {
    color: var(--primary-color);
}

.profile-nav-badge {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-nav-badge.bg-warning {
    background: #f59e0b !important;
}

.profile-nav-badge.bg-danger {
    background: #ef4444 !important;
}

/* ══════════════════════════════════════════════════════════════
   ORDER TRACKING TIMELINE STYLES
   ══════════════════════════════════════════════════════════════ */
.tracking-timeline {
    position: relative;
    padding-left: 24px;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 0;
    left: 6px;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    padding-bottom: 24px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    display: none;
}

.timeline-dot {
    position: absolute;
    left: -24px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #cbd5e1;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 1px #cbd5e1;
    z-index: 1;
}

.timeline-item.active .timeline-dot {
    background: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(61, 116, 182, 0.2);
}

.timeline-date {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.timeline-title {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
    font-family: var(--font-heading);
}

.timeline-desc {
    font-size: 12px;
    color: #475569;
    font-family: var(--font-body);
}

.timeline-desc i {
    font-size: 10px;
    margin-right: 4px;
}
/* Notification Custom Styles */
.bg-light-blue {
    background-color: #f0f7ff !important;
}

.notification-item:hover {
    background-color: #f8fafc !important;
}

/* Pagination Overrides for Bootstrap 5 */
.pagination {
    margin-bottom: 0;
    gap: 5px;
}

.pagination .page-item .page-link {
    border-radius: 8px !important;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.2s ease;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(61, 116, 182, 0.2);
}

.pagination .page-item .page-link:hover {
    background-color: #f1f5f9;
    color: var(--primary-color);
}
