:root {
  --gray: #444;
  --red: #ff1715;
  --light-gray: #ccc;
  --shadow: 0px 0px 10px 1px var(--light-gray);
}

.uppderheader {
  background-color: #ffd213;
}

.uppderheader,
.uppderheader a {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);

}

.bg-yellow {
  background-color: var(--primarycolor) !important;
}

/* Header */
.nav-box {
  position: relative;
  border: 1px solid var(--light-gray) !important;
  border-radius: 20px;
  overflow: hidden;
}

.nav-box .nav-search {
  display: flex;
}

.nav-box .nav-search input,
.nav-box .nav-search input:is(:focus, :active, :user-invalid) {
  width: 100%;
  outline: none;
  box-shadow: none !important;
  border: none !important;
}

.nav-search button {
  border: none !important;
  padding: 11px 6px;
  margin: 0;
  background-color: #fff;
}

.nav-box .item {
  background-color: white;
  border-inline: 1px solid var(--light-gray);
  padding: 10px 20px;
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
  color: black;
}

.nav-box .item a {
  color: var(--gray);
}

.nav-box .bulk-btn {
  border-radius: 0;
  display: none;
  position: absolute;
  right: 50px;
  padding-bottom: 12px;
}

.nav-btn {
  padding: 20px;
  flex-wrap: wrap;
  display: flex;
  gap: 20px;
}

.nav-btn a {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
}

/* Below Header */
.below-header {
  padding: 20px;
  background-color: var(--primarycolor);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.below-header a {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
}

.below-header a:hover {
  color: var(--red);
}

.mobile-below-header a {
  position: relative;
  display: block;
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 12px;
  padding: 8px 12px;
  border: 1px solid #000;
  border-radius: 16px;
  font-weight: 600;
}

/* Homepage */
.banner {
  margin-top: 20px;
  position: relative;
}

.banner img {
  width: 100%;
}

.banner-btns a {
  display: inline-block;
  margin: 5px;
  padding: 10px 25px;
  background-color: var(--primarycolor);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 10px;
  transition: .4s;
}

.banner-btns a:hover {
  color: #fff !important;
  background: var(--secondary-color) !important;
  transform: translateY(-3px);
}

@media(max-width:768px) {
  .banner-btns a {
    margin: 5px;
    padding: 4px 10px;
  }

  .banner .banner-btns {
    bottom: 2px;
    left: 2px;
  }
}

.marquee {
  width: 100%;
  /* Full width */
  overflow: hidden;
  /* Hide overflow */
  white-space: nowrap;
  /* Prevent text wrap */
  box-sizing: border-box;
  background-color: var(--light-gray);
  padding: 10px;
}

.marquee span {
  display: inline-block;
  padding-left: 100px;
  /* Start outside the screen */
  animation: marquee 5s linear infinite;
  font-size: 25px;
  font-weight: bold;
  color: #000;
}

/* Animation */
@keyframes marquee {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

/* why-choose-us */
.why-choose-us {
  text-align: center;
  border-bottom: 3px solid var(--light-gray);
  margin-bottom: 20px;
}

.why-choose-us h2 {
  display: inline-block;
  position: relative;
  font-size: 32px;
  font-weight: bold;
  color: black;
  cursor: default;
}

.why-choose-us h2:hover {
  color: black;
}

.why-choose-us h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  /* gap from text */
  width: 100%;
  height: 4px;
  /* thickness of underline */
  background: linear-gradient(to right, var(--primarycolor), white);
  border-radius: 2px;
  /* smooth edges */
}

.why-choose-us h2:hover::after {
  background: linear-gradient(to right, var(--red), white);
}

.why-choose-us .box {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  /* adjust width */
  margin: 50px auto;
  /* center on page */
  text-align: center;
}

.why-choose-us .box .grid-box {
  background: #444;
  color: var(--primarycolor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  font-weight: 600;
}

.why-choose-us .box .grid-box img {
  width: 100%;
  height: 250px;
}

.why-choose-us .box .yellow {
  background-color: var(--primarycolor) !important;
  color: var(--secondary-color);
}

.why-choose-us .over-text {
  position: absolute;
  display: none;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  top: 228px;
  opacity: 0.2;
  width: 100%;
}

.why-choose-us .over-text h3 {
  font-size: 35px;
}

@media(max-width:768px) {
  .why-choose-us .box {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    /* adjust width */
    margin: 50px auto;
    /* center on page */
    text-align: center;
  }
}

/* Categories */
.categories {
  background-color: var(--light-gray);
  padding: 20px;
}

/* Title styling */
.category-section .title {
  position: relative;
  margin-top: 20px;
  margin-bottom: 50px;
  text-align: center;
  color: var(--gray);
  border-bottom: 3px solid #999;
  display: flex;
  justify-content: center;
}

.categories .title h2 {
  position: absolute;
  padding: 10px;
  color: #777;
  background-color: var(--light-gray);
  top: -30px;
}

/* Horizontal scroller */


.categories .scroller:active {
  cursor: grabbing;
  /* when dragging */
}

.categories .scroller::-webkit-scrollbar {
  height: 0px;
}

/* Items */

.scroller .item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
}


/* Testimonial */
.testimonial {
  margin-top: 50px;
  background-color: var(--light-gray);
  /* padding: 50px; */
}

.testimonial .title {
  position: relative;
  margin-top: 20px;
  margin-bottom: 50px;
  text-align: center;
  color: var(--gray);
  border-bottom: 3px solid #999;
  display: flex;
  justify-content: center;
}

.testimonial .title h2 {
  position: absolute;
  padding: 10px;
  color: #000;
  background-color: var(--light-gray);
  top: -30px;
}

.testimonial .card-container .owl-item {
  padding: 26px;
}

.testimonial .card-container {
  margin-top: 70px;
  /*display: flex;*/
  /*justify-content: space-around;*/
  /*align-items: center;*/
  /*flex-wrap: wrap;*/
}

.testimonial .card {
  position: relative;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-bottom: 3rem;
}

/* Ribbon */
.testimonial .ribbon {
  position: absolute;
  top: -20px;
  left: -25px;
  width: 200px;
  height: 50px;
  background: #ffc400;
  border-top-right-radius: 25px;
}

/* Folded shadow */
.testimonial .ribbon::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 24px;
  height: 30px;
  background: #b38600;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

/* Profile image */
.testimonial .profile {
  position: absolute;
  top: -20px;
  right: 10px;
  min-width: 70px;
  width: 70px !important;
  height: 70px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Content */
.testimonial .content {
  margin-top: 40px;
}

.testimonial .content h3 {
  margin: 0;
  font-size: 20px;
  color: #333;
}

.testimonial .content p {
  margin: 5px 0;
  color: #000;
  font-size: 14px;
}

.testimonial .content .desc {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.4;
}

/* Showcase */
.showcase {
  position: relative;
  background: url("../img/home/083d8de7f23957b81280329817c03e3c3273d140.png");
  background-size: 100% 50%;
  background-repeat: no-repeat;
  background-position: top;
}

.showcase .show-imgs {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  top: 20%;
  width: 100%;
}

.showcase .show-imgs img {
  background: #fff;
  margin-bottom: 1rem;
  width: 300px;
  box-shadow: 0px 0px 10px 1px var(--gray);
  transition: all 0.5s ease;
  border-radius: 10px;
}

.showcase .show-imgs img:hover {
  transform: scale(1.1);
}


.shop-filter {
  position: sticky;
  top: 2rem;
}

.shop-filter .accordion-button:not(.collapsed) {
  background: #ffd213 !important;
}

.shop-filter .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem #ffce004a;
}

.shop-filter .checkbox-wrapper
{
  user-select: none;
} 
.shop-filter .checkbox-wrapper input
{
  appearance: none;
}
.shop-filter .checkbox-wrapper label{
  cursor: pointer;
  position: relative;
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 8px;
}
.shop-filter .checkbox-wrapper span
{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 20px;
  width: 20px;
  height: 20px;
  transition: .4s;
  border: 2px solid #ffc400;
}
.shop-filter .checkbox-wrapper span::before
{
  position: absolute;
  content: '✓';
  color: #fff;
}
.shop-filter .checkbox-wrapper span:has(input:checked){
  background: #ffc400;
}
.shop-filter .checkbox-wrapper span:has(input:checked)::before{
  color: #000;
}
.shop-main,
.shop-filter {
  padding: 20px;
  background-color: #eee;
}

.shop-main .grid-4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 4 equal columns */
  gap: 20px;
  /* space between cells */
  align-items: start;
  /* align content inside cells */
}

.shop-main .grid-4 .item {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  padding-bottom: 10px;
  align-self: stretch !important;
}

.shop-main .grid-4 .item h5 {
  padding: 0 12px;
  text-align: center;
}

@media(max-width:768px) {
  .shop-main .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-main .grid-4 .item h5 {
    font-size: 12px;
  }
}

.shop-main .item img {
  height: 200px;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.shop-main .item .review {
  display: flex;
  flex-wrap: wrap;
  padding: 0 12px;
  justify-content: space-around;
  align-items: center;
  gap: 5px;
}

.shop-main .item .stars {
  font-size: 10px;
  color: var(--primarycolor);
}

.shop-main .item a {
  width: 90%;
  background-color: var(--primarycolor);
  color: var(--secondary-color);
  text-align: center;
  padding: 5px;
}

/* Contact */
.contact-body {
  background-color: #eee;
  text-align: center;
  position: relative;
}

.contact-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-title img {
  width: 35px;
  margin-bottom: 30px;
}

.contact-title .text {
  text-shadow: 0px 0px 20px var(--primarycolor);
}

.contact-para {
  font-size: 18px;
  padding: 20px;
}

.contact-body form {
  text-align: left;
  background-color: #fff;
  padding: 40px;
  padding-bottom: 200px;
  border-radius: 20px;
}

.contact-body form input,
.contact-body form textarea {
  border: 1px solid var(--light-gray) !important;
  background-color: var(--light-gray);
  border-radius: 10px;
}

.contact-body .icons {
  position: absolute;
  right: 30px;
  bottom: 100px;
}

.contact-body .icons img {
  width: 60px;
}

.contact-cards {
  padding: 20px;
  background-color: #eee;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-cards .card {
  width: 300px;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 20px;
  padding: 5px;
  border-radius: 35px;
  background-color: var(--light-gray);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.contact-cards .card a {
  color: var(--secondary-color);
}

.contact-cards .card i {
  background-color: #fff;
  font-size: 25px;
  padding: 10px;
  border-radius: 50%;
  color: var(--primarycolor);
}

/* Product Page */
.single-product .grid-responsive .product-img {
  box-shadow: var(--shadow);
  border-radius: 20px;
  overflow: hidden;
}

.single-product .grid-responsive .product-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
  padding: 4px;
}

.single-product .reviews {
  display: flex;
  font-size: 15px;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.single-product .reviews .stars {
  color: var(--primarycolor);
}

.single-product p {
  color: var(--gray);
  font-size: 14px;
}

.single-product .color-options {
  display: flex;
  margin: 10px 0;
  gap: 10px;
}

.single-product .color-options div {
  width: 20px;
  height: 20px;
  background-color: var(--bg-color);
  border-radius: 50%;
  padding: 10px;
  border: 2px solid #fff;
  outline: 1px solid var(--secondary-color);
}

.single-product .tags {
  display: flex;
  gap: 10px;
}

.single-product .tags p {
  padding: 5px;
  margin: 5px 0;
  border: 1px solid var(--light-gray);
  border-radius: 10px;
}

.single-product .social-icons {
  margin: 10px 0;
}

.single-product .social-icons i {
  font-size: 20px;
  margin: 10px;
  padding: 10px;
  border-radius: 50%;
  background-color: var(--light-gray);
}

.single-product .price {
  font-size: 25px;
  margin: 10px 0;
}

.single-product .quantity {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

.single-product .quantity .counter {
  color: var(--secondary-color);
  background-color: var(--light-gray);
  padding: 2px 10px;
  border-radius: 5px;
}

.single-product .quantity .counter a {
  color: var(--secondary-color);
  padding: 0 5px;
}

.single-product .quantity .counter a:hover {
  color: #eee;
}

.single-product .quantity .act-btn button {
  background-color: var(--primarycolor);
  padding: 7px 10px;
  color: var(--secondary-color);
  border-radius: 5px;
  transition: all 0.5s ease;
}

.single-product .quantity .act-btn button:hover {
  background-color: var(--red);
  color: white;
}

.single-product .points {
  margin: 50px 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single-product .points div {
  width: 100px;
  text-align: center;
}

.single-product .points div i {
  color: var(--primarycolor);
  font-size: 25px;
}

.single-product .product-info-card {
  display: flex;
  justify-content: start;
  align-items: baseline;
  padding: 10px;
  border-top: 4px solid var(--primarycolor);
  box-shadow: var(--shadow);
  border-radius: 10px;
  margin: 20px 0;
}

.product-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  /* better than scroll (hides when not needed) */
  overflow-y: hidden;
  /* avoid accidental vertical scroll */
  padding-bottom: 10px;
  /* so scrollbar doesn’t overlap content */
  user-select: none;
}

.product-slider img {
      width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
}

.product-slider .item {
  text-align: center;
}

@media (max-width: 680px) {
  .grid-responsive {
    grid-template-columns: 1fr;
    /* stack to single column on small screens */
  }
}














/* Footer */
.footer-above {
  margin-top: 2px;
  /* display: flex; */
  /* justify-content: space-between; */
  /* padding: 50px; */
  background-color: var(--primarycolor);
  color: var(--secondary-color);
}

.footer-div div {
  display: flex;
  flex-direction: column;
}

.footer-above .footer-div a {
  color: var(--secondary-color) !important;
}

footer img {
  width: 100px;
}

.payment-accepted {
  flex-direction: row !important;
  gap: 4px;
  flex-wrap: wrap;
}

.payment-accepted img {
  width: 60px;
  aspect-ratio: 2;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  margin-bottom: 4px;
}