:root {
  --maroon: #8f060f;
  --dark-maroon: #741010;
  --text: #333333;
  --muted: #777777;
  --line: #e7e7e7;
  --soft: #f7f7f7;
  --topbar: #242424;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Lato, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  background: var(--topbar);
  color: #ffffff;
  font-size: 12px;
}

.topbar .container,
.brand-row,
.nav-row,
.footer-grid {
  display: flex;
  align-items: center;
}

.topbar .container {
  justify-content: space-between;
  height: 42px;
}

.topbar-left span {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 12px;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.topbar-left span:last-child {
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.socials {
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 700;
  letter-spacing: .02em;
}

.socials i {
  font-size: 14px;
  cursor: pointer;
}

.socials i:hover {
  color: var(--maroon);
}

.brand-row {
  min-height: 104px;
  gap: 28px;
}

.logo {
  width: 120px;
  flex: 0 0 120px;
}

.search {
  display: flex;
  flex: 1;
  height: 46px;
  border: 2px solid #efefef;
}

.search input,
.search select {
  border: 0;
  background: #fff;
  color: #777;
  font: inherit;
  outline: 0;
}

.search input {
  flex: 1;
  min-width: 140px;
  padding: 0 16px;
  border-right: 1px solid #e5e5e5;
}

.search select {
  width: 170px;
  padding: 0 14px;
  text-transform: uppercase;
  font-size: 12px;
}

.search > button[type="submit"] {
  width: 52px;
  border: 0;
  border-left: 1px solid #e5e5e5;
  background: #fff;
  color: #777;
  font-size: 25px;
  cursor: pointer;
}

.account {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
}

.wishlist {
  position: relative;
  font-size: 22px;
  line-height: 1;
}

.wishlist::after {
  content: "0";
  position: absolute;
  right: -8px;
  top: -5px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  font-size: 10px;
  font-family: Arial, sans-serif;
}

.wishlist i {
  font-size: 22px;
  color: #222;
}

.main-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  height: 55px;
  justify-content: space-between;
}

.browse {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 270px;
  height: 54px;
  padding: 10px 15px;
  background: #7a050d;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.browse span:first-child {
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: auto;
  margin-left: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a,
.special {
  color: #2c2c2c;
}

.nav-links a:hover,
.nav-links .active,
.special {
  color: var(--maroon);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: var(--maroon);
  color: #fff;
  padding: 10px 12px;
  font-size: 18px;
}

.hero {
  min-height: 445px;
  background: #fff url("assets/images/bnr1.1.jpg") center right / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(470px, 46vw);
  text-align: center;
  margin-left: 2%;
}

.hero h1 {
  margin: 0 0 26px;
  color: #5c5c5c;
  font-family: Poppins, Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border-radius: 3px;
  border: 0;
  background: var(--maroon);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.btn.small {
  min-height: 38px;
  padding: 0 18px;
  font-size: 13px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 34px 0 10px;
}

.feature {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  font-size: 24px;
}

.feature h3,
.feature p {
  margin: 0;
}

.feature h3 {
  color: #000;
  font-size: 16px;
}

.feature p {
  color: #000;
}

.section {
  padding: 50px 0 30px;
}

.section-title {
  margin: 0 auto 34px;
  text-align: center;
  color: #000;
  font-family: Poppins, Arial, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
}

.section-title::after {
  content: "";
  display: block;
  width: min(400px, 70vw);
  height: 1px;
  margin: 8px auto 0;
  background: #dedede;
}

.offer {
  text-align: center;
  color: #000;
  font-size: 17px;
}

.offer p {
  max-width: 950px;
  margin: 0 auto 18px;
}

.category-grid,
.catalogue-grid,
.products-grid,
.range-grid {
  display: grid;
  gap: 0;
}

.category-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.category-card {
  text-align: center;
}

.category-card .image {
  display: grid;
  place-items: center;
  min-height: 115px;
}

.category-card img {
  max-height: 105px;
  margin: 0 auto;
  object-fit: contain;
}

.category-card .btn {
  width: 100%;
  min-height: 38px;
  padding: 0 8px;
}

.annam-copy {
  max-width: 980px;
  margin: 0 auto 30px;
  text-align: center;
  color: #000;
  font-size: 17px;
}

.products-grid {
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-tools {
  display: grid;
  grid-template-columns: 1fr 280px auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 28px;
}

.product-tools label {
  display: block;
  margin-bottom: 7px;
  color: #222;
  font-weight: 700;
}

.product-search-input,
.product-category-select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  padding: 0 13px;
  background: #fff;
  color: #444;
  font: inherit;
}

.product-count {
  min-width: 150px;
  padding-bottom: 10px;
  color: #777;
  text-align: right;
}

.product-card {
  position: relative;
  min-height: 350px;
  padding: 26px 20px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.product-card.clickable {
  cursor: pointer;
}

.product-card.clickable:hover h3 {
  color: var(--maroon);
}

.product-card .sold {
  position: absolute;
  left: 20px;
  top: 26px;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-img {
  display: grid;
  place-items: center;
  height: 210px;
  margin-bottom: 16px;
}

.product-img img {
  max-height: 200px;
  margin: 0 auto;
  object-fit: contain;
}

.product-card h3 {
  margin: 0 0 6px;
  color: #333;
  font-family: Poppins, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.product-card .cat {
  margin-bottom: 3px;
  color: #aaa;
}

.login-price {
  color: var(--maroon);
  font-weight: 700;
}

.sku {
  color: #777;
  font-size: 12px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.pagination button {
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  color: #333;
  font-weight: 700;
  cursor: pointer;
}

.pagination button.active,
.pagination button:hover {
  border-color: var(--maroon);
  background: var(--maroon);
  color: #fff;
}

.product-dialog {
  width: min(880px, calc(100% - 32px));
  border: 0;
  padding: 0;
  box-shadow: 0 20px 70px rgba(0, 0, 0, .22);
}

.product-dialog::backdrop {
  background: rgba(0, 0, 0, .48);
}

.dialog-close {
  position: absolute;
  right: 12px;
  top: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  background: #fff;
  color: #222;
  font-size: 26px;
  cursor: pointer;
}

.product-detail {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 30px;
  padding: 34px;
}

.product-detail-image {
  display: grid;
  place-items: center;
  min-height: 310px;
  border: 1px solid var(--line);
}

.product-detail-image img {
  max-height: 290px;
  object-fit: contain;
}

.product-detail h2 {
  margin: 0 0 12px;
  color: #222;
  font-family: Poppins, Arial, sans-serif;
  font-size: 26px;
  line-height: 1.25;
}

.meta-grid {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.meta-grid div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
}

.meta-grid strong {
  color: #222;
}

.description {
  color: #666;
}

.center {
  text-align: center;
}

.range-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
}

.range-item strong {
  display: block;
  color: var(--dark-maroon);
  font-family: Poppins, Arial, sans-serif;
  font-size: 54px;
  line-height: 1;
}

.range-item h3 {
  margin: 8px 0 8px;
  color: #222;
  font-family: Poppins, Arial, sans-serif;
  font-size: 20px;
}

.range-item p {
  color: #777;
}

.wide-banner {
  padding: 40px 0 0;
}

.wide-banner img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
}

.brand-strip {
  margin-top: 50px;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.brand-strip .container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 48px;
  min-height: 92px;
}

.brand-strip img {
  max-height: 56px;
  margin: 0 auto;
  object-fit: contain;
}

.page-hero {
  background: #f7f7f7;
  border-bottom: 1px solid var(--line);
  padding: 46px 0;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  color: #222;
  font-family: Poppins, Arial, sans-serif;
  font-size: 36px;
  line-height: 1.2;
}

.content {
  padding: 50px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 52px;
  align-items: start;
}

.copy h2,
.copy h3 {
  color: #222;
  font-family: Poppins, Arial, sans-serif;
}

.copy h2 {
  margin: 0 0 18px;
  font-size: 30px;
}

.copy p {
  margin: 0 0 18px;
  color: #666;
}

.map-img,
.contact-img {
  border: 1px solid var(--line);
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.info-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
}

.info-list strong {
  color: #222;
}

.faq {
  margin-top: 45px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  color: #222;
  font-weight: 700;
  cursor: pointer;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  font: inherit;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.catalogue-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 30px;
}

.catalogue-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 245px;
  padding: 0 0 8px;
  border: 0;
  text-align: center;
}

.catalogue-card img {
  width: 100%;
  height: 150px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.catalogue-card h3 {
  margin: 0 0 12px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.catalogue-card .btn {
  align-self: center;
  min-width: 118px;
}

.legal {
  max-width: 900px;
}

.legal h2 {
  margin-top: 34px;
}

.footer {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding: 64px 0;
}

.footer-logo {
  width: 135px;
  margin-bottom: 28px;
}

.footer p,
.footer li {
  color: #777;
}

.footer ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.footer li {
  margin: 8px 0;
}

.footer-right {
  min-width: 260px;
}

.footer-right h4 {
  margin: 0 0 20px;
  color: #777;
  font-weight: 400;
}

.footer-right .socials {
  color: #777;
  margin-bottom: 28px;
}

.footer-right a {
  display: inline-block;
  margin-bottom: 12px;
  border-bottom: 1px solid #cfcfcf;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
}

.copyright {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  color: #777;
}

.whatsapp {
  position: fixed;
  right: 26px;
  bottom: 28px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp .bubble {
  padding: 8px 12px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  color: #555;
  font-size: 12px;
}

.whatsapp .circle {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #55bc54;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
}

@media (max-width: 960px) {
  .brand-row {
    flex-wrap: wrap;
    padding: 18px 0;
  }

  .search {
    order: 3;
    flex-basis: 100%;
  }

  .browse,
  .special {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-row {
    height: auto;
    min-height: 55px;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-basis: 100%;
    margin: 0;
    padding: 12px 0 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: 360px;
    background-position: center;
  }

  .hero-copy {
    width: min(440px, 80vw);
    margin: 0 auto;
    padding: 28px 20px;
    background: rgba(255, 255, 255, .74);
  }

  .features,
  .range-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .brand-strip .container {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid,
  .catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-tools,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-count {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .topbar .container,
  .account,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar .container {
    height: auto;
    gap: 8px;
    padding: 10px 0;
  }

  .brand-row {
    gap: 14px;
  }

  .logo {
    width: 100px;
    flex-basis: 100px;
  }

  .search-cat {
    display: none;
  }

  .hero h1 {
    font-size: 24px;
  }

  .category-grid,
  .products-grid,
  .catalogue-grid,
  .brand-strip .container {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 320px;
  }

  .footer-grid {
    gap: 22px;
    padding: 44px 0;
  }

  .whatsapp .bubble {
    display: none;
  }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 596px;
}

.hero-slider .slide {
  min-width: 100%;
  height: 596px;
  background-size: cover;
  background-position: center;
  display: flex;
  position: relative;
}

.hero-slider .slide-image-only {
  background-size: cover;
  background-position: center;
}

/* Text positioned exactly like original: left ~64px, top ~216px */
.hero-slider .slide-content {
  position: absolute;
  left: 64px;
  top: 216px;
  z-index: 2;
  width: 470px;
  text-align: center;
}

.hero-slider .slide-content h2 {
  margin: 0 0 26px;
  color: #000;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 44px;
}

/* Start Shopping button — matches original exactly */
.slide-btn {
  display: inline-block;
  padding: 13px 29px;
  border-radius: 5px;
  background: #8f060f;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.slide-btn:hover {
  background: #741010;
}

/* Progress bar at top — matches original */
.slider-progress {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.3);
}

.slider-progress-bar {
  height: 100%;
  width: 0%;
  background: rgba(255,255,255,0.6);
  transition: width 0.1s linear;
}

/* Browse Categories Mega Menu */
.browse-wrap {
  position: relative;
  align-self: stretch;
}

.browse-wrap:hover .browse-dropdown {
  display: block;
}

.browse-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  width: 270px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: none;
  padding: 0;
  margin: 0;
  list-style: none;
}

.browse-dropdown.open {
  display: block;
}

.browse-dropdown li {
  position: relative;
}

.browse-dropdown li a {
  display: block;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  font-weight: 600;
  font-size: 13px;
  text-transform: none;
}

.browse-dropdown li a:hover {
  background: var(--soft);
  color: var(--maroon);
}

.browse-dropdown li.has-children > a {
  padding-right: 36px;
}

.browse-dropdown li.has-children > .fa-chevron-right {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #999;
  pointer-events: none;
}

/* Sub-menu flyout */
.browse-dropdown .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 4px 8px 24px rgba(0,0,0,0.1);
  display: none;
  padding: 0;
  margin: 0;
  list-style: none;
}

.browse-dropdown li:hover > .sub-menu {
  display: block;
}

.browse-dropdown li:hover > a {
  background: var(--soft);
  color: var(--maroon);
}

.browse-dropdown .sub-menu li a {
  font-weight: 400;
  font-size: 13px;
  padding: 10px 16px;
}

/* Deeper sub-menus stack to the right */
.browse-dropdown .sub-menu .sub-menu {
  top: -1px;
}

/* Header Search Category Custom Dropdown */
.search-cat {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-shrink: 0;
}

.search-cat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 0;
  border-left: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  color: #777;
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.search-cat-btn span:last-child {
  font-size: 10px;
}

.search-cat-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 100;
  min-width: 220px;
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: none;
  padding: 6px 0;
}

.search-cat-dropdown.open {
  display: block;
}

.search-cat-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-cat-dropdown li a {
  display: block;
  padding: 10px 16px;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
}

.search-cat-dropdown li a:hover {
  background: var(--soft);
  color: var(--maroon);
}

.search-cat-dropdown li.active a {
  color: var(--maroon);
}

/* Product detail page */
.product-detail-page {
  padding: 50px 0;
}

.product-detail-top {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 240px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 1100px) {
  .product-detail-top {
    grid-template-columns: 1fr 1fr;
  }
  .also-like-sidebar {
    grid-column: 1 / -1;
  }
}

.product-detail-image-box {
  display: grid;
  place-items: center;
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  padding: 32px;
}

.product-detail-image-box img {
  max-height: 420px;
  object-fit: contain;
}

.sold-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 5px 12px;
  background: #333;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-detail-info h1 {
  margin: 0 0 16px;
  color: #222;
  font-family: Poppins, Arial, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
}

.product-detail-info .login-price {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--maroon);
}

.share-line {
  margin-top: 12px;
  color: #666;
  font-size: 13px;
}

.share-line span {
  font-weight: 600;
  margin-right: 4px;
}

.share-line a {
  color: #666;
  margin-left: 8px;
  font-size: 14px;
}

.share-line a:hover {
  color: var(--maroon);
}

.wishlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  cursor: pointer;
  text-decoration: none;
}

.wishlist-btn i {
  font-size: 16px;
  color: #333;
}

.wishlist-btn:hover {
  color: var(--maroon);
}

.wishlist-btn:hover i {
  color: var(--maroon);
}

/* You may also like — sidebar */
.also-like-sidebar h3 {
  margin: 0 0 16px;
  color: #000;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.also-like-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.also-like-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.also-like-item:first-child {
  padding-top: 0;
}

.also-like-item:last-child {
  border-bottom: 0;
}

.also-like-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  border: 1px solid var(--line);
}

.also-like-item .al-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.also-like-item .al-info a {
  color: #333;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  word-break: break-word;
}

.also-like-item .al-info a:hover {
  color: var(--maroon);
}

.also-like-item .al-info .al-price {
  color: var(--maroon);
  font-size: 12px;
  font-weight: 600;
}

/* Description heading */
.description-heading {
  text-align: center;
  margin: 40px 0 20px;
  position: relative;
}

.description-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.description-heading span {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  background: #fff;
  color: #222;
  font-family: Poppins, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
}

.description-content {
  color: #666;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Related products */
.related-products {
  margin-top: 40px;
}

.related-products h2 {
  margin: 0 0 28px;
  color: #000;
  font-family: Poppins, Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.related-products h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--maroon);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  color: var(--maroon);
  font-weight: 700;
}

@media (max-width: 960px) {
  .hero-slider {
    height: 400px;
  }
  .hero-slider .slide {
    height: 400px;
  }
  .hero-slider .slide-content {
    left: 20px;
    top: auto;
    bottom: 40px;
    width: min(440px, 80vw);
    padding: 28px 20px;
    background: rgba(255,255,255,0.82);
  }
  .hero-slider .slide-content h2 {
    font-size: 22px;
    line-height: 1.4;
  }
  .product-detail-top {
    grid-template-columns: 1fr;
  }
  .also-like-sidebar {
    grid-column: auto;
  }
  .also-like-sidebar h3 {
    margin-top: 24px;
  }
  .product-detail-image-box {
    min-height: 300px;
    padding: 20px;
  }
  .product-detail-image-box img {
    max-height: 300px;
  }
  .browse-dropdown {
    min-width: 100%;
  }
  .browse {
    width: 100%;
  }
}


/* Wishlist */
.card-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: #999;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0;
}

.product-card:hover .card-wishlist {
  opacity: 1;
}

.card-wishlist:hover {
  border-color: var(--maroon);
  color: var(--maroon);
}

.card-wishlist.active {
  opacity: 1;
  color: var(--maroon);
  border-color: var(--maroon);
}

.product-card {
  position: relative;
}

/* Header wishlist count */
.wishlist {
  position: relative;
}

.wishlist-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--maroon);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}

/* Wishlist page */
.wishlist-section {
  padding: 40px 0;
}

.wishlist-section h2 {
  margin: 0 0 24px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
}
