:root {
	--white: #fff;
	--gray: #808080;
	--primary: #863A20;
  --secondary: #B68150;
	--success: #00A827;
	--info: #36b9cc;
	--warning: #E29A00;
	--danger: #E00000;
	--light: #ACACAC;
  --light-dark: #EEE1D5;
	--dark: #2B2B2B;
	--border-color: #CCC; 
	--bg-light: #FFF5ED;
  --bg-dark :#D9D9D9;
	--bb-gray: #CCC;
  --light-gray: #DEDEDE;
	--light-primary: #E9E3D5;
  --section-space: 0 0 4.5rem 0;
  --section-space-mobile: 0 0 3.75rem 0;
  --product-space: 1rem 0.75rem;
  --heading-bottom: 3.625rem;
  --heading-bottom-mobile:2.75rem;
  --light-radius: 0.75rem;
  --border-radius: 2.75rem;
}

* {
    padding: 0;
    margin: 0;
    box-shadow: none;
  }
  *,
  ::after,
  ::before {
      box-sizing: border-box
  }

body{
    position: relative;
    min-height: 100%;
    overflow-x: hidden;
    font-family: "DM Sans", sans-serif !important;
    text-rendering: optimizeLegibility;
}

/* Hide number input spinner arrows */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

h1{
    font-size: 5.625rem !important;
    font-weight: 700 !important;
    line-height: 5.625rem !important;
    /* text-transform: uppercase; */
}
h2{
    font-size: 4rem !important;
    font-weight: 700 !important;
    line-height: 4.85rem !important;
    margin-bottom: 0 !important;
}
h4{
    font-size: 3rem !important;
    font-weight: 700 !important;
    line-height: 3.6rem !important;
    margin: 0 !important;
    text-wrap: balance;
}
h5{
  font-size: 1.125rem !important;
  line-height: 1.62rem !important;
}
h6{
    font-size: 1.875rem !important;  
    font-weight: 600 !important;
    line-height: 2.1rem !important;
    color: var(--secondary);
}
p{
    font-size: 1.25rem !important;
    font-weight: 500;
    color: var(--gray);
    line-height: 1.75rem !important;
}
a{text-decoration: none !important;}


small{
    font-size: 0.9375rem !important;
    line-height: 1.25rem !important;
    font-weight: 400;
    color: var(--gray);
    text-wrap: balance;
    display: block;
}

.fw-700{font-weight: 700 !important;}
.fw-600{font-weight: 600 !important;}
.fw-500{font-weight: 500 !important;}
.fw-400{font-weight: 400 !important;}
.fw-300{font-weight: 300 !important;}

.primary{color: var(--primary) !important;}
.secondary{color: var(--secondary) !important;}
.white{color: var(--white) !important;}
.dark{color: var(--dark) !important;}
.warning{color: var(--warning) !important;}


.annonucement-bar{
   position: relative;
    text-align: center;
    padding: 0.75rem;
    overflow: hidden;
    background: transparent;
}
.annonucement-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 0;
  background: var(--primary);
  transform: translateX(-50%);
  animation: expandFromCenter 1s ease-out forwards;
  z-index: -1;
}

.annonucement-bar small {
    position: relative;
    z-index: 2;
    color: var(--white);
    opacity: 0;
    animation: fadeInText 0.8s ease-in forwards 0.5s;
}

@keyframes expandFromCenter {
  0% {
    width: 0;
    opacity: 0.8;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes fadeInText {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-image{
    position: relative;
    height: 100%;
    width: 100%;
}

.home-header .navbar-brand .logo{filter: brightness(0) invert(1) ;}
.home-header.sticky-header .navbar-brand .logo{filter: none ;}

.hero-image::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0) 76.15%);
    z-index: 2;
}
.hero-buttons { display: flex; gap: 1rem;}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(100vh + 55px);
    color: var(--white);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    
}
.banner-section .owl-nav {
  position: absolute;
  bottom: 60px;
  left: 158px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 20;
}

.banner-section .owl-nav .owl-next,.owl-nav .owl-prev{
  background: transparent !important;
  border: 1px solid var(--white) !important;
  color: var(--white) !important;
  border-radius: var(--border-radius) !important;
  width: 35px;
  height: 35px;
  line-height: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.06) !important;
  margin: 0 !important;
}
.banner-section .owl-nav .owl-next span,.owl-nav .owl-prev span{font-size: 18px;}
.banner-section .owl-nav .owl-prev{order: 0;}
.banner-section .owl-nav .owl-next{order: 2;}
.banner-section .owl-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.06) !important;
    border: 1.5px solid var(--white);
    border-radius: var(--border-radius) !important;
    padding: 6px 14px;
    height: 35px;
    width: 110px;
    order: 1;
    margin: 0 !important;
}
.owl-prev,
.owl-next {
  transition: transform 0.15s linear;
}

.owl-prev .material-symbols-outlined,
.owl-next .material-symbols-outlined {
  transition: transform 0.15s linear;
}

.owl-prev:hover,
.owl-next:hover {
  transform: translateY(-2px);
}

.owl-prev:hover .material-symbols-outlined {
  transform: translateX(-3px);
}

.owl-next:hover .material-symbols-outlined {
  transform: translateX(3px);
}
.banner-section .owl-dots > button {background: transparent !important;}
.banner-section .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  background: var(--white) !important;
  border-radius: var(--border-radius) !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
  opacity: 0.5;
}
.banner-section .owl-dot{margin: 0 !important;}
.banner-section .owl-dot.active span { background: var(--white) !important;width: 32px !important;opacity: 1;}

img.loader{height: 200px;}

/* --------- buttons start ---------*/

.btn {
    display: inline-block;
    padding: 0.75rem 1.625rem !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 40px !important;
    transition: all 0.2s ease-in-out !important;
    cursor: pointer;
    position: relative !important;
    transition: all 0.2s ease;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  box-shadow: none !important;
}


.btn:active {
  transform: scale(0.95);
}

.btn.btn-primary {
    background: var(--primary) !important;
    color: var(--white) !important;
    box-shadow: -2px 2px 0 0 var(--secondary) !important;
}


.btn.btn-secondary{
    border: 1px solid var(--primary) !important;
    background: var(--white) !important;
    color: var(--primary) !important;
    box-shadow: -2px 2px 0 0 var(--secondary) !important;
}

.btn.btn-outline-primary{
    border: 1px solid var(--white) !important;
    background: rgba(0, 0, 0, 0.00)!important;
    color: var(--white) !important;
    box-shadow: -2px 2px 0 0 var(--white) !important;
}
.btn:hover{
    box-shadow: none !important;
}
.btn-outline-danger{
  border: 1px solid var(--danger) !important;
  color: var(--danger);
  box-shadow: -2px 2px 0 0 #ff8781  !important
}

.btn.align_middle,.align_middle{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes bagShake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

@keyframes bagBounce {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  25% { transform: translateY(-10px) rotate(-15deg) scale(1.1); }
  50% { transform: translateY(-15px) rotate(0deg) scale(1.2); }
  75% { transform: translateY(-10px) rotate(15deg) scale(1.1); }
}

.add-to-cart:hover .icon {
  display: inline-block;
  transform-origin: bottom center;
  animation: bagBounce 1.2s ease-in-out infinite, bagShake 1.2s ease-in-out infinite;
}

.btn-outline{
    background: transparent;
    border: 1px solid rgba(234, 234, 234, 0.22);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.btn-outline span.material-symbols-outlined{
    font-size: 1.825rem;
    color: var(--white) !important;
}
.btn-wrapper{
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-align{
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.cart-count {
  font-size: 0.75rem !important;
  width: 25px;
  height: 25px;
  place-content: center !important;
  font-weight: 600;
  background: var(--danger);
  color: var(--white)  !important;
  border-radius: 50%;
  text-align: center;
  top: -10px;
  right: -10px;
}

.explore-btn{position: relative;text-decoration: none;display: inline-flex;align-items: center;gap: 10px;padding: 5px;}
.explore-btn::before{
    content: '';
    border-bottom: 1px solid var(--white);
    position: absolute;
    bottom: 0;
    z-index: 2;
    width: 100%;
    right: 0;
    transition: transform 0.5s ease;
    transform-origin: left;
}
.explore-btn:hover::before {
  transform: scaleX(0); 
  transform-origin: right;
  animation: underline-grow 0.5s ease forwards;
}


@keyframes underline-grow {
  0% {
    transform: scaleX(0);
    transform-origin: right;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.explore-btn span{font-size: 18px;}

.btn-filter{color: var(--gray) !important;transition: color 0.3s ease;}
.btn-filter:hover{color: var(--dark) !important;}
.btn-filter:focus{box-shadow: none !important;}


/*---------- buttons end ------------*/


.hero-content h1{max-width: 740px;text-wrap: balance;}
.hero-content p{max-width: 600px;}
.space-align{padding: var(--section-space);}
.header-top{padding-bottom: var(--heading-bottom);}
.border.border-light{border-color: var(--border-color) !important;}
.catgry-box small{
  max-width: 200px;
  margin: auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catgry-box img{
  height: 210px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid var(--border-color);
}
.catgry-inner-box{
    width: 100%;
    display: block;
    border-radius: 50%;
    text-align: center;
    margin: auto;
    place-content: center;
}


.products-explore img{border-radius: 24px;width: 100%;height: 100%;max-height: 850px;}
.products-explore > div{padding: 40px;color: var(--white) !important;}

.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-flow: column
}
        
.product-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}
        
.product-image img {
    width: 100%;
    height: 100%;
    max-height: 225px;
    object-fit: cover;
}
        
.product-content{
    padding: var(--product-space);
    display: flex;
    flex: 1;
    flex-flow: column;
    justify-content: space-between;
}
.product-cart-box{flex-grow: 1;min-width: 0;}

        
   
.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
        
.price-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
        
.current-price {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 2rem;
  color: var(--dark);
  flex-shrink: 0;
}
        
.original-price {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.62rem;
    color: var(--danger);
    text-decoration: line-through;
    flex-shrink: 0;
}
        
.discount-badge {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.62rem;
}
        
.actions-section {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}
        
.quantity-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 0.625rem;
}
        
.quantity-btn {
    background: var(--white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: normal ;
    color: var(--gray);
    transition: background 0.2s;
    display: flex;
}
.quantity-btn span{font-size: 20px !important;}
        
 
.quantity-input {
    border: none;
    text-align: center;
    width: 50px;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
}
.quantity-input:focus{outline: none;}

.product-tag{background: var(--secondary);padding: 10px;border-radius: 10px;display: inline-block;position: absolute;top: 0;left: 0;margin: 20px;}

.actions-section .btn{
    font-size: 1.125rem !important;
    line-height: normal !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-grow: 1;
}

.about-wrapper{
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
}
.about-sideimg{height: 100%;}
.about-sideimg img{height: 100%;object-fit: cover;}
.about-wrapper::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: -50px;
    width: 250px;
    height: 250px;
    background-image: url(../images/modesticon.webp);
    background-repeat: no-repeat;
    background-size: cover;
    z-index:  1;
}
.about-modest{
    max-width: 680px;
    margin: auto 0;
    height: 100%;
    place-content: center;
    padding: 7.5rem 0 7.5rem 3.75rem;
}

.video-wrapper{position: relative;max-height: 700px;overflow: hidden;}
.video-wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.53) 0%, rgba(0, 0, 0, 0.53) 100%);
    z-index: 2;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-wrapper .vedio-innerbox{
    position: absolute;
    bottom: 0;
    z-index: 3;
    width: 100%;
}
.vedio-innerbox-text{max-width: 500px;margin-left: auto;}

.vedio-inner-head{max-width: 620px;}
.vedio-inner-head h2,.why-choose-text h2{text-wrap: balance;}

.products-banner-section{
    background-image: url(../images/products-banner.webp);
    height: calc(100dvh - 200px);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    place-content: center;
}
.products-banner-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:   linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}
.products-banner-section .section-content{position: relative;z-index: 3;max-width: 750px;margin: auto;}
h6.sub-head{font-size: 0.875rem !important;color: var(--gray);font-weight: 500 !important;line-height: 1rem !important;}
label.cus-label {
  margin-bottom: 0;
  position: absolute;
  top: -10px;
  left: 10px;
  background: var(--white);
  padding: 3px 5px;
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
}
input.form-control,.form-select {
  border: 1px solid var(--border-color) !important;
  height: 45px !important;
  border-radius: 8px !important;
  font-size: 1rem;
  font-weight: 500;
}
textarea.form-control{
  border: 1px solid var(--border-color) !important;
  border-radius: 8px !important;
  font-size: 1rem;
  font-weight: 500;
}
.form-control:focus,.form-select:focus{box-shadow: none !important;}
.input-wrapper{position: relative;}
.input-wrapper .input-icon{position: absolute;top: 12px;left: 12px;color: var(--light-gray);}
.input-wrapper input,.input-wrapper.input-wrapper select,.input-wrapper textarea{padding: 0.75rem 0.25rem 0.75rem 2.725rem !important;height: auto !important;}
.input-wrapper input::placeholder,.input-wrapper select::placeholder,.input-wrapper textarea::placeholder{color: var(--light-gray) !important;}
.input-wrapper label.error{
  position: absolute;
  font-size: 0.75rem;
  bottom: -20px;
  color: var(--danger) !important;
}
.input-wrapper.select-dropdown input{padding: 0.75rem 0.25rem 0.75rem 5.725rem !important;}
.input-wrapper .eye-icon-type{
  position: absolute;
  top: 12px;
  right: 12px;
  line-height: 0;
  color: #949494;
  cursor: pointer;
}
.input-wrapper.password-input  input{
  padding: 0.75rem 2.725rem 0.75rem 2.725rem !important;
}

.divider{
    height: 1px;
    background: var(--border-color);
    display: block;
    width: 100%;
    margin: 28px 0;
}
.form-check{margin-bottom: 0.25rem !important;}
.form-check-input{width: 1.25rem !important;height: 1.25rem !important;margin-right: 8px !important;}


.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
}

.outlet-section .outlet-carousel {
  display: flex;
  gap: 20px;
  scrollbar-width: none;
  overflow-x: auto;
  scroll-behavior: smooth;
  justify-content: start;
  width: 100%;
}

.outlet-carousel::-webkit-scrollbar {
  display: none;
}

.outlet-section .outlet-card,.outlets-container .outlet-card{
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: var(--dark);
}
.outlet-section .outlet-card {
  flex: 0 0 100%;        
  max-width: 100%;
}



.outlet-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s;
}

.outlet-card:hover .outlet-img {
  transform: scale(1.05);
}

.outlet-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  z-index: 2;
}
.carousel-btn{
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--primary-light, --bg-light);
  border-color: var(--primary, --secondary);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}


.carousel-btn .material-symbols-outlined {
  transition: transform 0.4s ease, color 0.4s ease;
  color: var(--primary, --secondary);
}

.carousel-btn.right:hover .material-symbols-outlined {
  transform: translateX(3px);
}

.carousel-btn.left:hover .material-symbols-outlined {
  transform: translateX(-3px);
}

.outlet-overlay h6{color: var(--white) !important;font-weight: 700 !important;margin: 0 !important;}

.location-btn {
  background: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.3s;
  box-shadow: -2px 2px 0 0 var(--secondary);
}
.location-btn span{
  color: var(--primary) !important;
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 28px;
}

.location-btn:hover span {
  transform: scale(1.2);
  color: var(--secondary); 
}


 /*----- products page ---- */


 .progress-container {
    position: relative;
    height: 6px !important;
    background-color: var(--bg-dark) !important;
    border-radius: 4px !important;
    cursor: pointer;
}
.progress-bar-fill {
    background-color: var(--primary) !important;
    height: 100%;
    width: 0%;
    border-radius: 5px;
}
.progress-handle {
    position: absolute;
    top: 50% !important;
    transform: translate(-50%, -50%)  !important;
    width: 20px !important;
    height: 20px !important;
    background-color: var(--primary) !important;
    border-radius: 50%;
    cursor: pointer;
}
.form-check-input:checked {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.card{
    border-color: var(--border-color) !important;
    border-radius: 25px !important;
}
body .border-bottom{border-bottom: 1px solid var(--border-color) !important;}
body .g-3 { --bs-gutter-y: 1.25rem !important;}
.card-title{
    padding: 2rem 1.25rem;
    margin-bottom: 0 !important;
}
.card-body{padding: 2rem 1.25rem !important;}
.value-display{display: flex;justify-content: space-between;}
.value-display span{font-size: 0.75rem;line-height: 1.0625rem;font-weight: 600;color: var(--primary);}
.categry-box{
    margin-bottom: .5rem;
    background-color: var(--light-dark);
    border-radius: var(--light-radius);
    place-content: center;
}
.categry-box img{
    height: 100px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.category-grid {
  display: grid;
  gap: 10px;             
  box-sizing: border-box;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.category-filter-item.active{
  border: 1px solid var(--primary);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  padding: 6px;
  border-radius: 10px;
}


label.form-check-label{font-size: 0.875rem !important;color: var(--dark) !important;font-weight: 600;line-height: 1rem !important;}

.sort-select {
  width: 180px !important;
  border-radius: var(--border-radius) !important;
  padding: 10px 20px !important;
  border: 1px solid var(--border-color) !important;
  background-image: url(../images/arrow_drop_down.png) !important;
  background-size: 10px 6px !important;
  font-weight: 600 !important;
  cursor: pointer;
}

.search-box {
  width: 280px;
  height: 45px;
}

input.search-input {
  border-radius: var(--light-radius) !important;
  background-color: #F2F4F8 !important;
  color: var(--gray);
  border: none !important;
  box-shadow: none;
  height: 45px !important;
  padding: 16px 48px !important;
}

.search-icon{
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 18px !important;
    color: var(--gray);
}

.gallery-container {
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main-image{border-radius: 20px;}

.gallery-container .main-image img {
  height: 620px;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
  border-radius: 20px;
}

.product-description{
  height: 85px;
  overflow-y: auto;
  scrollbar-width: none; 
}

.thumbnail-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}
.thumbnail-images .img-thumbnail{
  padding: 0 !important;border-radius: 20px !important;
  cursor: pointer;
  object-fit: cover;
  width: 100%;
  height: 15vw;        /* preferred flexible height */
  min-height: 100px;   /* same as clamp minimum */
  max-height: 160px;   /* same as clamp maximum */
  width: 100%;
}

.thumbnail-wrapper {
  position: relative;
}


.thumbnail-images img.active {
  border-color: var(--primary);
}

.thumbnail-wrapper button{
  position: absolute;
  background: var(--white);
  border: 1px solid  var(--border-color);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumbnail-wrapper .prev-btn{left: -15px;}
.thumbnail-wrapper .next-btn{right: -15px;}



.top-space{margin-top: 7rem}
.custom-breadcrumb {
  --bs-breadcrumb-divider: ''; 
}
.breadcrumb-item + .breadcrumb-item {
  display: flex;            
  align-items: center;   
}
.breadcrumb-item + .breadcrumb-item::before {
  content: '';
  display: inline-block;      
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--bb-gray);
  margin: 0 10px;
  vertical-align: middle;   
  flex-shrink: 0;               
}
a:hover {
  color: inherit !important;
}

.breadcrumb-item a{font-size: 1.375rem;font-weight: 600;color:var(--light)}
.breadcrumb-item.active{font-size: 1.375rem;font-weight: 600;color:var(--primary) !important}
.back-btn{display: inline-flex;align-items: center;}
.back-btn a{line-height: 0;}

.product-details-box .card{border: 1px solid var(--border-color) !important;padding: 24px !important;}
.shipping-icon{
  background: #F6F6F6;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.shipping-icon span{color: var(--primary);font-size: 28px !important;}
.product-details-box  .price-section{padding: 1rem 0;}
.product-details-box .current-price{
  font-size: 2.125rem;  
  line-height: 3.0625rem;
}
.product-details-box .quantity-control,.product-details-box .btn.btn-primary{
  padding: 1.15rem 2.5rem !important;
}

.cart-item{
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
}
.cart-item-img{max-height: 200px;height: 100%;}
.cart-item-img img{ width: 100%;object-fit: cover;height: 100%;}
.cart-item-inner{
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-item .delete-btn{
    background: #F6F6F6 !important;
    border: none !important;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cart-item .delete-btn:hover span.material-symbols-outlined{color: var(--danger);}
.cart-item .quantity-control{min-width: 180px;padding: 1rem;}
.address-tip{
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #e7e7e7;
  margin-bottom: 1.25rem;
}
.address-tip small{
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px solid var(--warning);
  border-radius: 6px;
  background: #ffffe1;
  font-size: 0.875rem !important;
}

.danger{color: var(--danger) !important;}



.modal-content{
  overflow: hidden;
  border-radius: 18px !important;
  border: none !important;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.12) !important;
}
.form-container{
  padding: 2.5rem;
}
.form-container .mb-3{margin-bottom: 1.25rem !important;}

.profile-container .form-container{
  border: 1px solid var(--border-color);
  border-radius: 20px;
}
.btn-remove{
  box-shadow: none;
  background: var(--danger);
  border: none;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.btn-remove span{font-size: 18px;}
.img-thumbnail {
  border: 1px solid var(--border-color);
}
div:where(.swal2-icon).swal2-question {
  border-color: var(--danger) !important;
  color: var(--danger) !important;
}
div:where(.swal2-container) h2:where(.swal2-title){
  font-size: 2.75rem !important;
  font-weight: 700 !important;
  padding-top: 20px !important;
  line-height: normal !important;
  font-family: "DM Sans", sans-serif !important;
  color: var(--dark) !important;
}
div:where(.swal2-container) div:where(.swal2-html-container){text-wrap: balance;}
div:where(.swal2-container) div:where(.swal2-popup){
  border-radius: 24px !important;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px !important;
}
.swal2-actions > button{min-width: 11rem !important;border-radius: 40px !important;padding: 0.75rem 1.625rem !important;}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm){
  background: var(--primary)  !important;
  box-shadow: -2px 2px 0 0 var(--secondary) !important;
  border: 1px solid var(--primary) !important;
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel){
  background: var(--white)  !important;
  box-shadow: -2px 2px 0 0 var(--secondary) !important;
  color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
}
.modal-content  .btn-close{
  background-image: none !important;
  background: #F2F2F2;
  z-index: 2;
  right: 16px;
  top: 16px;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.modal-content  .btn-close span{font-size: 28px;}
.modal-content  .btn-close:focus{box-shadow: none !important;}

p.f20{
  font-size: 1.125rem !important;
  line-height: 1.62rem !important;
}
.signup-img{
  height: 890px !important;
  object-fit: cover;
}

 /*----- checkout method ------*/

.payment-method{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 34px;
}
.payment-method .checkbox-text{
  font-size: 1.375rem !important;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.875rem !important;
}
.checkout-box img{
  height: 120px;
  width: 120px;
  object-fit: cover;
  border-radius: 12px
}
.checkout-box{
  display: flex;
  align-items: center;
  gap: 12px;
}
.checkout-text{
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}


/* Hero Section */

.profile-hero {
  background: url(../images/profilebg.webp) no-repeat center / cover;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
  z-index: -1;
}
                
.profile-hero-content {
  position: relative;
  z-index: 1;
}
        
.profile-avatar-large {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin: 0 auto 1.5rem;
}
.profile-avatar-large img{
  height: 120px;
  width: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-container {
  margin-top: -2rem;
}
        

/* Sidebar */

.profile-container .profile-nav {
    position: sticky;
    top: 6rem;
}

.profile-container .nav-pills {
    background: var(--white);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem 1.25rem;
    box-shadow: 0 10px 50px rgba(134, 58, 32, 0.1);
    border: none;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.profile-container .nav-pills .nav-link {
    color: var(--gray);
    border-radius: 16px;
    padding: 1.1rem 1.5rem;
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.profile-container .nav-pills .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleY(0);
    transition: transform 0.3s;
}

.profile-container .nav-pills .nav-link i {
    margin-right: 1.1rem;
    font-size: 1.35rem;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.profile-container .nav-pills .nav-link:hover {
    background: linear-gradient(135deg, rgba(134, 58, 32, 0.08), rgba(182, 129, 80, 0.08));
    color: var(--primary);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(134, 58, 32, 0.12);
}

.profile-container .nav-pills .nav-link:hover::before {
    transform: scaleY(1);
}

.profile-container .nav-pills .nav-link:hover i {
    transform: scale(1.15) rotate(5deg);
}

.profile-container .nav-pills .nav-link.active {
    background: var(--primary) !important;
    color:  var(--white) !important;
    transform: translateX(8px) scale(1.02);
    border-color: transparent;
    border-radius: 8px;
}
.profile-container .nav-pills .nav-link.active:hover{
  color: va;
}


.profile-container .nav-pills .nav-link.active span {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.profile-container .nav-pills .nav-link.logout {
    color: var(--danger);
    margin-top: 2rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--border-color);
    font-weight: 600;
}

.profile-container .nav-pills .nav-link.logout::before {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.profile-container .nav-pills .nav-link.logout:hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(200, 35, 51, 0.1));
    color: var(--danger);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
    .profile-nav {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
}


.profile-container .card{
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
  transition: all 0.3s;
  margin-bottom: 2rem;
  border: none !important;
}
     

/* order */



.profile-container .order-card {
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 12px;
  transition: all .3s ease;
}

     
/* Header Section */

.profile-container .order-header {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}
        
.profile-container .order-number {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--dark);
  margin-bottom: 4px;
}
        
.profile-container .order-date {
  font-size: 14px;
  color: var(--gray);
  font-weight: 400;
}
        
.profile-container .collapse-toggle {
  background: none;
  border: none;
  padding: 4px;
  transition: transform 0.3s ease;
}
.profile-container .collapse-toggle span{transition: transform 0.3s ease-in-out;}
        
.profile-container .collapse-toggle[aria-expanded="true"] span {
  transform: rotate(180deg);
  transition: transform 0.3s ease-in-out !important;
}

/* Order Details Section */

.profile-container .order-details {
  padding-top: 20px;
}
        
.profile-container .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.profile-container  .detail-label {
  font-size: 16px;
  color: var(--gray);
  font-weight: 500;
}
        
.profile-container .detail-value {
  font-size: 16px;
  color: var(--dark);
  font-weight: 600;
}
        
      
.profile-container .pricing-section {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-color);
}
.profile-container .price-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 10px;
}
        
.profile-container .price-label {
  font-size: 16px;
  color: var(--gray);
  font-weight: 400;
}
.profile-container span.bg-success{background-color: var(--success) !important;}
        
.profile-container  .price-value {
  font-size: 16px;
  color: var(--gray);
  font-weight: 500;
}
        
.profile-container .grand-total-row {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--border-color);
}
        
.profile-container  .grand-total-label {
  font-size: 18px;
  color: var(--dark);
  font-weight: 700;
}
.profile-container .collapse {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.profile-container .collapse.show{
  max-height: 1000px; 
  opacity: 1;
  transform: translateY(0);
}
        
.grand-total-value {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 700;
}

.profile-container .product-card {
    background: #f8f9fa;
    border: 1px solid var(--border-color) !important;
    border-radius: 10px;
    padding: 20px;
    margin-top: 24px;
    transition: all .3s ease;
}
        
.profile-container .product-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
        
.profile-container .product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
        
.profile-container .delivery-date {
  font-size: 13px;
  color: var(--gray);
}
        
.profile-container .product-details-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}
        
.profile-container .product-detail-item {
    text-align: center;
}
        
.profile-container .product-detail-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
        
.profile-container .product-detail-value {
  font-size: 16px;
  color: var(--dark);
  font-weight: 600;
}
  
        
/* Address Cards */

.address-text {
 font-size: 16px !important;
 color: var(--gray);
 line-height: 1.6;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.address-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.address-card span.material-symbols-outlined{font-size: 20px;}
.address-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.address-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 10px 30px rgba(134, 58, 32, 0.15);
  transform: translateY(-5px);
}

.address-card:hover::before {
  transform: scaleX(1);
}

.address-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}
      
.icon-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.icon-option {
  flex: 1;
  min-width: 120px;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.icon-option input[type="radio"] {
  display: none;
}

.icon-option:hover {
  border-color: var(--primary);
  background: rgba(134, 58, 32, 0.05);
}

.icon-option input[type="radio"]:checked + label {
 color: var(--primary);
}

.icon-option input[type="radio"]:checked ~ .icon-option {
  border-color: var(--primary);
  background: rgba(134, 58, 32, 0.1);
}

.icon-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.address-type-selector {
  display: flex;
  gap: 12px;
}

.type-btn {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border-color);
  background: var(--white);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  color: var(--dark);
}

.type-btn:hover {
  border-color: var(--primary);
  background: rgba(134, 58, 32, 0.05);
}

.type-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}    

.success-page .success-icon {
  box-shadow: 0 4px 15px rgba(0, 168, 39, 0.2);
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: scaleRotate 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s both;
}

@keyframes scaleRotate {
  0% {
      transform: scale(0) rotate(-180deg);
      opacity: 0;
      }
  100% {
      transform: scale(1) rotate(0deg);
      opacity: 1;
      }
    }

  
 .success-boxheader h4 {
    animation: slideIn 0.6s ease-out 0.6s both;
  }

  .success-boxheader p {
    opacity: 0.95;
    animation: slideIn 0.6s ease-out 0.7s both;
  }

  @keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
      }
    100% {
          opacity: 1;
          transform: translateX(0);
        }
    }

  .receipt-actions-box { animation: bounceIn 0.6s ease-out 1s both;}

  @keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
      }
    50% {
          transform: scale(1.05);
        }
    70% {
          transform: scale(0.9);
        }
    100% {
          opacity: 1;
          transform: scale(1);
        }
  }
.success-page .success-icon .material-symbols-outlined {
  font-size: 40px;
  color: var(--success);
}
        
.success-page .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease;
}
.success-page .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
        
.success-page .card-header {
  background-color: var(--white);
  border-bottom: 2px solid var(--light-dark);
  padding: 1.25rem;
  border-radius: 12px 12px 0 0 !important;
}
         
.success-page .order-number {
  background: #f8fafc;
  border: 2px dashed #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.success-page .order-number p{
  font-size: 0.875rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.success-page .order-number h4{
  font-size: 2rem !important;
  color: var(--dark) !important;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: 'Courier New', monospace;
}
.success-page .info-label {
  color: var(--gray);
  font-size: 0.875rem !important;
  font-weight: 500;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
        
.success-page .info-value {
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem !important;
}
        
.success-page .product-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}
        
.success-page .summary-row {
  padding: 0.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
        
.success-page .summary-row:not(:last-child) {
  border-bottom: 1px solid var(--light-dark);
}
        
.success-page .total-row {
  background: linear-gradient(135deg, var(--light-dark) 0%, #f5ebe0 100%);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}
.success-page .success-boxtop{
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  overflow: hidden;
  /* padding: 2rem; */
}
.success-boxheader{
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 30px;
  text-align: center;
  animation: fadeIn 0.8s ease-out 0.2s both;
}
 @keyframes fadeIn {
    0% {
        opacity: 0;
      }
    100% {
        opacity: 1;
      }
    }
.success-boxcontent{padding: 30px; animation: fadeInUp 0.6s ease-out 0.8s both;}


@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(20px);
    }
  100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

        
.success-page .badge-success {
  background-color: var(--success);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-weight: 300;
  font-size: 0.875rem !important;
}
        
.success-page .divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  margin: 1.5rem 0;
}
        
.success-page h5 {
  color: var(--dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.25rem !important;
}
        
.success-page .material-symbols-outlined {
  font-size: 26px;
  vertical-align: middle;
}


.min-width-0{min-width: 0;}


/*----- outlets --------*/

.outlets-banner-section{
    background-image: url(../images/outlets-banner.webp);
    height: calc(100dvh - 100px);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    place-content: center;
}
.outlets-banner-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:   linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}
.outlets-banner-section .section-content{position: relative;z-index: 3;max-width: 750px;margin: auto;}
.outlets-banner-section h1{max-width:29.375rem;margin: auto;}


/* Profile Image Upload Styles */
.crte-bsness-top-banner-img {
    width: 128px;
    height: 128px;
    margin: auto;
    position: relative;
}
.crte-bsness-top-banner-img img{
  width: 128px;
  height: 128px;
  object-fit: cover;
}
.crte-bsness-top-banner-img.prf-hide {
    overflow: hidden;
    border-radius: 50%;
}
.crte-bsness-top-banner-img a.upload-cntrl-sec {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 28px;
    border-radius: 0%;
    color: #fff !important;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    right: 0px;
    text-decoration: none;
    transition: background 0.3s ease;
}
.crte-bsness-top-banner-img a.upload-cntrl-sec:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #fff !important;
}
.category-slide a {
  display: block;
}
.category-slider-empty {
  text-align: center;
}
.outlet-section {
  position: relative;
}
.category-slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.category-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: none;
  justify-content: start;
  gap: 20px;
}
.category-slider-track::-webkit-scrollbar {
  display: none;
}
.category-slide {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  flex-shrink: 0;
}
.category-filter-item {
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 143px;
}

.user-profile-img{height: 40px;width: 40px;object-fit: cover;border-radius: 50%;}
.receipt-actions-box > a{
  border: 1px solid var(--primary) !important;
  min-width: 160px;
  border-radius: 10px !important;
}
.receipt-actions-box > a:hover{border-color: var(--secondary);}
.custom-select-option.selected{color: var(--primary) !important;background-color: var(--bg-light) !important;}

/* About-page */


.testimonial-section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
  gap: 30px;
}

.testimonial-card {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  opacity: 0.5;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1.05);
}

.testimonial-inner {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #c47a3c;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-name {
  font-weight: 600;
  margin-top: 10px;
  font-size: 1.1rem;
}

.testimonial-text {
  color: #555;
  font-size: 0.95rem;
}

.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.arrow-btn:hover {
  background: #c47a3c;
  color: #fff;
}

.arrow-left { left: 20px; }
.arrow-right { right: 20px; }

section.page-top {
    padding-top: 9rem;
}
.inner-page-nav .navbar-nav .nav-link {
  color: var(--dark);
}
.inner-page-nav  .navbar-nav .nav-link::after {
  background-color: var(--primary);
}
.inner-page-nav .btn-outline {
  background: transparent;
  border: 1px solid #CCCCCC;
}
.inner-page-nav .btn-outline span {
  color: var(--primary) !important;
}
.inner-page-nav button.btn.btn-secondary {
  background: var(--primary) !important;
  color: var(--white) !important;
}
p.hd-p {
    width: 100%;
}

/* .space-align h5 {
    font-size: 28px !important;
    line-height: normal !important;
    font-weight: 700;
    margin-bottom: 30px;
} */
section.story-sec h5 {
    max-width: 80%;
}
section.story-sec p {
    max-width: 80%;
}
.why-choose-card p {
  width: 80%;
}
.why-choose-text{max-width: 470px;}
.why-choose-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.contact-sec .card span.contact-icon {
    font-size: 30px !important;
    color: var(--primary);
}

.contact-sec .card small {
  font-size: 18px !important;
  line-height: normal !important;
}

.contact-sec h6{font-size: 1.5rem !important;}

textarea.form-control {
    border-radius: 8px;
}
.phone-input button.dropdown-toggle {
    background: var(--primary);
    color: var(--white);
    border-radius: 8px 0 0 8px;
    border: 1px solid var(--border-color);
    border-right: 0;
    padding: 0 10px;
}
.phone-input input.form-control {
    border-radius: 0 8px 8px 0 !important;
}
.contact-sec .btn.btn-primary {
  text-decoration: none !important;
}
section.contact-sec .card {
  border-color: #DEE2E6 !important;
}
.custom-select-search span.material-symbols-outlined{
    position: absolute; 
    left: 20px; 
    top: 50%;
    transform: translateY(-50%); 
    color: var(--light-gray);
}

.page-item.active .page-link {color: var(--white) !important;background-color: var(--primary) !important;border-color: var(--primary) !important;}
.page-link { color: var(--primary) !important;}
.page-link:focus{color: var(--primary) !important;box-shadow: none !important;}
/* span.material-symbols-outlined{font-size: 20px;} */


@media (min-width: 768px) and (max-width: 991px) {
.outlet-section .outlet-card {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
.outlet-section .outlet-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }
}

@media (min-width: 1200px) {
 .outlet-section .outlet-card {
    flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
  }
}


@media (max-width: 768px) {
            
  .success-page .product-image {
    width: 80px;
    height: 80px;
  }
            
  .success-page .btn {
    width: 100%;
    margin-bottom: 0.5rem;
    }
  }

@media (max-width: 1550px) and (min-width: 1199px) {
  .products-container .quantity-input{width: 30px;}
  .products-container .actions-section .btn.btn-primary{flex-shrink: 0;}

  .quantity-input {
    width: 30px;
  }

}

@media (max-width: 576px) {
  .sort-select { width: 100%;}
  .search-box {  width: 100%;}
}

@media (min-width: 768px) {
.products-row > *:not(:nth-child(3)):not(:nth-child(4)) {
  margin-bottom: 1.5rem;
}
}

@media (min-width: 992px) {
.category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (min-width: 1199px) {
.category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (min-width:1399px){
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body .px-xxl-5 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  body .ps-xxl-5 {
    padding-left: 4rem !important;
  }
  body .modal-xl {
    max-width: 1250px;
  }
}

@media (min-width:1700px){
  .quantity-control{min-width: 150px;}
}


@media (max-width: 1399.98px) { 
 
  h1{ font-size: 4.6875rem !important;line-height:4.6875rem !important;}
  h2{font-size: 3.75rem !important;line-height: 4.5rem !important; }
  h4 {font-size: 2.25rem !important;line-height: 2.7rem !important; }
  h6{font-size: 1.625rem !important;line-height: 1.75rem !important;}
  p{font-size: 1.25rem !important;line-height: 1.875rem !important;}
  .products-explore img {max-height: 100%;object-fit: cover;}
  .video-wrapper {max-height: 650px;}
  /* .catgry-box img { max-width: 130px; height: 130px;} */
  .banner-section .owl-nav { left: 118px;}
  .left-image img{ height: 550px;object-fit: cover;}
  .cart-item .quantity-control {min-width: 140px;}
  .checkout-box img {height: 100px;width: 100px; }
  .payment-method{gap: 20px;flex-wrap: wrap;}
  .contact-sec .card-body p{text-wrap: balance;}
  .current-price {font-size: 1.375rem;line-height: 1.98rem;}
 }

 @media (max-width: 1199.98px) { 
  h2{font-size: 3.5rem !important;line-height: 4.4rem !important;}
  .about-modest {padding: 5.5rem 1.75rem;}

  .original-price,.discount-badge {font-size: 1rem;line-height: 1.44rem;}
  .cart-item-img { max-height: 270px; height: 100%;}
  .categry-box img { height: 150px;}

}

@media (max-width: 991.98px) { 
  .space-align{padding: var(--section-space-mobile);}
  .header-top {padding-bottom:var(--heading-bottom-mobile); }
  .vedio-innerbox-text { max-width: 700px;margin-left: inherit;}
  .banner-section .owl-nav { left: 110px;}
  .products-wrapper .product-content { padding: 1rem;}
  .product-details-box .price-section {padding: 2rem 0;}
  .product-details-box .current-price {font-size: 1.875rem;line-height: 2.5625rem;}
  .product-details-box .quantity-control, .product-details-box .btn.btn-primary { padding: 0.85rem 1rem !important;}
  .profile-nav {position: relative; top: 0; margin-bottom: 2rem;}
  .payment-method .checkbox-text {font-size: 1rem !important;}
  section.story-sec h5,section.story-sec p{margin: auto;}
  .about-sideimg img{width: 100%;}
  .why-choose-card{text-align: center;}
  .why-choose-text,.why-choose-card p{margin: auto;}
  .product-image img {  max-height: 280px;}
  img.loader {height: 120px;}

}

     
@media (max-width: 767.98px) { 

  h1{ font-size: 3.75rem !important;line-height:3.75rem !important;}
  h2 {font-size: 2.75rem !important; line-height: 3.3rem !important;}
  h4 {font-size: 2rem !important; line-height: 2.375rem !important;}
  h6 {font-size: 1.5rem !important;line-height: 1.68rem !important;}
  p { font-size: 1.125rem !important;line-height: 1.6875rem !important; }
  .about-modest {  padding: 3.5rem 1.75rem;}
  .about-wrapper::before { width: 180px;height: 180px;}
  .video-wrapper {max-height: 600px;}
  .thumbnail-wrapper .prev-btn {left: 0;}
  .thumbnail-wrapper .next-btn {right: 0;}
  .breadcrumb-item a,.breadcrumb-item.active {font-size: 1.25rem;}
  .products-row > div {margin-bottom: 1.5rem;}
  .products-row > div:last-child {margin-bottom: 0;}
  .cart-item .delete-btn {  height: 40px;width: 40px;}
  .delete-btn span{font-size: 20px;}
  .main-image img {height: 425px;}
  section.story-sec h5, section.story-sec p{max-width: 100%;}
  .contact-sec .card span.contact-icon {font-size: 28px !important;}

}


 @media (max-width: 575.98px) {

  h2 {font-size: 2.375rem !important;line-height: 3rem !important;}
  h6 { font-size: 1.375rem !important;line-height: 1.8rem !important;}
  .btn-outline span {font-size: 1.375rem;}
  .btn-outline{height: 40px;width: 40px;}
  .btn{font-size:0.9375rem !important; padding: 0.625rem 1.25rem !important;line-height: normal !important;}
  .product-card .actions-section .btn.btn-primary {font-size: 1rem !important;}
  .breadcrumb-item a,.breadcrumb-item.active {font-size: 1rem;}
  .product-details-box .price-section {padding: 1rem 0 2rem;}
  .location-btn {width: 40px;height: 40px;}
  .location-btn span{font-size: 24px;}
  .video-wrapper .vedio-innerbox{width: auto;}
  .about-modest {  padding: 2.5rem 1rem;}
  .video-wrapper .ratio{min-height: 400px;}
  .form-container { padding: 1rem;}
  .input-wrapper label.error {font-size: 0.65rem;}
  .modal-content .btn-close { right: 10px;top: 10px;height: 25px; width: 25px; }
  .btn-outline span.material-symbols-outlined {font-size: 1.5rem;}
  .checkout-box img { height: 80px;width: 80px;}
  .profile-container .grand-total-label,.profile-container .price-label,.profile-container .price-value,.profile-container .detail-value,.profile-container .detail-label {font-size: 0.875rem;}
  .grand-total-value,.profile-container .order-number{font-size: 1rem !important;}
  .profile-container .order-card{padding: 20px;}
  .profile-container .product-card{padding: 12px;}
  .categry-box img { height: 120px;}
  .cart-count {width: 20px;height: 20px;top: -5px;right: -5px;}
  .card-body { padding: 1.5rem 1rem !important;}
  .success-page .card-header{padding: 1rem;}
  .profile-container .product-detail-item {text-align: end;}
  .product-image img {max-height: 250px;}
  .product-details-box .align_middle{justify-content: center;}
  .price-group{flex-wrap: wrap;gap: 5px;}
  .success-page .success-icon .material-symbols-outlined{font-size: 36px;}
  .success-boxheader h4{font-size: 1.875rem !important;}
  .success-boxheader p{font-size: 1rem !important;}

}

    @media (min-width: 768px) {
        .category-slide {
          flex: 0 0 calc(50% - 10px) !important;
          max-width: calc(50% - 10px) !important;
        }
    }
    @media (min-width: 992px) {
        .category-slide {
            flex: 0 0 calc(33.33333333% - 14px) !important;
            max-width: calc(33.33333333% - 14px) !important;
        }
    }
    @media (min-width: 1400px) {
        .category-slide {
            flex: 0 0 calc(16.6667% - 17px) !important;
            max-width: calc(16.6667% - 17px) !important;
        }
    }

/* Policy Pages */
.policy-content p.fw-700 {
    font-weight: 700;
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 0.625rem;
}
.policy-content p {
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.policy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}
.policy-content ul li {
    font-size: 1.25rem !important;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.25rem;
    line-height: 1.75rem;
}
.policy-content a {
    color: var(--primary);
    text-decoration: underline !important;
}
