/* ════════════════════════════════════════════
   THEME TOKENS
════════════════════════════════════════════ */
:root {
    --plum: #2d1b4e;
    --plum-mid: #3d1a47;
    --plum-soft: #5a2769;
    --gold: #c9a96e;
    --gold-light: #e2c99a;
    --cream: #faf7f4;
    --blush: #f4ede7;
    --sand: #ede3d9;
    --warm-gray: #c8b8ae;
    --ink: #2d1b4e;
    --ink-2: #4a3535;
    --ink-3: #8a7570;
    --pill: 100px;
    --card: 14px;
    --ease: cubic-bezier(.22, .68, 0, 1.2);
}

h1,
.h1 {
    font-size: 3.6rem !important;
}

/* ════════════════════════════════════════════
   ABOUT PAGE FIXES
════════════════════════════════════════════ */
.team-style-05 img {
    aspect-ratio: 1 / 1.25;
    object-fit: cover !important;
    width: 100% !important;
    height: auto !important;
}

.about-intro-img {
    aspect-ratio: 1 / 1;
    object-fit: cover !important;
    width: 100% !important;
    border-radius: 12px;
}

.designer-section-img {
    aspect-ratio: 1 / 1.1;
    object-fit: cover !important;
    width: 100% !important;
    border-radius: 12px;
}

@media (max-width: 767px) {

    .team-style-05 img,
    .about-intro-img,
    .designer-section-img {
        aspect-ratio: auto;
    }
}

/* ════════════════════════════════════════════
   SHOP & FILTER UI/UX
════════════════════════════════════════════ */
.shop-sidebar {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.shop-filter li {
    margin-bottom: 12px;
}

.shop-filter li a {
    display: flex;
    align-items: center;
    color: var(--ink-2);
    transition: all 0.3s ease;
}

.shop-filter li a:hover {
    color: var(--plum);
    padding-left: 5px;
}

.product-cb {
    width: 18px;
    height: 18px;
    border: 1px solid var(--warm-gray);
    display: inline-block;
    margin-right: 12px;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.product-color-cb {
    border-radius: 50%;
    width: 22px;
    height: 22px;
    border: none;
}

.product-fabric-cb {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--sand);
}

.product-fabric-cb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag-cloud a {
    background: var(--blush);
    color: var(--ink-2);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    margin-right: 6px;
    margin-bottom: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background: var(--plum);
    color: #fff;
    transform: translateY(-2px);
}

.shop-modern .grid-item {
    display: flex !important;
    height: auto !important;
}

/* ════════════════════════════════════════════
   LUXURY PRODUCT CARDS
════════════════════════════════════════════ */
.shop-box {
    background: #fff;
    padding: 0;
    /* Remove padding for edge-to-edge feel */
    border-radius: 14px;
    transition: all 0.4s var(--ease);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.shop-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    /* Align with box edges */
    aspect-ratio: 1 / 1.15;
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.shop-box:hover .shop-image img {
    transform: scale(1.1) rotate(1deg);
}

/* Add to Cart Button Animation */
.shop-buttons-wrap {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    z-index: 10;
}

.shop-box:hover .shop-buttons-wrap {
    bottom: 20px;
    opacity: 1;
}

.shop-buttons-wrap .btn {
    width: 100%;
    backdrop-filter: blur(10px);
    background: rgba(45, 27, 78, 0.85);
    border: none;
    border-radius: 12px;
}

/* Badges Styling */
.lable {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.lable.new {
    background: #5a2769;
    color: #fff;
}

.lable.luxury {
    background: #c9a96e;
    color: #fff;
}

.lable.premium {
    background: var(--plum);
    color: #fff;
}

/* Shop Footer / Details */
.shop-footer {
    padding: 20px;
    margin-top: auto;
    background: #fff;
    z-index: 5;
}

.shop-footer a {
    color: var(--ink);
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.shop-footer a:hover {
    color: var(--gold);
}

.price {
    font-size: 16px;
    font-weight: 500;
    color: var(--plum-soft);
}

.price del {
    color: var(--warm-gray);
    margin-right: 10px;
    font-weight: 300;
}

/* Hover Effects Overlay */
.shop-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(45, 27, 78, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.shop-box:hover::after {
    opacity: 1;
}

.shop-box:hover {
    box-shadow: 0 20px 40px rgba(45, 27, 78, 0.1);
    transform: translateY(-8px);
}

/* Quick View / Wishlist Icons */
.shop-hover {
    position: absolute;
    top: 15px;
    right: -50px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    z-index: 10;
}

.shop-box:hover .shop-hover {
    right: 15px;
}

.shop-hover ul li a {
    background: #fff !important;
    color: var(--plum) !important;
    transition: all 0.3s ease;
}

.shop-hover ul li a:hover {
    background: var(--plum) !important;
    color: #fff !important;
}

/* Pagination */
.pagination-style-01 .page-item .page-link {
    width: 40px;
    height: 40px;
    line-height: 38px;
    padding: 0;
    text-align: center;
    border-radius: 50% !important;
    margin: 0 5px;
    border: 1px solid var(--sand);
    color: var(--ink-2);
}

.pagination-style-01 .page-item.active .page-link {
    background: var(--plum);
    border-color: var(--plum);
    color: #fff;
}

/* ════════════════════════════════════════════
    HEADER RESPONSIVE FIXES
    ════════════════════════════════════════════ */
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    padding: 0 4px;
    z-index: 5;
    border: 1.5px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.opacity-3 {
    opacity: 0.3;
}

@media (min-width: 992px) and (max-width: 1250px) {
    .header-icon .icon>a {
        padding-left: 10px !important;
    }
    .navbar .navbar-nav .nav-link {
        padding: 30px 12px !important;
        font-size: 16px !important;
    }
    .widget-text.icon a.btn {
        padding: 8px 15px !important;
        font-size: 12px !important;
    }
}

/* ════════════════════════════════════════════
   SWEETALERT2 CART TOAST STYLING (PERFECT FIT)
════════════════════════════════════════════ */
.swal2-container.swal2-top-end, 
.swal2-container.swal2-top-right {
    top: 15px !important;
    right: 15px !important;
    z-index: 99999 !important;
}

.swal2-popup.swal2-toast.adhvikaa-cart-toast {
    background: #ffffff !important;
    border: 1px solid rgba(45, 27, 78, 0.12) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
    padding: 14px 16px !important;
    width: 350px !important;
    max-width: calc(100vw - 30px) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    margin: 0 !important;
}

.swal2-popup.swal2-toast.adhvikaa-cart-toast .swal2-icon {
    margin: 0 10px 0 0 !important;
    width: 24px !important;
    height: 24px !important;
}

.swal2-popup.swal2-toast.adhvikaa-cart-toast .swal2-icon .swal2-icon-content {
    font-size: 16px !important;
}

.swal2-popup.swal2-toast.adhvikaa-cart-toast .swal2-title {
    color: #2d1b4e !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin: 0 0 2px 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
}

.swal2-popup.swal2-toast.adhvikaa-cart-toast .swal2-html-container {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 12px !important;
    color: #555555 !important;
    text-align: left !important;
    overflow: visible !important;
}

.swal2-toast-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.swal2-toast-body {
    font-size: 12px;
    line-height: 1.35;
    color: #666666;
}

.swal2-toast-body strong {
    color: #2d1b4e;
    font-weight: 700;
}

.swal2-toast-action-btns {
    display: flex;
    gap: 6px;
    margin-top: 4px;
    align-items: center;
}

.swal2-toast-action-btns .btn-continue {
    background: #f4f4f7;
    color: #2d1b4e;
    border: 1px solid #e2e2e8;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.swal2-toast-action-btns .btn-continue:hover {
    background: #e6e6ee;
    color: #2d1b4e;
}

.swal2-toast-action-btns .btn-view-cart {
    background: #2d1b4e;
    color: #ffffff !important;
    border: none;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.swal2-toast-action-btns .btn-view-cart:hover {
    background: #7400a6;
    color: #ffffff !important;
}

.swal2-popup.swal2-toast.adhvikaa-cart-toast .swal2-timer-progress-bar {
    background: #7400a6 !important;
    height: 3px !important;
}

@media (max-width: 576px) {
    .swal2-popup.swal2-toast.adhvikaa-cart-toast {
        width: calc(100vw - 20px) !important;
        max-width: 340px !important;
    }
}

/* ════════════════════════════════════════════
   HEADER & NAVBAR COMPONENT STYLES
════════════════════════════════════════════ */
.btn.btn-dark-gray:hover,
.btn.btn-dark-gray:active {
  background-color: white;
  border-color: var(--dark-gray);
  color: var(--dark-gray) !important;
}

.navbar-nav .nav-link {
  white-space: nowrap;
  padding: 10px 12px !important;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-gray);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--base-color, #7400a6) !important;
}

.header-icon a {
  color: var(--dark-gray);
  font-size: 18px;
  transition: color 0.3s ease;
}

.header-icon a:hover {
  color: var(--base-color, #7400a6);
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
  }
}

/* ════════════════════════════════════════════
   HOME & CATALOG REUSABLE UTILITIES
════════════════════════════════════════════ */
.adhvikaa-category-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.category-box:hover .adhvikaa-category-hover {
    opacity: 1;
    pointer-events: auto;
}

.lh-1-2 { line-height: 1.15; }
.min-w-150px { min-width: 150px; }
.max-w-550px { max-width: 550px; }
.ls-1px { letter-spacing: 1px; }
.ls-1-5px { letter-spacing: 1.5px; }
.w-160px { width: 160px; }
.max-w-400px { max-width: 400px; }
.mt-40px { margin-top: 40px !important; }
.h-45px { height: 45px !important; }
.ps-45px { padding-left: 45px !important; }
.start-15px { left: 15px !important; }
.border-radius-20px { border-radius: 20px !important; }

.transition-all {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-box-shadow-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.product-image-slider img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

.product-image-thumb img {
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

/* ════════════════════════════════════════════
   OFFERS & COUPONS COMPONENT
════════════════════════════════════════════ */
.product-card-offer:hover .product-action-btns {
    opacity: 1;
    transform: translateY(-5px);
}

.hover-zoom:hover { transform: scale(1.1); }
.hover-shadow-lg:hover { box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important; }
.w-50px { width: 50px; }
.coupon-card-dashed { border-style: dashed !important; }

/* ════════════════════════════════════════════
   EVOKES VISION COMPONENT STYLES
════════════════════════════════════════════ */
.evokes-vision-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F5FF 50%, #FAF9F6 100%);
    color: #1d1d1f;
    position: relative;
    padding-top: 60px;
    padding-bottom: 80px;
    box-sizing: border-box;
}

.evokes-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(116, 0, 166, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.vision-header {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.vision-text-content { padding-top: 20px; }

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 13px;
    font-weight: 800;
    color: #7400a6;
    margin-bottom: 16px;
    background: rgba(116, 0, 166, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: #1d1d1f;
    display: block;
}

.section-subtitle {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.4;
    color: #424245;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
    font-weight: 500;
}

.content-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #515154;
    margin-bottom: 18px;
    max-width: 95%;
}

.visual-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(116, 0, 166, 0.12);
    position: relative;
    transition: all 0.6s cubic-bezier(0.2, 0, 0, 1);
    background: #f0ebf8;
    min-height: 300px;
}

.visual-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(116, 0, 166, 0.18);
}

.main-image {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 18px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #7400a6;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(116, 0, 166, 0.15);
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 80px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(116, 0, 166, 0.1);
    padding: 36px 28px;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.pillar-card:hover {
    background: #ffffff;
    border-color: rgba(116, 0, 166, 0.3);
    box-shadow: 0 25px 50px rgba(116, 0, 166, 0.1);
    transform: translateY(-6px);
}

.pillar-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #636366;
    margin-bottom: 0;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: #F2EBFF;
    color: #7400a6;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.4s ease;
}

.pillar-card:hover .pillar-icon {
    background: #7400a6;
    color: #FFFFFF;
    transform: scale(1.08) rotate(4deg);
}

.pillar-icon svg { stroke: currentColor; }

.vision-footer {
    max-width: 800px;
    margin: 0 auto;
}

.emotional-quote {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    font-weight: 500;
    color: #1d1d1f;
    line-height: 1.5;
    margin-bottom: 0;
}

.vision-signature {
    color: #7400a6;
    position: relative;
    z-index: 1;
    font-weight: 700;
    padding: 0 4px;
}

.vision-signature::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background: #E8D9FF;
    z-index: -1;
    border-radius: 3px;
    opacity: 0.8;
}

.premium-portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1d1d1f;
    color: white !important;
    padding: 16px 40px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.premium-portal-btn:hover {
    background: #7400a6;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(116, 0, 166, 0.3);
}

.premium-portal-btn .btn-icon {
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
}

.premium-portal-btn:hover .btn-icon {
    transform: translate(3px, -3px);
}

@media (max-width: 992px) {
    .vision-header {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .content-block p {
        margin-left: auto;
        margin-right: auto;
    }

    .vision-pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ════════════════════════════════════════════
   ORDER TRACKING TIMELINE STYLES
════════════════════════════════════════════ */
.tracking-timeline-luxury {
    position: relative;
    padding-left: 20px;
}

.timeline-item-luxury {
    position: relative;
    display: flex;
    padding-bottom: 40px;
}

.timeline-item-luxury:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: relative;
    flex-shrink: 0;
    width: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-dot {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    color: #ccc;
}

.marker-dot i { font-size: 14px; }

.marker-line {
    position: absolute;
    top: 36px;
    bottom: -40px;
    width: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.timeline-item-luxury.active-step .marker-dot {
    background: #f15a24;
    border-color: #f15a24;
    color: #fff;
}

.marker-line.line-active { background: #f15a24; }
.timeline-info h6 { letter-spacing: -0.3px; }

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

/* ════════════════════════════════════════════
   CART PAGE STYLES
════════════════════════════════════════════ */
.hover-translate-x-minus-5px:hover i { transform: translateX(-5px); }
.hover-translate-x-minus-5px i { transition: transform 0.3s ease; }

.cart-item-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(45, 27, 78, 0.07);
    border-radius: 18px;
    padding: 20px 24px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.cart-item-card:hover {
    box-shadow: 0 8px 32px rgba(45, 27, 78, 0.08);
    border-color: rgba(45, 27, 78, 0.15);
}

.cart-item-loading {
    opacity: 0.5;
    pointer-events: none;
}

.cart-item-img-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
}

.cart-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cart-item-img-wrap:hover .cart-item-img { transform: scale(1.08); }

.cart-item-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 27, 78, 0.10);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-item-img-wrap:hover .cart-item-img-overlay { opacity: 1; }

.cart-item-badge {
    display: inline-block;
    background: rgba(45, 27, 78, 0.08);
    color: #5a2769;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 100px;
}

.cart-remove-btn {
    background: none;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
    padding: 0;
}

.cart-remove-btn:hover {
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
}

.cart-price-group {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.cart-price-offer {
    font-size: 17px;
    font-weight: 700;
    color: #2d1b4e;
    font-family: 'Jost', sans-serif;
}

.cart-price-original {
    font-size: 13px;
    font-weight: 400;
    color: #aaa;
    text-decoration: line-through;
}

.cart-qty-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(45, 27, 78, 0.04);
    border-radius: 12px;
    padding: 4px;
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #2d1b4e;
    transition: background 0.2s ease;
    font-size: 14px;
    padding: 0;
}

.cart-qty-btn:hover:not(:disabled) {
    background: #fff;
    box-shadow: 0 2px 8px rgba(45, 27, 78, 0.1);
}

.cart-qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.cart-qty-display {
    font-size: 15px;
    font-weight: 700;
    color: #2d1b4e;
    min-width: 32px;
    text-align: center;
    font-family: 'Jost', sans-serif;
}

.cart-line-total {
    font-size: 16px;
    font-weight: 700;
    color: #2d1b4e;
    font-family: 'Jost', sans-serif;
    min-width: 80px;
    text-align: right;
}

.cart-item-loader {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
}

.cart-trust-badge {
    background: rgba(45, 27, 78, 0.03);
    border: 1px solid rgba(45, 27, 78, 0.07);
    border-radius: 14px;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #2d1b4e;
    font-family: 'Jost', sans-serif;
    line-height: 1.4;
}

.cart-trust-badge .feather {
    font-size: 18px;
    flex-shrink: 0;
    opacity: 0.7;
}

.cart-trust-badge small {
    font-size: 11px;
    font-weight: 400;
    color: #888;
    display: block;
}

.cart-summary-card {
    background: #fff;
    border: 1px solid rgba(45, 27, 78, 0.08);
    border-radius: 22px;
    padding: 28px 24px;
    position: sticky;
    top: 140px;
    box-shadow: 0 8px 40px rgba(45, 27, 78, 0.06);
}

@media (max-width: 576px) {
    .cart-item-card { padding: 16px; }
    .cart-item-img-wrap { width: 70px; height: 70px; }
    .cart-line-total { min-width: auto; }
}

.bg-purple { background-color: #7400a6; }
.bg-purple-light { background-color: rgba(116, 0, 166, 0.08); }
.border-purple { border-color: #7400a6 !important; }
.coupon-card { transition: transform 0.3s ease; }
.coupon-card:hover { transform: translateY(-5px); }
[x-cloak] { display: none !important; }

/* Category Hover Button Clean Rendering */
.adhvikaa-category-hover a {
    text-shadow: none !important;
    white-space: nowrap !important;
}
.adhvikaa-category-hover a::before,
.adhvikaa-category-hover a::after {
    content: none !important;
}