:root {
  --ink: #1f2933;
  --muted: #4b5563;
  --subtle: #7c8ba1;
  --accent: #3f7ae0;
  --accent-soft: #e6eeff;
  --surface: #f7f9fc;
  --white: #ffffff;

  --font-primary: 'Instrument Sans', sans-serif;
  --font-secondary: 'K2D', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Global body styling */
body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--ink);
  background: var(--surface);
  font-size: 14px;
  position: relative;
}

html {
  cursor: auto;
  scroll-behavior: smooth;
}

/* ---------------------------- */
/* Top Header + Logo */
/* ---------------------------- */

.header {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 18px rgba(18, 42, 66, 0.05);
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ink);
  text-decoration: none;
}

/* ---------------------------- */
/* Navigation Links */
/* ---------------------------- */

.menu-link {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.menu-link:hover {
  color: var(--ink);
  background: var(--accent-soft);
}

/* ---------------------------- */
/* Desktop Dropdown Panel */
/* ---------------------------- */

.desktop-menu {
  position: absolute;
  top: 125px;
  width: 330px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 20px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 999;
}

.desktop-menu li {
  padding: 6px 0;
  cursor: pointer;
}

.desktop-menu li:hover {
  color: #3d5141;
}

.sub-cats {
  padding-left: 15px;
}

/* ---------------------------- */
/* ---------------------------- */

.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  background: #fff;
  height: 100%;
  transition: 0.3s ease-in-out;
  z-index: 2000;
  overflow-y: auto;
  box-shadow: 3px 0 10px rgba(0, 0, 0, 0.15);
}

.mobile-menu-panel.show {
  left: 0;
}

.hamburger-desktop i {
  font-size: 18px;
  margin-right: 3px;
  cursor: pointer;
  color: #333;
}

.hamburger-desktop:hover i {
  color: #3d5141;
}

.search-input {
  width: 260px;
  height: 32px;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  color: #333;
  outline: none;
  font-size: 14px;
}

.search-input::placeholder {
  color: #777;
}
.pagination-wrapper {
  width: 100%;
}

.pagination .page-link {
  background: none;
  border: none;
  color: #444;
  font-size: 18px;
  padding: 5px 12px;
}

.pagination .page-item.active .page-link {
  color: #000;
  font-weight: 600;
}

.pagination .page-item.disabled .page-link {
  color: #aaa;
}

.next-arrow i.arrowright {
  border: solid #444;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 6px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.btn-load-more {
  padding: 10px 30px;
  background-color: #eee;
  border-radius: 4px;
  border: 0;
  font-weight: 500;
  cursor: pointer;
}

.btn-load-more:hover {
  background-color: #ddd;
}

/* --------------------------------------------- */
/* HERO SECTION */
.hero-section {
  padding: 70px 0 40px;
  background: radial-gradient(circle at 10% 20%, #eef5ff 0, #f7f9fc 40%, #fdfefe 100%);
}

.hero-shell {
  background: var(--white);
  border-radius: 20px;
  padding: 38px;
  box-shadow: 0 12px 40px rgba(31, 41, 51, 0.08);
}

.hero-copy .eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px;
}

.hero-title {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 700;
  margin: 18px 0 12px;
  color: var(--ink);
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
}

.hero-actions .hero-main-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(120deg, #3f7ae0, #6295ff);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.hero-actions .hero-ghost-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid #d6e3ff;
  color: var(--accent);
  text-decoration: none;
  background: var(--accent-soft);
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat {
  background: var(--surface);
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid #e7ecf5;
}

.stat-number {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.stat-label {
  color: var(--subtle);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  background: linear-gradient(150deg, #e7f0ff, #fdf7ff);
  border-radius: 18px;
  padding: 16px;
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 20px 50px rgba(0, 35, 117, 0.08);
}

.hero-placeholder,
.hero-video {
  position: absolute;
  inset: 12px;
  border-radius: 14px;
}

.hero-placeholder {
  z-index: 1;
  transition: opacity 0.8s ease-in-out;
}

.hero-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.hero-video {
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: cover;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.8s ease-in-out;
  background: #0c1324;
  border-radius: 14px;
}

.floating-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  z-index: 3;
  color: var(--ink);
}

/* 2nd section */
/* Section Background */
.lifestyle-section {
  background: var(--surface);
}

.section-shell {
  background: var(--white);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.06);
}

.section-head .text-link,
.text-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.lifestyle-title {
  font-size: 30px;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 8px;
}

.lifestyle-desc {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 0;
}

.capsule-grid .lifestyle-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(31, 41, 51, 0.12);
}

.tag-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-weight: 700;
  z-index: 2;
}

.lifestyle-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

.lifestyle-info {
  padding: 16px 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lifestyle-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}

.lifestyle-sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.chip-link {
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 768px) {
  .lifestyle-img {
    height: 340px;
  }
  .lifestyle-name {
    font-size: 20px;
  }
}
.product-card {
  position: relative;
  cursor: pointer;
}

.product-img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #f4f7fb;
  transition: transform 0.3s ease;
  border-radius: 14px;
  padding: 8px;
}

.product-card {
  padding: 12px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(31, 41, 51, 0.12);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1f2933;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}

.product-badge.soft {
  background: var(--accent);
}

.product-meta {
  display: flex;
  gap: 6px;
  margin: 6px 0 4px;
}

.pill-mini {
  display: inline-block;
  padding: 6px 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  border-radius: 10px;
}
.product-toolbar {
  background: #f4f7fb;
  border-radius: 999px;
  padding: 6px;
  gap: 8px;
}

.pill-filter {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  transition: 0.2s ease;
}

.pill-filter.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(63, 122, 224, 0.25);
}
.product-title {
  font-size: 15px;
  margin-top: 10px;
  color: #333;
}

.product-price {
  font-size: 15px;
  font-weight: 600;
  margin-top: 5px;
  color: var(--ink);
}

.product-price small {
  font-weight: 400;
  text-decoration: line-through;
  margin-left: 5px;
  color: #777;
}

/* 4th section */
.effort-section {
  background: var(--surface);
  padding: 0;
}

.effort-wrapper {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.effort-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.effort-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 2;
  max-width: 520px;
  padding: 22px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  background: linear-gradient(135deg, rgba(0,0,0,0.48), rgba(17,24,39,0.2));
}

.effort-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
}

.effort-sub {
  font-size: 16px;
  max-width: 460px;
  margin-bottom: 16px;
  color: #f4f4f5;
}

.effort-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.effort-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.effort-btn.ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
/*  */
/* 5th section */
.season-section {
  background: var(--surface);
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: #2a2a2a;
}

.season-tabs {
  display: inline-flex;
  gap: 20px;
  margin-bottom: 5px;
}

.season-tabs .tab {
  font-size: 16px;
  cursor: pointer;
  color: #777;
}

.season-tabs .active {
  color: #000;
  font-weight: 600;
}

.section-desc {
  font-size: 14px;
  max-width: 280px;
  margin: 5px 0 10px;
}

.shop-link {
  font-size: 15px;
  text-decoration: underline;
  color: #000;
}

/* MINI GALLERY */
/* Season wrap */
.season-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  gap: 24px;
  align-items: start;
}

.season-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.season-gallery img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
}

/* PRODUCT CARDS */
.product-card {
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s;
}

.product-card:hover img {
  transform: scale(1.03);
}

.product-card h5 {
  font-size: 15px;
  margin-top: 10px;
  color: #222;
  min-height: 40px;
  overflow: hidden;
}

.product-card.compact {
  box-shadow: 0 6px 20px rgba(31,41,51,0.08);
}

.price {
  font-weight: 600;
}

.price small {
  color: #999;
  text-decoration: line-through;
  margin-left: 5px;
}
/* 6th section */
.why-section {
  background: #f4f6fb;
}

/* TOP BIG BOXES */
.why-box {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.06);
}

.why-box img {
  width: 50px;
  margin-bottom: 15px;
}

.why-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.why-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* BOTTOM SMALL ITEMS */
.why-small img {
  width: 40px;
  margin-bottom: 10px;
}

.why-small h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-small p {
  font-size: 14px;
  color: #666;
  padding: 0 5px;
}
/* footer */
.footer-section {
  background: #f5f7fb;
  color: #4b5563;
  font-size: 14px;
  border-top: 1px solid #e5e7eb;
}

.footer-title {
  color: #111827;
  font-size: 20px;
  letter-spacing: 1px;
}

.footer-heading {
  color: #111827;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-text {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.footer-link {
  color: var(--accent);
  text-decoration: underline;
}

/* FOOTER BUTTONS (left column) */
.footer-btn {
  padding: 10px 14px;
  border: 1px solid #d6e3ff;
  border-radius: 10px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: 0.2s;
  background: #eef4ff;
}

.footer-btn:hover {
  background: #e0eaff;
  color: #0f1d4a;
}

/* MENU LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #4b5563;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  background: #e9eef7;
  color: #374151;
  font-size: 13px;
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: #0f1d4a;
}

/* Currency flag */
.flag-icon {
  width: 22px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
}

.currency-text {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #e2e2e2;
}

/* Payment Icons */
.payment-icon {
  height: 28px;
  margin-left: 10px;
}

/* Back to Top Button */
.upbutton {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0px 4px 14px rgba(0,0,0,0.15);
  cursor: pointer;
  display: none;            /* initially hidden */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* When visible */
.upbutton.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Hidden state animation */
.upbutton.hide {
  opacity: 0;
  transform: translateY(15px);
}

/* Arrow icon */
.arrowtop {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #000;
  margin-bottom: 3px;
}

/* Text */
.upbutton div {
  font-size: 12px;
  color: #000;
  font-weight: 500;
}

/* Hover effect */
.upbutton:hover {
  background: #f0f0f0;
}
.right-icons{
  right: 0;
}
.all-products-header {
  background-color: #f9f7f1; /* same light cream background */
}

.all-products-title {
  font-size: 36px;
  font-weight: 700;
  color: #3c3c3c;
  font-family: inherit;
}

.all-products-count {
  font-size: 36px;
  font-weight: 400;
  color: #3c3c3c;
  opacity: 0.9;
}
.cat-bar {
  background-color: #f9f7f1; /* same light background */
}

.breadcrumbs a {
  color: #333;
  font-size: 14px;
}
.breadcrumbs .current {
  color: #5a5a5a;
  font-size: 14px;
}

.cat_results_count {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #333;
  text-transform: uppercase;
}

.cat_results_count strong {
  font-weight: 700;
}

.sort-label {
  font-size: 14px;
  color: #666;
}

.sort-box .sort-select {
  width: 160px;
  font-size: 14px;
  border-radius: 4px;
  padding: 6px 30px 6px 10px;
  border: 1px solid #dcdcdc;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  appearance: none;
}
/* Image area */
.product-card .product-img {
  background: #f9f7f1;
  padding: 10px;
  border-radius: 2px;
}

/* Title */
.product-title {
  margin-top: 10px;
  font-size: 15px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Price style */
.product-price {
  margin-top: 5px;
}

.new-price {
  color: #333;
  font-weight: 600;
  font-size: 16px;
}

.old-price {
  color: #999;
  font-size: 14px;
  margin-left: 8px;
  text-decoration: line-through;
}

/* Hover effect like Sellvia */
.product-card:hover img {
  transform: scale(1.03);
  transition: 0.3s ease;
}

/* WRAPPER */
.rfjdsweknwrapper {
  position: relative;
  background: #faf8f2;
}

/* MAIN FLEX WRAPPER */
.hjsdhgjhdahsjgwfe {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px;
}

/* ---------------------------
   LEFT SECTION (Gallery)
----------------------------*/
.product-left {
  width: 45%;
  display: flex;
  gap: 20px;
}

/* Thumbnails Sidebar */
.thumb-list {
  width: 90px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thumb-item {
  cursor: pointer;
  border: 1px solid transparent;
  padding: 3px;
  border-radius: 4px;
}

.thumb-item img {
  width: 100%;
  border-radius: 4px;
}

.thumb-item.active {
  border-color: #000;
}

/* Main Preview */
.main-preview {
  flex-grow: 1;
  position: relative;
}

.main-preview img {
  width: 100%;
  border-radius: 8px;
}

/* Navigation Arrows */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 12px;
  background: rgba(0,0,0,0.4);
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 18px;
}

.nav.prev {
  left: 10px;
}
.nav.next {
  right: 10px;
}

/* ---------------------------
   RIGHT SECTION
----------------------------*/
.product-right {
  width: 50%;
  padding-top: 10px;
}

/* Title */
.product-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Prices */
.price-row {
  display: flex;
  gap: 10px;
  font-size: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.new-price {
  font-weight: 700;
  color: #d97706;
}
.old-price {
  text-decoration: line-through;
  opacity: 0.6;
}
.discount {
  color: #22c55e;
  font-weight: 600;
}

/* Social Proof */
.social-proof {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}
.social-proof li {
  font-size: 14px;
  margin-bottom: 6px;
}

/* Size box */
.size-box label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.size-options {
  display: flex;
  gap: 12px;
}
.size-option {
  padding: 6px 14px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
}
.size-option.active {
  border-color: #000;
  font-weight: bold;
}

/* Qty + Cart */
.qty-cart-row {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.qty-box {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}

.qty-box input {
  width: 50px;
  text-align: center;
  border: none;
}

.qty-btn {
  background: #f0f0f0;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

.add-to-cart {
  flex-grow: 1;
  padding: 14px;
  font-size: 16px;
}

/* Ready to ship */
.ready-ship {
  margin-bottom: 25px;
  font-size: 14px;
}

/* TABS */
.product-tabs {
  border-top: 1px solid #e5e5e5;
}

.tab-header {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-weight: 600;
}

.tab-header.active {
  color: #000;
}

.tab-body {
  padding: 15px 0;
  display: none;
}

.tab-body.show {
  display: block;
}

.size-chart td,
.size-chart th {
  border: 1px solid #ddd;
  padding: 7px 10px;
}

/* ----------------------------------------------------
   RESPONSIVE MEDIA QUERIES (tablet + mobile)
----------------------------------------------------*/

/* TABLET: BELOW 992px */
@media (max-width: 992px) {
  .hjsdhgjhdahsjgwfe {
    flex-direction: column;
    padding: 30px;
  }

  .product-left,
  .product-right {
    width: 100%;
  }

  .thumb-list {
    width: 75px;
  }

  .product-title {
    font-size: 24px;
  }
}

/* MOBILE: BELOW 768px */
@media (max-width: 768px) {
  .hjsdhgjhdahsjgwfe {
    padding: 20px;
    gap: 30px;
  }

  /* Thumbnails become horizontal */
  .product-left {
    flex-direction: column;
  }

  .thumb-list {
    flex-direction: row;
    overflow-x: auto;
    width: 100%;
    gap: 10px;
  }

  .thumb-item {
    min-width: 70px;
    flex-shrink: 0;
  }

  /* Hide arrows on small screens */
  .nav {
    display: none;
  }

  .product-title {
    font-size: 22px;
  }

  /* Qty + Cart stack */
  .qty-cart-row {
    flex-direction: column;
    align-items: stretch;
  }

  .add-to-cart {
    width: 100%;
  }

  .product-right {
    padding: 0;
  }
}

/* EXTRA SMALL MOBILE < 480px */
@media (max-width: 480px) {
  .product-title {
    font-size: 20px;
  }

  .new-price {
    font-size: 18px;
  }

  .thumb-item {
    min-width: 60px;
  }
}
/* SHARE SECTION */
.share-section {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.share-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

/* Icons container */
.share-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Individual icons */
.share-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #ddd;
  
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: 0.25s ease;
}

/* Icon styling */
.share-icon i {
  font-size: 18px;
  color: #333;
  transition: 0.25s ease;
}

/* Hover Effects */
.share-icon:hover {
  background: #000;
  border-color: #000;
}

.share-icon:hover i {
  color: #fff;
}

/* Facebook Color (optional if you want branding) */
.share-icon.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

/* Twitter/X */
.share-icon.twitter:hover {
  background: #000;
  border-color: #000;
}
.reviews-wrapper {
  background: #faf8f2;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 60px 15px;
}

.reviews-title {
  font-size: 32px;
  font-weight: 700;
  color: #3c3c3c;
  margin-bottom: 5px;
}

.no-reviews {
  color: #777;
  font-size: 15px;
  margin-bottom: 25px;
}

.write-review-btn {
  padding: 12px 28px;
  border: 2px solid #333;
  background: transparent;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s ease;
}

.write-review-btn:hover {
  background: #333;
  color: #fff;
}

.recommend-section {
  background: #faf8f2;
}

.rec-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.rec-subtitle {
  margin-top: -8px;
  font-size: 16px;
  color: #666;
}

/* SLIDER */
.rec-slider {
  display: flex;
  gap: 25px;
  /* overflow-x: auto; */
  padding-bottom: 10px;
  flex-wrap: wrap;
  justify-content: center;
  scroll-behavior: smooth;
}.ic-about-1:before {
  content: '\e804';
  font-family: about;
}.ic-about-2:before {
  content: '\e801';
  font-family: about;
}
.ic-about-3:before {
  content: '\e802';
  font-family: about;
}
.rec-slider::-webkit-scrollbar {
  height: 6px;
}
.aboutus:before {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, .5); */
  z-index: 1;
}

.rec-slider::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* CARD */
.rec-card {
  min-width: 220px;
  cursor: pointer;
}

.rec-img-box {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 6px;
}

.rec-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

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

.rec-name {
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  color: #333;
}

.rec-price-new {
  font-size: 18px;
  font-weight: 600;
  margin-top: 5px;
}

.rec-price-old {
  font-size: 14px;
  text-decoration: line-through;
  color: #888;
}

/* Pinterest */
.share-icon.pinterest:hover {
  background: #e60023;
  border-color: #e60023;
}

/* MOBILE RESPONSIVE */
@media (max-width: 480px) {
  .share-section {
    gap: 8px;
  }

  .share-icon {
    width: 34px;
    height: 34px;
  }

  .share-icon i {
    font-size: 16px;
  }
}





/* Mobile Style */
@media (max-width: 768px) {
  .effort-image {
    height: 450px;
  }
  .effort-title {
    font-size: 32px;
  }
  .right-icons{
    right: 50%;
    transform: translateX(50%);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-shell {
    padding: 28px;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 38px 0 24px;
  }
  .hero-shell {
    padding: 22px;
  }
  .hero-title {
    font-size: 30px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    margin-top: 20px;
    min-height: 280px;
  }
}
