:root {
    --primary-brand: #bc9c65;
    --primary-dark: #111111;
    --surface-light: #ffffff;
    --body-bg: #faf9f6;
    --text-muted: #71717a;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: var(--body-bg);
    color: var(--primary-dark);
    overflow-x: hidden;
}

/* Modern Glassmorphic Sticky Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

/* Responsive Navbar Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

/* Footer Brand Logo */
.footer-brand img {
    height: 75px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(1.05);
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: #3f3f46 !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-brand) !important;
}

/* Header Utility Actions */
.cart-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.45rem;
    width: 40px;
    height: 40px;
    transition: transform 0.2s;
    text-decoration: none;
}

.cart-icon-wrapper:hover {
    color: var(--primary-brand);
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 0px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Slider */
.carousel-item {
    height: 75vh;
    min-height: 500px;
    background-size: cover;
    background-position: top center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.65) 30%,
            rgba(0, 0, 0, 0.15));
}

.carousel-caption {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 650px;
}

.carousel-caption h1 {
    font-size: 3.75rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

/* Category Shortcuts */
.category-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background-color: #f4f4f5;
}

.category-item:hover .category-avatar {
    border-color: var(--primary-brand);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(188, 156, 101, 0.15);
}

.category-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    margin-top: 10px;
    display: block;
}

/* Buttons */
.btn-brand {
    background-color: var(--primary-brand);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    border: 1px solid var(--primary-brand);
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background-color: transparent;
    color: var(--primary-brand);
}

/* Footer */
footer {
    background: #1b1b6f;
    color: #cbd5e1;
    font-size: 0.9rem;
}

footer h5 {
    color: var(--surface-light);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--primary-brand);
}

/* Tablet */
@media (max-width: 991.98px) {
    .carousel-item {
        height: 60vh;
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .navbar-collapse {
        background: white;
        margin-top: 10px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .navbar-brand img {
        height: 65px;
    }

    .footer-brand img {
        height: 65px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .carousel-item {
        height: 55vh;
        min-height: 400px;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .category-avatar {
        width: 75px;
        height: 75px;
    }

    .navbar-brand img {
        height: 52px;
    }

    .footer-brand img {
        height: 55px;
    }

    .navbar {
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

/* Benifit Stats CSS */
.exclusive-benefits {
    background: #faf8f5;
    border-top: 1px solid #ece6df;
    border-bottom: 1px solid #ece6df;
}

.exclusive-benefits .benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px;
    border-radius: 10px;
    transition: .3s;
}

.exclusive-benefits .benefit-item:hover {
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transform: translateY(-4px);
}

.exclusive-benefits .benefit-icon {
    width: 55px;
    height: 55px;
    border: 1px solid #d9c49a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8974f;
    font-size: 26px;
    flex-shrink: 0;
}

.exclusive-benefits .benefit-content {
    text-align: left;
}

.exclusive-benefits .benefit-content h6 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #222;
    text-transform: uppercase;
}

.exclusive-benefits .benefit-content p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

@media (max-width: 767px) {

    .exclusive-benefits .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .exclusive-benefits .benefit-content {
        text-align: center;
    }

}

/* Luxury Hero Headers styling */
.about .about-hero {
    padding: 5rem 0 3.5rem 0;
    text-align: center;
}

.about .section-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-brand);
    display: block;
    margin-bottom: 0.75rem;
}

/* Card Elements layout */
.about .about-card {
    background: var(--surface-light);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 3rem;
}

.about .editorial-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.02);
    background-color: #e4e4e7;
}

/* Value Pillars Block matrix */
.about-pillar .pillar-box {
    padding: 2rem;
    background: var(--surface-light);
    border-left: 3px solid var(--primary-brand);
    height: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.01);
    border-right: 1px solid rgba(0, 0, 0, 0.01);
    border-bottom: 1px solid rgba(0, 0, 0, 0.01);
}

.about-pillar .pillar-icon {
    font-size: 1.5rem;
    color: var(--primary-brand);
    margin-bottom: 1rem;
    display: inline-block;
}

@media (max-width: 991.98px) {
    .about .about-card {
        padding: 2rem 1.5rem;
    }

    .about .editorial-img {
        height: 320px;
    }
}

/* Hero Intro */
.contact-hero {
    padding: 5rem 0 3.5rem 0;
    text-align: center;
}

.contact-hero .contact .section-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-brand);
    display: block;
    margin-bottom: 0.75rem;
}

/* Main Structural Panels */
.contact .contact-card {
    background: rgba(0, 0, 0, .08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 2.5rem;
    height: 100%;
}

.contact .contact-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

/* Premium Forms Form Factor */
.contact .form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #27272a;
}

/* Info Channels Layout Blocks */
.contact .info-channel-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact .channel-icon-wrap {
    font-size: 1.25rem;
    color: var(--primary-brand);
    margin-top: 2px;
}

/* Action Keys */
.contact .btn-luxury-action {
    background-color: var(--primary-dark);
    color: white;
    font-weight: 700;
    padding: 1.1rem;
    border-radius: 0;
    border: 1px solid var(--primary-dark);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.contact .btn-luxury-action:hover {
    background-color: var(--primary-brand);
    border-color: var(--primary-brand);
    color: white;
}

@media (max-width: 991.98px) {
    .contact .contact-card {
        padding: 1.75rem;
    }
}

/* Breadcrumb Aesthetic */
.custom-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
}

.custom-breadcrumb a:hover {
    color: var(--primary-brand);
}

.custom-breadcrumb .active-item {
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Premium Gallery Showcase */
.product-detail .main-product-img {
    background-color: #f4f4f5;
    width: 100%;
    height: 600px;
    object-fit: cover;
    border: none;
}

.product-detail .thumb-img {
    background-color: #f4f4f5;
    width: 100%;
    height: 110px;
    object-fit: cover;
    cursor: pointer;
    transition:
        opacity 0.2s,
        border-color 0.2s;
    border: 2px solid transparent;
}

.product-detail .thumb-img:hover,
.product-detail .thumb-img.active {
    border-color: var(--primary-brand);
    opacity: 0.9;
}

/* Dynamic Detail Content Meta */
.product-detail .product-title {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.product-detail .product-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.product-detail .product-sku {
    font-size: 0.8rem;
    text-uppercase: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Premium Variant Buttons Customization */
.size-radio-group input[type="radio"] {
    display: none;
}

.size-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    border: 1px solid #e4e4e7;
    background: #fff;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 8px;
    margin-bottom: 8px;
}

.size-radio-group input[type="radio"]:checked+.size-label {
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    color: #fff;
}

.size-label:hover {
    border-color: var(--primary-dark);
}

/* Quantity Custom Control counter */
.product-detail .quantity-wrapper {
    display: inline-flex;
    border: 1px solid #e4e4e7;
    background: #fff;
    height: 54px;
}

.product-detail .quantity-btn {
    background: none;
    border: none;
    width: 45px;
    height: 100%;
    color: var(--primary-dark);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.product-detail .quantity-btn:hover {
    background: #f4f4f5;
}

.product-detail .quantity-input {
    width: 50px;
    height: 100%;
    border: none;
    text-align: center;
    font-weight: 600;
    color: var(--primary-dark);
}

.product-detail .quantity-input:focus {
    outline: none;
}

/* Action Buttons */
.product-detail .btn-brand-luxury {
    background-color: var(--primary-brand);
    color: white;
    font-weight: 700;
    height: 54px;
    border-radius: 0;
    border: 1px solid var(--primary-brand);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.product-detail .btn-brand-luxury:hover {
    background-color: transparent;
    color: var(--primary-brand);
}

.product-detail .btn-wishlist-luxury {
    border: 1px solid #e4e4e7;
    background: white;
    color: var(--primary-dark);
    height: 54px;
    width: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.2s;
}

.product-detail .btn-wishlist-luxury:hover {
    border-color: #dc3545;
    color: #dc3545;
}

/* Product Specification Tabs Accents */
.product-features .custom-nav-tabs {
    border-bottom: 1px solid #e4e4e7;
}

.product-features .custom-nav-tabs .nav-link {
    border: none !important;
    color: var(--text-muted) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1rem 1.5rem !important;
    position: relative;
}

.product-features .custom-nav-tabs .nav-link.active {
    color: var(--primary-dark) !important;
    background: none !important;
}

.product-features .custom-nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-brand);
}

/* Related Grid Cards Aesthetic Alignment */
.related-product .product-card {
    background: var(--surface-light);
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.related-product .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.related-product .img-container {
    position: relative;
    background: #f4f4f5;
    overflow: hidden;
}

.related-product .product-card img {
    height: 340px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.6s ease;
}

.related-product .product-card:hover img {
    transform: scale(1.03);
}

.related-product .btn-cart-action {
    border: 1px solid var(--primary-dark);
    font-weight: 600;
    border-radius: 0;
    padding: 0.65rem;
    color: var(--primary-dark);
    background: transparent;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.related-product .btn-cart-action:hover {
    background: var(--primary-dark);
    color: white;
}

/* Responsive Breakpoints Optimization */
@media (max-width: 991.98px) {
    .product-detail .main-product-img {
        height: 480px;
    }
}

@media (max-width: 576px) {
    .product-detail .product-title {
        font-size: 1.75rem;
    }

    .product-detail .main-product-img {
        height: 380px;
    }

    .product-detail .thumb-img {
        height: 80px;
    }
}

/* Header Utility Actions */
.cart .cart-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.45rem;
    width: 40px;
    height: 40px;
    transition: transform 0.2s;
    text-decoration: none;
}

.cart .cart-icon-wrapper:hover {
    color: var(--primary-brand);
    transform: scale(1.05);
}

.cart .cart-badge {
    position: absolute;
    top: 2px;
    right: 0px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Checkout Progress Steps Bar */
.cart .step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cart .step-node {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.cart .step-node.active-step {
    color: var(--primary-dark);
    border-bottom: 2px solid var(--primary-brand);
    padding-bottom: 2px;
}

/* Premium Cart Table & Items */
.cart .cart-header-row {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.cart .cart-item-card {
    background: var(--surface-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
    transition: background-color 0.2s ease;
}

.cart .cart-item-img {
    width: 90px;
    height: 120px;
    object-fit: cover;
    background-color: #f4f4f5;
}

.cart .item-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: var(--primary-dark);
    text-decoration: none;
}

.cart .item-title:hover {
    color: var(--primary-brand);
}

.cart .item-meta-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

/* Quantity Custom Control Counter styling */
.cart .quantity-wrapper {
    display: inline-flex;
    border: 1px solid var(--border-color);
    background: #fff;
    height: 40px;
}

.cart .quantity-btn {
    background: none;
    border: none;
    width: 35px;
    height: 100%;
    color: var(--primary-dark);
    font-size: 0.9rem;
    cursor: pointer;
}

.cart .quantity-btn:hover {
    background: #f4f4f5;
}

.cart .quantity-input {
    width: 35px;
    height: 100%;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.cart .quantity-input:focus {
    outline: none;
}

/* Action elements styling */
.cart .action-icon-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.15rem;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
    padding: 0;
}

.cart .action-icon-btn:hover {
    color: #dc3545;
    transform: scale(1.05);
}

/* Luxury Summary Sidebar Panel */
.cart .summary-card {
    background-color: var(--surface-light);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 2rem;
}

.cart .summary-title {
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

/* Voucher Promo Input Code Accent */
.cart .coupon-input {
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
}

.cart .coupon-input:focus {
    border-color: var(--primary-dark);
    box-shadow: none;
}

.cart .btn-coupon-apply {
    border: 1px solid var(--primary-dark);
    background: var(--primary-dark);
    color: white;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 0 1.25rem;
    transition: all 0.2s;
}

.cart .btn-coupon-apply:hover {
    background: transparent;
    color: var(--primary-dark);
}

/* Check out master key action button */
.cart .btn-checkout-luxury {
    background-color: var(--primary-brand);
    color: white;
    font-weight: 700;
    padding: 1rem;
    border-radius: 0;
    border: 1px solid var(--primary-brand);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cart .btn-checkout-luxury:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

@media (max-width: 767.98px) {
    .cart .cart-header-row {
        display: none !important;
        /* Hide column headers grid on tablet/mobile views */
    }

    .cart .cart-item-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
        border: 1px solid rgba(0, 0, 0, 0.05);
        background: white;
    }

    .cart .mobile-row-gap {
        margin-top: 1rem;
    }
}

/* Checkout Progress Steps Bar */
.checkout .step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.checkout .step-node {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.checkout .step-node.active-step {
    color: var(--primary-dark);
    border-bottom: 2px solid var(--primary-brand);
    padding-bottom: 2px;
}

/* Premium Form Controls */
.checkout .checkout-card {
    background: var(--surface-light);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 2.5rem;
}

.checkout .checkout-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.checkout .form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #27272a;
}

/* Luxury Custom Payment Options Selector */
.checkout .payment-radio-group input[type="radio"] {
    display: none;
}

.checkout .payment-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
}

.checkout .payment-radio-group input[type="radio"]:checked+.payment-box {
    border-color: var(--primary-dark);
    background: rgba(188, 156, 101, 0.03);
}

.checkout .payment-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Mini Order Summary Sidebar */
.checkout .mini-summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.checkout .mini-item-img {
    width: 55px;
    height: 70px;
    object-fit: cover;
    background-color: #f4f4f5;
}

/* Order Submission Master Key Button */
.checkout .btn-order-luxury {
    background-color: var(--primary-dark);
    color: white;
    font-weight: 700;
    padding: 1.1rem;
    border-radius: 0;
    border: 1px solid var(--primary-dark);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.checkout .btn-order-luxury:hover {
    background-color: var(--primary-brand);
    border-color: var(--primary-brand);
    color: white;
}

/* Responsive Optimization rules */
@media (max-width: 991.98px) {
    .checkout .checkout-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .checkout .mobile-order-first {
        order: -1;
        /* Display order summary first on smaller screen architectures */
        margin-bottom: 1.5rem;
    }
}

/* Checkout Progress Steps Bar */
.order-success .step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.order-success .step-node {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.order-success .step-node.active-step {
    color: var(--primary-dark);
    border-bottom: 2px solid var(--primary-brand);
    padding-bottom: 2px;
}

/* success Card Aesthetic */
.order-success .success-card {
    background: var(--surface-light);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 3rem;
}

.order-success .success-icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(188, 156, 101, 0.1);
    color: var(--primary-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.order-success .order-number {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-brand);
    background: rgba(188, 156, 101, 0.05);
    padding: 0.5rem 1rem;
    display: inline-block;
}

/* Receipt Breakdown Layout */
.order-success .receipt-section-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.order-success .receipt-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.order-success .mini-summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.order-success .mini-item-img {
    width: 45px;
    height: 58px;
    object-fit: cover;
    background-color: #f4f4f5;
}

/* Action Buttons */
.order-success .btn-luxury-dark {
    background-color: var(--primary-dark);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0;
    border: 1px solid var(--primary-dark);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.order-success .btn-luxury-dark:hover {
    background-color: var(--primary-brand);
    border-color: var(--primary-brand);
    color: white;
}

.order-success .btn-luxury-outline {
    background-color: transparent;
    color: var(--primary-dark);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0;
    border: 1px solid var(--primary-dark);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.order-success .btn-luxury-outline:hover {
    background-color: var(--primary-dark);
    color: white;
}

@media (max-width: 767.98px) {
    .order-success .success-card {
        padding: 1.5rem;
    }
}

/* Shop Controls Header Panel */
.shop .shop-header-card {
    background: var(--surface-light);
    border: 1px solid rgba(0, 0, 0, 0.02);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.shop .view-toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s ease;
}

.shop .view-toggle-btn.active,
.view-toggle-btn:hover {
    color: var(--primary-dark);
}

/* Premium Filter Accordion & Elements */
.shop .filter-card {
    background: var(--surface-light);
    border: 1px solid rgba(0, 0, 0, 0.02);
    padding: 2rem;
}

.shop .filter-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.shop .filter-list-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #3f3f46;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    transition: color 0.2s ease;
}

.shop .filter-list-link:hover,
.filter-list-link.active {
    color: var(--primary-brand);
}

.shop .form-check-input {
    border-radius: 0 !important;
    border-color: var(--border-color);
}

.shop .form-check-input:checked {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Color Pill Options Selection Architecture */
.shop .color-pill-box {
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.shop .color-pill-box:hover {
    transform: scale(1.15);
}

/* Product Premium Display Unit Cards */
.shop .product-item-card {
    background: var(--surface-light);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    transition: all 0.4s ease;
}

.shop .product-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.shop .product-img-frame {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background-color: #f4f4f5;
}

.shop .product-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.shop .product-item-card:hover .product-img-frame img {
    transform: scale(1.06);
}

/* Badge Matrix Positioning */
.shop .premium-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-dark);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.75rem;
    z-index: 2;
}

.shop .wishlist-icon-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--surface-light);
    color: var(--primary-dark);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    z-index: 2;
}

.shop .wishlist-icon-btn:hover {
    background: var(--primary-brand);
    color: white;
}

/* Action Overlay Cart buttons panel */
.shop .quick-add-tray {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 3;
}

.shop .product-item-card:hover .quick-add-tray {
    transform: translateY(0);
}

.shop .btn-quick-bag {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(8px);
    color: #fff;
    border: none;
    width: 100%;
    padding: 0.9rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s;
}

.shop .btn-quick-bag:hover {
    background: var(--primary-brand);
}

/* Product Summary details info */
.shop .product-meta-block {
    padding: 1.5rem;
}

.shop .product-cat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.shop .product-title-anchor {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.shop .product-title-anchor:hover {
    color: var(--primary-brand);
}

.shop .price-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Elegant Luxury Premium Pagination */
.shop .luxury-pagination .page-link {
    border: 1px solid var(--border-color);
    background: var(--surface-light);
    color: var(--primary-dark);
    padding: 0.65rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 0 !important;
    margin: 0 2px;
    transition: all 0.2s ease;
}

.shop .luxury-pagination .page-item.active .page-link,
.luxury-pagination .page-link:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: white !important;
}

@media (max-width: 991.98px) {
    .shop .product-img-frame {
        height: 300px;
    }

    .shop .shop-header-card {
        padding: 1rem;
    }
}
