/* Montserrat for website font*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: morganite-black;
  src: url(fonts/Morganite-Black.ttf);
}

@font-face {
  font-family: morganite-bold;
  src: url(fonts/Morganite-Bold.ttf);
}

@font-face {
  font-family: morganite-semibold;
  src: url(fonts/Morganite-SemiBold.ttf);
}

@font-face {
  font-family: morganite-medium;
  src: url(fonts/Morganite-Medium.ttf);
}

@font-face {
  font-family: morganite;
  src: url(fonts/Morganite-Light.ttf);
}

@font-face {
  font-family: morganite-italic;
  src: url(../fonts/Morganite-BookItalic.ttf);
}

* {
  margin: 0px;
  padding: 0px;
}

body {
  font-family: "Montserrat", sans-serif !important;
}

/* marquee css  */

:root {
  --color-text: navy;
  --color-bg: papayawhip;
  --color-bg-accent: #ecdcc0;
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 30s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-text: papayawhip;
    --color-bg: navy;
    --color-bg-accent: #2626a0;
  }
}


.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);

}

.marquee__group {
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}


.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }

  to {
    transform: translateX(var(--scroll-end));
  }
}


/* Parent wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 100vw;
}

.wrapper--vertical {
  flex-direction: row;
  height: 100vh;
}


/* end marquee css  */

.desktop-logo {
  margin-right: 90px;
}


.desktop-icons {
  border: none;
  outline: none;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.desktop-icons:focus {
  box-shadow: none !important;
}

.custom-widthIcon {
  width: 15px !important;
}

.desktop-icons img {
  width: 18px;
}

.drpover {
  position: relative;
}

.mega-style li .dropdown-item {
  transition: 1s ease-in-out;
}

.mega-style li .dropdown-item:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.mega-style li .dropdown-item:active {
  background-color: transparent !important;
  color: black;
}

.drp_submenu {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

.drp_submenu li {
  margin: 1rem 0;
  font-size: 14px;
}

.drp_img {
  width: 100%;
  height: 300px !important;
  object-fit: contain;
  object-position: center;
  /* border-radius: 5px; */
}

.drpover.active .drp_submenu {
  opacity: 1;
  visibility: visible;
  border-radius: 0px !important;
  transform: translateY(0);
}

.navcomimg {
  height: 200px;
  object-fit: cover;
}

.mobile-fix .nav-link {
  font-size: 13px !important;
  padding: 15px 0px;
}

.collapse-fix li .dropdown-item {
  color: white !important;
  font-size: 13px;
  transition: .2s ease-in-out;
}

.collapse-fix li .dropdown-item:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.closeButton {
  opacity: 1 !important;
  margin-left: inherit !important;

}

.closeButton i {
  font-size: 29px;
}

/* cart css starts======================================================================= */
.cart-container {
  background-color: black !important;
  color: white !important;
  font-family: "Montserrat", sans-serif;
  z-index: 9999999999999999999999999999999 !important;
}

.cart-header {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 5px;
  border-bottom: .5px solid white;
}

#empty-cart {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.empty-text {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 5px;
  font-size: 12px;
}

#cart-products {
  font-family: "Montserrat", sans-serif;
}






.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.cart-item img {
  width: 90px;
  height: auto;
  object-fit: cover;
}

.cart-info {
  flex: 1;
}

.cart-info h6 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 14px;
}

.cart-info .price {
  font-size: 14px;
  font-weight: 500;
}

.cart-info .details {
  font-size: 12px;
  color: #777;
  margin-bottom: 8px;
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
}

.quantity-controls button {
  border: none;
  background: none;
  padding: 5px 10px;
  cursor: pointer;
  color: white;
}

.quantity-controls span {
  padding: 0 8px;
}

.remove-btn {
  font-size: 12px;
  color: #777;
  cursor: pointer;
  text-decoration: underline;
}

#cart-total {
  padding: 10px;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  background: white;
  color: black;
  cursor: pointer;
  border: 1px solid white;
  transition: .2s ease-in-out;
  font-family: "Montserrat", sans-serif;
}

#cart-total:hover {
  border: 1px solid white;
  color: white;
  background: transparent;
}


/* cart css ends======================================================================= */

/* FREE ALL OVER INDIA DELIVERY section -----------------------------------------------------------------------------------------------*/
.topofferstext {
  font-size: 11px;
  font-weight: 500;
  color: #000;
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

.red-strip {
  background-color: #d11717;
  color: white;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  padding: 5px 0px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}


/* tora navbar section -------------------------------------------------------------------------------------------------------------- */
.mobile-bottom-tab {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1050;
}

.mobile-bottom-tab i {
  color: white;
  font-size: 20px;
}

.cfaq {
  color: whitesmoke !important;
  font-size: 12px !important;
  text-decoration: underline !important;
  font-family: "Montserrat", sans-serif;
}

.navbar-custom {
  background-color: rgb(0, 0, 0);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

.navbar-collapse {
  text-align: center;
}

.navbaricon {
  color: whitesmoke;
  cursor: pointer;
}

.btntoggle {
  border: none !important;
  background-color: transparent !important;
  color: white !important;
  /* padding: 0px !important; */
  /* margin-right: 10px; */
}

#checkbox {
  display: none;
}

.toggle {
  position: relative;
  width: 25px;
  /* height: 35px; */
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition-duration: .5s;
}

.bars {
  width: 100%;
  height: 2px;
  background-color: whitesmoke;
  border-radius: 4px;
}

#bar2 {
  transition-duration: .8s;
}



#checkbox:checked+.toggle .bars {
  position: absolute;
  transition-duration: .5s;
}

#checkbox:checked+.toggle #bar2 {
  transform: scaleX(0);
}

#checkbox:checked+.toggle #bar1 {
  width: 100%;
  transform: rotate(45deg);
}

#checkbox:checked+.toggle #bar3 {
  width: 100%;
  transform: rotate(-45deg);
}

#checkbox:checked+.toggle {
  transform: rotate(180deg);
}

.nav-link {
  color: white !important;
  font-size: 11px !important;
  font-family: "Montserrat", sans-serif;
}

/* search bar section */
/* Optional: smooth open/close */
/* core animation styles */
/* Closed state (default) */
.search-container {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: .2s ease-in-out;
  pointer-events: none;
  background-color: black !important;
}

.search-container.open {
  /* max-height: 240px; */
  opacity: 1;
  padding-top: 1rem;
  padding-bottom: 1rem;
  pointer-events: auto;
  background-color: black !important;
}


/* Opened state */
.search-container.open {
  max-height: 240px;
  /* Fallback value; JS will adjust for content */
  opacity: 1;
  padding-top: 1rem;
  padding-bottom: 1rem;
  pointer-events: auto;
  background-color: black !important;
}


.search-container.closed {
  background-color: black !important;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}



.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-bar input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: white;
}

.desktop-icons img.search-bar-icon {
  width: 13px !important;
}

.search-bar input::placeholder {
  color: white;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 6px;

}

/* swiper home section --------------------------------------------------------------------------------------------------------------- */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* shop now button */
.custom-shop-btn {
  background-color: white;
  color: black;
  font-weight: 600;
  padding: 9px 12px;
  border: none;
  border-radius: 0;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  font-family: "Montserrat", sans-serif;
}

.custom-shop-btn:hover {
  background-color: black;
  color: white;
}

/* oversize cloth section -------------------------------------------------------------------------------------------------------------*/
.card-scroll-container {
  display: flex;
  /* overflow-x: auto; */
  gap: 10px;
  /* padding: 16px; */
  background-color: #000;
}

.card-scroll-container::-webkit-scrollbar {
  display: none;
}

.card-scroll-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.card {
  /* max-width: 386px; */
  /* flex: 1 0 auto; */
  width: 100%;
  /* height: auto !important; */
  overflow: hidden;
  border-radius: 0px !important;
  background-color: #000 !important;
}


.card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
  object-position: top;
  height: 100%;
}



.left-video-text h1 {
  font-weight: 700;
  font-family: morganite-italic;
  font-size: 80px;
  padding-left: 80px;
  margin-bottom: 0px;
  text-transform: uppercase;
  letter-spacing: 10px;
  color: white;
}

.cutome-padding {
  padding: 15px 25px !important;
}

.video-container {
  box-shadow: 0px 0px 30px red;
}

.left-video-text .culture {
  color: red;
}

.video-section video {
  border-radius: 8px;
  /* optional */
}





/* best seller section ----------------------------------------------------------------------------------------------------------------*/
.product-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.best-seller h1 {
  font-family: morganite-italic;
  letter-spacing: 6px;
  color: red;
  text-transform: uppercase;
  font-size: 80px;
  font-weight: 600;
  font-weight: bolder;
}

.image-container {
  width: 100%;
  height: 100%;
  /* max-height: 550px; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container .carousel.slide {
  width: 100%;
}

.carousel-inner .slider-image {
  height: 450px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.product-details .title {
  color: white;
  text-transform: uppercase;
  font-size: 16px;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2em;
  max-height: 2.4em;
  font-family: 'Montserrat';
}

.price-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.price-box .real-price {
  color: white;
}

.price-box .strike-price {
  color: red;
}

.color-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* product color filters */
.color-box .color-1 {
  width: 20px;
  height: 20px;
  border: 1px solid white;
  background-color: gray;
  cursor: pointer;
  outline: none;
}

.color-box .color-2 {
  width: 20px;
  height: 20px;
  border: 1px solid white;
  background-color: red;
  cursor: pointer;
  outline: none;
}

.color-box .color-3 {
  width: 20px;
  height: 20px;
  border: 1px solid white;
  background-color: blue;
  cursor: pointer;
  outline: none;
}

.color-box .color-4 {
  width: 20px;
  height: 20px;
  border: 1px solid white;
  background-color: green;
  cursor: pointer;
  outline: none;
}

/* product color filters */
/* Custom tooltip inner style */
.tooltip.custom-tooltip .tooltip-inner {
  background-color: #ffffff;
  /* Dark violet background */
  color: #000000;
  /* White text */
  font-size: 13px;
  border: 1px solid black;
  padding: 6px 10px;
  border-radius: 6px;
  text-transform: capitalize;
  font-weight: 600;
  cursor: pointer;
}

/* Responsive grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)) !important;
  gap: 8px;
}

.container-fluid.py-5.categoriesss {
  padding: 40px 15px;
}




/* follow us on insta css -------------------------------------------------------------------------------------------------------------*/
.insta-container {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
}

.insta-image-box {
  /* background-image: url(img/p-1.jpg); */
  /* width: 200px; */
  height: 100%;
  overflow: hidden;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.insta-image {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: top;
}

.overlay {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -690px;
  background-color: rgba(0, 0, 0, 0.582);
  transition: .3s ease-in-out;
}

.overlay a {
  color: white;
  text-underline-offset: 2px;
}

.overlay a p {
  text-transform: uppercase;
  color: white;
  font-size: 13px;
  text-align: center;
  text-wrap: wrap;
}

.insta-container:hover .overlay {
  position: absolute;
  bottom: 0px;

}

.add-more {
  background: transparent;
  border: none;
  outline: none;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  font-size: 20px;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}


/* if no image available then sample image show css */
.no-image {
  position: relative;
  object-fit: cover;
}



/* tora community css -----------------------------------------------------------------------------------------------------------------*/
.subscribe-box {
  background-color: #1a1a1a;
}

.community-container {
  background-color: #585858;
  padding: 130px 0px 130px 30px;
  color: white;
}

.community-container h2 {
  font-weight: 200;
  color: white;
  text-transform: uppercase;
}

.community-container h2 span {
  font-weight: 700;
}

.community-container .culture {
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 1px;
}

.community-container .info {
  font-size: 12px;
}

.subscribe-form {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 10px;
}

.community-input {
  background: transparent;
  border-bottom: 1px solid black;
  border-top: none;
  border-right: none;
  border-left: none;
  outline: none;
  width: 450px;
}

.community-input::placeholder {
  color: white;
  font-size: 12px;
}

.subscribe-btn {
  border: none;
  outline: none;
  width: 200px;
  color: white;
  background-color: #202020;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 15px 3px 10px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.community-image-box {
  max-height: 410px;
  overflow: hidden;
}

.community-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
}

/* about us section ------------------------------------------------------------------------------------------------------------------ */
.aboutus {
  padding-top: 30px;
  font-size: 16px;
  color: white;
}

/* footer text */
.footertext {
  font-size: 14px;
  color: whitesmoke;
}





.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a:hover {
  text-decoration: underline !important;
  text-underline-offset: 5px;
}


/* product page css starts======================================================================== */
/* mobile draggable slider css starts====================================== */


.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide.product {
  text-align: center !important;
  font-size: 18px !important;
  background: #444 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.swiper-slide.product img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}



/* mobile draggable slider css starts====================================== */





.zoom-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #fff; */
  width: 100%;
  /* max-height: 500px; */
  overflow: hidden;
  cursor: crosshair;
}

.zoom-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
  transform-origin: center center;
  aspect-ratio: 1.239;
}


.thumbnail-wrapper {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
}

.thumb-box {
  /* border: 1px solid #ccc; */
  /* padding: 4px; */
  transition: all 0.3s ease;
}

.thumbnail-img {
  height: 70px;
  width: 60px;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #EFEFEF;
  object-position: top;
}

.thumbnail-img.active {
  border: 1px solid #000;
  /* padding: 3px; */
  background-color: #fff;
}


.thumbnail-img:hover {
  border: 1px solid black;
  border-color: #000000;
}

.color-option {
  width: 30px;
  height: 30px;
  /* border-radius: 50%; */
  cursor: pointer;
  /* border: 2px solid transparent; */
  margin-right: 10px;
  transition: 0.3s;
}

.color-option.active,
.color-option:hover {
  border: 1px solid black;
}

.product-name p {
  color: #1c1c1c;
  text-transform: capitalize;
}

.product-color {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.color-option.active {
  outline: 2px solid black;
}

/* product color filters */

.product-color .color-1 {
  width: 30px;
  height: 30px;
  border: 1px solid white;
  background-color: gray;
  cursor: pointer;
  outline: none;
}

.product-color .color-2 {
  width: 30px;
  height: 30px;
  border: 1px solid white;
  background-color: red;
  cursor: pointer;
  outline: none;
}

.product-color .color-3 {
  width: 30px;
  height: 30px;
  border: 1px solid white;
  background-color: blue;
  cursor: pointer;
  outline: none;
}

.product-color .color-4 {
  width: 30px;
  height: 30px;
  border: 1px solid white;
  background-color: green;
  cursor: pointer;
  outline: none;
}

/* product color filters */

.heading {
  font-size: 20px;
  letter-spacing: 5px;
  color: #1c1c1c;
  text-transform: uppercase;
}

.price {
  font-size: 18px;
  color: #1c1c1cac;
  letter-spacing: 4px;
}

.colors {
  font-size: 15px;
  color: #1c1c1c;
  font-weight: 500;
}


/* size sectioni js------------------------------------------------------------------------ */
/* .size-section {
    font-family: Arial, sans-serif;
}

.size-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.size-header .label {
    font-size: 13px;
    color: #333;
}

.size-header .size-chart {
    font-size: 13px;
    color: #333;
    text-decoration: underline;
    cursor: pointer;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-btn {
    position: relative;
    padding: 8px 18px;
    font-size: 13px;
    color: #555;
    border: 1px solid #d1d1d1;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 70px;
    text-align: center;
}

.size-btn:hover:not(.unavailable) {
    border-color: #000;
}

.size-btn.active {
    border: 1px solid #000;
    color: #000;
    font-weight: 500;
}

.size-btn.unavailable {
    color: rgba(170, 170, 170, 0.8);
    cursor: not-allowed;
}

.size-btn.unavailable::before,
.size-btn.unavailable::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-top: 1px solid rgba(170, 170, 170, 0.7);
    border-bottom: 1px solid rgba(170, 170, 170, 0.7);
    pointer-events: none;
}

.size-btn.unavailable::before {
    transform: rotate(45deg);
}

.size-btn.unavailable::after {
    transform: rotate(-45deg);
} */


.size-container {
  font-family: Arial, sans-serif;
}

.size-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.size-header span {
  color: #1c1c1c;
}

.size-header a {
  font-size: 14px;
  text-decoration: underline;
  color: #1c1c1c;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-option {
  padding: 8px 16px;
  border: 1px solid #ccc;
  color: #ccc;
  /* background-color: white; */
  cursor: pointer;
  position: relative;
  font-size: 14px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.size-option:hover {
  border-color: #000;
  color: #000;
  /* background-color: #f5f5f5; */
}

/* Active state (same as hover) */
.size-option.active {
  border-color: #000;
  color: #000;
  /* background-color: #f5f5f5; */
}

/* Unavailable state with big cross */
.size-option.unavailable {
  position: relative;
  color: #aaa;
  border-color: #ccc;
  /* background-color: #f9f9f9; */
  pointer-events: none;
}

.size-option.unavailable::before {
  content: "";
  width: 85px;
  position: absolute;
  top: 18px;
  left: -8px;
  right: 0;
  bottom: 0;
  background: none;
  border-top: 1px solid #ccc;
  transform: rotate(26deg);
}

.size-option.unavailable::after {
  content: "";
  width: 85px;
  position: absolute;
  top: 18px;
  left: 0px;
  right: 0;
  bottom: 0;
  background: none;
  border-top: 1px solid #ccc;
  transform: rotate(-26deg);
}

.add-to-cart {
  border: 1px solid #1c1c1c;
  width: 100%;
  padding: 11px 0px;
  color: #1c1c1c;
  text-transform: uppercase;
  letter-spacing: 5px;
  transition: .2s ease-in-out;
}

.buy-now {
  border: 1px solid #1c1c1c;
  background-color: #1c1c1c;
  width: 100%;
  padding: 11px 0px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 5px;
  transition: .2s ease-in-out;
}

.add-to-cart:hover {
  border: 1px solid #1c1c1c;
  background-color: #1c1c1c;
  color: white;
}

.buy-now:hover {
  border: 1px solid #1c1c1c;
  background-color: transparent;
  color: #1c1c1c;
}

.name {
  color: #1c1c1c;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 15px;
}

.name .info {
  color: #1c1c1cac;
  font-weight: 400;
  text-transform: capitalize;
  padding-left: 7px;
  font-size: 13px;
}

.fabric-treatments {
  color: #1c1c1c;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 18px;
}

/* size sectioni js------------------------------------------------------------------------ */
.modal-heading {
  font-size: 18px;
  letter-spacing: 4px;
  font-family: "Montserrat", sans-serif;
}

.size-chart {
  width: 100%;
}

.size-details {
  font-size: 14px;
}

.size-Closebtn {
  position: absolute;
  top: 23px;
  right: 20px;
}

.size-Closebtn:focus {
  box-shadow: none !important;
}

.width-set {
  max-width: 600px !important;
}

.increase-index {
  z-index: 9999999999 !important;
}

/* image preview page *==============================================================/
/*  */
#image-viewer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgb(0, 0, 0);
  z-index: 9999999999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  overflow-y: hidden;
}

.image-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

#viewer-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.navigation-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  position: absolute;
  bottom: 20px;
}

.arrow-btn {
  background: #fff;
  border: none;
  font-size: 13px;
  cursor: pointer;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  transition: background 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow-btn:hover {
  background: rgb(173, 173, 173);
}

.close-btn:hover {
  background: rgb(173, 173, 173);
}

.close-btn {
  background: rgb(255, 255, 255);
  border: none;
  font-size: 15px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: background 0.3s;
}



.mini-chart {
  width: 100%;
}

/* image preview page *==============================================================/
/*  */

.faq-section {
  margin-top: 70px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 18px 0;
}

.faq-question {
  /* font-weight: 600; */
  cursor: pointer;
  color: #1c1c1c;
  letter-spacing: 3px;
  font-size: 15px;
  position: relative;
  text-transform: uppercase;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  margin-top: 30px;
  color: #444;
}

.static-details {
  position: sticky;
  top: 100px;
  /* distance from top when scrolling */
  z-index: 10;

}












/* Review box */
.review-box {
  border: 1px solid #eee;
  /* overflow: hidden; */
  background: #fff;
  /* transition: transform 0.2s ease, box-shadow 0.2s ease; */
}

.review-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.review-content {
  padding: 12px;
}

.review-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.review-date {
  font-size: 13px;
  color: #737373;
  margin-bottom: 6px;
}

/* Star system */
.star-icon {
  margin-right: 2px;
  font-size: 1rem;
  color: #1c1c1c;
}

.star-full::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f005";
  /* solid star */
  color: #1c1c1c;
  font-size: 12px;
}

.star-half::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f089";
  /* half star */
  color: #1c1c1c;
  font-size: 12px;
}

.star-empty::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  content: "\f005";
  /* regular star */
  color: #ccc;
  font-size: 12px;
}

.review-text {
  font-size: 12px;
}




/* Modal wrapper */
.review-modal {
  display: none;
  position: fixed;
  z-index: 99999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin-top: 0px !important;
  overflow: hidden !important;
}

/* Modal content */
.review-modal-content {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 600px;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  min-height: 500px;
}

/* Left section (image) */
.review-modal-image {
  position: relative;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.review-modal-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.review-thumbnails {
  display: flex;
  gap: 10px;
  /* margin: 10px 0; */
  position: absolute;
  bottom: 10px;
}

.review-thumbnails img {
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid transparent;
  object-fit: cover;
  object-position: top;
}

.review-thumbnails img.active {
  border-color: #1c1c1c;
}

/* Close button */
.review-close {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  background: #1c1c1c;
  width: 30px;
  transition: .2s ease-in-out;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}

.review-close:hover {
  background: #1c1c1ca2;
}

/* Right section (details) */
.review-modal-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-header h3 {
  margin: 0;
  font-size: 20px;
}

.review-rating {
  margin-bottom: 10px;
}

#reviewText {
  color: black;
}

.star-icon {
  font-size: 25px;
  color: #1c1c1c;
}

/* .fit-info {
    margin-top: 10px;
  }
  
  .fit-btn {
    background: #e5e7eb;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: default;
  } */

/* Responsive */


body.modal-open {
  overflow: hidden;
  height: 100vh;
}



/* rating review form css================================================================  */
/* Container */
.ratingForm-container {
  padding: 2rem;
  border-radius: 12px;
  background: #fff;
}

/* Progress Bar */
.ratingForm-progress-bar {
  height: 6px;
  background: #eee;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.ratingForm-progress {
  height: 100%;
  width: 0%;
  background: #000;
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Step Content */
.ratingForm-step {
  text-align: center;
  margin-bottom: 2rem;
}

/* Stars */
.ratingForm-stars {
  font-size: 2rem;
  cursor: pointer;
  margin: 1rem 0;
}

.ratingForm-star {
  display: inline-block;
  margin: 0 5px;
  color: #ccc;
  cursor: pointer;
}

.ratingForm-star.filled {
  color: gold;
}

.ratingForm-labels {
  display: flex;
  justify-content: space-between;
  margin-top: .5rem;
  font-size: .9rem;
  color: #666;
}

/* Upload box */
.ratingForm-upload-box {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 1.5rem;
  max-width: 400px;
  margin: 1rem auto;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ratingForm-upload-box h4 {
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Upload buttons */
.ratingForm-upload-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 0.9rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: .8rem;
  border: none;
  transition: 0.2s;
}

.ratingForm-upload-btn:hover {
  opacity: 0.85;
}

/* Navigation */
.ratingForm-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ratingForm-navigation button {
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.ratingForm-navigation .skip {
  margin-left: auto;
}

/* product page css ends======================================================================== */



.firstdiv {
  position: sticky !important;
  top: 0px;
  z-index: 99999999999999;
  background-color: white;
}

.red-strip {
  position: sticky;
  top: 18px;
  z-index: 99999999999999;
}

.navbar-custom {
  position: sticky !important;
  top: 46px;
  z-index: 99999999999999;
  border-bottom: 1px solid white;
}

.search-container {
  position: sticky;
  top: 123px;
  z-index: 99999999999999;
}

/* checkout page css starts=========================================================================== */


header {
  text-align: center;
  padding: 20px;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 4px;
  background-color: black;
  position: relative;

}

/* Sticky Cart */
.sticky-cart {
  position: sticky;
  top: 100px;
}

.desktop-icons.position {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate(-50%, -50%);
}

.express-checkout button {
  font-weight: bold;
  font-size: 16px;
}

.payment-icons {
  width: 60px;
}

.payment-icons.paypal-img {
  width: 80px !important;
}

.btn-shop {
  background-color: #313ef4 !important;
  color: #fff !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}

.btn-shop:hover {
  background-color: #2530ce !important;
}

.btn-paypal:hover {
  background-color: #daa01a !important;
}

.btn-gpay:hover {
  background-color: #292626 !important;
}

.btn-paypal {
  background: #ffc439 !important;
  color: #111 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}

.btn-gpay {
  background: #111 !important;
  color: #fff !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}

.input-group {
  position: relative;
}

.input-group input {
  width: 100%;
  padding: 9px 12px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 8px !important;
  outline: none;
  background: none;
}

.input-group label {
  position: absolute;
  left: 16px;
  top: 10px;
  color: #999;
  font-size: 13px;
  pointer-events: none;
  transition: 0.3s ease all;
}

/* When input is focused or filled */
.input-group input:focus+label,
.input-group input:valid+label {
  top: -8px;
  left: 8px;
  font-size: 12px;
  color: black;
  background: #fff;
  padding: 0 4px;
}



.input-group select {
  width: 100%;
  font-size: 12px;
  padding: 0px 12px;
  border: 1px solid #ccc;
  border-radius: 8px !important;
  outline: none;
  background: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}



/* Floating effect */
.input-group select:focus+label,
.input-group select:valid+label {
  top: -8px;
  left: 8px;
  font-size: 12px;
  color: black;
  background: #fff;
  padding: 0 4px;
}




.checkout-form input::placeholder {
  font-size: 12px;
}




.divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  background: #ccc;
  position: absolute;
  top: 50%;
  width: 45%;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.divider span {
  background: #fff;
  padding: 0 10px;
  color: #777;
  font-size: 14px;
}

.email-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.email-box span {
  background: #eee;
  border-radius: 50%;
  padding: 8px 12px;
  font-weight: bold;
}

.checkout-right {
  border-left: 1px solid #ddd;
}



/* payments */
.accordion-button:not(.collapsed),
.accordion-button:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
  background-color: transparent;
}

.accordion-button::after {
  width: 11px;
  height: 11px;
  border-radius: 100%;
  background-color: black;
  background-image: none !important;
}

.accordion-button.collapsed::after {
  background-color: var(--bs-gray-300);
}

/* Whole accordion border */
.payment-methods {
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;

}

/* Accordion item border */
.payment-methods .accordion-item {
  border-bottom: 1px solid #ccc;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}


/* Remove background color */
.payment-methods .accordion-button {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none;
  color: black;
}

/* Black border on open */
.payment-methods .accordion-button:not(.collapsed) {
  border: 1px solid #000 !important;
  /* Black border */
  border-radius: 0;
  color: black !important;
}

/* Accordion button circle (radio style) */
.payment-methods .accordion-button::after {
  display: none !important;
}

.payment-methods .accordion-button::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  flex-shrink: 0;
}

/* When accordion is open -> fill the circle */
.payment-methods .accordion-button:not(.collapsed)::before {
  background-color: #000;
  border: 1px solid #000;
  box-shadow: inset 0 0 0 3px #fff;
  /* White gap (radio effect) */
}

.static-links a {
  font-size: 12px;
}

.logout-cart {
  border: none;
  outline: none;
  background: transparent;
  appearance: none !important;
}

.logout-cart::after {
  display: none !important;
}

.logout-cart img {
  width: 20px;
}


/* checkout right section========================================= */
/* Cart Styling */
.sticky-cart {
  font-size: 14px;
}

.img-container {
  width: 60px;
  height: 60px;
}

.checkout-item {
  line-height: 1.2;
}

.checkout-cart-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Round black badge like screenshot */
.item-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #5a5a5a;
  color: #fff;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.input-group .form-control {
  border-radius: 6px 0 0 6px;
}

.input-group .btn {
  border-radius: 0 6px 6px 0;
}



/* checkout page css ends=========================================================================== */

.p-cart-header {
  text-align: center;
}

.p-cart-header h2 {
  font-weight: 600;
  letter-spacing: 2px;
}

.p-cart-header p {
  color: #6c757d;
  font-size: 0.95rem;
}

.p-cart-container {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
}

.p-cart-heading {
  background: #f8f9fa;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-bottom: 1px solid #dee2e6;
}

.p-cart-item {
  border-bottom: 1px solid #e9ecef;
  padding: 20px 15px;
}

.p-cart-item img {
  width: 100px;
  border-radius: 8px;
}

.p-cart-item-title {
  font-weight: 600;
}

.p-cart-item-price {
  font-weight: 500;
  margin: 3px 0;
}

.p-qty {
  color: black;
  font-weight: 500;
  padding: 0px 6px;
}

/* Quantity Box */
.p-quantity-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #000;
  /* border-radius: 6px; */
  overflow: hidden;
}

.p-quantity-box button {
  border: none;
  background: transparent;
  width: 36px;
  height: 36px;
  font-size: 18px;
  font-weight: bold;
}

.p-quantity-box input {
  width: 55px;
  text-align: center;
  border: none;
  outline: none;
  font-weight: 500;
}

.p-cart-total {
  font-weight: 600;
}

.p-remove-btn {
  display: block !important;
  margin-top: 5px !important;
  font-size: 0.85rem !important;
  padding: 0px !important;
}

.p-cart-footer {
  padding: 20px;
  text-align: right;
}

.p-btn-checkout {
  background: #111;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 500;
}

.p-btn-checkout:hover {
  background: #333;
  color: #fff;
}


/* All product page css starts================================================= */
.white-text-color .product-details .title {
  color: black;
}

.white-text-color .price-box .real-price {
  color: #1c1c1c;
}

/* pagination */


a:hover {
  cursor: pointer;
}

#pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

#pagination ul li {
  color: #000;
  display: flex;
}

#pagination ul li a {
  background: transparent;
  padding: 5px 10px;
  border: none;
  border-right: 0;
}

#pagination ul li.product-pagination-active a {
  border-bottom: 2px solid #000;

}


/* optional styling */
#pagination ul li.product-pagination-out-of-range a {
  background-color: transparent;
  border: none;
  cursor: default;
  color: #000;
}

/* All product page css ends================================================= */

/* search page css ================================================================ */
.search-text {
  text-transform: uppercase;
  color: black;
  letter-spacing: 5px;
  text-align: center;
}

.input-group.search input {
  border-radius: 0px !important;
}

.search-iconn {
  position: absolute;
  right: 16px;
  top: 10px;
  color: #999;
}

/* search page css ================================================================ */


/* tora story css==================================================================== */
.story-heading{
  letter-spacing: 5px;
  text-transform: uppercase;
  color: black;
  text-align: center;
}
.story{
  letter-spacing: 2px;
  line-height: 24px;
  text-transform: uppercase;
  color: black;
  font-size: 14px;
  font-weight: 500;
}
/* tora story css==================================================================== */



















/* GLOBAL MEDIA QUERY STARTS================================================================================ */


/* upto 4k super large devices */
@media (min-width: 2561px) {
  .nav-link {
    font-size: 15px !important;
  }

  .card-scroll-container {
    gap: 10px;
  }

  .custom-shop-btn {
    padding: 10px 22px;
    font-size: 15px;
  }

  /* .image-container {
        height: 750px;
    } */

  .left-video-text h1 {
    font-size: 10rem;
    padding-left: 80px;
    letter-spacing: 15px;
  }

  .product-details .title {
    font-size: 20px;
  }

  .price-box {
    font-size: 19px;
  }

  .best-seller h1 {
    font-size: 120px;
    font-weight: 800;
    letter-spacing: 10px;
  }

  /* product color filters */
  .color-box .color-1 {
    width: 25px;
    height: 25px;
  }

  .color-box .color-2 {
    width: 25px;
    height: 25px;
  }

  .color-box .color-3 {
    width: 25px;
    height: 25px;
  }

  .color-box .color-4 {
    width: 25px;
    height: 25px;
  }

  .overlay a p {
    text-transform: uppercase;
    color: white;
    font-size: 20px;
    text-align: center;
  }

  /* add row insta */
  .add-more {
    font-size: 30px;
  }

  /* foote about use section */
  .footer-about-sec p {
    font-size: 18px !important;
  }

  .footertext {
    font-size: 16px !important;
  }

  /* community section */
  .community-container {
    padding: 275px 0px 275px 30px;
  }

  .community-image-box {
    max-height: 738px;
  }

  .community-container h2 {
    font-size: 50px;
  }

  .community-container .culture {
    font-size: 20px;
  }

  .community-input::placeholder {
    font-size: 15px;
  }

  .subscribe-btn {
    width: 250px;
    padding: 9px 15px 9px 10px;
    font-size: 12px;
  }


  /* product detail page css===================================================== */
  .width-set {
    max-width: 720px !important;
  }

  /* product detail page css===================================================== */
}



/* 🔸 Styles for very large screens: 2000px to 2560px */
@media (min-width: 2000px) and (max-width: 2560px) {
  .nav-link {
    font-size: 13px !important;
  }

  .card-scroll-container {
    gap: 10px;
  }

  .custom-shop-btn {
    padding: 10px 22px;
    font-size: 15px;
  }

  /* .image-container {
        height: 750px;
    } */

  .left-video-text h1 {
    font-size: 10rem;
    padding-left: 80px;
    letter-spacing: 15px;
  }

  .product-details .title {
    font-size: 20px;
  }

  .price-box {
    font-size: 19px;
  }

  .best-seller h1 {
    font-size: 120px;
    font-weight: 800;
    letter-spacing: 10px;
  }

  /* product color filters */
  .color-box .color-1 {
    width: 25px;
    height: 25px;
  }

  .color-box .color-2 {
    width: 25px;
    height: 25px;
  }

  .color-box .color-3 {
    width: 25px;
    height: 25px;
  }

  .color-box .color-4 {
    width: 25px;
    height: 25px;
  }

  .overlay a p {
    text-transform: uppercase;
    color: white;
    font-size: 20px;
    text-align: center;
  }

  /* add row insta */
  .add-more {
    font-size: 30px;
  }

  /* foote about use section */
  .footer-about-sec p {
    font-size: 18px !important;
  }

  .footertext {
    font-size: 16px !important;
  }

  /* community section */
  .community-container {
    padding: 275px 0px 275px 30px;
  }

  .community-image-box {
    max-height: 738px;
  }

  .community-container h2 {
    font-size: 50px;
  }

  .community-container .culture {
    font-size: 20px;
  }

  .community-input::placeholder {
    font-size: 15px;
  }

  .subscribe-btn {
    width: 250px;
    padding: 9px 15px 9px 10px;
    font-size: 12px;
  }


  /* product detail page css===================================================== */
  .width-set {
    max-width: 720px !important;
  }

  /* product detail page css===================================================== */
}

/* 🔸 Styles for large screens: 1401px to 1999px */
@media (min-width: 1601px) and (max-width: 1999px) {
  .nav-link {
    font-size: 12px !important;
  }

  .best-seller h1 {
    font-size: 100px;
    font-weight: 800;
    letter-spacing: 10px;
  }

  .custom-shop-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .left-video-text h1 {
    font-size: 6rem;
    padding-left: 60px;
    letter-spacing: 15px;
  }

  /* product color filters */
  .color-box .color-1 {
    width: 22px;
    height: 22px;
  }

  .color-box .color-2 {
    width: 22px;
    height: 22px;
  }

  .color-box .color-3 {
    width: 22px;
    height: 22px;
  }

  .color-box .color-4 {
    width: 22px;
    height: 22px;
  }


  .overlay a p {
    text-transform: uppercase;
    color: white;
    font-size: 15px;
    text-align: center;
  }

  /* add row insta */
  .add-more {
    font-size: 25px;
  }

  /* foote about use section */
  .footer-about-sec p {
    font-size: 18px !important;
  }

  .footertext {
    font-size: 15px !important;
  }

  /* community section */
  .community-container {
    padding: 200px 0px 200px 30px;
  }

  .community-image-box {
    max-height: 562px;
  }

  /* .community-container h2 {
        font-size: 50px;
    }

    .community-container .culture {
        font-size: 20px;
    } */

  .community-input::placeholder {
    font-size: 15px;
  }

  .subscribe-btn {
    width: 250px;
    padding: 9px 15px 9px 10px;
    font-size: 12px;
  }

  /* product detail page css===================================================== */
  .width-set {
    max-width: 690px !important;
  }

  /* product detail page css===================================================== */

}


/* 🔸 Styles for large screens: 1401px to 1999px */
@media (min-width: 1401px) and (max-width: 1600px) {
  .nav-link {
    font-size: 13px !important;
  }

  .best-seller h1 {
    font-size: 90px;
    font-weight: 800;
  }

  /* product color filters */
  .color-box .color-1 {
    width: 22px;
    height: 22px;
  }

  .color-box .color-2 {
    width: 22px;
    height: 22px;
  }

  .color-box .color-3 {
    width: 22px;
    height: 22px;
  }

  .color-box .color-4 {
    width: 22px;
    height: 22px;
  }


  .overlay a p {
    text-transform: uppercase;
    color: white;
    font-size: 15px;
    text-align: center;
  }

  /* add row insta */
  .add-more {
    font-size: 22px;
  }

  /* product detail page css===================================================== */
  .width-set {
    max-width: 650px !important;
  }

  /* product detail page css===================================================== */

}

/* 🔸 Styles for medium screens: up to 1400px */
@media (max-width: 1400px) {}



@media only screen and (max-width: 1280px) {
  .container-fluid.py-5.categoriesss {
    padding: 25px 15px !important;
  }

  .card {
    max-width: 300px;
  }

  .left-video-text h1 {
    font-size: 59px;
    padding-left: 40px;
  }
}


@media (min-width: 1025px) {
  .insta-grid {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}

/* 4 columns for tablets */
@media (min-width: 768px) and (max-width: 1024px) {
  .insta-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}


@media screen and (max-width: 991px) {
  .faq-section.mobile {
    display: block !important;
    margin-top: 20px !important;
  }

  .faq-section.desktop {
    display: none;
  }


  .container.py-5.mobile {
    padding-top: 0px !important;
  }

  .mobile-block.d-none {
    display: block !important;
  }

  /*.zoom-container.mobile {
    display: none;
  }

  .thumbnail-wrapper.mobile {
    display: none;
  }*/

  .sticky-cart.p-0 {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px !important;
    margin-bottom: 2f0px;
  }
}

@media screen and (max-width: 900px) {
  .card {
    max-width: 225px;
    /* flex: 1 0 auto; */
    background-color: red;
  }

  .card img {
    width: 100%;
    max-width: 225px;
  }

  .card-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 5px;
    background-color: #000;
  }

  .left-video-text h1 {
    font-size: 50px;
    padding-left: 30px;
    /* padding: 30px 0px; */
  }

}

@media screen and (max-width: 768px) {
  .card {
    max-width: 250px;
    /* flex: 1 0 auto; */
  }

  .custom-width {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
  }

  .community-image {
    display: none;
    transition: 0.3s linear;
  }

  .community-input {
    width: 100% !important;
    border-bottom: 1px solid white !important;
    color: white;
  }

  .community-container {
    background-color: #585858;
    padding: 200px 0px 200px 30px;
    color: white;
  }

  .background {
    width: 100%;
    background-image:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url('../img/Join The Tora Community Image.jpg');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;

  }

  .left-video-text {
    padding-bottom: 30px;
  }

  .left-video-text h1 {
    font-size: 35px;
    padding-left: 30px;
    /* padding: 30px 0px; */
  }

  .review-modal-content {
    grid-template-columns: 1fr;
  }

  .review-thumbnails {
    justify-content: center;
  }

  .review-modal-image .main-review-img {
    min-width: 250px;
    max-width: 200px;
  }
}


/* Minimum 3 columns on small screens (≥320px) */
@media (max-width: 767px) {
  .insta-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .oneimg {
    display: none !important;
    transition: 0.3s linear;
  }

  .mobileimg {
    display: block !important;
    transition: 0.3s linear;
  }


  /* cart page css */
  .p-cart-heading {
    display: none;
    /* hide table heading on mobile */
  }

  .p-cart-item {
    text-align: left;
  }

  .p-cart-item img {
    width: 80px;
  }

  .p-cart-item .col-md-6,
  .p-cart-item .col-md-3 {
    width: 100% !important;
    flex: 0 0 100%;
    text-align: left;
    margin-bottom: 10px;
  }

  .p-cart-total {
    margin-top: 5px;
  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .image-container {
    width: 100%;
    /* height: 250px; */
  }

  .carousel-inner .slider-image {
    height: 250px;
  }

  .product-details .title {
    font-size: 13px;
  }

  .best-seller h1 {
    font-size: 40px;
    letter-spacing: 4px;
  }

  .community-container {
    padding: 90px 0px 90px 15px;
  }

  .community-input {
    width: 100%;
  }

  .community-input::placeholder {
    font-size: 15px;
  }



  .container-fluid.py-5.categoriesss {
    padding: 15px 5px !important;
  }

  .cfaq {
    display: none;
  }

  .insta-grid {
    gap: 10px;
  }

  .card {
    max-width: 150px;
    flex: 1 0 auto;
  }

  .left-video-text h1 {
    text-align: center;
  }

}


@media only screen and (max-width: 500px) {
  .left-video-text h1 {
    font-size: 30px;
    text-align: center;
    padding-left: 0px;
    /* padding: 30px 0px; */
  }
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 430px) {
  .left-video-text h1 {
    font-size: 30px;
    letter-spacing: 7px;
    text-align: center;
    padding-left: 0px;
    /* padding: 30px 0px; */
  }

  .review-modal-content {
    min-height: 400px;
  }

  #pagination ul {
    gap: 10px;
  }
}