 :root {
            --gold: #c9a96e;
            --gold-light: #e8c98a;
            --gold-dim: rgba(201, 169, 110, 0.25);
            --cream: #faf7f2;
            --dark: #0f0d0a;
            --dark-mid: #1a1712;
            --text-light: rgba(255,255,255,0.85);
            --text-dim: rgba(255,255,255,0.5);
            --transition: 0.9s cubic-bezier(0.77, 0, 0.175, 1);
        }

.product-info-wrap{
    padding: 10px;
}
.product-item{
        border: 1px solid #da4343;
    border-radius: 15px;
    height: fit-content;
}

@media only screen and (max-width:576px){
    .nav-right-item.style-one ul {
    display: flex;
    align-items: center;
    gap: 13px;
    align-items: baseline !important;
}
}
.blog-details-content{
    display: flex;
    justify-content: center;
}
.contact-content .content {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 24px;
    border-radius: 15px;
    border: 1px solid;
}
/* ========== HERO SECTION ========== */
        .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 680px;
            overflow: hidden;
            margin-top: -25px;
        }

        /* ========== SLIDES CONTAINER ========== */
        .hero-slides {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease;
            pointer-events: none;
        }

        .hero-slide.active {
            opacity: 1;
            pointer-events: all;
        }

        /* Full bleed image */
        .hero-slide__image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transform: scale(1.08);
            transition: transform 6s ease-out;
            filter: brightness(0.70);
        }

        .hero-slide.active .hero-slide__image {
            transform: scale(1);
        }

        /* Multi-layer overlay for depth */
        .hero-slide__overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                    105deg,
                    rgba(10, 8, 5, 0.82) 0%,
                    rgba(10, 8, 5, 0.45) 50%,
                    rgba(10, 8, 5, 0.15) 100%
                ),
                linear-gradient(
                    to top,
                    rgba(10, 8, 5, 0.75) 0%,
                    transparent 55%
                );
        }

        /* Decorative grain */
        .hero-slide__overlay::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            opacity: 0.35;
            pointer-events: none;
        }

        /* ========== HERO CONTENT ========== */
        .hero-container {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            padding: 0 7vw;
            z-index: 10;
        }

        .hero-content-wrap {
            max-width: 640px;
            width: 100%;
        }

        /* Tag line */
        .hero-tagline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(22px);
            transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
        }

        .active .hero-tagline {
            opacity: 1;
            transform: translateY(0);
        }

        .tagline-line {
            display: block;
            width: 36px;
            height: 1px;
            background: var(--gold);
        }

        .tagline-text {
         
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: #fff;
        }

        /* Title */
        .hero-title {
          
            font-size: 40px;
            font-weight: 300;
            line-height: 1.05;
            color:#fff;
            margin-bottom: 26px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease 0.55s, transform 0.8s ease 0.55s;
        }

        .active .hero-title {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-title em {
            font-style: italic;
            color: var(--gold-light);
        }

        /* Decorative divider */
        .hero-divider {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 22px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s ease 0.75s, transform 0.7s ease 0.75s;
        }

        .active .hero-divider {
            opacity: 1;
            transform: translateY(0);
        }

        .divider-line {
            height: 1px;
            width: 50px;
            background: linear-gradient(to right, var(--gold), transparent);
        }

        .divider-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--gold);
        }

        /* Description */
        .hero-description {
            font-size: 15px;
            font-weight: 300;
            line-height: 1.8;
            color: #fff;
            max-width: 480px;
            margin-bottom: 42px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s ease 0.9s, transform 0.7s ease 0.9s;
        }

        .active .hero-description {
            opacity: 1;
            transform: translateY(0);
        }

        /* CTA Buttons */
        .hero-actions {
            display: flex;
            align-items: center;
            gap: 28px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s ease 1.05s, transform 0.7s ease 1.05s;
        }

        .active .hero-actions {
            opacity: 1;
            transform: translateY(0);
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 36px;
            background: var(--gold);
            color:#fff;
       
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: color 0.4s ease, box-shadow 0.4s ease;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--dark);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
        }

        .btn-primary:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .btn-primary:hover {
            color: var(--gold);
            box-shadow: 0 0 0 1px var(--gold);
        }

        .btn-primary span {
            position: relative;
            z-index: 1;
        }

        .btn-primary .arrow {
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .btn-primary:hover .arrow {
            transform: translateX(4px);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color:#fff;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .btn-ghost:hover {
            color: var(--cream);
        }

        .btn-ghost svg {
            transition: transform 0.3s ease;
        }

        .btn-ghost:hover svg {
            transform: translateX(4px);
        }

        /* ========== SLIDE NUMBER / PROGRESS ========== */
        .hero-nav {
            position: absolute;
            right: 5vw;
            bottom: 50%;
            transform: translateY(50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            z-index: 20;
        }

        .nav-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--text-dim);
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
            border: none;
            padding: 0;
        }

        .nav-dot.active {
            background: var(--gold);
            transform: scale(1.5);
        }

        /* ========== BOTTOM BAR ========== */
        .hero-bottom-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 7vw;
            z-index: 20;
            border-top: 1px solid rgba(255,255,255,0.08);
            background: linear-gradient(to top, rgba(10,8,5,0.6), transparent);
        }

        .slide-counter {
            display: flex;
            align-items: baseline;
            gap: 6px;
        }

        .counter-current {
           
            font-size: 36px;
            font-weight: 300;
            color: var(--gold);
            line-height: 1;
        }

        .counter-sep {
            font-size: 12px;
            color: var(--text-dim);
            letter-spacing: 0.1em;
        }

        .counter-total {
            font-size: 14px;
            color: var(--text-dim);
            font-weight: 300;
        }

        /* Progress bar */
        .hero-progress {
            flex: 1;
            max-width: 280px;
            margin: 0 40px;
        }

        .progress-track {
            width: 100%;
            height: 1px;
            background: rgba(255,255,255,0.12);
            position: relative;
            overflow: hidden;
        }

        .progress-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: var(--gold);
            width: 0%;
            transition: width 0.1s linear;
        }

        /* Scroll cue */
        .scroll-cue {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-dim);
            font-size: 10px;
            letter-spacing: 0.25em;
            text-transform: uppercase;
        }

        .scroll-line {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
        }

        .scroll-line span {
            display: block;
            width: 1px;
            height: 28px;
            background: var(--text-dim);
            position: relative;
            overflow: hidden;
        }

        .scroll-line span::after {
            content: '';
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gold);
            animation: scrollDown 1.8s ease-in-out infinite;
        }

        @keyframes scrollDown {
            0% { top: -100%; }
            100% { top: 100%; }
        }

        /* ========== DECORATIVE CORNER FRAME ========== */
        .corner-frame {
            position: absolute;
            width: 60px;
            height: 60px;
            z-index: 15;
            pointer-events: none;
        }

        .corner-frame.tl { top: 28px; left: 28px; border-top: 1px solid var(--gold-dim); border-left: 1px solid var(--gold-dim); }
        .corner-frame.tr { top: 28px; right: 28px; border-top: 1px solid var(--gold-dim); border-right: 1px solid var(--gold-dim); }
        .corner-frame.bl { bottom: 80px; left: 28px; border-bottom: 1px solid var(--gold-dim); border-left: 1px solid var(--gold-dim); }
        .corner-frame.br { bottom: 80px; right: 28px; border-bottom: 1px solid var(--gold-dim); border-right: 1px solid var(--gold-dim); }

        /* ========== PREV/NEXT ARROWS ========== */
        .hero-arrows {
            position: absolute;
            bottom: 72px;
            right: 7vw;
            display: flex;
            gap: 12px;
            z-index: 20;
        }

        .arrow-btn {
            width: 46px;
            height: 46px;
            border: 1px solid rgba(255,255,255,0.15);
            background: transparent;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: border-color 0.3s, background 0.3s, color 0.3s;
        }

        .arrow-btn:hover {
            border-color: var(--gold);
            background: var(--gold);
            color: var(--dark);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            .hero-container { padding: 0 6vw; align-items: flex-end; padding-bottom: 130px; }
            .hero-nav { display: none; }
            .hero-title { font-size: clamp(38px, 10vw, 56px); }
            .corner-frame.tr, .corner-frame.br { display: none; }
            .hero-progress { display: none; }
            .hero-arrows { right: 6vw; }
        }

        @media (max-width: 480px) {
            .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
            .btn-ghost { display: none; }
        }

        .breadcrumb-link li a{
            color: #fff !important;
        }
      /*===============================================================
   SHREE VARI STORAGE SYSTEMS — Premium Background Design System
   Brand Colors:
     Primary Red   : #cc0d39
     Dark Navy     : #13172b
     Gold/Yellow   : #feeb9d (header accent)
     Orange        : #f7941f (secondary)
================================================================*/

/* ─── 1. CSS CUSTOM PROPERTIES ──────────────────────────────── */
:root {
  --vari-red       : #cc0d39;
  --vari-red-dark  : #a00a2d;
  --vari-red-light : #f5e0e5;
  --vari-navy      : #13172b;
  --vari-navy-mid  : #1e2440;
  --vari-gold      : #feeb9d;
  --vari-orange    : #f7941f;
  --vari-white     : #ffffff;
  --vari-off-white : #fdf9f6;
  --vari-gray-light: #f4f5f7;
  --vari-gray      : #e8eaed;
  --vari-text      : #5e626f;

  /* Mesh gradient stops */
  --mesh-1: rgba(204, 13, 57, 0.06);
  --mesh-2: rgba(19, 23, 43, 0.04);
  --mesh-3: rgba(247, 148, 31, 0.05);
  --mesh-4: rgba(254, 235, 157, 0.30);
}


/* ═══════════════════════════════════════════════════════════════
   2. SITE-WIDE BODY BACKGROUND
   Subtle warm off-white with a very soft geometric pattern
══════════════════════════════════════════════════════════════ */
body {
  background-color: var(--vari-off-white);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(204,13,57,0.08) 1px, transparent 0);
  background-size: 28px 28px;
}


/* ═══════════════════════════════════════════════════════════════
   3. HEADER TOP BAR  (replaces plain #feeb9d)
══════════════════════════════════════════════════════════════ */
.header-top {
  background: linear-gradient(
    90deg,
    #fde68a 0%,
    #feeb9d 40%,
    #fde68a 100%
  ) !important;
  border-bottom: 2px solid rgba(204, 13, 57, 0.15);
  position: relative;
  overflow: hidden;
}

/* Subtle stripe overlay on top bar */
.header-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(204, 13, 57, 0.04) 12px,
    rgba(204, 13, 57, 0.04) 14px
  );
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════════
   4. MAIN NAVIGATION BAR
══════════════════════════════════════════════════════════════ */
.header-navigation.style-one {
  background: var(--vari-white) !important;
  box-shadow: 0 2px 20px rgba(19, 23, 43, 0.08);
  border-bottom: 1px solid rgba(204, 13, 57, 0.10);
}

/* Sticky state gets a slightly elevated shadow */
.header-navigation.sticky {
  box-shadow: 0 4px 30px rgba(19, 23, 43, 0.14) !important;
}


/* ═══════════════════════════════════════════════════════════════
   5. HERO SECTION  —  Hero Wrapper One
══════════════════════════════════════════════════════════════ */
.hero-wrapper-one {
  background-color: var(--vari-off-white);
  background-image:
    /* Top-right warm radial glow */
    radial-gradient(ellipse 60% 50% at 90% -10%,
      rgba(254, 235, 157, 0.55) 0%,
      transparent 70%),
    /* Bottom-left red glow */
    radial-gradient(ellipse 45% 40% at -5% 105%,
      rgba(204, 13, 57, 0.12) 0%,
      transparent 65%),
    /* Centre navy depth */
    radial-gradient(ellipse 80% 80% at 50% 110%,
      rgba(19, 23, 43, 0.04) 0%,
      transparent 60%),
    /* Fine dot grid */
    radial-gradient(circle at 1px 1px, rgba(19,23,43,0.07) 1px, transparent 0);
  background-size: 100% 100%, 100% 100%, 100% 100%, 24px 24px;
  position: relative;
  overflow: hidden;
}

/* Decorative arc in hero */
.hero-wrapper-one::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(204, 13, 57, 0.10);
  pointer-events: none;
}
.hero-wrapper-one::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(204, 13, 57, 0.14);
  pointer-events: none;
}

/* Hero wrapper two */
.hero-wrapper-two {
  background: linear-gradient(
    135deg,
    #f5f0eb 0%,
    #f8f3ef 50%,
    #f5ede8 100%
  );
}


/* ═══════════════════════════════════════════════════════════════
   6. SECTION BACKGROUNDS — Alternating clean rhythm
══════════════════════════════════════════════════════════════ */

/* Light sections — subtle warm gray */
.gray-light-bg,
.main-bg {
  background-color: var(--vari-gray-light) !important;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(circle at 1px 1px, rgba(19,23,43,0.05) 1px, transparent 0);
  background-size: 100% 100%, 24px 24px;
}

/* Pure white sections */
.white-bg {
  background-color: var(--vari-white) !important;
}

/* Dark sections — navy with mesh */
.primary-dark-bg {
  background-color: var(--vari-navy) !important;
  background-image:
    radial-gradient(ellipse 60% 50% at 10% 0%,
      rgba(204, 13, 57, 0.18) 0%,
      transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 100%,
      rgba(247, 148, 31, 0.12) 0%,
      transparent 60%),
    radial-gradient(circle at 1px 1px,
      rgba(255,255,255,0.04) 1px,
      transparent 0);
  background-size: 100% 100%, 100% 100%, 30px 30px;
}


/* ═══════════════════════════════════════════════════════════════
   7. PAGE BANNER / BREADCRUMB HEADER
══════════════════════════════════════════════════════════════ */


.page-banner {
  background-image:
    linear-gradient(
      130deg,
      rgba(19, 23, 43, 0.82) 0%,
      rgba(19, 23, 43, 0.50) 55%,
      rgba(204, 13, 57, 0.25) 100%
    ),
    url(/assets/images/about.png) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}


/* ═══════════════════════════════════════════════════════════════
   8. PRODUCT / CATEGORY CARD BACKGROUNDS
══════════════════════════════════════════════════════════════ */
.product-item.style-two,
.product-item.style-one .product-thumbnail,
.iconic-box-item.style-two,
.category-item.style-two {
  background-color: var(--vari-white) !important;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-item.style-two:hover,
.iconic-box-item.style-two:hover {
  box-shadow: 0 12px 40px rgba(204, 13, 57, 0.12) !important;
  transform: translateY(-3px);
}


/* ═══════════════════════════════════════════════════════════════
   9. NEWSLETTER WRAPPER — Warm Gradient with Pattern
══════════════════════════════════════════════════════════════ */
.newsletter-section-bg,
.newsletter-wrapper {
  background: linear-gradient(
    135deg,
    #13172b 0%,
    #1e2440 50%,
    #13172b 100%
  ) !important;
  background-image:
    linear-gradient(135deg, #13172b 0%, #1e2440 50%, #13172b 100%),
    radial-gradient(ellipse 70% 70% at 0% 50%,
      rgba(204,13,57,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 100% 50%,
      rgba(254,235,157,0.12) 0%, transparent 60%) !important;
  position: relative;
}


/* ═══════════════════════════════════════════════════════════════
   10. OFFER / DEAL SECTIONS
══════════════════════════════════════════════════════════════ */
.offer-deal-wrapper {
  background: linear-gradient(
    115deg,
    #fff9fb 0%,
    #ffffff 50%,
    #fff5e8 100%
  ) !important;
  border: 2px solid rgba(204, 13, 57, 0.15) !important;
  box-shadow: 0 8px 40px rgba(204, 13, 57, 0.07);
}

.week-deal-wrapper {
  background: linear-gradient(
    135deg,
    #fff5ec 0%,
    #fff1e8 40%,
    #fff8f0 100%
  ) !important;
  position: relative;
}
.week-deal-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(204,13,57,0.06) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════════
   11. TESTIMONIAL WRAPPER
══════════════════════════════════════════════════════════════ */
.testimonial-wrapper-two {
  background: linear-gradient(
    135deg,
    #fafafa 0%,
    #f8f8f8 100%
  ) !important;
  border: 1px solid var(--vari-gray);
}

.testimonial-wrapper {
  position: relative;
}

/* Diagonal stripe accent for testimonial section */
.testimonial-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--vari-red) 0%,
    var(--vari-orange) 50%,
    var(--vari-red) 100%
  );
}


/* ═══════════════════════════════════════════════════════════════
   12. SIDEBAR WIDGETS
══════════════════════════════════════════════════════════════ */
.sidebar-widget,
.shop-sidebar-area .product-widget,
.cart-sidebar-area .cart-widget {
  background: var(--vari-white) !important;
  border: 1px solid rgba(19, 23, 43, 0.08) !important;
  box-shadow: 0 2px 16px rgba(19, 23, 43, 0.05) !important;
}

.sidebar-newsletter-widget {
  background: linear-gradient(
    145deg,
    #13172b 0%,
    #1e2440 100%
  ) !important;
  border: none !important;
}

.sidebar-banner-widget .banner-widget-content {
  background: linear-gradient(
    135deg,
    #fff5e0 0%,
    #fff9ed 100%
  ) !important;
}


/* ═══════════════════════════════════════════════════════════════
   13. SHOP FILTER BAR
══════════════════════════════════════════════════════════════ */
.shop-filter {
  background: var(--vari-white) !important;
  border: 1px solid rgba(19, 23, 43, 0.09) !important;
  box-shadow: 0 2px 12px rgba(19, 23, 43, 0.05) !important;
}


/* ═══════════════════════════════════════════════════════════════
   14. SIDEMENU (CART DRAWER)
══════════════════════════════════════════════════════════════ */
.sidemenu-wrapper-cart {
  background: var(--vari-white) !important;
  box-shadow: -8px 0 40px rgba(19, 23, 43, 0.15) !important;
  border-left: 2px solid rgba(204, 13, 57, 0.10) !important;
}


/* ═══════════════════════════════════════════════════════════════
   15. FOOTER
══════════════════════════════════════════════════════════════ */
/* .footer-bg-wrapper  {
  background-color: var(--vari-navy);
  background-image:
    radial-gradient(ellipse 70% 50% at 50% 100%,
      rgba(204, 13, 57, 0.15) 0%,
      transparent 60%),
    radial-gradient(ellipse 40% 40% at 5% 20%,
      rgba(254, 235, 157, 0.08) 0%,
      transparent 55%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(255,255,255,0.015) 30px,
      rgba(255,255,255,0.015) 31px
    );
} */
.footer-widget-area{
    
}

.copyright-area {
  background-color: rgba(0, 0, 0, 0.20);
  border-top: 1px solid rgba(204, 13, 57, 0.25) !important;
}


/* ═══════════════════════════════════════════════════════════════
   16. FEATURES / ICONIC BOXES ROW
══════════════════════════════════════════════════════════════ */
.features-wrapper {
  background: var(--vari-white) !important;
  box-shadow: 0 4px 30px rgba(19, 23, 43, 0.07) !important;
  border: 1px solid var(--vari-gray) !important;
  position: relative;
  overflow: hidden;
}

/* Red accent line at top of features bar */
.features-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--vari-red) 30%,
    var(--vari-orange) 70%,
    transparent 100%
  );
}


/* ═══════════════════════════════════════════════════════════════
   17. CONTACT & BLOG SECTIONS
══════════════════════════════════════════════════════════════ */
.contact-wrapper {
  background: var(--vari-white) !important;
  box-shadow: 0 8px 50px rgba(19, 23, 43, 0.08) !important;
  border: 1px solid rgba(204, 13, 57, 0.08) !important;
}

/* Blog post item style-three hover */
.blog-post-item.style-three:hover {
  background: linear-gradient(
    135deg,
    var(--vari-navy) 0%,
    #1e2440 100%
  ) !important;
}


/* ═══════════════════════════════════════════════════════════════
   18. CHECKOUT & CART TABLES
══════════════════════════════════════════════════════════════ */
.billing-wrapper,
.order-summary-wrapper {
  background: var(--vari-white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(19, 23, 43, 0.06);
  padding: 30px;
}


/* ═══════════════════════════════════════════════════════════════
   19. DECORATIVE HEADLINE / MARQUEE SECTION
══════════════════════════════════════════════════════════════ */
.headline-wrap.style-one {
  background: linear-gradient(
    90deg,
    var(--vari-navy) 0%,
    #1e2440 50%,
    var(--vari-navy) 100%
  );
  padding: 18px 0;
}


/* ═══════════════════════════════════════════════════════════════
   20. FLOATING ACTION BUTTONS  (phone / whatsapp)
══════════════════════════════════════════════════════════════ */
.btn-floating.phone {
  background: linear-gradient(135deg, #153b68 0%, #1a4a80 100%) !important;
  box-shadow: 0 4px 20px rgba(21, 59, 104, 0.45);
}

.btn-floating.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
}


/* ═══════════════════════════════════════════════════════════════
   21. CATEGORY TOP-SLIDER TRACK BACKGROUND
══════════════════════════════════════════════════════════════ */
.category-item.style-two {
  background: linear-gradient(
    160deg,
    #ffffff 0%,
    #fdf9f6 100%
  ) !important;
  box-shadow: 0 4px 20px rgba(19, 23, 43, 0.07);
}

.category-item.style-two:hover {
  background: linear-gradient(
    160deg,
    var(--vari-navy) 0%,
    #1e2440 100%
  ) !important;
  box-shadow: 0 8px 30px rgba(204, 13, 57, 0.18) !important;
}


/* ═══════════════════════════════════════════════════════════════
   22. PRELOADER
══════════════════════════════════════════════════════════════ */
/* .preloader {
  background: linear-gradient(
    135deg,
    var(--vari-navy) 0%,
    #1e2440 100%
  ) !important;
} */


/* ═══════════════════════════════════════════════════════════════
   23. SECTION DIVIDERS & ACCENT LINES
══════════════════════════════════════════════════════════════ */

/* Red underline on section titles */
.section-title h2 span:after {
  background: linear-gradient(
    90deg,
    var(--vari-red) 0%,
    var(--vari-orange) 100%
  ) !important;
  height: 3px !important;
  border-radius: 10px !important;
}

/* Gradient separator below sub-heading */
.sub-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--vari-red), var(--vari-orange));
  margin-top: 6px;
  border-radius: 2px;
}


/* ═══════════════════════════════════════════════════════════════
   24. BACK TO TOP BUTTON
══════════════════════════════════════════════════════════════ */
.back-to-top {
  background: linear-gradient(
    135deg,
    var(--vari-red) 0%,
    var(--vari-red-dark) 100%
  ) !important;
  box-shadow: 0 4px 20px rgba(204, 13, 57, 0.40) !important;
}


/* ═══════════════════════════════════════════════════════════════
   25. GLOBAL SECTION PADDING BACKGROUNDS
      (utility classes you can add to any section wrapper)
══════════════════════════════════════════════════════════════ */

/* Cream warm section */
.vari-bg-cream {
  background-color: #fffaf3;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(204,13,57,0.05) 1px, transparent 0);
  background-size: 20px 20px;
}

/* Navy dark section */
.vari-bg-dark {
  background-color: var(--vari-navy);
  background-image:
    radial-gradient(ellipse 60% 40% at 20% 0%,
      rgba(204,13,57,0.18) 0%, transparent 60%),
    radial-gradient(circle at 1px 1px,
      rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 100% 100%, 24px 24px;
  color: var(--vari-white);
}

/* Red gradient section */
.vari-bg-red {
  background: linear-gradient(
    135deg,
    var(--vari-red) 0%,
    var(--vari-red-dark) 100%
  );
  color: var(--vari-white);
}

/* Soft stripe section */
.vari-bg-stripe {
  background-color: var(--vari-white);
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 20px,
    rgba(204, 13, 57, 0.03) 20px,
    rgba(204, 13, 57, 0.03) 21px
  );
}

/* Gold highlight section */
.vari-bg-gold {
  background: linear-gradient(
    135deg,
    #fffbe8 0%,
    #feeb9d 100%
  );
}

/*===============================================================
   END OF SHREE VARI BACKGROUND DESIGN SYSTEM
================================================================*/
.copyright-text{
  text-align: center;
}

div:where(.swal2-icon).swal2-warning {
    border-color: #00ffe5 !important;
    color: #00ffe5 !important;
}
.form-check-input:checked {
    background-color: #d31e1f;
    border: 1px solid var(--primary-dark-color);
}

.releted-product-slider .product-price{
  display: flex;
  gap: 10px;
}