@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
/* ---------- Theme tokens ---------- */
:root {
  --hw-accent: #b33300; /* brand accent */
  --hw-ink: #222;
  --hw-muted: #767676;
  --hw-line: rgba(0, 0, 0, 0.08);
  --hw-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  /* Thickness of the patti (height for horizontal, width for vertical) */
  --patti-thickness: 22px;
  --patti-url: url("../images/kullvipatti.png"); /* use your seamless X-axis tile */
}

@media (max-width: 575.98px) {
  :root {
    --patti-thickness: 12px;
  }
}
.img-square {
  width: 100%;
  aspect-ratio: 1 / 1; /* Perfect square */
  position: relative;
  overflow: hidden; /* Avoid overflow */
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-square img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* FILL the square */
  object-position: center; /* Keep image centered while cropping */
  display: block;
}

.playfair-display {
  font-family: "Playfair Display", serif;
}
.slick-slide {
  margin: 0 10px;
}
.slick-list {
  margin: 0 -10px;
}

body {
  font-family: "Montserrat", sans-serif;
}

.text-hw {
  color: #b33300;
}
.bg-hw {
  background-color: #b33300;
}
.bg-hw-light {
  background-color: #ffefe8;
}
a {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.btn-hw {
  background: #00a54e;
  color: #fff;
  border-radius: 0px !important;
}
.btn-hw:hover {
  color: #fff;
}
.error {
  color: red;
  display: block;
  margin-top: 10px;
}
.slick-next:before,
.slick-prev:before {
  color: #b33300 !important;
}
.navbar {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.navbar-brand img {
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  width: 220px;
}
.navbar-scroll img {
  height: 55px;
  width: 64px;
}
.navbar-light {
  padding: 5px 0px;
  border-bottom: rgba(0, 0, 0, 0.05) 1px solid;
  /* -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 20%); */
  /* -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 20%); */
  box-shadow: 0px 0px 40px -15px rgba(179, 59, 14, 0.4);
}
.navbar-hw .nav-item.center {
  margin-left: 230px;
}
.navbar-hw .nav-item.centerSignedIn {
  margin-left: 275px;
}
.navbar-hw .nav-link {
  font-size: 14px;
  color: rgba(0, 0, 0) !important;
  text-decoration: none;
}
.navbar-hw .nav-link:hover {
  color: #b33300 !important;
}
.navbar-hw .nav-link.nav-shop {
  color: #b33300 !important;
}
.navbar-hw .dropdown-shop .dropdown-item:hover {
  background: #f7f4f0 !important;
}
.navbar-hw .form-control:focus {
  border-color: #b33300 !important;
  box-shadow: none;
}
.navbar-hw .btn i {
  font-size: 14px;
}
.navbar-hw .btn .fa-magnifying-glass {
  font-size: 15px;
  color: #000;
}
.navbar-hw .form-control {
  font-size: 0.95rem;
}
.nav-secondary-link {
  padding: 8px 0px;
}
.nav-cart {
  position: relative;
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-cart i {
  font-size: 1.6rem; /* Big icon */
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-cart:hover i {
  transform: scale(1.1);
  color: #b33300; /* your brand highlight */
}

.nav-cart span {
  font-size: 1rem;
}

/* Cart number badge */
.cartNo {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #b33300; /* Him Wool red */
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  /* hidden by default */
}
.cartIcon {
  position: relative;
}

/* Show badge only if >0 */
.cartNo:not(:empty):not(:contains("0")) {
  display: inline-block;
}

/* Small pop animation when items added */
@keyframes cartPop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  80% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
.cartNo:not(:empty) {
  animation: cartPop 0.3s ease;
}
/* Mobile-specific badge tweak */
@media (max-width: 767.98px) {
  .nav-cart i {
    font-size: 1.2rem;
  }
  .navbar-hw .nav-link.d-md-none .cartIcon {
    position: relative;
  }
  .navbar-hw .nav-link.d-md-none .cartNo {
    top: -15px;
    right: -13px;
    font-size: 0.8rem;
    min-width: 22px;
    height: 22px;
    line-height: 22px;
  }
}

.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent; /* No background blur */
  z-index: 2000;
}
.search-popup-content {
  background: white;
  padding: 20px;
  border-radius: 0 0 8px 8px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto; /* Center horizontally */
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
}
.close-search {
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
}
.suggestion-list {
  position: absolute;
  z-index: 1000;
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  border-radius: 0 0 4px 4px;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: none;
}
.suggestion-item {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.suggestion-item:hover {
  background-color: #f8f9fa;
}
.suggestion-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 4px;
}
.noticeScroll-wrapper {
  width: 100%;
  background: rgba(255, 221, 221, 0.4);
  background-size: contain;
}

.noticeScroll {
  padding: 2px 0px 3px 0px;
  -webkit-box-shadow: 0px 0px 20px -15px rgb(107 48 30 / 40%);
  -moz-box-shadow: 0px 0px 20px -15px rgb(107 48 30 / 40%);
  box-shadow: 0px 0px 20px -15px rgb(107 48 30 / 40%);
  text-align: center;
}

.noticeScroll .item {
  color: #800000;
  font-weight: 500;
  font-size: 14px;
}

.noticeScroll.slick-initialized {
  visibility: visible; /* Show once Slick takes over */
}
.breadcrumb-item a {
  text-decoration: none;
  color: inherit;
}
.signInForm {
  -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  box-shadow: 0px 0px 20px -15px rgb(107 48 30 / 50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 20px;
  margin-top: 50px;
  text-align: center;
}

.sliderWrapper {
  position: relative;
  background: #fff;
}

/* Demo slider area */
.mainSlider {
  position: relative;
  z-index: 5; /* above background layers */
  line-height: 0; /* remove gaps around inline imgs */
}
.mainSlider img {
  display: block;
  width: 100%;
  height: auto;
}
.mainImageBox {
  position: relative;
}

.hw-patti-normal {
  width: 100%;
  height: var(--patti-thickness);
  background-image: var(--patti-url);
  background-repeat: repeat-x;
  background-size: auto 100%; /* your tile is seamless horizontally */
  z-index: 10;
}
/* Horizontal pattis: top & bottom */
.hw-patti {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--patti-thickness);
  background-image: var(--patti-url);
  background-repeat: repeat-x;
  background-size: auto 100%; /* your tile is seamless horizontally */
  z-index: 10;
  pointer-events: none;
}
.hw-patti.top {
  top: 0;
}
.hw-patti.bottom {
  bottom: 0;
}

/* Vertical pattis: rotate the same horizontal tile */
/* Strategy: create a thin strip (height=thickness) whose width = wrapper height,
     repeat the image along X, then rotate 90deg to make it vertical. */
.patti-rot {
  position: absolute;
  top: 0; /* before rotation */
  height: var(--patti-thickness);
  /* width will be set by JS to the wrapper's height */
  background-image: var(--patti-url);
  background-repeat: repeat-x; /* still repeat along X before rotation */
  background-size: auto 100%;
  transform: rotate(90deg);
  transform-origin: top left; /* crucial for correct anchoring */
  z-index: 10;
  pointer-events: none;
}
.patti-rot.left {
  /* JS will set width; keep anchored to left edge after rotation */
  left: 0;
}
.patti-rot.right {
  /* JS will set width and left offset to push it to the right edge */
  /* left is set via JS = wrapperWidth - thickness */
}

/* Demo filler content below the slider */
.filler {
  max-width: min(1100px, 92vw);
  margin: 0 auto 6rem;
  color: #444;
}

/* Link shell */
.cat-premium .cat-card {
  color: #000;
  text-decoration: none;
  outline: 0;
}

/* Square media */
.cat-premium .cat-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #f9f9f9;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.cat-premium .cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.cat-premium .cat-card:hover .cat-media {
  transform: translateY(-2px);
}
.cat-premium .cat-card:hover .cat-media img {
  transform: scale(1.05);
}

/* Fallback if no image */
.cat-premium .cat-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f5f5f5, #eaeaea);
  height: 100%;
}
.cat-premium .cat-initial {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #333;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Bottom overlay with text */
.cat-premium .cat-overlay-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 35% 12px 13px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 70%,
    rgba(0, 0, 0, 0.75) 100%
  );
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cat-premium .cat-title {
  font-weight: 500;
  margin-top: 10px;
  text-align: center;
}
.cat-premium .cat-count {
  font-size: 0.72rem;
  color: #e2e2e2;
}

/* No aspect-ratio fallback */
@supports not (aspect-ratio: 1 / 1) {
  .cat-premium .cat-media {
    height: 0;
    padding-top: 100%;
  }
  .cat-premium .cat-media img {
    position: absolute;
    inset: 0;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cat-premium .cat-media,
  .cat-premium .cat-media img {
    transition: none;
  }
}

/* ===== Premium Features Band ===== */
.hw-features-premium {
  background-color: #ffefe8;
  position: relative;
  overflow: hidden;
}

/* Features */
.hw-features-premium .hw-feature h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.75rem;
}

.hw-features-premium .hw-feature p {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.88);
  line-height: 1.6;
  margin: 0;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

/* Subtle fade / gradient texture for richness */
.hw-features-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    1000px 800px at 50% -20%,
    rgba(0, 0, 0, 0.15),
    transparent 70%
  );
  opacity: 0.15;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 767.98px) {
  .hw-features-premium .hw-title {
    font-size: 1.4rem;
  }
  .hw-features-premium .hw-feature p {
    font-size: 0.9rem;
  }
}

/* ===== Standard E-commerce Product Card ===== */
.ecom-card {
  color: #222;
}

/* Image tile */
.ecom-media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fafafa, #f4f4f4);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
  aspect-ratio: 3/4;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.ecom-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.35s ease, filter 0.35s ease;
}

/* Hover: subtle lift + micro zoom */
.ecom-card:hover .ecom-media {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.15);
}
.ecom-card:hover .ecom-media img {
  transform: scale(1.05);
  filter: saturate(1.02) contrast(1.02);
}

/* Overlay CTA */
.ecom-overlay {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.ecom-view {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  color: #222;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.ecom-card:hover .ecom-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* Meta */
.ecom-meta {
  padding-top: 0.7rem;
}
.ecom-title {
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.35;
  min-height: 2.6em;
  font-size: 14px;
}
.ecom-price {
  font-size: 14px;
  font-weight: 500;
}

/* Font Awesome stars */
.ecom-fa-stars {
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  gap: 2px;
}
.ecom-fa-stars .fa-star,
.ecom-fa-stars .fa-star-half-stroke {
  color: #f5a623;
}
.ecom-fa-stars .fa-regular.fa-star {
  color: #e1e1e6;
}

/* Two-line clamp for titles */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Accessibility */
.ecom-card:focus-visible .ecom-media {
  outline: 2px solid rgba(0, 0, 0, 0.35);
  outline-offset: 2px;
}

/* Fallback: older browsers (no aspect-ratio) */
@supports not (aspect-ratio: 1 / 1) {
  .ecom-media {
    height: 0;
    padding-top: 100%;
  }
  .ecom-media img {
    position: absolute;
    inset: 0;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ecom-media,
  .ecom-media img,
  .ecom-overlay {
    transition: none;
  }
}

/* Mobile: show CTA (no hover) */
@media (max-width: 767.98px) {
  .ecom-overlay {
    transform: none;
    opacity: 1;
  }
}

/* ===== Our Story Section ===== */
.our-story-section {
  background-color: #faf6f2; /* pastel warm beige (you can change this) */
}
.our-story-section h2 {
  font-size: clamp(1.6rem, 1.2rem + 1vw, 2rem);
  color: #222;
}
.our-story-section p {
  font-size: 1rem;
  line-height: 1.7;
}
.our-story-section img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.our-story-section img:hover {
  transform: scale(1.02);
}

/* Testimonials */
.t-review {
  padding: 0px 10px;
}
.t-card {
  background: #fff;
  border: 1px solid #e3e3e3;
  padding: 20px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.t-stars i {
  color: #f5a623;
  margin-right: 2px;
}

.t-quote {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #444;
  font-style: italic;
}

.t-person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.t-person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.t-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #222;
}

.slick-dots li button:before {
  font-size: 10px;
  color: #b33300;
}
.slick-prev:before,
.slick-next:before {
  color: #b33300;
}

/* ===== Blog Section (Him Wool Creations) ===== */
.hw-blog-section {
  background: #fffaf3; /* pastel cream to match your vibe; change if needed */
}

.hw-blog-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.hw-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
}

.hw-blog-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f4f4f4;
}
.hw-blog-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.hw-blog-card:hover .hw-blog-media img {
  transform: scale(1.05);
  filter: saturate(1.03) contrast(1.03);
}

.hw-blog-meta {
  padding: 14px 14px 16px;
}
.hw-blog-date i {
  color: #b33300;
} /* your accent */
.hw-blog-title {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}
.hw-blog-excerpt {
  font-size: 0.95rem;
}

/* Read more hint */
.hw-blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 10px;
  color: #222;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.hw-blog-card:hover .hw-blog-readmore {
  opacity: 1;
  transform: translateX(2px);
}

/* Line clamps */
.line-clamp-2,
.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 {
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  -webkit-line-clamp: 3;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hw-blog-card,
  .hw-blog-media img,
  .hw-blog-readmore {
    transition: none;
  }
}

.homeProducts {
  padding: 0px 0px 80px 0px;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}
.homeProducts .title {
  position: relative;
  color: #2e4733;
  z-index: 99;
  text-align: center;
  margin-top: 35px;
  font-weight: 700;
  text-transform: uppercase;
}
.homeProducts .slider {
  margin-top: 35px;
}
.homeProducts .slider .item {
  width: 350px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.homeProducts .slider .item .title {
  display: block;
  color: #2e4733;
  font-size: 20px;
  font-weight: 700;
  color: #b33300;
}
.homeProducts .slider .item .packaging {
  display: block;
  font-weight: 500;
  color: #000;
  margin-top: 5px;
}
.homeProducts .slider .item .pricing {
  display: block;
  font-weight: 500;
  color: #000;
  margin-top: 10px;
}

.testimonials-section .testimonial-card {
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 5px;
  background: #fff;
  height: 100%;
}
.testimonials-section .product-img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 5px;
  margin-bottom: 10px;
}
.testimonials-section .stars i {
  color: #f5c518;
}
.testimonials-section .review-text {
  font-style: italic;
  color: #555;
}
.testimonials-section .customer-name {
  font-weight: bold;
  margin-top: 10px;
}
.testimonials-section .product-name {
  color: #b33300;
  font-size: 1.1em;
  margin-top: 10px;
}
.homeStory {
  padding: 150px 0px;
}
.homeStory .summary {
  padding: 10px 50px;
}
.homeStory .summary .title {
  margin: 0px;
  color: #2e4733;
  text-transform: uppercase;
  font-weight: 700;
}
.homeStory .summary .text {
  font-size: 18px;
}
.homeStory .summary .link {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
}
.homeStory .summary .link:hover {
  color: #b7882d;
}
.homeSocial {
  padding: 0px 0px 60px 0px;
  text-align: center;
}
.homeSocial .title {
  display: block;
  color: #2e4733;
  font-size: 35px;
  font-weight: 500;
}
.homeSocial .icons {
  display: inline-block;
  font-size: 36px;
  color: #000;
  margin: 25px 10px;
}
.homeSocial .icons:hover {
  color: #b7882d;
}
.homeSocial .link {
  display: inline-block;
  font-size: 22px;
  color: #000;
  text-decoration: none;
}
.homeSocial .link:hover {
  color: #b7882d;
}
.blogPost {
  display: block;
  width: 100%;
  margin: 15px 0px 0px 0px;
  border: 1px solid rgb(46 71 51 / 20%);
  -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  box-shadow: 0px 0px 20px -15px rgb(107 48 30 / 50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
.blogPost:hover {
  -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 20%);
  -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 20%);
  box-shadow: 0px 0px 20px -4px rgb(107 48 30 / 20%);
}
.blogPost .image {
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  height: 200px;
}
.blogPost .titleDiv {
  display: block;
  margin-top: 4px;
  padding: 0px 20px;
  font-size: 18px;
  font-weight: 500;
  min-height: 100px;
  position: relative;
}

.blogPost .title {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.blogPost .desc {
  display: block;
  padding: 5px 20px 20px 20px;
  color: #737477;
  font-size: 14px;
}
.blogPost .catBox {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid #e3e3e3;
  border-radius: 25px;
  margin-bottom: 4px;
}
.viewPostContent img {
  max-width: 100% !important;
}
.shopHeader {
  padding: 30px 0px 30px 0px;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}
.shopHeader .backgroundTitle {
  font-family: "Gotham Black", sans-serif;
  display: block;
  max-width: 3840px;
  margin: 0 auto;
  z-index: 2;
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  color: #f0ebe6;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.shopHeader .title {
  position: relative;
  color: #2e4733;
  z-index: 99;
  text-align: center;
  margin-top: 35px;
  font-weight: 700;
  text-transform: uppercase;
}
.shopHeader .summary {
  width: 70%;
  margin: 20px auto;
  text-align: center;
  font-size: 16px;
}
.shopPageCategories {
  display: flex;
  gap: 5px;
}
.shopPageCategories .categoryBox {
  border-radius: 5px;
  color: #000;
  padding: 10px 25px;
  text-decoration: none;
  display: inline-block;
}
.shopPageCategories .categoryBox.active {
  background: #fefdfc;
  border: 1px solid rgb(46 71 51 / 20%);
}
.shopProducts {
}
.shopProducts .item {
  width: 100%;
  text-align: center;
  margin: 20px 0px 0px 0px;
  border: 1px solid rgb(46 71 51 / 20%);
  -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  box-shadow: 0px 0px 20px -15px rgb(107 48 30 / 50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.shopProducts .item:hover {
  -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 20%);
  -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 20%);
  box-shadow: 0px 0px 20px -4px rgb(107 48 30 / 20%);
}
.shopProducts .item .link {
  display: block;
  text-decoration: none;
}
.shopProducts .item .link .title {
  display: block;
  color: #2e4733;
  font-size: 18px;
  font-weight: 700;
  padding: 0px 10px;
  min-height: 55px;
}
.shopProducts .item .link .packaging {
  display: block;
  font-weight: 500;
  color: #000;
  margin-top: 5px;
}
.shopProducts .item .link .overallratings {
  min-height: 39px;
  margin-bottom: 13px;
}
.shopProducts .item .link .overallratings .revcount {
  font-size: 14px;
  color: #000;
}
.shopProducts .item .link .scorep {
  display: inline-block;
  font-family: Wingdings;
  font-size: 26px;
  color: #ccc;
  position: relative;
}
.shopProducts .item .link .scorep::before,
.shopProducts .item .link .scorep span::before {
  content: "\2605\2605\2605\2605\2605";
  display: block;
}
.shopProducts .item .link .scorep span {
  color: gold;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.shopProducts .buttons {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0px;
}
.shopProducts .atcButton {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  background: #2e4733;
  color: #fff !important;
  padding: 8px 0px;
}
.shopProducts .modal-dialog {
  text-align: center;
  -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  box-shadow: 0px 0px 20px -15px rgb(107 48 30 / 50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.shopProducts .modal-content {
  border: rgb(107 48 30 / 5%) 1px solid !important;
  background: #f7f4f0 !important;
  border-radius: 0px;
}
.shopProducts .modal-header {
  border-bottom: rgb(107 48 30 / 5%) 1px solid !important;
}
.shopProducts .selectVariantBox {
  display: block;
  border: rgb(107 48 30 / 10%) 1px solid;
  padding: 20px 0px;
  -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  box-shadow: 0px 0px 20px -15px rgb(107 48 30 / 50%);
  color: #000;
  text-decoration: none;
}
.shopProducts .selectVariantBox:hover {
  -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 20%);
  -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 20%);
  box-shadow: 0px 0px 20px -4px rgb(107 48 30 / 20%);
}
.shopProducts .selectVariantBox.atcBox {
  background: rgb(107 48 30 / 20%);
  pointer: normal;
}
.shopProducts .selectVariantBox .atc {
  color: #b33300;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
}
.productPage {
}
.productPage .title {
  color: #2e4733;
}
.productPage .overallratings {
  display: block;
  margin-bottom: 13px;
  color: inherit;
  text-decoration: none;
}
.productPage .overallratings .revcount {
  font-size: 14px;
  color: #000;
}
.productPage .score {
  display: inline-block;
  font-family: Wingdings;
  font-size: 26px;
  color: #ccc;
  position: relative;
}
.productPage .score::before,
.productPage .score span::before {
  content: "\2605\2605\2605\2605\2605";
  display: block;
}
.productPage .score span {
  color: gold;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.productPage .selectVariantBox {
  display: block;
  text-align: center;
  border: 1px solid #e3e3e3;
  color: #000;
  text-decoration: none;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  box-shadow: 0px 0px 20px -15px rgb(107 48 30 / 50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 15px;
  background: #faf6f2;
}
.productPage .selectVariantBox .svMessage {
  display: block;
  margin-bottom: 10px;
  color: #00a54e;
}
.productPage .selectVariantBox .bottom {
  background: #2e4733;
  padding: 6px 30px;
  display: inline-block;
  margin-top: 5px !important;
  color: #fff;
  font-size: 18px;
}
.productPage .detailsBox {
  -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  box-shadow: 0px 0px 20px -15px rgb(107 48 30 / 50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 15px 25px;
  background: rgb(255 252 247 / 45%);
}
.productPage .detailsBox a {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 18px;
}
.productPage .detailsBox a i {
  font-size: 17px;
  color: #2e4733;
}
.productPage .detailsBox .collapse {
  font-size: 17px;
  margin-top: 20px !important;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.productPage .qualitiesP div {
  opacity: 0.8;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.productPage .qualitiesP div:hover {
  opacity: 1;
}
.productPage .qualitiesP .qualitiesIcons {
  width: 70%;
  min-height: 100px;
}
.productPage .nav-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-inline: 8px;
  scrollbar-width: none;
}
.productPage .nav-wrapper::-webkit-scrollbar {
  display: none;
}

.productPage .nav-pills {
  display: inline-flex;
  flex-wrap: nowrap;
  min-width: max-content;
  padding-bottom: 2px;
  justify-content: center;
}

.productPage .nav-item {
  flex: 0 0 auto;
}
.productPage .collapse-tab {
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  padding: 10px 16px;
  border-bottom: 3px solid #e3e3e3;
}
.productPage .collapse-tab.active {
  border-bottom-color: #b33300;
}

/* Optional: scroll-snap for nicer feel */
.productPage .nav-wrapper {
  scroll-snap-type: x proximity;
}
.productPage .collapse-tab {
  scroll-snap-align: start;
}

.productPage .reviewBox {
  -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  box-shadow: 0px 0px 20px -15px rgb(107 48 30 / 50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 20px;
  background: #fffcf7;
}
.productPage .reviewBox .ratingscol {
  padding-top: 7px;
}
.productPage .reviewBox .date {
  font-size: 14px;
}
.productPage .reviewBox .message {
  margin-top: 10px;
}
.productPage .reviewBox .fa-star {
  color: #fdcc0d;
}
.productPage .moreProducts {
  width: 100%;
}
.productPage .slideItem {
  width: 320px !important;
  margin: 10px 10px;
}
.carousel {
  margin-bottom: 1rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 380px;
}
.carousel-item > img {
  position: unset;
  width: 100%;
  object-fit: contain;
  height: auto;
}
.nav-pills .nav-link {
  font-weight: 500;
  border-bottom: 3px solid transparent;
  border-radius: 0px !important;
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link:focus {
  color: #b33300 !important;
  border-bottom: 3px solid #b33300;
}
.emptyCartDiv {
  display: block;
  text-decoration: none;
  /* text-size: 25px; */
  text-align: center;
  font-weight: 500;
  color: #000;
  -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  box-shadow: 0px 0px 20px -15px rgb(107 48 30 / 50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 20px;
  background: #fffcf7;
}
.emptyCartDiv:hover {
  color: #b7882d !important;
}
.cartItems {
  -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  box-shadow: 0px 0px 20px -15px rgb(107 48 30 / 50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 20px;
  background: #fffcf7;
}
.cartItems .couponCodeButton {
  display: block;
  -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  box-shadow: 0px 0px 20px -15px rgb(107 48 30 / 50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 10px 25px;
  margin: 15px 0px 0px 0px;
  color: #00a54e;
  border: 1px solid #00a54e;
  text-decoration: none;
}
.cartItems .couponAlert {
  -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  box-shadow: 0px 0px 20px -15px rgb(107 48 30 / 50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 20px;
  color: #00a54e;
  border: 1px solid #00a54e;
}
.addressdiv {
  -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  box-shadow: 0px 0px 20px -15px rgb(107 48 30 / 50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 20px;
  background: #fffcf7;
}
.addressdiv .check {
  color: rgb(0 0 0 / 27%);
  font-size: 26px;
  display: none;
}
.addressdiv .checkNone {
  color: rgb(0 0 0 / 27%);
  font-size: 26px;
  margin-right: 15px;
}
.addressdiv .selected {
  color: #00af24 !important;
}
.labl {
  display: block;
  width: 100%;
}
.labl > input {
  visibility: hidden;
  position: absolute;
}
.labl > input + .selectShip {
  cursor: pointer;
}
.labl > input:checked + .selectShip {
  border: 2px solid #23ff8b;
}
.labl > input:checked + .selected {
  color: #71ffb4;
}
.labl > input:checked + .addressdiv .check {
  display: inline-block;
  margin-right: 15px;
  color: #00af24;
}
.labl > input:checked + .addressdiv .checkNone {
  display: none;
}
.labl > input + .paymentDiv {
  cursor: pointer;
}
.labl > input:checked + .paymentDiv {
  border: 2px solid #75ff00;
}
.ordersBox {
  -webkit-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  -moz-box-shadow: 0px 0px 24px -12px rgb(107 48 30 / 50%);
  box-shadow: 0px 0px 20px -15px rgb(107 48 30 / 50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 20px;
  background: #fffcf7;
  margin-top: 30px;
}
.productSlide {
  margin: 100px 0 20px 0px;
}
.productSlide .item {
  width: 200px !important;
}
.footer {
  background-color: #faf6f2; /* pastel to match rest of site */
  color: #333;
  margin-top: 50px;
}

.footer-link {
  color: #444;
  text-decoration: none;
  margin-bottom: 0.35rem;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: #b33300; /* your premium accent */
}

.socialIcons {
  font-size: 1.3rem;
  color: #b33300;
  background: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.socialIcons:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.footer-bottom {
  border-color: rgba(0, 0, 0, 0.08) !important;
} /* PDP mobile slider */
@media (max-width: 575.98px) {
  #mainImageBox .pdp-gallery-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0.5rem;
    padding-bottom: 0.25rem;
  }

  #mainImageBox .pdp-gallery-row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
  }

  #mainImageBox .pdp-gallery-row img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ---- Navigation Dots ---- */
  .pdp-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
  }
  .pdp-dots .dot {
    width: 8px;
    height: 8px;
    border: 0;
    background: #d6d6d6;
    opacity: 0.9;
    transition: transform 0.15s, background 0.15s;
  }
  .pdp-dots .dot.active {
    background: #222;
    transform: scale(1.2);
  }
}

@media (max-width: 768px) {
  .navbar-brand {
    margin-right: 40px;
  }
  .search-popup {
    top: 140px;
  }
  .navbar-hw .nav-item {
    text-align: center;
  }
  .cartMobile {
    position: relative;
  }
  .navbar-hw .nav-item.center {
    margin: auto;
  }
  .navbar-hw .nav-item.centerSignedIn {
    margin-left: 0px;
  }
  .homeProducts .title {
    margin-top: 20px;
  }
  .homeStory {
    padding: 50px 0px 150px 0px;
  }
  .homeStory .summary {
    width: 90%;
    margin-top: 35px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0px;
    text-align: center;
  }
  .productPage .qualitiesP div {
    opacity: 0.99;
  }
  .footer {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block; /* Force display when hovered */
    margin-top: 0; /* Adjust if needed for perfect alignment */
  }

  /* Keep the caret visible on hover */
  .navbar-nav .dropdown:hover > .dropdown-toggle::after {
    border-top-color: var(
      --bs-dropdown-toggle-caret-border-top-color
    ); /* Maintain caret color */
  }
}
@media (max-width: 768px) {
  .shopPageCategories {
    display: flex;
    gap: 5px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .shopPageCategories .categoryBox {
    border-radius: 5px;
    color: #000;
    padding: 10px 25px;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    scroll-snap-align: center;
  }

  .shopPageCategories .categoryBox.active {
    background: #fefdfc;
    border: 1px solid rgb(46 71 51 / 20%);
  }
  .ecom-view {
    font-size: 10px;
    padding: 0.1rem 0.2rem;
  }
  .navbar-brand img {
    width: 160px;
  }
}
