/* :root {
  --primary-color: #000A1E;
  --gold-color: #CA9127;

  --text-light: #FFFFFF;
  --text-muted: #434343;
  --text-dark: #1F2430;
  --border-color: #E2E8F0;

  --card-border: #E8ECEF;
    --text-label: #4A5161;


     --border-soft: #E2E8F0;

} */

:root {
  /* Brand Blue Gradient */
  --brand-blue-start: #004DAC;
  --brand-blue-end: #0A79D7;
  --brand-blue-light: #0A79D7;
  --brand-blue-deep: #004DAC;

  /* Brand Gold Gradient */
  --brand-gold-start: #FCE390;
  --brand-gold-end: #CC932B;

  --primary-color: linear-gradient(135deg, #004DAC 0%, #0A79D7 100%);
  --gold-gradient: linear-gradient(135deg, #FCE390 0%, #CC932B 100%);
  --gold-color: #CC932B;
  --gold-solid: #CC932B;

  /* Typography / Text Colors */
  --text-light: #FFFFFF;
  --text-muted: #434343;
  --text-dark: #1F2430;
  --text-label: #4A5161;

  /* Layout Borders & Dividers */
  --border-color: #E2E8F0;
  --border-soft: #E2E8F0;
  --card-border: #E8ECEF;

  --pr-gold: #CC932B;
  --pr-gold-light: #FFF9E6;
  --pr-dark: #081B3B;
    --pr-border-color: #E2E8F0;
    --pr-gray-light: #E2E8F0;




    --pr-gold-base: #CA9127;


    --pr-bg-light: #E2E8F0;
    --pr-border-line: #E2E8F0;

}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Shared storefront content width — centered, consistent across header/content/footer */
.site-container,
.container-fluid.site-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .site-container,
    .container-fluid.site-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .site-container,
    .container-fluid.site-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Top Bar Styling */
.top-bar {
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 13px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-right a {
    color: var(--text-light);
    text-decoration: none;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item .icon {
    color: var(--gold-color);
}

.delivery-selector {
    cursor: pointer;
}

.arrow {
    font-size: 9px;
    margin-left: 4px;
    opacity: 0.7;
}

/* Sticky site header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #ffffff;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

/* Main Header Styling */
.main-header {
    background-color: #FFFFFF;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.main-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    min-width: 0;
}

.logo {
    flex-shrink: 0;
}

.header-brand-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    min-width: 0;
}

.header-delivery-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark, #212529);
    white-space: nowrap;
    cursor: pointer;
}

.header-delivery-selector .icon img {
    display: block;
    width: 16px;
    height: 16px;
}

.header-delivery-selector strong {
    font-weight: 600;
    color: var(--primary-color, #004DAC);
}

.logo a {
    display: flex;
    align-items: center;
}

.main-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.brand-text-img {
    height: 22px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 575.98px) {
    .main-logo-img {
        height: 38px;
    }

    .brand-text-img {
        height: 18px;
    }
}

.logo-text {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

.logo-text .gold-text {
    color: var(--gold-color);
}

.search-container {
    display: flex;
    flex: 1;
    max-width: 550px;
    position: relative;
    min-width: 0;
}

.search-input {
    width: 100%;
    padding: 10px 16px;
    padding-right: 60px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    background-color: #F8FAFC;
}

.search-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background: var(--primary-color);
    border: none;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.search-btn:hover {
    filter: brightness(1.05);
}

.search-input:focus {
    border-color: var(--primary-color);
    background-color: #fff;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 1050;
    max-height: min(70vh, 420px);
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(8, 27, 59, 0.12);
}

.search-suggestions[hidden] {
    display: none !important;
}

.search-suggestions-section + .search-suggestions-section {
    border-top: 1px solid var(--border-soft);
}

.search-suggestions-heading {
    margin: 0;
    padding: 10px 14px 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-label);
}

.search-suggestions-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--text-dark);
    transition: background-color 0.15s ease;
}

.search-suggestions-item:hover,
.search-suggestions-item.is-active {
    background-color: #F1F7FD;
    color: var(--brand-blue-deep);
}

.search-suggestions-thumb {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #F8FAFC;
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-suggestions-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-suggestions-thumb.is-placeholder {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-blue-deep);
    background: linear-gradient(135deg, rgba(0, 77, 172, 0.08), rgba(10, 121, 215, 0.12));
}

.search-suggestions-body {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.search-suggestions-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-suggestions-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.search-suggestions-price {
    font-weight: 600;
    color: var(--text-dark);
}

.search-suggestions-mrp {
    text-decoration: line-through;
    color: #94A3B8;
}

.search-suggestions-discount {
    color: #15803D;
    font-weight: 600;
}

.search-suggestions-empty,
.search-suggestions-footer {
    padding: 12px 14px;
    font-size: 13px;
    color: var(--text-muted);
}

.search-suggestions-footer {
    border-top: 1px solid var(--border-soft);
}

.search-suggestions-footer a {
    color: var(--brand-blue-deep);
    font-weight: 600;
    text-decoration: none;
}

.search-suggestions-footer a:hover {
    text-decoration: underline;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
}

.icon-badge-wrapper {
    position: relative;
    display: inline-block;
}

.badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* .user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding-left: 8px;
}

.profile-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

.user-sub {
  font-size: 12px;
  color: var(--text-muted);
} */



/* User Profile Navigation Wrapper Alignment */
.user-profile {
    position: relative;
    display: inline-block;
    z-index: 1050;
}

.dropdown-toggle-custom {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.dropdown-toggle-custom:hover {
    background-color: rgba(0, 10, 30, 0.04);
}

/* Profile Image Constraints */
.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--border-color, #E2E8F0);
}

/* User Text Sizing & Line Heights */
.user-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark, #1F2430);
    line-height: 1.2;
}

.user-sub {
    font-size: 11px;
    color: var(--text-label, #4A5161);
    line-height: 1.2;
}

/* Smooth Rotating Arrow Settings */
.user-profile .arrow {
    color: var(--text-label, #4A5161);
    display: flex;
    align-items: center;
    transition: transform 0.25s ease;
}

.user-profile.show .arrow {
    transform: rotate(180deg);
}

/* Custom Profile Dropdown Menu Panel */
.profile-dropdown-menu {
    border: 1px solid var(--border-color, #E2E8F0);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 200px;
    margin-top: 8px !important;
    z-index: 1060 !important;
    animation: slideDownFade 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dropdown Menu List Items */
.profile-dropdown-menu .dropdown-item {
    padding: 10px 16px;
    font-size: 13.5px;
    color: var(--text-dark, #1F2430);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.profile-dropdown-menu .dropdown-item:hover {
    background-color: rgba(202, 145, 39, 0.08);
    /* Transparent Gold Glow */
    color: var(--gold-color, #CA9127);
}

/* Icon Sizing inside Dropdown */
.dropdown-icon {
    font-size: 15px;
    display: inline-block;
    width: 18px;
    text-align: center;
}

/* Specific Style Overrides for Logout Action */
.profile-dropdown-menu .logout-item {
    font-weight: 500;
}

.profile-dropdown-menu .logout-item:hover {
    background-color: #FFF5F5;
    /* Soft warning red glow on logout hover */
    color: #DC3545 !important;
}

/* Entry Animation */
@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nav Bar Customizations */
.btn-category {
    background: var(--primary-color);
    color: #ffffff;
    font-weight: 500;
    border-radius: 8px 8px 0 0;
    border: none;
}

.btn-category:hover,
.btn-category:focus {
    background-color: #00133a;
    color: #ffffff;
}

.nav-link-item {
    color: #1f2430;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link-item:hover {
    color: var(--gold-color);
}

.btn-hot-deals {
    background: var(--primary-color);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-hot-deals:hover {
    /* background: var(--gold-color); */
    color: #fff;
    background: var(--gold-gradient);
    color: #ffff;

}






























/* Hero Banner Wrapper & Optimized Ambient Background Gradient */
.hero-carousel-wrapper {
    background: radial-gradient(circle at 75% 50%, #0c2040 0%, var(--primary-color) 65%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;

}

.hero-slide-content {
    /* min-height: 480px; */
    /* padding: 20px 0; */

}

/* Layer safety for text rendering over radial glow elements */
.z-index-2 {
    position: relative;
    z-index: 2;
}

/* Typography styles */
.limited-release-tag {
    color: var(--gold-color);
    font-size: 13px;
    letter-spacing: 1.5px;
}

.hero-title {
    color: #FFFFFF;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.25rem;
    font-weight: 400;
    line-height: 1.2;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

.hero-description {
    color: #A0A5B5;
    font-size: 15px;
    font-weight: 300;
    max-width: 440px;
    line-height: 1.6;
}

/* Explore Button Custom Styling */
.btn-explore {
    background: var(--primary-color);
    color: #FFFFFF;
    /* border: 1px solid var(--border-color); */
    border-radius: 6px;
    border: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding-top: 0.6800rem !important;
    padding-bottom: 0.6800rem !important;
}

.btn-explore:hover {
    background: var(--gold-gradient);
    color: #ffff;
    /* border-color: #FFFFFF; */
}

/* Precise Image containment settings */
.hero-banner-img {
    max-height: 460px;
    width: 100%;
    object-fit: contain;
    display: block;
}

/* Custom Navigation Arrow Overrides */
.custom-nav-btn {
    width: 60px;
    opacity: 1;
}

.nav-arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.custom-nav-btn:hover .nav-arrow-icon {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    transform: scale(1.05);
}

/* Custom Bottom Slider Indicators */
.custom-indicators {
    bottom: 24px;
    margin-bottom: 0;
    z-index: 3;
}

.custom-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4b5263;
    border: none;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.2s ease;
}

.custom-indicators .active {
    background-color: var(--gold-color);
    width: 20px;
    border-radius: 4px;
}


.dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 20px;
    /* image width */
    height: 20px;
    /* image height */
    margin-left: 8px;
    vertical-align: middle;

    border: none;

    background: url("../images/icons/headertopicon6.png") no-repeat center;
    background-size: contain;
}




/* Base Panel Box Setup */
.showcase-card {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 24px;
}

/* Header row within panels */
.card-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.card-title-custom {
    color: var(--primary-deep);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 500;
    margin: 0;
}

.view-all-link {
    color: var(--primary-deep);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.view-all-link:hover {
    opacity: 0.7;
}

/* Horizontal alignment & overflow configurations */
.grid-scroll-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    /* Hide standard Firefox scroll bars */
}

.grid-scroll-container::-webkit-scrollbar {
    display: none;
    /* Hide Webkit engine scroll bars */
}

/* Individual Grid Nav Items */
.grid-item-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    text-align: center;
    min-width: 68px;
    flex-shrink: 0;
}

.circle-avatar {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 1px solid #E4E8EC;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.manageheightwidth {
    width: 50% !important;
    height: 50% !important;
}

.grid-item-link:hover .circle-avatar {
    /* transform: translateY(-3px); */
    border-color: var(--gold-color);
}

.circle-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Unique variation elements */
.alternative-bg {
    background: #FAFAF9;
    border: 1px solid #E4E8EC;
}

.custom-grid-icon {
    color: var(--gold-accent);
    width: 20px;
    height: 20px;
}

.item-label {
    color: var(--text-label);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.gold-label {
    color: var(--gold-color);
}

/* Categories View All page */
.categories-page-section {
    background: #F7F8FA;
}

.categories-all-card {
    padding: 20px;
}

.categories-page-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 600;
}

.categories-all-item {
    min-width: 0;
    width: 100%;
    padding: 8px 4px;
    border-radius: 12px;
    transition: background-color 0.2s ease;
}

.categories-all-item:hover {
    background: #FAFAF9;
}

.categories-all-avatar {
    width: 78px;
    height: 78px;
    margin-bottom: 10px;
}

.categories-all-label {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    max-width: 100%;
    word-break: break-word;
}

@media (max-width: 575.98px) {
    .categories-all-card {
        padding: 16px 12px;
    }

    .categories-all-avatar {
        width: 64px;
        height: 64px;
    }

    .categories-all-label {
        font-size: 11px;
    }
}

/* Brand Font-Weightings/Styling definitions */
.brand-avatar {
    background: #FFFFFF;
}

.brand-logo-txt {
    font-family: sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.5px;
}

.dark-logo {
    color: #000000;
    font-size: 26px;
}

.dell-blue {
    color: #0076CE;
    font-size: 12px;
    font-style: italic;
}

.asus-black {
    color: #000000;
    font-size: 11px;
    letter-spacing: 0px;
}

.acer-green {
    color: #83B81A;
    font-size: 13px;
    font-weight: 800;
}

.hp-blue {
    color: #0096D6;
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
}





/* Section Header Styles */
.arrivals-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.65rem;
    color: var(--primary-deep);
    font-weight: 600;
}

.view-all-link {
    color: var(--primary-deep);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.view-all-link:hover {
    opacity: 0.7;
}

.home-products-section {
    overflow: hidden;
}

.home-products-grid > .col {
    display: flex;
}

.home-products-grid .product-premium-card {
    width: 100%;
}

/* Trending: horizontal strip with automatic scroll */
.trending-products-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scrollbar-color: #c5c5c5 transparent;
    scroll-behavior: auto;
}

.trending-products-track::-webkit-scrollbar {
    height: 4px;
}

.trending-products-track::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 4px;
}

.trending-products-track.is-auto-scroll {
    cursor: grab;
}

.trending-products-track.is-auto-scroll:active {
    cursor: grabbing;
}

.trending-products-track > .col,
.trending-products-track > .trending-product-item {
    display: flex;
    flex: 0 0 clamp(180px, 20vw, 240px);
    width: clamp(180px, 20vw, 240px);
    max-width: 240px;
    min-width: 180px;
    padding: 0;
    box-sizing: border-box;
}

.trending-products-track .product-premium-card {
    width: 100%;
    min-width: 0;
}

.trending-products-track .product-img-wrapper {
    max-width: 100%;
}

@media (max-width: 575.98px) {
    .arrivals-section-title {
        font-size: 1.35rem;
    }

    .home-products-grid .product-item-title {
        font-size: 14px;
    }

    .home-products-grid .btn-add-bag {
        font-size: 12px;
        padding: 6px 8px;
    }

    .home-products-grid .current-price {
        font-size: 14px;
    }

    .home-products-grid .original-price {
        font-size: 11px;
    }
}

/* Premium Card Structural Configurations */
.product-premium-card {
    background: #FFFFFF;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-premium-card .product-meta-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
    padding: 0 4px;
}

.product-premium-card .card-action-footer {
    margin-top: auto;
    padding: 0 4px 4px;
}

.product-premium-card:hover {
    transform: translateY(-4px);
    box-shadow:0 17px 20px rgb(0 10 30 / 14%);
}

/* Badging & Ribbon Overlay Components */
.product-ribbon-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.tag-discount {
    background-color: #D4AF37;
    color: var(--gold-accent);
}

.tag-exclusive {
    background-color: #D4AF37;
    color: var(--primary-deep);
}

/* Wishlist form wrapper (keeps heart button positioned like the static design) */
.wishlist-btn-toggle-form {
    position: absolute;
     top: 5px;
    right: 5px;
    /* top: 10px;
    right: 10px; */
    z-index: 3;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.wishlist-btn-toggle-form .wishlist-btn-toggle {
    position: static;
}

/* Interactive Wishlist Button Styling */
.wishlist-btn-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    line-height: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wishlist-btn-toggle svg {
    display: block;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.wishlist-btn-toggle:hover {
    background-color: #ffffff;
    color: #ff4d4f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
    transform: scale(1.05);
}

.wishlist-btn-toggle.is-active {
    color: #ff4d4f;
    background-color: #ffffff;
}

/* Media Asset Thumbnail Box */
.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 5px;
    background-color: #FAFAFA;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Info Details Row Alignment */
.rating-row-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
}

.star-accent {
    color: #FFC107;
    font-size: 13px;
}

.rating-score {
    color: var(--primary-deep);
    font-weight: 600;
}

.reviews-count {
    color: var(--text-muted);
}

.product-item-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-deep);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-item-title a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Pricing Section Markup */
.price-row-block {
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-price {
    color: var(--primary-deep);
    font-weight: 700;
    font-size: 15px;
}

.original-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 13px;
}

/* Action Footer Add-To-Bag Buttons */
.btn-add-bag {
    background: transparent;
    color: var(--brand-blue-light);
    border: 1px solid var(--brand-blue-light);
    font-size: 14px;
    font-weight: 600;
    padding: 5px 9px 5px 9px;
    border-radius: 8px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}

.btn-add-bag:hover {
    /* background-color: var(--gold-color);
    color: var(--primary-deep); */
    border: 1px solid var(--brand-blue-light);
    color: var(--brand-blue-light);
}

.btn-add-bag img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.btn-add-bag.is-in-bag {
    background: transparent;
    color: var(--brand-blue-light);
    border-color: var(--brand-blue-light);
}

.btn-add-bag.btn-add-bag-oos,
.btn-add-bag.btn-add-bag-oos:disabled {
    background: #F3F4F6;
    color: #6B7280;
    border-color: #D1D5DB;
    cursor: not-allowed;
    opacity: 1;
    pointer-events: none;
}

.bag-variant-label {
    color: var(--brand-blue-light);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bag-icon-svg {
    font-size: 14px;
    margin-right: 4px;
}




































/* Base Shared Structural Settings */
.promo-card {
    border-radius: 14px;
    border: none;
    background-color: #5B6E88;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 10, 30, 0.08);
}

.promo-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(15, 23, 42, 0.72) 0%,
        rgba(15, 23, 42, 0.45) 45%,
        rgba(15, 23, 42, 0.2) 100%
    );
}

.promo-card-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
    padding: 1.35rem 1.5rem;
    max-width: 100%;
    overflow: hidden;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

.max-w-md {
    max-width: 320px;
}

/* --- Left Side: Big Banner Custom Styling --- */
.main-promo-card {
    min-height: 320px;
}

.main-promo-card .promo-card-content {
    max-width: 420px;
}

.main-promo-card .promo-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.main-promo-card .promo-subtext {
    font-size: 1rem;
    line-height: 1.45;
    opacity: 0.95;
    max-width: 320px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* --- Right Side: Stacked Offers Mini Styling --- */
.mini-promo-card {
    min-height: 150px;
}

.mini-promo-card .promo-card-content {
    justify-content: center;
    padding: 1.15rem 1.25rem;
}

.mini-promo-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.mini-promo-subtext {
    font-size: 13px;
    opacity: 0.95;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* --- Navigation Link Text Interactive Transforms --- */
.shop-now-link,
.mini-shop-link {
    font-size: 1rem;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.transition-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.promo-card:hover .transition-arrow {
    transform: translateX(5px);
}

/* Responsive Scaling Breakpoint Adjustments */
@media (max-width: 991.98px) {
    .main-promo-card {
        min-height: 280px;
    }

    .promo-card-overlay {
        background: linear-gradient(
            180deg,
            rgba(15, 23, 42, 0.25) 0%,
            rgba(15, 23, 42, 0.7) 100%
        );
    }

    .main-promo-card .promo-card-content {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .main-promo-card {
        min-height: 260px;
    }

    .main-promo-card .promo-heading {
        font-size: 1.65rem;
        line-height: 1.2;
    }

    .main-promo-card .promo-subtext {
        font-size: 0.9rem;
        margin-bottom: 0.75rem !important;
    }

    .mini-promo-card {
        min-height: 140px;
    }

    .mini-promo-heading {
        font-size: 1.15rem;
    }

    .promo-card-content {
        padding: 1rem 1.15rem;
    }
}




/* Footer Layout Base Foundation */
.site-trust-banner {
    background: transparent;
    padding: 0 0 1.25rem;
}

.site-trust-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    background: linear-gradient(90deg, #0B3B7A 0%, #0A5BB8 55%, #0A79D7 100%);
    border-radius: 14px;
    overflow: hidden;
    color: #fff;
}

.site-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    min-width: 0;
}

.site-trust-item + .site-trust-item {
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.site-trust-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.site-trust-copy {
    min-width: 0;
}

.site-trust-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 4px;
}

.site-trust-sub {
    font-size: 0.82rem;
    line-height: 1.35;
    opacity: 0.92;
}

.site-footer {
    background-color: #FFFFFF;
    font-size: 14px;
}

/* Typography Headings Formatting */
.footer-heading {
    font-family: 'Playfair Display', Georgia, serif;
    color: #000A1E;
    font-weight: 600;
    font-size: 1.15rem;
}

.brand-desc {
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 310px;
}

/* Link Systems Reset and Interaction Styles */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #555E6B;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--gold-color, #CA9127);
    padding-left: 4px;
}

/* Contact List Configuration */
.contact-info-list li {
    font-size: 13.5px;
}

.contact-text {
    transition: color 0.2s ease;
}

a.contact-text:hover {
    color: var(--gold-color, #CA9127) !important;
}

/* App Store Action Item Layout Sizing */
.max-w-xs {
    max-width: 140px;
}

.app-badge-img {
    border-radius: 6px;
    transition: transform 0.2s ease;
    width: 100%;
}

.app-badge-img:hover {
    transform: scale(1.03);
}

/* --- Newsletter Subscription Box Section --- */
.newsletter-subscription-wrapper {
    border: 1px solid #EAF0F6;
    border-radius: 16px;
    background: linear-gradient(95deg, #FFF6E9 0%, #FFFDFB 32%, #FFFFFF 100%);
    overflow: hidden;
}

.newsletter-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #EAD4B3;
    background-color: #FFFFFF;
    color: #CA9127;
    flex-shrink: 0;
}

.newsletter-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #1F2430;
    font-weight: 600;
    font-size: 1.45rem;
}

.newsletter-subtext {
    font-size: 15px;
    max-width: 320px;
    line-height: 1.4;
}

/* Input Form Controls Construction */
.newsletter-form-fields {
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 0;
}

.newsletter-input {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    height: 46px;
    border: 1px solid #E2E8F0;
    border-radius: 8px 0 0 8px !important;
    font-size: 14px;
    color: #1F2430;
    background-color: #FFFFFF;
    padding: 0 16px;
}

.newsletter-input:focus {
    border-color: var(--brand-blue-light);
    box-shadow: none;
}

.btn-subscribe {
    flex: 0 0 auto;
    background: var(--primary-color);
    color: #FFFFFF;
    font-weight: 500;
    border: none;
    border-radius: 0 8px 8px 0 !important;
    padding: 0 24px;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.btn-subscribe:hover {
    background-color: #8C6A35;
    color: #FFFFFF;
}

.newsletter-terms {
    font-size: 15px;
}

.newsletter-terms a {
    color: var(--brand-blue-light);
    text-decoration: none;
}

.newsletter-terms a:hover {
    text-decoration: underline;
}

/* --- Bottom Copyright Bar Framework --- */
.footer-bottom-bar {
    background: var(--primary-color);
    /* Matches layout canvas background dark theme */
    color: #ffff;
    font-size: 13px;
}

.payment-logo {
    max-height: 24px;
    width: auto;
}

/* Responsive Custom Breakpoint Adjustments */
@media (max-width: 991.98px) {
    .newsletter-subscription-wrapper {
        background: #FFFFFF;
        border: 1px solid #E2E8F0;
    }

    .newsletter-subtext {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .newsletter-form-fields {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-input {
        border-radius: 8px !important;
        width: 100%;
        margin-bottom: 0;
    }

    .btn-subscribe {
        border-radius: 8px !important;
        width: 100%;
        height: 48px;
        padding: 0 16px;
    }
}








/* Custom Content Limits Configuration variables */
.max-w-xl {
    max-width: 500px;
}

.max-w-form {
    max-width: 420px;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

/* --- Left Side: Dark Luxury Theme Panel Styling --- */
.auth-showcase-wrapper {

    background: url('/assets/frontend/images/banner/loginpageimage.png') no-repeat ;
    background-size: cover;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    background-position: bottom;
}

.showcase-heading {
    font-family: 'Playfair Display', Georgia, serif;
    color: #FFFFFF;
    font-size: 1.95rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.showcase-heading .highlight-gold {
    color: var(--gold-color, #CA9127);
}

.showcase-subtext {
    color: #ffff;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
}

.showcase-img-container {
    width: 85%;
    height: 60%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.showcase-img-container img {
    max-height: 90%;
    object-fit: contain;
}

/* --- Right Side: Clean Form Layout Component Matrix --- */
.auth-logo-icon {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.auth-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #000A1E;
    font-weight: 600;
    font-size: 1.85rem;
}

.auth-card-subtitle {
    font-size: 15.5px;
}

/* Segment Tab Bar Switches Styling */
.auth-nav-tabs {
    border-color: #E2E8F0 !important;
}

.auth-tab-btn {
    background: transparent;
    border: none;
    font-size: 11px;
    font-weight: 700;
    color: #8C94A0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    transition: color 0.2s ease;
}

.auth-tab-btn.active {
    color: var(--text-dark, #1F2430);
}

.auth-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold-color, #CA9127);
}

/* Custom Box Input Configurations Layout */
.auth-input-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-label, #4A5161);
    margin-bottom: 6px;
}

.auth-input-field {
    height: 48px;
    padding-left: 45px !important;
    padding-right: 45px !important;
    border: 1px solid #C8D1DB;
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dark, #1F2430);
    transition: all 0.2s ease;
}

.auth-input-field::placeholder {
    color: #A0AAB5;
}

.auth-input-field:focus {
    border-color: var(--brand-blue-deep, #003891);
    box-shadow: 0 0 0 3px rgba(0, 56, 145, 0.08);
}

.input-group-icon {
    font-size: 15px;
    z-index: 4;
}

.btn-password-toggle {
    font-size: 16px;
    z-index: 4;
    cursor: pointer;
}

.forgot-password-link:hover {
    color: var(--gold-color, #CA9127) !important;
}

/* High Contrast Brand Submission Button Action Control */
.btn-auth-submit {
    background: var(--primary-color);
    /* Matches the vibrant custom branding canvas blue action key */
    color: #FFFFFF;
    border-radius: 10px;
    font-size: 15px !important;
    font-weight: 500;
    border: none;
    height: 40px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-auth-submit:hover {
    background-color: #0B5ED7;
    color: #FFFFFF;
}

.btn-auth-submit:active {
    transform: scale(0.99);
}

.continue-guest-link {
    font-size: 13px;
    letter-spacing: 0.2px;
}

.text-gold {
    color: var(--gold-color, #CA9127);
}

.account-signup-prompt a:hover {
    text-decoration: underline !important;
}

/* Responsive Adaptive Sizing Controls */
@media (max-width: 575.98px) {
    .auth-card-title {
        font-size: 1.6rem;
    }

    .auth-input-field {
        height: 46px;
    }

    .btn-auth-submit {
        height: 46px;
    }
}


.back-login-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    transition: color 0.2s ease;
}

.back-login-link:hover {
    color: var(--gold-color, #CA9127) !important;
}

.font-size-14 {
    font-size: 14px !important;
}



/* ==========================================================================
   PRIME RETAIL - PRODUCT DETAILS PREMIUM STYLING
   ========================================================================== */

/* Utility & Variables */
:root {
    --pr-gold: #B29146;
    --pr-gold-light: #FFF9E6;
    --pr-dark: #081B3B;
    --pr-dark-muted: #1A2B49;
    --pr-border-color: #EAEAEA;
    --pr-bg-light: #F8F9FA;
}

/* Breadcrumbs Custom styling */
.breadcrumb-item a {
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--pr-gold) !important;
}

.static-page-section .static-page-card {
    border-color: var(--pr-border-color, #EAEAEA) !important;
    border-radius: 12px;
}

.static-page-content {
    line-height: 1.75;
    font-size: 0.95rem;
}

.static-page-content p {
    margin-bottom: 1rem;
}

/* Tighter breadcrumb → page title spacing (all storefront pages) */
nav[aria-label="breadcrumb"] {
    padding-top: 0.4rem !important;
    padding-bottom: 0.3rem !important;
}

nav[aria-label="breadcrumb"] + section,
nav[aria-label="breadcrumb"] + .products-listing-section,
nav[aria-label="breadcrumb"] + .categories-page-section,
nav[aria-label="breadcrumb"] + .profile-hub-section,
nav[aria-label="breadcrumb"] + .checkout-address-section,
nav[aria-label="breadcrumb"] + .product-details-page,
nav[aria-label="breadcrumb"] + .cart-section {
    padding-top: 0.55rem !important;
}

.products-listing-section,
.categories-page-section,
.profile-hub-section,
.checkout-address-section,
.product-details-page {
    padding-bottom: 1.25rem !important;
}

.products-listing-section .products-page-title,
.categories-page-section .categories-page-title,
.profile-hub-section .profile-hub-title {
    margin-top: 0;
}

.products-listing-section > .container-fluid > .d-flex:first-child,
.products-listing-section .products-toolbar,
.categories-page-section .card-header-custom {
    margin-bottom: 0.75rem !important;
}

/* Left Column: Premium Gallery Showcase */
.pd-gallery-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.pd-zoom-wrap {
    width: 100%;
}

.main-image-container {
    border: 1px solid var(--pr-border-color);
    background-color: #f5f5f5;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.thumbnail-wrapper {
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: border-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.thumbnail-wrapper:hover,
.thumbnail-wrapper.border-dark,
.thumbnail-wrapper.is-active {
    border-color: #000000 !important;
    transform: translateY(-2px);
}

/* Product detail: single-row thumbnail strip with horizontal scroll */
.pd-thumb-strip {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding:15px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #c5c5c5 transparent;
    scroll-behavior: auto;
}

.pd-thumb-strip.is-auto-scroll {
    cursor: grab;
}

.pd-thumb-strip.is-auto-scroll:active {
    cursor: grabbing;
}

.pd-thumb-strip::-webkit-scrollbar {
    height: 4px;
}

.pd-thumb-strip::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 4px;
}

.pd-thumb-strip::-webkit-scrollbar-track {
    background: transparent;
}

.pd-thumb-item {
    flex: 1 1 calc((100% - 1.5rem) / 4);
    min-width: 64px;
    max-width: calc((100% - 1.5rem) / 4);
    aspect-ratio: 1 / 1;
    height: auto;
    border: 1.5px solid #e5e5e5 !important;
    background: #f5f5f5 !important;
}

.pd-thumb-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.pd-thumb-item.is-active,
.pd-thumb-item.border-dark {
    border-color: #000 !important;
}

/* Middle Column: Pricing, Selections, and Architecture Matrix */
.text-gold {
    color: var(--pr-gold) !important;
}

.bg-gold-light {
    background-color: var(--gold-color) !important;
    color: var(--text-dark) !important;
}

/* Color Swatch Options (legacy / non-card) */
.btn-color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50% !important;
    border: 2px solid #c7c7c7 !important;
    padding: 3px !important;
    background-clip: content-box !important;
    transition: transform 0.2s ease, border-color 0.2s ease, border-width 0.2s ease;
    box-shadow: none;
}

.btn-color-swatch:hover {
    transform: scale(1.06);
}

.btn-color-swatch.border-dark {
    border-color: #111111 !important;
    border-width: 2.5px !important;
}

/* Amazon-style colour variant cards */
.pd-colour-heading {
    font-size: 0.95rem;
    color: #0f1111;
}

.pd-colour-heading strong {
    font-weight: 700;
}

.pd-color-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pd-color-card {
    width: 118px;
    margin: 0;
    padding: 0;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pd-color-card:hover:not(:disabled) {
    border-color: #888c8c;
}

.pd-color-card.is-selected {
    border: 1px solid #076cca;
    box-shadow: 0 0 0 1px #076cca;
}

.pd-color-card.is-unavailable,
.pd-color-card:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.pd-color-card-media {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
    padding: 8px;
}

.pd-color-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pd-color-card-prices {
    display: block;
    border-top: 1px solid #e7e7e7;
    padding: 8px 10px 10px;
}

.pd-color-card-sale {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f1111;
    line-height: 1.25;
}

.pd-color-card-mrp {
    display: block;
    margin-top: 2px;
    font-size: 0.78rem;
    color: #565959;
    text-decoration: line-through;
    line-height: 1.2;
}

.pd-color-card-oos {
    display: block;
    margin-top: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #b12704;
    line-height: 1.2;
}

.pd-color-card.is-oos .pd-color-card-media {
    opacity: 0.75;
}

.pd-stars {
    font-size: 1.00rem;
    line-height: 1;
}

@media (max-width: 575.98px) {
    .pd-color-card {
        width: calc(33.333% - 7px);
        min-width: 96px;
        max-width: 120px;
    }
}

/* Config Storage Pills */
.btn-outline-gold {
    border: 1px solid var(--pr-border-color);
    color: #212529;
    background-color: transparent;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-outline-gold:hover {
    border-color: var(--pr-gold);
    color: var(--pr-gold);
    background-color: rgba(178, 145, 70, 0.05);
}

.btn-outline-gold.active-config {
    background-color: var(--pr-gold-light) !important;
    color: var(--pr-gold) !important;
    border-color: var(--pr-gold) !important;
    font-weight: 600;
}

.qbtn {}

/* Dynamic Technical Grid Layout Specs */
.row.g-0.border.rounded-3 {
    border-color: var(--pr-border-color) !important;
}

.row.g-0.border.rounded-3 .col-6 {
    transition: background-color 0.2s ease;
}

.row.g-0.border.rounded-3 .col-6:hover {
    background-color: rgba(0, 0, 0, 0.01);
}

/* Right Column: Sticky Sidebar Widgets */
.product-sidebar-sticky {
    z-index: 10;
    min-width: 0;
}

.pd-sidebar-card {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--pr-border-color, #EAEAEA) !important;
    border-radius: 12px !important;
}

.pd-sidebar-card-body {
    padding: 0.9rem 1rem !important;
    min-width: 0;
}

.pd-sidebar-reward-text {
    color: var(--pr-dark, #081B3B);
    line-height: 1.35;
    min-width: 0;
}

.pd-loyalty-eyebrow {
    font-size: 0.75rem;
    color: #6c757d;
}

.pd-loyalty-coins {
    font-size: 0.95rem;
    font-weight: 700;
    color: #a47e3c;
    line-height: 1.25;
}

.pd-loyalty-sub {
    font-size: 0.7rem;
    color: #6c757d;
    margin-top: 0.1rem;
}

.pd-loyalty-learn {
    color: #785a22 !important;
}

.pd-sidebar-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    margin-bottom: 0.55rem;
}

.pd-sidebar-meta-row > span:first-child {
    flex: 0 1 auto;
}

.pd-sidebar-meta-row > span:last-child {
    flex: 1 1 auto;
    text-align: right;
    min-width: 0;
    word-break: break-word;
}

.pd-sidebar-eta {
    margin-top: 0.35rem;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    font-size: 0.8rem;
    line-height: 1.4;
    background: var(--pr-gold-light, #FFF8E8);
    border: 1px solid #f0e0b8;
}

.pd-sidebar-addr-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
}

.pd-sidebar-addr-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    min-width: 0;
    flex: 1 1 auto;
}

.pd-sidebar-addr-name {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pd-sidebar-addr-badge {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: var(--pr-gold, #C9A227);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.pd-sidebar-addr-change {
    flex: 0 0 auto;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--brand-blue-deep, #004DAC);
    white-space: nowrap;
    padding-top: 1px;
}

.pd-sidebar-addr-change:hover {
    text-decoration: underline;
}

.pd-sidebar-addr-line {
    line-height: 1.45;
    word-break: break-word;
}

/* Premium Reward Coins Card styling */
.card-rewards-gradient {
    background: linear-gradient(135deg, #FFFDF8 0%, #FFF5E1 100%);
    border-color: #FFE0B2 !important;
}

/* Custom Scrollbar for Reviews Feed */
.reviews-feed {
    scrollbar-width: thin;
    scrollbar-color: #E2E2E2 transparent;
}

.reviews-feed::-webkit-scrollbar {
    width: 5px;
}

.reviews-feed::-webkit-scrollbar-track {
    background: transparent;
}

.reviews-feed::-webkit-scrollbar-thumb {
    background-color: #E2E2E2;
    border-radius: 10px;
}

/* Review Item Dividers */
.last-no-border {
    border-color: var(--pr-border-color) !important;
}

.last-no-border:last-child {
    border-bottom: none !important;
}

/* Custom Rating Badge background */
.bg-success-subtext {
    background-color: #F4FBF7;
    border-color: #D1F2E1 !important;
}

/* Buttons and Action Rows Styling */
.btn-auth-submit,
.btn-buy-now {
    background-color: var(--pr-dark);
    color: #ffffff;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-auth-submit:hover,
.btn-buy-now:hover {
    background-color: var(--pr-dark-muted);
    color: #ffffff;
}

.btn-auth-submit:active,
.btn-buy-now:active {
    transform: scale(0.99);
}


.fontsize {
    font-size: 0.8rem;
}

.fontmanage {
    font-size: 0.75rem;
}

.fontmain {
    font-size: 0.70rem;
}

.pd-product-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 2vw, 1.50rem);
    font-weight: 700;
    color: var(--pr-dark, #081B3B);
    line-height: 1.25;
}

.pd-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pr-dark, #081B3B);
}

.pd-gold-rule {
    width: 72px;
    height: 2px;
    background: var(--pr-gold, #CC932B);
    border-radius: 2px;
}

.pd-vision-block {
    background: #F4F4F4;
}

.pd-collapsible.is-collapsed .pd-collapsible-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--pd-collapse-lines, 6);
    overflow: hidden;
}

.pd-collapsible.is-expanded .pd-collapsible-text {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.pd-view-more-btn {
    margin-top: 0.75rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--brand-blue-deep, #004DAC);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.pd-view-more-btn:hover {
    color: var(--brand-blue-light, #0A79D7);
    text-decoration: underline;
}

.btn-pd-oos {
    min-height: 44px;
    background: #fff;
    border: 1px solid #D0D0D0;
    color: #DC3545;
    font-weight: 600;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-pd-oos:disabled {
    opacity: 1;
    color: #DC3545;
}

.btn-outline-gold.is-oos {
    opacity: 0.55;
    position: relative;
}

.pd-specs-grid {
    background: #fff;
}

.pd-spec-cell {
    border-color: var(--pr-border-color, #E2E8F0) !important;
}

.pd-spec-cell:nth-child(odd):not(.col-12) {
    border-right: 1px solid var(--pr-border-color, #E2E8F0);
}

.pd-spec-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pd-spec-icon {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    flex: 0 0 22px;
    object-fit: contain;
    object-position: top center;
    align-self: flex-start;
    display: block;
}

.pd-spec-body {
    min-width: 0;
    flex: 1 1 auto;
}

.pd-spec-label {
    color: var(--text-muted, #434343);
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
    line-height: 1.3;
}

.pd-spec-value {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--pr-dark, #081B3B);
    line-height: 1.35;
    word-break: break-word;
}

.pd-spec-detail {
    color: var(--text-muted, #434343);
    font-size: 0.72rem;
    line-height: 1.45;
    margin-top: 4px;
    word-break: break-word;
}

.pd-offer-card {
    min-width: 220px;
    max-width: 260px;
    border-color: var(--pr-border-color, #EAEAEA) !important;
}

.pd-offer-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 8px;
    line-height: 0;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.pd-offer-copy-btn:hover {
    transform: scale(1.06);
    opacity: 0.9;
}

.pd-offer-copy-btn:focus-visible {
    outline: 2px solid var(--pr-gold, #C9A227);
    outline-offset: 2px;
}

.pd-offer-copy-btn img {
    display: block;
    width: 32px;
    height: 32px;
    pointer-events: none;
}

.pd-offer-card .pd-offer-copy-btn img {
    width: 28px;
    height: 28px;
}


.pd-info-col{
    border-right: 1px solid #E4E4E4 !important;
}
.pd-separator{
     border-top: 0.95px solid #E6E6E6 !important;
     opacity: 1 !important;

 }

.pd-gallery-col.is-zooming {
    z-index: 30;
}

.pd-zoom-hint {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.pd-zoom-stage {
    cursor: crosshair;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    max-height: none;
    background: #f5f5f5;
}

.pd-zoom-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f5f5f5;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.pd-zoom-lens {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(0, 90, 160, 0.35);
    background-color: rgba(125, 175, 220, 0.28);
    background-image:
        linear-gradient(to right, rgba(0, 90, 160, 0.18) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 90, 160, 0.18) 1px, transparent 1px);
    background-size: 12px 12px;
    pointer-events: none;
    z-index: 3;
    box-sizing: border-box;
}

.pd-zoom-result {
    display: none !important;
    position: absolute !important;
    top: 0;
    left: calc(100% + 12px);
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 0 0;
    border: 1px solid #d5d9d9;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 40;
    pointer-events: none;
    overflow: hidden;
}

.pd-gallery-col.is-zooming .pd-zoom-lens {
    display: block;
}

.pd-gallery-col.is-zooming .pd-zoom-result {
    display: block !important;
}

.pd-gallery-col.is-zooming .pd-zoom-hint {
    opacity: 0;
}

@media (max-width: 991.98px) {
    .pd-zoom-stage {
        cursor: default;
    }

    .pd-zoom-lens,
    .pd-zoom-result {
        display: none !important;
    }

    .pd-gallery-col.is-zooming {
        z-index: auto;
    }
}

.product-details-page .main-image-container {
    border-radius: 12px;
}

@media (min-width: 992px) {
    .pd-gallery-col .pd-gallery-stack {
        position: sticky;
        top: 96px;
    }
    .pd-gallery-col {
    position: sticky;
    align-self: flex-start;
    top: 96px;
}
}

.product-details-page .btn-buy-now {
    background-color: var(--brand-blue-deep, #004DAC);
    border: none;
}

.product-details-page .btn-buy-now:hover {
    background-color: var(--brand-blue-light, #0A79D7);
    color: #fff;
}

.product-details-page .btn-add-bag {
    min-height: 44px;
}

/* Shared quantity stepper (+ / −) — theme aligned */
.qty-stepper {
    display: inline-flex;
    align-items: stretch;
    justify-content: space-evenly;
    height: 36px;
    border: 1px solid var(--border-soft, #E2E8F0);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.qty-stepper-btn {
    width: 36px;
    min-width: 36px;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: #fff;
    color: var(--pr-dark, #081B3B);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.qty-stepper-btn:hover {
    background: #F8F9FA;
}

.qty-stepper-btn:active {
    background: #EEF1F4;
}

.qty-stepper-input {
    width: 44px;
    min-width: 44px;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-left: 1px solid var(--border-soft, #E2E8F0);
    border-right: 1px solid var(--border-soft, #E2E8F0);
    border-radius: 0;
    background: #fff;
    color: var(--pr-dark, #081B3B);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    line-height: 36px;
    -moz-appearance: textfield;
    box-shadow: none !important;
}

.qty-stepper-input::-webkit-outer-spin-button,
.qty-stepper-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-stepper-input:focus {
    outline: none;
}




/* ==========================================================================
   PRIME RETAIL - SHOPPING BAGS / CART PRESTIGE UI STYLE SHEET
   ========================================================================== */



.text-gold {
    color: var(--pr-gold) !important;
}

.bg-gold-light {
    background-color: var(--pr-gold-light) !important;
    color: var(--pr-gold) !important;
}

/* Custom layout adjustment vectors */
.max-w-md {
    max-width: 450px;
}

.vertical-middle {
    vertical-align: middle;
}

.cursor-pointer {
    cursor: pointer;
}

/* Cart Item Cards adjustments */
.card {
    border: 1px solid var(--pr-border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-item-card .cart-item-row {
    width: 100%;
}

.cart-item-card .cart-item-thumb {
    width: 160px;
    height: 140px;
    min-width: 160px;
}

.cart-item-card .cart-item-thumb img {
    display: block;
    object-fit: cover;
}

.cart-item-card .cart-item-title {
    font-size: 1.1rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-card .cart-item-aside {
    min-width: 0;
}

@media (min-width: 768px) {
    .cart-item-card .cart-item-aside {
        min-width: 150px;
    }

    .cart-item-card .cart-item-actions {
        margin-top: 0;
    }
}

.cart-item-card .cart-item-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 14px;
    margin-top: 0.75rem;
    min-width: 0;
}

.cart-item-action-form {
    margin: 0;
    min-width: 0;
}

.cart-item-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}

.cart-item-action-btn img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.cart-item-action-btn.is-wishlist {
    color: #6c757d;
}

.cart-item-action-btn.is-remove {
    color: #dc3545;
}

.cart-item-action-btn .cart-action-label-short {
    display: none;
}
.cart-items-wrapper{
    max-height: 565px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #E2E2E2 transparent;
}

@media (max-width: 767.98px) {
    .cart-item-card {
        overflow: hidden;
    }

    .cart-item-card .cart-item-media {
        width: 100%;
    }

    .cart-item-card .cart-item-thumb {
        width: 100%;
        max-width: none;
        height: 180px;
        min-width: 0;
        flex: 1 1 auto;
    }

    .cart-item-card .cart-item-title {
        font-size: 1rem;
    }

    .cart-item-card .cart-item-aside {
        min-width: 0;
        width: 100%;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 10px;
        padding-top: 4px;
        border-top: 1px solid #EEF2F7;
    }

    .cart-item-card .cart-item-price {
        text-align: left !important;
    }

    .cart-item-card .cart-item-actions {
        width: 100%;
        justify-content: space-between;
        margin-top: 0;
        padding-top: 0;
        gap: 8px;
    }

    .cart-item-action-btn .cart-action-label-full {
        display: none;
    }

    .cart-item-action-btn .cart-action-label-short {
        display: inline;
    }

    .cart-item-action-btn {
        font-size: 0.8rem;
    }
}

/* Forms layout toggle rules */
.form-switch .form-check-input:checked {
    background-color: #198754;
    border-color: #198754;
}

/* Checkout Page Accept Logo styles wrapper badge rows */
.logo-row .badge {
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    border-radius: 4px;
    background-color: #FAFAFA !important;
    min-width: 55px;
    text-center: center;
}

/* Responsive side-column adjustments for stickiness elements */
@media (min-width: 992px) {
    .product-sidebar-sticky {
        position: sticky;
        top: 100px;
    }
}


















/* ==========================================================================
   PRIME RETAIL - CHECKOUT / ADDRESS SELECTION STYLE SHEET
   ========================================================================== */

/* Page Helpers & Reusable Globals */
.text-gold {
    color: var(--pr-gold) !important;
}

.bg-gold-light {
    background-color: var(--pr-gold-light) !important;
}

.cursor-pointer {
    cursor: pointer;
}

.checkout-page-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pr-dark, #081B3B);
}

.checkout-form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pr-dark, #081B3B);
}

.checkout-back-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pr-dark, #081B3B);
    white-space: nowrap;
}

.checkout-back-cart:hover {
    color: var(--brand-blue-deep, #0B3B7A);
}

.checkout-address-section {
    min-height: auto;
}

.checkout-address-layout {
    width: 100%;
}

.checkout-address-layout > [class*="col-"] {
    min-width: 0;
}

.checkout-address-list-col,
.checkout-address-form-col {
    width: 100%;
    max-width: 100%;
}

/* Form closed: list + payment use full content width */
.checkout-address-layout:not(.is-form-open) .checkout-address-list-col {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
}

/* Form open: split list / form on desktop */
@media (min-width: 992px) {
    .checkout-address-layout.is-form-open .checkout-address-list-col {
        flex: 0 0 58%;
        width: 58%;
        max-width: 58%;
    }

    .checkout-address-layout.is-form-open .checkout-address-form-col {
        flex: 0 0 42%;
        width: 42%;
        max-width: 42%;
    }
}

.checkout-address-form-card {
    position: sticky;
    top: 20px;
    z-index: 5;
}

.address-selected-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    background: #EAF2FF;
    color: #0B3B7A;
    font-size: 0.68rem;
    font-weight: 600;
}

.checkout-payment-card {
    border: 1px solid var(--pr-border-color, #EAEAEA) !important;
    border-radius: 12px !important;
    background: #fff;
    box-shadow: 0 1px 4px rgba(8, 27, 59, 0.04);
}

.checkout-payment-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkout-pay-cod,
.checkout-pay-online {
    min-height: 42px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 14px;
}

.checkout-pay-cod {
    border: 1px solid var(--pr-dark, #081B3B);
    color: var(--pr-dark, #081B3B);
    background: #fff;
}

.checkout-pay-cod:hover:not(:disabled) {
    background: var(--pr-dark, #081B3B);
    color: #fff;
}

.checkout-pay-online {
    background: var(--brand-blue-deep, #0B3B7A) !important;
    border: none;
    color: #fff !important;
}

.checkout-pay-online:hover:not(:disabled) {
    background: #1A2B49 !important;
}

.checkout-pay-cod:disabled,
.checkout-pay-online:disabled,
.checkout-continue-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.checkout-continue-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 16px;
    background: var(--brand-blue-deep, #0B3B7A) !important;
    border: none;
    color: #fff !important;
    text-decoration: none;
}

.checkout-continue-btn:hover:not(:disabled) {
    background: #1A2B49 !important;
    color: #fff !important;
}

a.step-node:hover .step-icon {
    border-color: var(--pr-gold);
}

.checkout-review-item {
    border: 1px solid var(--pr-border-color, #EAEAEA) !important;
    border-radius: 12px !important;
    background: #fff;
    box-shadow: 0 1px 4px rgba(8, 27, 59, 0.04);
}

.checkout-review-item .card-body {
    padding: 0.85rem 1rem;
}

.checkout-review-item-thumb {
    width: 88px;
    height: 88px;
    min-width: 88px;
    background: #111;
    display: block;
}

.checkout-review-item-thumb img {
    display: block;
    object-fit: cover;
}

.checkout-review-item-title {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.checkout-review-summary {
    position: sticky;
    top: 20px;
}

.checkout-gst-invoice-card {
    border: 1px solid var(--pr-border-color, #EAEAEA) !important;
    border-radius: 12px !important;
    background: #fff;
    box-shadow: 0 1px 4px rgba(8, 27, 59, 0.04);
}

.checkout-gst-invoice-check .form-check-input {
    width: 1.1em;
    height: 1.1em;
    margin-top: 0.2em;
    border-color: #adb5bd;
    cursor: pointer;
}

.checkout-gst-invoice-check .form-check-input:checked {
    background-color: var(--brand-blue-deep, #0B3B7A);
    border-color: var(--brand-blue-deep, #0B3B7A);
}

.checkout-gst-invoice-check .form-check-label {
    cursor: pointer;
    color: var(--pr-dark, #081B3B);
}

.checkout-progress-bar {
    position: relative;
    padding: 10px 0;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
}

.progress-line-bg {
    position: absolute;
    top: 24px;
    left: 12%;
    width: 76%;
    height: 3px;
    background-color: #E2E2E2;
    z-index: 1;
}

.progress-line-active {
    position: absolute;
    top: 24px;
    left: 12%;
    height: 3px;
    background-color: var(--pr-gold);
    z-index: 1;
    transition: width 0.3s ease;
}

.step-node {
    position: relative;
    z-index: 2;
    text-align: center;
    background: transparent;
    flex: 1;
}

.step-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #E2E2E2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px auto;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: #6C757D;
}

.step-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6C757D;
}

/* State Classes for Step Nodes */
.step-node.active .step-icon,
.step-node.done .step-icon {
    border-color: var(--pr-gold);
    color: var(--pr-gold);
}

.step-node.active .step-label,
.step-node.done .step-label {
    color: var(--pr-gold);
}

.step-node.done .step-icon {
    background-color: var(--pr-gold-light);
}

/* ----- Shipping Address (Profile) ----- */
.shipping-address-page {
    width: 100%;
}

.shipping-address-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px 20px;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.shipping-address-header-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
}

.btn-add-address {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: var(--brand-blue-deep, #0B3B7A);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 16px;
    min-height: 42px;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.btn-add-address:hover {
    background: #1A2B49;
    color: #fff !important;
}

.shipping-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pr-dark, #081B3B);
    margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
    .shipping-address-layout.is-form-open .shipping-address-list-col {
        flex: 0 0 38%;
        width: 38%;
        max-width: 38%;
    }

    .shipping-address-layout.is-form-open .shipping-address-form-col {
        flex: 0 0 62%;
        width: 62%;
        max-width: 62%;
    }
}

.address-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    padding: 20px 14px;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    background: #fff;
    border: 1px solid var(--pr-border-color, #EAEAEA);
    border-radius: 10px;
}

.address-form-close {
    opacity: 0.55;
    width: 0.7rem;
    height: 0.7rem;
    padding: 0.45rem;
}

.address-form-close:hover {
    opacity: 1;
}

.shipping-address-form-col {
    width: 100%;
}

.address-form-card {
    border: 1px solid var(--pr-border-color, #EAEAEA) !important;
    border-radius: 12px !important;
    background: #fff;
    box-shadow: 0 2px 10px rgba(8, 27, 59, 0.04);
    height: 100%;
}

.address-form-card .card-body {
    padding: 0.9rem 1rem;
}

.address-form-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.6rem;
}

.address-form-card .checkout-form-title {
    font-size: 1.1rem;
    line-height: 1.25;
}

.address-form-fields {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.address-form-fields .address-field,
.address-form-fields .address-form-row {
    margin: 0;
}

.address-form-fields .form-label {
    margin-bottom: 0.15rem;
    font-size: 0.76rem;
    font-weight: 500;
    color: #6c757d;
    line-height: 1.2;
}

.address-form-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem 12px;
    margin-top: 0.1rem;
}

.address-form-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.address-cancel-btn {
    min-height: 36px;
    padding: 5px 12px;
    font-size: 0.85rem;
    border-radius: 8px;
    white-space: nowrap;
}

.address-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.35rem;
}

.address-card-name {
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 0.15rem;
    color: var(--pr-dark, #081B3B);
    line-height: 1.3;
}

.address-card-line {
    font-size: 0.8rem;
    line-height: 1.35;
    margin-bottom: 0;
}

.address-card-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 0.45rem;
    padding-top: 0.45rem;
    border-top: 1px solid var(--pr-border-color, #EAEAEA);
}

.address-default-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--pr-gold, #B29146);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
}

/* Saved Address Selector Cards */
.address-select-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border-radius: 10px !important;
    background: #fff;
}

.address-select-card .card-body {
    padding: 0.75rem 0.85rem !important;
}

.address-select-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.address-select-card.border-gold {
    border: 1.5px solid var(--pr-gold) !important;
}

.address-select-card.border-light {
    border: 1px solid var(--pr-border-color) !important;
}

.address-icon-badge {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 1rem;
    border-radius: 50%;
}

/* Address Inputs & Custom Radio Selectors */
.auth-input-field {
    border-radius: 8px !important;
    border: 1px solid #ced4da;
    padding: 10px 12px;
    font-size: 0.9rem;
    min-height: 44px;
}
#returnOrderModal-form .auth-input-field{
    padding: 10px 12px !important;
}

.address-form-fields .auth-input-field {
    padding: 6px 10px;
    font-size: 0.85rem;
    min-height: 36px;
    height: 36px;
}

.address-form-fields select.auth-input-field {
    padding-right: 2rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


.auth-input-field:focus {
    border-color: var(--pr-gold);
    box-shadow: 0 0 0 0.2rem rgba(178, 145, 70, 0.15);
}

.input-group-auth .input-group-icon {
    z-index: 5;
}

.input-group-auth .auth-input-field {
    padding-left: 42px !important;
}

.address-mobile-group {
    flex-wrap: nowrap;
}

.address-mobile-group .input-group-text {
    border-color: #ced4da;
    border-right: 0;
    background: #fff;
    color: var(--pr-dark, #081B3B);
    font-weight: 600;
    font-size: 0.8rem;
    min-width: 46px;
    justify-content: center;
    border-radius: 8px 0 0 8px !important;
    padding: 6px 10px;
    height: 36px;
}

.address-mobile-group .auth-input-field {
    border-left: 0;
    border-radius: 0 8px 8px 0 !important;
}

.address-mobile-group .auth-input-field:focus {
    border-left: 0;
    box-shadow: none;
}

.address-mobile-group:focus-within .input-group-text,
.address-mobile-group:focus-within .auth-input-field {
    border-color: var(--pr-gold);
}

/* Custom Save As Radio Buttons Styles */
.btn-outline-address-type {
    border: 1px solid #ced4da;
    color: #495057;
    background-color: #ffffff;
    font-size: 0.8rem;
    border-radius: 20px;
    font-weight: 500;
    padding: 4px 14px;
    min-height: 32px;
    line-height: 1.2;
    transition: all 0.2s ease;
}

.btn-outline-address-type:hover {
    border-color: var(--pr-gold);
    color: var(--pr-gold);
    background-color: #fff;
}

.btn-check:checked + .btn-outline-address-type {
    background-color: var(--pr-gold-light, #FFF5E6) !important;
    border-color: var(--pr-gold, #B29146) !important;
    color: var(--pr-gold, #B29146) !important;
    font-weight: 600;
}

.address-type-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    min-height: 38px;
}

.address-default-check {
    margin: 0;
    padding-left: 1.5rem;
    min-height: auto;
}

.address-default-check .form-check-label {
    font-size: 0.85rem;
    color: #495057;
}

/* Form Action Button */
.btn-save-address {
    background: var(--brand-blue-deep, #0B3B7A) !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 7px 16px;
    min-height: 36px;
    min-width: 140px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-save-address:hover {
    background-color: #1A2B49 !important;
    color: #fff !important;
}

.btn-save-address:active {
    transform: scale(0.99);
}









































































/* ==========================================================================
   PRIME RETAIL - REWARDS & COINS MANAGEMENT SYSTEM PRESTIGE STYLING
   ========================================================================== */


/* Structural Helpers */
.bg-gray-inline {
    background-color: #F0F1F2 !important;
}

/* Premium Dashboard Card Customizations */
.card {
    border: 1px solid var(--pr-border-line);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Available Balance Card Glass Blur & Illustration Styling */
.hero-balance-card .bg-blur-white {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.hero-balance-card .illustration-container {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-balance-card .graphic-bag {
    font-size: 4.5rem !important;
    filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.4));
    animation: floatingArt 4s ease-in-out infinite;
}

@keyframes floatingArt {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Custom White-Gold Multiplier Variant Card styling */
.bg-white-gold {
    background: linear-gradient(135deg, #FFFDF6 0%, #FFF5E0 100%);
    border: 1px solid #FFE6C7 !important;
}

/* Core Primary Action CTA Button Matrix styling */
.btn-gold-action {
    background-color: var(--pr-gold-base) !important;
    border: none !important;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-gold-action:hover {
    background-color: #85652f !important;
}

.btn-gold-action:active {
    transform: scale(0.995);
}

/* Interactive Pagination Elements block row */
.btn-pagination-nav {
    width: 34px;
    height: 34px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 6px !important;
    background-color: #ffffff;
    border: 1px solid var(--pr-border-line);
    color: #495057;
    transition: all 0.2s ease;
}

.btn-pagination-nav:hover:not(:disabled) {
    border-color: var(--pr-gold-base);
    color: var(--pr-gold-base);
}

.btn-pagination-nav.active {
    background-color: var(--pr-gold-base) !important;
    border-color: var(--pr-gold-base) !important;
    color: #ffffff !important;
    font-weight: 600;
}

.btn-pagination-nav:disabled {
    opacity: 0.4;
    background-color: #EFEFEF;
}

/* Right-Hand Navigation Account Profile Drawer Sidebar Options links style matrix */
.nav-sidebar-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: #495057;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.nav-sidebar-link:hover {
    background-color: var(--pr-bg-light);
    color: var(--pr-dark);
}

.nav-sidebar-link.active {
    background-color: var(--pr-gold-light) !important;
    color: var(--pr-gold-base) !important;
    font-weight: 600;
}

/* Adjustments regarding layout stacking */
@media (max-width: 576px) {
    .hero-balance-card {
        text-align: center !important;
    }
}

/* ==========================================================================
   PRIME RETAIL - PROFILE HUB
   ========================================================================== */

/* Keep sticky sidebar below header dropdown (Bootstrap sticky-lg-top is z-index 1020). */
.profile-sidebar.sticky-lg-top,
.profile-sidebar {
    z-index: 10;
}

.profile-sidebar-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.2;
}

.profile-sidebar-group {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: var(--text-muted, #434343);
}

.profile-sidebar .nav-sidebar-link {
    color: var(--pr-dark, #081B3B);
    border: 1px solid transparent;
    font-size: 0.9rem;
}

.profile-sidebar .nav-sidebar-link img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.profile-sidebar-badge {
    background: var(--pr-gold, #CC932B);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.profile-sidebar-toggle {
    border: 1px solid var(--pr-border-color, #E2E8F0);
    color: var(--pr-dark, #081B3B);
    font-weight: 600;
    border-radius: 8px;
    padding: 6px 12px;
    line-height: 1.2;
    height: 34px;
    display: inline-flex;
    align-items: center;
}

.profile-sidebar-toggle:hover,
.profile-sidebar-toggle[aria-expanded="true"] {
    border-color: var(--brand-blue-light, #0A79D7);
    color: var(--brand-blue-deep, #004DAC);
}

.profile-sidebar-header {
    min-height: 34px;
}

.profile-logout-btn {
    background: var(--brand-blue-deep, #004DAC) !important;
    border: none;
    border-radius: 8px;
}

.profile-form-card {
    border-color: var(--pr-border-color, #EAEAEA) !important;
    border-radius: 12px;
}

.profile-readonly-field {
    background-color: #F3F4F6 !important;
    color: #6B7280;
    cursor: not-allowed;
}

.profile-file-input {
    padding: 0.4rem 0.75rem;
    min-height: 44px;
    height: 44px;
    line-height: 1.2;
}

.profile-image-upload {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid var(--pr-border-color, #EAEAEA);
    border-radius: 12px;
    background: #F8FAFC;
    max-width: 640px;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.profile-image-preview-wrap {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    min-width: 88px;
    min-height: 88px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #E5E7EB;
    background: #F3F4F6;
    box-shadow: 0 1px 3px rgba(8, 27, 59, 0.08);
}

.profile-image-preview,
img.profile-image-preview {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center;
    display: block;
}

.profile-image-upload-fields {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 6px;
    position: relative;
}

.profile-file-input-native {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0;
    overflow: hidden;
    border: 0;
    pointer-events: none;
}

.profile-image-upload-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.profile-image-pick-btn {
    flex: 0 0 auto;
    margin: 0;
    min-height: 40px;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--brand-blue-deep, #004DAC);
    background: #fff;
    color: var(--brand-blue-deep, #004DAC);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
}

.profile-image-pick-btn:hover {
    background: var(--brand-blue-deep, #004DAC);
    color: #fff;
}

.profile-image-file-name {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    font-size: 0.8rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-image-change-label {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--pr-dark, #081B3B);
    line-height: 1.2;
}

.profile-image-upload-fields .form-text {
    margin-top: 0;
    font-size: 0.75rem;
    line-height: 1.3;
}

.profile-save-btn {
    background: var(--brand-blue-deep, #004DAC);
    border: none;
    border-radius: 8px;
    max-width: 220px;
}

.profile-save-btn:hover {
    background: var(--brand-blue-light, #0A79D7);
    color: #fff;
}

.profile-breadcrumb {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.profile-breadcrumb::-webkit-scrollbar {
    display: none;
}

.profile-breadcrumb .breadcrumb-item {
    white-space: nowrap;
}

.profile-hub-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: var(--pr-dark, #081B3B);
}

.profile-status-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    background: #F0F1F2;
    padding: 8px;
    border-radius: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.profile-status-tabs::-webkit-scrollbar {
    height: 4px;
}

.profile-status-tabs::-webkit-scrollbar-thumb {
    background: #c5c9d0;
    border-radius: 4px;
}

.profile-status-tab {
    border: 0;
    background: transparent;
    color: var(--pr-dark, #081B3B);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    flex: 0 0 auto;
}

.profile-status-tab.active {
    background: var(--pr-gold, #CC932B);
    color: #fff;
}

.orders-search-form {
    width: 100%;
    max-width: 420px;
}

.orders-search-field {
    position: relative;
}

.orders-search-icon-btn {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #94A3B8;
    cursor: pointer;
    z-index: 1;
}

.orders-search-icon-btn:hover,
.orders-search-icon-btn:focus-visible {
    color: var(--pr-gold, #CC932B);
}

.orders-search-icon {
    display: block;
    pointer-events: none;
}

.orders-search-input {
    padding-left: 38px;
    border-radius: 10px;
    border: 1px solid var(--pr-border-color, #E2E8F0);
    height: 44px;
}

.order-history-card {
    border: 1px solid var(--pr-border-color, #EAEAEA) !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.order-history-body {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 14px 16px;
    align-items: start;
}

.order-history-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 10px;
    background: #F3F4F6;
}

.order-history-info {
    min-width: 0;
}

.order-history-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 150px;
    max-width: 100%;
    flex-shrink: 0;
}

.order-history-actions form {
    margin: 0;
    width: 100%;
}

.order-history-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #CED4DA;
    background: #fff;
    color: #495057;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
}

.order-history-action-btn:hover {
    background: #F8F9FA;
    color: #212529;
    border-color: #ADB5BD;
}

.order-history-buy-btn {
    background: var(--brand-blue-deep, #0B3B7A) !important;
    border-color: var(--brand-blue-deep, #0B3B7A) !important;
    color: #fff !important;
}

.order-history-buy-btn:hover {
    background: #1A2B49 !important;
    border-color: #1A2B49 !important;
    color: #fff !important;
}

.order-details-section {
    min-height: auto;
}

.order-details-layout > [class*="col-"] {
    min-width: 0;
}

.order-details-card {
    border: 1px solid var(--pr-border-color, #EAEAEA) !important;
    border-radius: 12px !important;
    background: #fff;
    box-shadow: 0 1px 4px rgba(8, 27, 59, 0.04);
    overflow: hidden;
}

.order-details-status-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
}

.order-status-badge {
    height: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 1.2;
    position: static;
}

.order-status-badge.shipped,
.order-status-badge.processing,
.order-status-badge.confirmed,
.order-status-badge.order_confirmed { background: #0891B2; }
.order-status-badge.packed { background: #7C3AED; }
.order-status-badge.out_for_delivery { background: #EA580C; }
.order-status-badge.delivered { background: #198754; }
.order-status-badge.cancelled,
.order-status-badge.canceled { background: #dc3545; }
.order-status-badge.returned { background: #6c757d; }
.order-status-badge.return_requested { background: #c2410c; }
.order-status-badge.return_approved { background: #b45309; }
.order-status-badge.driver_assigned,
.order-status-badge.return_accepted,
.order-status-badge.pickup_assigned { background: #1d4ed8; }
.order-status-badge.return_received,
.order-status-badge.picked_up,
.order-status-badge.submitted { background: #0369a1; }
.order-status-badge.return_successful,
.order-status-badge.received,
.order-status-badge.verified { background: #0f766e; }
.order-status-badge.refund_processed { background: #a16207; }
.order-status-badge.refund_successful,
.order-status-badge.completed { background: #15803d; }
.order-status-badge.rejected { background: #dc3545; }
.order-status-badge.replacement_requested { background: #7c3aed; }
.order-status-badge.pending { background: #B29146; }

.order-delivered-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    background: #E8F5EE;
    color: #198754;
    font-weight: 600;
    font-size: 0.95rem;
}

.order-delivered-banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #D1E7DD;
    font-size: 1rem;
    line-height: 1;
}

.order-payment-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.order-invoice-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid var(--brand-blue-deep, #0B3B7A) !important;
    color: var(--brand-blue-deep, #0B3B7A) !important;
    background: #fff !important;
    font-weight: 600;
    border-radius: 10px;
    min-height: 44px;
}

.order-invoice-btn:hover {
    background: #F8FBFF !important;
    color: #1A2B49 !important;
    border-color: #1A2B49 !important;
}

.order-aside-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-cancel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--brand-blue-deep, #0B3B7A) !important;
    color: var(--brand-blue-deep, #0B3B7A) !important;
    background: #fff !important;
    font-weight: 600;
    border-radius: 10px;
    min-height: 44px;
}

.order-cancel-btn:hover {
    background: #F8FBFF !important;
    border-color: #1A2B49 !important;
    color: #1A2B49 !important;
}

.order-details-aside-stack {
    position: sticky;
    top: 20px;
    z-index: 5;
}

.order-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 8px 4px 0;
    gap: 4px;
}

.order-timeline::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: #E2E8F0;
    z-index: 0;
}

.order-timeline-progress {
    position: absolute;
    top: 18px;
    left: 12%;
    height: 3px;
    background: #198754;
    z-index: 1;
}

.order-timeline-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
}

.order-timeline-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #E2E8F0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    color: #6c757d;
    flex-shrink: 0;
}

.order-timeline-step.done .order-timeline-icon,
.order-timeline-step.active .order-timeline-icon {
    border-color: #198754;
    color: #198754;
    background: #E8F5EE;
}

.order-timeline-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #6c757d;
    line-height: 1.2;
    max-width: 100%;
}

.order-timeline-step.done .order-timeline-label,
.order-timeline-step.active .order-timeline-label {
    color: #198754;
}

.order-timeline-date {
    display: block;
    font-size: 0.7rem;
    color: #6c757d;
}

.order-timeline--return {
    gap: 2px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}

.order-timeline--return .order-timeline-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
}

.order-timeline--return::before,
.order-timeline--return .order-timeline-progress {
    top: 14px;
}

.order-timeline--return .order-timeline-label {
    font-size: 0.62rem;
}

.order-item-row {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.order-item-thumb {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 10px;
    background: #F3F4F6;
}

.order-item-info {
    min-width: 0;
}

.order-item-name {
    word-break: break-word;
}

.order-buy-again-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-blue-deep, #0B3B7A) !important;
    color: #fff !important;
    border: none;
    font-weight: 600;
    border-radius: 10px;
    min-height: 44px;
}

.order-buy-again-btn:hover {
    background: #1A2B49 !important;
    color: #fff !important;
}

.order-summary-card {
    overflow: visible;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.875rem;
    margin-bottom: 0.55rem;
}

.order-summary-row strong,
.order-summary-row > span:last-child {
    text-align: right;
    word-break: break-word;
}

.order-summary-status {
    color: #198754;
}

.order-summary-total {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0;
}

.order-loyalty-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    padding: 12px;
    border-radius: 10px;
    background: #FFF8E8;
}

.order-loyalty-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 0;
}

.order-loyalty-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.2;
}

.order-loyalty-badge.is-pending {
    background: #FFF3CD;
    color: #856404;
}

.order-loyalty-badge.is-credited {
    background: #D1E7DD;
    color: #0F5132;
}

.order-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 1rem;
    font-size: 0.72rem;
    color: #6c757d;
    text-align: center;
}

/* Notifications inbox list */
.notifications-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
}

.notifications-mark-all-btn {
    border: 1px solid #E2E8F0;
    background: #fff;
    color: var(--brand-blue-deep, #004DAC);
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 999px;
    min-height: 36px;
    padding: 0.4rem 0.9rem;
    white-space: nowrap;
}

.notifications-mark-all-btn:hover {
    border-color: var(--brand-blue-light, #0A79D7);
    background: #F8FBFF;
}

.notifications-day-block {
    margin-bottom: 1.1rem;
}

.notifications-day-block:last-child {
    margin-bottom: 0;
}

.notifications-scroll {
    max-height: min(65vh, 600px);
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #C5CDD8 transparent;
}

.notifications-scroll::-webkit-scrollbar {
    width: 6px;
}

.notifications-scroll::-webkit-scrollbar-thumb {
    background: #C5CDD8;
    border-radius: 999px;
}

.notifications-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.notifications-day-label {
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #64748B;
    position: sticky;
    top: 0;
    z-index: 1;
    background: linear-gradient(180deg, #F8F9FA 70%, rgba(248, 249, 250, 0.85) 100%);
    padding: 4px 0;
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notification-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid #E8EEF5;
    border-radius: 12px;
    padding: 10px 12px;
    background: #fff;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.notification-card.is-unread {
    background: #F8FBFF;
    border-color: #D7E6F8;
    box-shadow: inset 3px 0 0 var(--brand-blue-deep, #004DAC);
}

.notification-card.is-read {
    background: #fff;
}

.notification-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9;
}

.notification-icon.is-order {
    background: #FFF8E8;
}

.notification-icon.is-support {
    background: #EEF5FF;
}

.notification-icon.is-promo {
    background: #F3EEFF;
}

.notification-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.notification-body {
    flex: 1 1 auto;
    min-width: 0;
}

.notification-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}

.notification-title {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--pr-dark, #081B3B);
    line-height: 1.35;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.notification-unread-dot {
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-blue-deep, #004DAC);
    display: inline-block;
}

.notification-time {
    flex: 0 0 auto;
    font-size: 0.72rem;
    color: #94A3B8;
    white-space: nowrap;
    line-height: 1.4;
    padding-top: 2px;
}

.notification-message {
    margin: 0 0 8px;
    font-size: 0.84rem;
    line-height: 1.45;
    color: #64748B;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.notification-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
}

.notification-link {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--pr-gold, #CC932B);
    text-decoration: none;
}

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

.notification-mark-btn {
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-blue-deep, #004DAC);
    cursor: pointer;
}

.notification-mark-btn:hover {
    text-decoration: underline;
}

.notification-read-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #94A3B8;
}

.notifications-empty {
    text-align: center;
    padding: 2.25rem 1rem;
    border: 1px dashed #D7DEE8;
    border-radius: 14px;
    background: #fff;
}

.notifications-empty-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9;
    color: #64748B;
}

@media (max-width: 575.98px) {
    .notifications-page-header {
        flex-direction: column;
        align-items: stretch;
    }

    .notifications-mark-all-btn {
        width: 100%;
    }

    .notifications-scroll {
        max-height: min(58vh, 480px);
    }

    .notification-top {
        flex-direction: column;
        gap: 2px;
    }

    .notification-time {
        white-space: normal;
    }
}

.home-faq-section .home-faq-card {
    padding: 20px;
}

.home-faq-list .faq-item:last-child {
    margin-bottom: 0;
}

.faq-item {
    border: 1px solid var(--pr-border-color, #EAEAEA);
    border-radius: 10px;
    background: #fff;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item[open] summary {
    border-bottom: 1px solid var(--pr-border-color, #EAEAEA);
}

.faq-item .faq-body {
    padding: 14px 16px;
    color: #6c757d;
    font-size: 0.92rem;
}

.modal-reason-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #F0F1F2;
}

.modal-reason-row:last-child { border-bottom: 0; }

.profile-hub-section .row > [class*="col-"] {
    min-width: 0;
}

.support-page,
.support-conversation-page {
    width: 100%;
    min-width: 0;
}

.support-page-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.support-new-ticket-btn {
    background: var(--brand-blue-deep, #004DAC);
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    white-space: nowrap;
    line-height: 1.2;
    height: 36px;
    display: inline-flex;
    align-items: center;
}

.support-new-ticket-btn:hover {
    background: var(--brand-blue-light, #0A79D7);
    color: #fff;
}

.support-search-form {
    display: flex;
    align-items: stretch;
    gap: 8px;
    width: 100%;
}

.support-search-input {
    flex: 1 1 auto;
    min-width: 0;
    height: 44px;
    border-radius: 8px;
    border: 1px solid var(--pr-border-color, #E2E8F0);
}

.support-search-btn {
    flex: 0 0 auto;
    background: var(--brand-blue-deep, #004DAC);
    border: none;
    border-radius: 8px;
    padding: 0 18px;
    height: 44px;
    white-space: nowrap;
}

.support-search-btn:hover {
    background: var(--brand-blue-light, #0A79D7);
    color: #fff;
}

.support-status-tabs {
    width: 100%;
}

.support-ticket-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-ticket-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 14px 16px;
    align-items: start;
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--pr-border-color, #EAEAEA);
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(8, 27, 59, 0.04);
}

.support-ticket-media {
    width: 72px;
}

.support-ticket-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    background: #F3F4F6;
}

.support-ticket-body {
    min-width: 0;
    overflow: hidden;
}

.support-ticket-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.support-ticket-id {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--pr-gold, #B29146);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
}

.support-ticket-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #FFF4DE;
    color: #8A6D1D;
    font-size: 0.72rem;
    font-weight: 600;
}

.support-ticket-status::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.support-ticket-status.is-pending,
.support-ticket-status.is-processing {
    background: #EAF2FF;
    color: #0B3B7A;
}

.support-ticket-status.is-resolved {
    background: #E8F8EF;
    color: #157347;
}

.support-ticket-status.is-closed {
    background: #F1F3F5;
    color: #6C757D;
}

.support-ticket-subject {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--pr-dark, #081B3B);
    line-height: 1.35;
    word-break: break-word;
}

.support-ticket-sub {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 6px;
    color: #6c757d;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.support-ticket-dot {
    opacity: 0.6;
}

.support-ticket-preview {
    margin: 0;
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.45;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.support-ticket-actions {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.support-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border: 1px solid var(--pr-dark, #081B3B);
    color: var(--pr-dark, #081B3B);
    background: #fff;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 12px;
    min-height: 36px;
}

.support-open-btn:hover {
    background: var(--pr-dark, #081B3B);
    color: #fff;
}

/* Conversation */
.support-conversation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
}

.support-conversation-heading {
    min-width: 0;
    flex: 1;
}

.support-chat-body {
    display: flex;
    flex-direction: column;
    min-height: 420px;
    min-width: 0;
    padding: 1rem 1.1rem !important;
}

.support-chat-card {
    border-radius: 12px !important;
    min-width: 0;
}

.support-chat-thread {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1rem;
    min-height: 280px;
    max-height: 520px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 2px 6px 8px 2px;
}

.support-chat-row {
    display: flex;
    width: 100%;
    min-width: 0;
}

.support-chat-row.is-mine {
    justify-content: flex-end;
}

.support-chat-row.is-theirs {
    justify-content: flex-start;
}

.support-chat-bubble {
    box-sizing: border-box;
    width: fit-content;
    max-width: min(78%, 440px);
    min-width: 0;
    padding: 10px 14px;
    word-break: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
}

.support-chat-bubble-out {
    background: var(--brand-blue-deep, #004DAC);
    color: #fff;
    border-radius: 10px 10px 4px 25px;
}

.support-chat-bubble-in {
    background: #F3F5F8;
    color: var(--pr-dark, #081B3B);
    border-radius: 10px 10px 25px 4px;
}

.support-chat-text {
    font-size: 0.92rem;
    line-height: 1.45;
    display: block;
    max-width: 100%;
}

.support-chat-time {
    margin-top: 6px;
    font-size: 0.72rem;
    opacity: 0.75;
    line-height: 1.2;
}

.support-chat-row.is-mine .support-chat-time {
    text-align: right;
}

.support-chat-row.is-theirs .support-chat-time {
    text-align: left;
}

.support-chat-attachments {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 8px;
    margin-top: 8px;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

.support-chat-attachments::-webkit-scrollbar {
    height: 4px;
}

.support-chat-attachments::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 4px;
}

.support-chat-image-link {
    flex: 0 0 auto;
    display: block;
    width: 168px;
    max-width: 100%;
    line-height: 0;
}

.support-chat-image {
    display: block;
    width: 168px;
    height: 168px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.support-chat-bubble-in .support-chat-image {
    border-color: #DEE2E6;
}

.support-chat-file-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.18);
    color: inherit;
}

.support-chat-bubble-in .support-chat-file-link {
    background: #E9ECEF;
    color: #081B3B;
}

.support-chat-composer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--pr-border-color, #EAEAEA);
}

.support-chat-attach-btn {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--pr-border-color, #E2E8F0);
    background: #fff;
    color: #495057;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0;
}

.support-chat-attach-btn:hover {
    background: #F8F9FA;
    color: var(--brand-blue-deep, #0B3B7A);
}

.support-chat-composer-main {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.support-chat-input {
    flex: 1 1 auto;
    min-width: 0;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--pr-border-color, #E2E8F0);
    padding: 0 16px;
}

.support-chat-file-name {
    font-size: 0.72rem;
    color: #6c757d;
    padding-left: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.support-chat-send {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--brand-blue-deep, #004DAC);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.support-chat-send:hover {
    background: var(--brand-blue-light, #0A79D7);
    color: #fff;
}

.ticket-proof-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ticket-proof-item {
    width: 72px;
    min-height: 72px;
    border-radius: 8px;
    border: 1px solid var(--pr-border-color, #EAEAEA);
    background: #F8F9FA;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    font-size: 0.65rem;
    text-align: center;
    color: #6c757d;
    word-break: break-word;
}

.ticket-proof-item img,
.ticket-proof-item video {
    width: 100%;
    height: 72px;
    object-fit: cover;
    display: block;
}

/* Modal forms reuse auth-input-field but have no leading icons — keep caret/text at the left edge */
.modal .auth-input-field {
    padding-left: 12px !important;
    padding-right: 12px !important;
    text-align: left !important;
}

.modal select.auth-input-field,
.modal select.auth-input-field option {
    text-align: left !important;
    text-align-last: left;
}

.modal input[type="file"].auth-input-field {
    text-align: left !important;
}

.modal textarea.auth-input-field {
    height: auto;
    min-height: 96px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    resize: vertical;
    text-align: left !important;
}

#addTicketModal .modal-body,
#addTicketModal .form-label,
#addTicketModal .form-text {
    text-align: left;
}

.profile-back-link {
    color: var(--brand-blue-deep, #0B3B7A);
    white-space: nowrap;
}

.profile-back-link:hover {
    color: var(--brand-blue-light, #1A5BB8);
}

.wishlist-btn-toggle.is-active,
.wishlist-grid .wishlist-btn-toggle {
    color: #FF4D4F;
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

.wishlist-btn-toggle.is-active:hover,
.wishlist-grid .wishlist-btn-toggle:hover {
    color: #E03131;
    background-color: #fff;
}

.wishlist-card-actions {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.wishlist-card-actions .btn-add-bag {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.wishlist-card-actions .btn-add-bag img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.wishlist-delete-btn {
    width: 42px;
    min-width: 42px;
    height: auto;
    border: 1px solid #E53935;
    color: #E53935;
    background: #fff;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.wishlist-delete-btn:hover {
    background: #fff5f5;
    border-color: #c62828;
}

.wishlist-delete-btn img {
    display: block;
    object-fit: contain;
}

/* ==========================================================================
   PRODUCTS LISTING
   ========================================================================== */

.products-listing-section {
    background:
        linear-gradient(180deg, #F7F9FC 0%, #EEF2F7 48%, #F7F9FC 100%);
    min-height: 60vh;
}

.products-page-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--pr-dark, #081B3B);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.25;
}

.products-result-meta {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #64748B;
}

.products-result-meta strong {
    color: var(--pr-dark, #081B3B);
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.85rem !important;
}

.products-toolbar-copy {
    flex: 1 1 auto;
}

.products-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.products-chip {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--pr-border-color, #E2E8F0);
    color: var(--pr-dark, #081B3B);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.products-chip-clear {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-blue-deep, #004DAC);
    text-decoration: none;
}

.products-chip-clear:hover {
    text-decoration: underline;
}

.products-filter-aside {
    top: 24px;
}

.products-filter-card {
    background: #fff;
    border: 1px solid rgba(8, 27, 59, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(8, 27, 59, 0.05);
    padding: 1.15rem 1.15rem 1.2rem;
}

.products-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #EEF2F7;
}

.products-filter-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--pr-dark, #081B3B);
    font-size: 1.25rem;
    font-weight: 700;
}

.products-filter-reset {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-blue-deep, #004DAC);
    text-decoration: none;
    white-space: nowrap;
}

.products-filter-reset:hover {
    text-decoration: underline;
}

.products-filter-group {
    margin-bottom: 0.95rem;
}

.products-filter-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748B;
}

.products-filter-search {
    position: relative;
}

.products-filter-search > svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    pointer-events: none;
}

.products-filter-search .products-filter-input {
    padding-left: 2.15rem;
}

.products-filter-input {
    border: 1px solid #E2E8F0 !important;
    border-radius: 10px !important;
    background: #F8FAFC !important;
    color: var(--pr-dark, #081B3B);
    font-size: 0.9rem;
    min-height: 44px;
    box-shadow: none !important;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.products-filter-input:hover {
    border-color: #CBD5E1 !important;
    background: #fff !important;
}

.products-filter-input:focus {
    border-color: var(--brand-blue-light, #0A79D7) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(10, 121, 215, 0.12) !important;
}

.products-filter-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 1.1rem;
    padding-top: 0.95rem;
    border-top: 1px solid #EEF2F7;
}

.products-filter-apply {
    background: linear-gradient(135deg, var(--brand-blue-deep, #004DAC) 0%, var(--brand-blue-light, #0A79D7) 100%);
    border: none;
    border-radius: 10px;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.92rem;
    min-height: 46px;
    width: 100%;
    transition: transform 0.15s ease, filter 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 18px rgba(0, 77, 172, 0.18);
}

.products-filter-apply:hover {
    color: #fff !important;
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.products-filter-clear {
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    background: #fff;
    color: #475569;
    font-weight: 600;
    font-size: 0.88rem;
    min-height: 42px;
    width: 100%;
}

.products-filter-clear:hover {
    border-color: #CBD5E1;
    background: #F8FAFC;
    color: var(--pr-dark, #081B3B);
}

.products-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--pr-border-color, #E2E8F0);
    color: var(--pr-dark, #081B3B);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    padding: 9px 14px;
    position: relative;
    box-shadow: 0 4px 12px rgba(8, 27, 59, 0.04);
}

.products-filter-toggle:hover,
.products-filter-toggle[aria-expanded="true"] {
    border-color: var(--brand-blue-light, #0A79D7);
    color: var(--brand-blue-deep, #004DAC);
}

.products-filter-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pr-gold, #CC932B);
    display: inline-block;
}

.products-grid .product-premium-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(8, 27, 59, 0.06);
    box-shadow: 0 8px 22px rgba(8, 27, 59, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.products-grid .product-premium-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 77, 172, 0.16);
    box-shadow: 0 14px 30px rgba(8, 27, 59, 0.08);
}

.products-empty-state {
    background: #fff;
    border: 1px dashed #D7DEE8;
    border-radius: 16px;
    padding: 2.5rem 1.25rem;
    text-align: center;
}

.products-empty-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9;
    color: #64748B;
}

.products-pagination {
    width: 100%;
}

.products-pagination > nav {
    width: 100%;
    align-items: center;
    gap: 0.75rem;
}

.products-pagination .pagination {
    margin-bottom: 0;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.products-pagination .page-item .page-link {
    border: 1px solid var(--pr-border-line, #E2E8F0);
    border-radius: 6px;
    color: #495057;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    font-size: 0.85rem;
    font-weight: 500;
    background: #fff;
    box-shadow: none;
    line-height: 1;
}

.products-pagination .page-item .page-link:hover {
    border-color: var(--pr-gold-base, #CA9127);
    color: var(--pr-gold-base, #CA9127);
    background: #fff;
    z-index: 1;
}

.products-pagination .page-item.active .page-link {
    background: var(--pr-gold-base, #CA9127);
    border-color: var(--pr-gold-base, #CA9127);
    color: #fff;
    font-weight: 600;
}

.products-pagination .page-item.disabled .page-link {
    opacity: 0.4;
    background: #EFEFEF;
    color: #495057;
    border-color: var(--pr-border-line, #E2E8F0);
    pointer-events: none;
}

.products-pagination .small.text-muted {
    margin-bottom: 0;
    color: #64748B !important;
}

/* Guard against unstyled Tailwind pagination SVGs if default view leaks through */
.products-pagination svg {
    width: 1rem;
    height: 1rem;
    max-width: 1rem;
    max-height: 1rem;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}














nav[aria-label="breadcrumb"] {
    background-color: #0A0E1A !important;
}

nav[aria-label="breadcrumb"] .breadcrumb {
    color: #E2E8F0 !important;
}

nav[aria-label="breadcrumb"] .breadcrumb-item a {
    color: #E2E8F0 !important;
    text-decoration: none !important;
}

nav[aria-label="breadcrumb"] .breadcrumb-item a:hover {
    color: var(--gold-color) !important;
}


nav[aria-label="breadcrumb"] .breadcrumb-item.active {
    color: #E2E8F0 !important;
}

nav[aria-label="breadcrumb"] .breadcrumb-item + .breadcrumb-item::before {
    color: #d1d5db !important;
}

/* Override Bootstrap utility classes inside breadcrumb */
nav[aria-label="breadcrumb"] .text-muted,
nav[aria-label="breadcrumb"] .text-dark {
    color: #E2E8F0 !important;
}

/* Website flash toasts (top-right, compact — never full page width) */
.site-toast-container {
    z-index: 1080 !important;
    top: 1rem !important;
    right: 1rem !important;
    left: auto !important;
    width: auto !important;
    max-width: min(380px, calc(100vw - 1.5rem)) !important;
}

.site-toast-container .toast,
.site-toast {
    width: auto !important;
    max-width: min(380px, calc(100vw - 1.5rem)) !important;
    min-width: min(280px, calc(100vw - 1.5rem));
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
    border-radius: 10px;
    overflow: hidden;
}

.site-toast .toast-body {
    font-size: 0.925rem;
    font-weight: 500;
    padding: 0.85rem 0.5rem 0.85rem 1rem;
}

.site-toast-error {
    background: #dc3545;
    color: #fff;
}

.site-toast-success {
    background: #198754;
    color: #fff;
}  

.site-toast-success .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

@media (max-width: 992px){
    .promo-card-content{
        position: relative !important;
    }
     
}
     