/* =========================
   TEENPLUS — Homepage Styles
   ========================= */

:root {
  --primary: #e91e63;
  --primary-dark: #c2185b;
  --secondary: #2b2b2b;
  --text: #1a1a1a;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f7f7f8;
  --border: #e5e5e7;
  --accent: #8b95a5;
  --radius: 6px;
  --shadow: 0 4px 20px rgba(0, 0, 0, .06);
  --container: 1280px;
  --font-main: 'Poppins', sans-serif;
  --font-script: 'Dancing Script', cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: #fff;
  line-height: 1.5;
  font-size: 14px
}
div{
	  font-family: var(--font-main);

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

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

ul {
  list-style: none
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: .25s;
  cursor: pointer
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-radius: 0;
}

.btn-primary:hover {
  background: var(--primary-dark)
}

.btn-light {
  background: #fff;
  color: var(--text)
}

.btn-light:hover {
  background: var(--text);
  color: #fff
}

/* Announcement */
.announcement-bar {
  background: var(--secondary);
  color: #fff;
  font-size: 12px;
  padding: 8px 0
}

.announcement-bar .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap
}

.announcement-bar i {
  margin-right: 6px;
  color: var(--primary)
}

/* Top bar */
.top-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  font-size: 12px
}
.top-links .nav-link{
	padding:0px !important;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  background-color: #fef0ef;
}

.top-links {
  display: flex;
  gap: 22px
}

.top-links a {
  color: var(--muted);
  transition: .2s
}

.top-links a:hover {
  color: var(--primary)
}

.top-links.right a {
  font-size: 14px
}

/* Header */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .05)
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 15px 20px
}

.menu-toggle {
  display: none;
  font-size: 22px
}

.logo img {
  height: 46px;
  width: auto;
  object-fit: contain
}

.search-box {
  flex: 1;
  max-width: 520px;
  position: relative
}

.search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted)
}

.search-box input {
  width: 100%;
  padding: 12px 18px 12px 44px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--bg-alt);
  font-size: 13px;
  outline: none;
  transition: .2s
}

.search-box input:focus {
  border-color: var(--primary);
  background: #fff
}

.header-actions {
  display: flex;
  gap: 22px;
  margin-left: auto
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: var(--text);
  position: relative;
  transition: .2s
}

.action-item i {
  font-size: 20px;
  margin-bottom: 4px
}

.action-item:hover {
  color: var(--primary)
}

.action-item .badge {
  position: absolute;
  top: -6px;
  right: 6px;
  background: var(--primary);
  color: #fff;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px
}

/* Main Nav + Mega Menu */
.main-nav {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.nav-list {
  display: flex;
  justify-content: center;
  gap: 6px
}

.nav-item {
  position: relative
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text);
  transition: .2s;
  position: relative
}

.nav-link i {
  font-size: 10px;
  transition: .2s
}

.nav-item:hover .nav-link {
  color: var(--primary)
}

.nav-item:hover .nav-link i {
  transform: rotate(180deg)
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: .25s
}

.nav-item:hover .nav-link::after {
  transform: scaleX(1)
}

.nav-item.highlight .nav-link {
  color: var(--primary)
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 900px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 0 0 var(--radius) var(--radius);
  border-top: 2px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transition: .25s;
  z-index: 99
}

.nav-item.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.mega-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 28px
}

.mega-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  letter-spacing: .5px
}

.mega-col ul li {
  margin-bottom: 10px
}

.mega-col ul a {
  color: var(--muted);
  font-size: 13px;
  transition: .2s
}

.mega-col ul a:hover {
  color: var(--primary);
  padding-left: 5px
}

.mega-promo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden
}

.mega-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px
}

.promo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .75));
  color: #fff
}

.promo-overlay span {
  font-size: 10px;
  letter-spacing: 1px;
  opacity: .9
}

.promo-overlay strong {
  display: block;
  font-size: 16px;
  margin-top: 4px
}

/* Hero Slider */
.hero {
  position: relative
}

.slider {
  position: relative;
  height: 520px;
  overflow: hidden
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .7s ease;
  display: flex;
  align-items: center
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .35), transparent 60%)
}

.slide.active {
  opacity: 1
}

.slide-content {
  position: relative;
  color: #fff;
  max-width: 520px
}

.slide-content .tag {
  display: inline-block;
  background: var(--primary);
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 16px
}

.slide-content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3)
}

.slide-content p {
  font-size: 17px;
  margin-bottom: 26px;
  opacity: .95
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: .2s
}

.slider-arrow:hover {
  background: #fff;
  color: var(--primary)
}

.slider-arrow.prev {
  left: 20px
}

.slider-arrow.next {
  right: 20px
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: .2s
}

.slider-dots .dot.active {
  background: #fff;
  width: 28px;
  border-radius: 5px
}

/* Section */
.section {
  padding: 60px 0
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -.5px;
  padding-bottom: 15px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 36px
}

/* Categories */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: .25s
}

.cat-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f4f5f7 center/cover;
  margin-bottom: 12px;
  border: 2px solid transparent;
  transition: .25s
}

.cat-item:hover .cat-img {
  border-color: var(--primary);
  transform: translateY(-4px)
}

.cat-item span {
  font-size: 13px;
  font-weight: 500
}

.cat-item:hover span {
  color: var(--primary)
}

/* Promo cards */
.promo-banners {
  padding: 20px 0 40px
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.promo-card {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #fff;
  transition: .3s
}

.promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .55), transparent 70%)
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.promo-txt {
  position: relative;
  z-index: 2
}

.promo-txt span {
  font-size: 11px;
  letter-spacing: 2px;
  opacity: .9
}

.promo-txt h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 8px 0 6px
}

.promo-txt p {
  opacity: .9;
  margin-bottom: 14px
}

.promo-txt em {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: .25s;
  position: relative
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px)
}

.product-thumb {
  position: relative;
  aspect-ratio: 3/4;
  background: #f4f5f7 center/cover;
  overflow: hidden
}

.product-thumb .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 1px
}

.product-thumb .wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: .2s;
  cursor: pointer
}

.product-thumb .wish:hover {
  color: var(--primary);
  background: #fff5f8
}

.product-info {
  padding: 14px 6px 6px
}

.product-info h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.product-info .brand {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px
}

.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px
}

.price-row .price {
  font-weight: 700;
  font-size: 15px
}

.price-row .mrp {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 12px
}

.price-row .off {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600
}

/* Wide banner */
.wide-banner {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  text-align: center
}

.wide-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45)
}

.wide-txt {
  position: relative;
  z-index: 2
}

.wide-txt span {
  font-size: 12px;
  letter-spacing: 3px;
  opacity: .9
}

.wide-txt h2 {
  font-size: 60px;
  font-weight: 700;
  margin: 10px 0
}

.wide-txt p {
  font-size: 18px;
  margin-bottom: 24px;
  opacity: .9
}

/* USP */
.usp {
  background: #8b95a526;
  padding: 40px 0
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  justify-items: center;
  /* Har item center */
  align-items: center;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 16px
}

.usp-item i {
  font-size: 32px;
  color: var(--primary)
}

.usp-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px
}

.usp-item span {
  font-size: 12px;
  color: var(--muted)
}

/* Newsletter */
.newsletter {
  background: #f4f4f4;
  color: #444;
  padding: 50px 0;
  border-bottom: 1px solid var(--accent);
}

.newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap
}

.newsletter h3 {
  font-size: 24px;
  margin-bottom: 6px
}

.newsletter p {
  opacity: .8;
  font-size: 14px
}

.news-form {
  display: flex;
  /* gap: 10px; */
  min-width: 400px
}

.news-form input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  /* border-radius: var(--radius); */
  font-size: 14px;
  outline: none;
  background-color: #1a1a1a;
}

/* Footer */
.footer {
  background: #f0f0f0;
  color: #c9c9c9;
  padding: 60px 0 0;
  font-size: 13px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 40px
}

.footer-logo {
  /* height: 40px; */
  /* background: #fff; */
  padding: 6px;
  border-radius: 4px;
  margin-bottom: 12px;
  width: auto;
  display: inline-block;
  object-fit: contain
}

.tag-line {
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px
}

.footer-col h4 {
  color: var(--text);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  font-weight: 600
}

.footer-col ul li {
  margin-bottom: 10px
}

.footer-col ul a {
  color: var(--secondary);
  transition: .2s;
}

.footer-col ul a:hover {
  color: var(--primary);
}

.footer-col p {
  margin-bottom: 10px;
  color: var(--secondary);
}

.footer-col p i {
  color: var(--primary);
  margin-right: 8px;
  width: 14px
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 16px
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2b2b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .2s
}

.socials a:hover {
  background: var(--primary)
}

.pay-icons {
  display: flex;
  gap: 12px;
  font-size: 26px;
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid #2b2b2b;
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  font-size: 12px;
  background-color: #1a1a1a;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 200;
  transition: .3s;
  padding: 0;
  overflow-y: auto
}

.mobile-drawer.open {
  left: 0
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-weight: 600
}

.drawer-head button {
  font-size: 22px
}

.drawer-list li a {
  display: block;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-weight: 500
}

.drawer-list li a.sale {
  color: var(--primary)
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: .3s
}

.overlay.active {
  opacity: 1;
  visibility: visible
}

/* Responsive */
@media(max-width:1100px) {
  .cat-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr
  }

  .mega-menu {
    width: 700px
  }
}

@media(max-width:900px) {

  .top-bar,
  .main-nav,
  .announcement-bar .container span:nth-child(3) {
    display: none
  }

  .announcement-bar .container {
    flex-wrap: nowrap;
  }

  .menu-toggle {
    display: block
  }

  .search-box {
    order: 3;
    flex-basis: 100%;
    max-width: 100%;
    margin-top: 10px
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 8px
  }

  .search-box input {
    width: 100%;
    padding: 7px 18px 7px 37px;
  }

  .action-item span {
    display: none
  }

  .slide-content h1 {
    font-size: 42px
  }

  .slider {
    height: 400px
  }

  .grid-2 {
    grid-template-columns: 1fr
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px
  }

  .newsletter-inner {
    flex-direction: column;
    text-align: center
  }

  .news-form {
    min-width: 100%;
    width: 100%
  }

  .newsletter {
    padding: 30px 0;
  }

  .wide-txt h2 {
    font-size: 40px
  }
}

@media(max-width:520px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .logo img {
    height: 30px;
    width: auto;
    object-fit: contain;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
  }

  .slide-content h1 {
    font-size: 32px
  }

  .slider {
    height: 340px
  }

  .section {
    padding: 30px 0
  }

  .section-title {
    font-size: 22px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .announcement-bar .container {
    gap: 16px;
    font-size: 9px;
    justify-content: space-between;
  }
}

/* ================= Swiper Carousel Overrides ================= */
.hero .heroSwiper {
  width: 100%;
}

.hero .heroSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}

.swiper-pagination-bullet-active {
  background: #e91e63;
}

.banner-slider .singleBanner .swiper-slide img,
.banner-slider .single-banner-link img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.deals-slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.deals-slider.dark {
  background: #1a1a1a;
  padding: 30px 0;
}

.deals-slider.dark .section-title.light {
  color: #fff;
}

.categorySwiper .cat-item {
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.categorySwiper .cat-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: 8px;
  border: 2px solid #f4f4f4;
}

.categorySwiper .cat-item span {
  font-size: 13px;
  font-weight: 500;
}

.productSwiper {
  padding-bottom: 10px;
}

.productSwiper .product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.productSwiper .product-thumb {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* ================= TOP CATEGORIES (Zivame style) ================= */
.top-categories {
  /* padding: 54px 0; */
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .05) 0, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, .06) 0, transparent 50%),
    linear-gradient(160deg, #7d1414, #9c1c1c 55%, #7d1414);
}

.tc-title {
  text-align: center;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 14px;
}

.tc-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 70px;
  height: 2px;
  background: #fff;
}

.tc-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  /* gap: 16px; */
  margin-top: 32px;
}

.tc-tile {
  display: block;
  position: relative;
  /* border-radius: 6px; */
  overflow: hidden;
  /* border: 2px solid rgba(255, 236, 214, .55); */
  /* aspect-ratio: 1/1; */
  transition: .25s;
}

.tc-tile:hover {
  /* transform: translateY(-4px); */
  border-color: #fff
}

.tc-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.tc-tile span {
  position: absolute;
  display: none;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 6px 8px;
  text-align: center;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: linear-gradient(transparent, rgba(0, 0, 0, .75));
}

@media(max-width:1100px) {
  .tc-grid {
    /* grid-template-columns: repeat(5, 1fr) */
  }
}

@media(max-width:700px) {
  .tc-grid {
    /* grid-template-columns: repeat(3, 1fr); */
    /* gap: 10px */
  }
}

@media(max-width:420px) {
  .tc-grid {
    /* grid-template-columns: repeat(2, 1fr) */
  }
}

/* ================= BESTSELLERS (tabs + price chip) ================= */
.bestsellers-section {
  padding-top: 50px
}

.bs-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px
}

.bs-title {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px
}

.bs-title i {
  color: #e8a33d;
  font-size: 18px
}

.bs-viewall {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: .2s
}

.bs-viewall:hover {
  color: var(--primary)
}

.bs-viewall i {
  font-size: 11px
}

.bs-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px
}

.bs-tab {
  padding: 9px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  background: #f2f2f3;
  color: #444;
  transition: .2s;
  white-space: nowrap;
}

.bs-tab.active {
  background: #fff;
  border: 1.5px solid #1a1a1a;
  color: #1a1a1a;
  font-weight: 700
}

.bs-tab:hover:not(.active) {
  background: #e8e8ea
}

.bestsellers-section .product-thumb {
  position: relative
}

.bestsellers-section .price-chip {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: #fff;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.bestsellers-section .price-chip s {
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px
}

.bestsellers-section .product-info h4 {
  white-space: normal;
  font-weight: 500;
  font-size: 13px;
  color: #444;
  line-height: 1.35
}

.bestsellers-section .product-info .brand {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 2px
}

/* ================= SHOPPERS TALK (review cards) ================= */
.shoppers-talk-section {
  background: var(--bg-alt)
}

.st-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
  position: relative;
  padding-bottom: 14px;
  max-width: fit-content
}

.st-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #1a1a1a
}

.shoppersSwiper {
  margin-top: 26px;
  padding-bottom: 8px
}

.review-card {
  display: flex;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.review-text-box {
  flex: 1.3;
  padding: 18px;
  background: #eef0f4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}

.rv-name {
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 4px
}

.rv-stars {
  color: #f5a623;
  font-size: 12px;
  margin-bottom: 10px
}

.rv-stars .fa-regular {
  color: #d8d8d8
}

.rv-product {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
  color: #1a1a1a
}

.rv-quote {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical
}

.review-img {
  flex: 1;
  background-size: cover;
  background-position: top center
}

/* ================= PANTY HAUL SWATCHES ================= */
.panty-haul-section .ph-swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* gap: 16px; */
  margin-top: 16px;
}

.ph-swatch {
  display: block;
  /* border-radius: 8px; */
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
  transition: .2s
}

.ph-swatch:hover {
  /* transform: translateY(-4px); */
  box-shadow: 0 8px 18px rgba(0, 0, 0, .14)
}

.ph-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

@media(max-width:600px) {
  .panty-haul-section .ph-swatches {
    /* grid-template-columns: repeat(2, 1fr) */
  }

  .bestsellers-section {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .review-card {
    height: auto;
    flex-direction: column
  }

  .footer {
    padding: 30px 0 0;
  }

  .footer-bottom {
    margin-top: 18px;
    padding: 9px 0;
    font-size: 10px;
  }

  .review-img {
    height: 140px
  }
}
/* =========================================================
   SHOP GRID (archive-product.php) + PRODUCT CARD ADD-TO-CART
   ========================================================= */
.shop-grid-section {
  padding: 40px 0 60px;
}

.category-count {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.static-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.shop-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: .2s;
}

.shop-pagination .page-numbers.current,
.shop-pagination .page-numbers:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Wish active state */
.product-thumb .wish.active,
.product-thumb .wish.active i {
  color: var(--primary);
}

.product-thumb .wish.active {
  background: #fff5f8;
}

/* Add-to-cart button rendered by woocommerce_template_loop_add_to_cart() */
.product-card-actions {
  padding: 0 6px 12px;
}

.product-card-actions .button,
.product-card-actions a.add_to_cart_button,
.product-card-actions a.button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 14px;
  border: 1.5px solid var(--text);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: .2s;
  cursor: pointer;
}

.product-card-actions .button:hover,
.product-card-actions a.add_to_cart_button:hover {
  background: var(--text);
  color: #fff;
}

.product-card-actions .button.loading {
  opacity: .6;
  pointer-events: none;
}

.product-card-actions .added_to_cart {
  display: block;
  margin-top: 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
}

.product-card-actions .button.product_type_outofstock,
.product-card-actions a.button.disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

/* =========================================================
   TOAST NOTIFICATION
   ========================================================= */
.teenplus-toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 20px);
  background: #1a1a1a;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: .25s;
  z-index: 9999;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.teenplus-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.teenplus-toast.error {
  background: #c62828;
}

/* =========================================================
   CART PAGE
   ========================================================= */
.cart-section {
  padding: 40px 0 60px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 30px;
  align-items: flex-start;
}

.cart-items-wrap {
  transition: opacity .2s;
}

.cart-items-wrap.is-loading {
  opacity: .5;
  pointer-events: none;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.cart-table thead th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--muted);
  font-weight: 600;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.cart-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.cart-row:last-child td {
  border-bottom: none;
}

.cart-product {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cart-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 90px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f4f5f7;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-product-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.cart-product-title:hover {
  color: var(--primary);
}

.cart-product-info .variation {
  font-size: 12px;
  color: var(--muted);
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
}

.qty-stepper button {
  width: 30px;
  height: 30px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: .2s;
}

.qty-stepper button:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.qty-stepper .qty-input {
  width: 36px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 30px;
  font-size: 13px;
  font-weight: 600;
  -moz-appearance: textfield;
}

.qty-stepper .qty-input::-webkit-outer-spin-button,
.qty-stepper .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-remove {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--muted);
  transition: .2s;
}

.cart-remove:hover {
  background: #fdeaee;
  color: var(--primary);
}

.cart-actions-row {
  margin-top: 18px;
}

.continue-shopping {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .2s;
}

.continue-shopping:hover {
  color: var(--primary);
}

/* Empty states */
.cart-empty,
.wishlist-empty {
  text-align: center;
  padding: 70px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.cart-empty i,
.wishlist-empty i {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 16px;
}

.cart-empty h3,
.wishlist-empty h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.cart-empty p,
.wishlist-empty p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 20px;
}

/* Totals box */
.cart-totals-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 20px;
}

.cart-totals-box h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.coupon-form {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.coupon-form input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 12px;
  outline: none;
}

.coupon-form input:focus {
  border-color: var(--primary);
}

.coupon-form .btn {
  padding: 10px 16px;
  font-size: 11px;
}

.coupon-message {
  font-size: 12px;
  min-height: 16px;
  margin-bottom: 10px;
}

.coupon-message.error {
  color: #c62828;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.coupon-row {
  color: var(--primary);
  font-size: 12px;
}

.remove-coupon {
  color: var(--muted);
  margin-left: 6px;
  font-weight: 700;
}

.remove-coupon:hover {
  color: var(--primary);
}

.totals-grand {
  border-bottom: none;
  font-size: 16px;
  font-weight: 700;
  padding-top: 14px;
}

.checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 16px;
  padding: 14px;
}

.secure-note {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
}

.cross-sells-section {
  margin-top: 50px;
}

.cross-sells-section .cross-sells > h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cross-sells-section ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
}

/* =========================================================
   CHECKOUT PAGE
   ========================================================= */
.checkout-section .woocommerce-notices-wrapper {
  margin-bottom: 18px;
}

.checkout-section .woocommerce-error,
.checkout-section .woocommerce-message,
.checkout-section .woocommerce-info {
  list-style: none;
  background: var(--bg-alt);
  border-left: 3px solid var(--primary);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  margin-bottom: 10px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 30px;
  align-items: flex-start;
}

.checkout-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.checkout-customer-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.checkout-col h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.checkout-col .form-row {
  margin-bottom: 14px;
}

.checkout-col .form-row-first,
.checkout-col .form-row-last {
  display: inline-block;
  width: 48%;
}

.checkout-col .form-row-first {
  margin-right: 4%;
}

.checkout-col label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.checkout-col label .required {
  color: var(--primary);
  text-decoration: none;
}

.checkout-col .input-text,
.checkout-col select,
.checkout-col textarea,
.checkout-col .select2-container .select2-selection--single {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-family: var(--font-main);
  outline: none;
  background: #fff;
  height: auto;
}

.checkout-col .select2-container .select2-selection--single {
  padding: 9px 14px;
}

.checkout-col .input-text:focus,
.checkout-col select:focus,
.checkout-col textarea:focus {
  border-color: var(--primary);
}

.checkout-col textarea {
  min-height: 90px;
  resize: vertical;
}

.checkout-col .woocommerce-additional-fields,
.checkout-col .woocommerce-shipping-fields,
.checkout-col .create-account {
  margin-top: 10px;
}

.checkout-col .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.checkout-col .woocommerce-form__label-for-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

/* Order review table inside the sticky totals box */
.checkout-order-box .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.checkout-order-box .shop_table th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.checkout-order-box .shop_table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.checkout-order-box .cart-subtotal th,
.checkout-order-box .order-total th {
  font-weight: 600;
}

.checkout-order-box .order-total .woocommerce-Price-amount {
  font-size: 16px;
  font-weight: 700;
}

.checkout-order-box .product-name {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.checkout-order-box .product-name .product-quantity {
  color: var(--muted);
  font-weight: 400;
}

/* Payment methods */
.checkout-order-box #payment {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 16px;
}

.checkout-order-box ul.payment_methods {
  list-style: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.checkout-order-box ul.payment_methods li {
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
}

.checkout-order-box ul.payment_methods li input {
  margin-right: 8px;
}

.checkout-order-box .payment_box {
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

.checkout-order-box .woocommerce-terms-and-conditions-wrapper {
  font-size: 12px;
  margin-bottom: 12px;
}

.checkout-order-box #place_order {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 13px;
}

/* WooCommerce's blockUI loading overlay while order review updates via AJAX */
.checkout-order-box.processing,
#order_review.processing {
  position: relative;
  opacity: .6;
  pointer-events: none;
}

/* =========================================================
   WISHLIST PAGE
   ========================================================= */
.wishlist-section {
  padding: 40px 0 60px;
}

.wishlist-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}

@media(max-width: 1100px) {
  .static-grid,
  .cross-sells-section ul.products {
    grid-template-columns: repeat(3, 1fr);
  }

  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .cart-totals-box {
    position: static;
  }

  .checkout-customer-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media(max-width: 600px) {
  .checkout-form-wrap {
    padding: 18px;
  }

  .checkout-col .form-row-first,
  .checkout-col .form-row-last {
    width: 100%;
    margin-right: 0;
  }
}

@media(max-width: 900px) {
  .cart-table thead {
    display: none;
  }

  .cart-table td {
    display: block;
    border-bottom: none;
    padding: 6px 16px;
  }

  .cart-row {
    display: block;
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
  }

  .col-price::before,
  .col-qty::before,
  .col-subtotal::before {
    content: attr(data-label);
    font-size: 11px;
    color: var(--muted);
    display: block;
    margin-bottom: 4px;
  }

  .col-remove {
    text-align: right;
  }
}

@media(max-width: 700px) {
  .static-grid,
  .cross-sells-section ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media(max-width: 480px) {
  .cart-product {
    flex-direction: column;
  }

  .cart-thumb {
    width: 100%;
    height: 160px;
  }
}

/* =========================================================
   SINGLE PRODUCT — Manual Size Selector (non-variation)
   ========================================================= */
.teenplus-size-selector {
  margin: 18px 0;
}

.teenplus-size-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.teenplus-size-label .req {
  color: var(--primary);
}

.teenplus-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.teenplus-size-chip {
  min-width: 46px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
}

.teenplus-size-chip:hover {
  border-color: var(--secondary);
}

.teenplus-size-chip.selected {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}

.teenplus-size-error {
  color: #c0392b;
  font-size: 12px;
  margin-top: 8px;
}

/* =========================================================
   THANK YOU / ORDER RECEIVED PAGE
   ========================================================= */
.thankyou-section {
  padding: 50px 0 70px;
}

.thankyou-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.thankyou-head.is-success {
  background: #eafaf0;
  border: 1px solid #b7ecc8;
}

.thankyou-head.is-failed {
  background: #fdecec;
  border: 1px solid #f5c2c0;
}

.thankyou-icon {
  font-size: 34px;
  line-height: 1;
}

.thankyou-head.is-success .thankyou-icon { color: #1e9e5a; }
.thankyou-head.is-failed  .thankyou-icon { color: #c0392b; }

.thankyou-head-text .st-title {
  margin-bottom: 6px;
  font-size: 24px;
}

.thankyou-sub {
  color: var(--muted);
  font-size: 14px;
  max-width: 640px;
}

.thankyou-overview {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 30px;
  overflow: hidden;
}

.thankyou-overview li {
  flex: 1 1 200px;
  padding: 16px 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--muted);
  border-right: 1px solid var(--border);
}

.thankyou-overview li:last-child { border-right: none; }

.thankyou-overview li strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  text-transform: none;
  color: var(--text);
}

.thankyou-failed-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.thankyou-failed-actions .btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

.thankyou-failed-actions .btn-primary {
  background: var(--primary);
  color: #fff;
}

.thankyou-failed-actions .btn-primary:hover {
  background: var(--primary-dark);
}

.thankyou-failed-actions .btn-outline {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}

/* Default WooCommerce order-details table / customer details — restyled to match theme */
.thankyou-section .woocommerce-table--order-details,
.thankyou-section table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.thankyou-section .woocommerce-table--order-details th,
.thankyou-section .woocommerce-table--order-details td,
.thankyou-section table.shop_table th,
.thankyou-section table.shop_table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  text-align: left;
}

.thankyou-section .woocommerce-table--order-details thead th {
  background: var(--bg-alt);
  font-weight: 600;
}

.thankyou-section h2 {
  font-size: 18px;
  margin: 28px 0 14px;
}

.thankyou-section .woocommerce-customer-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.thankyou-section .woocommerce-column--billing-address,
.thankyou-section .woocommerce-column--shipping-address {
  flex: 1 1 260px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.thankyou-section address {
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

@media(max-width: 600px) {
  .thankyou-head {
    flex-direction: column;
  }
}

/* =========================================================
   SINGLE PRODUCT PAGE
   ========================================================= */
.single-product-section {
  padding: 40px 0 60px;
}

.single-product-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  margin-bottom: 40px;
}

/* ---- Gallery: vertical thumbnail rail on the left + main image ---- */
.single-product-gallery {
  position: sticky;
  top: 20px;
  align-self: start;
}

.woocommerce-product-gallery {
  display: flex;
  flex-direction: row-reverse;
  gap: 14px;
}

.woocommerce-product-gallery__wrapper {
  flex: 1 1 auto;
  min-width: 0;
  width: 100% !important;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

/* FlexSlider (WooCommerce's gallery JS) sets fixed pixel widths inline on
   these elements based on the viewport at load time. If the layout changes
   at our breakpoints (grid columns, sticky->static, etc.) that cached px
   width goes stale and the main image gets pushed out of view / disappears.
   Forcing 100% width here keeps the gallery correctly sized at every
   screen size regardless of what FlexSlider computed on load. */
.woocommerce-product-gallery .flex-viewport,
.woocommerce-product-gallery ul.woocommerce-product-gallery__wrapper,
.woocommerce-product-gallery__image {
  width: 100% !important;
}

.woocommerce-product-gallery__image img {
  max-width: 100% !important;
}

.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.flex-control-thumbs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 78px;
  flex: 0 0 78px;
}

/* ===== Custom gallery (replaces default FlexSlider gallery) ===== */
.teenplus-gallery {
  display: flex;
  gap: 16px;
}

.teenplus-gallery__main {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  border-radius: var(--radius, 12px);
  overflow: hidden;
  background: var(--bg-alt, #f7f7f7);
  border: 1px solid var(--border, #eee);
}

.teenplus-gallery__main-item {
  display: none;
}

.teenplus-gallery__main-item.is-active {
  display: block;
}

.teenplus-gallery__main-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.teenplus-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 78px;
  flex: 0 0 78px;
  max-height: 560px;
  overflow-y: auto;
}

.teenplus-gallery__thumb {
  padding: 0;
  margin: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  line-height: 0;
  flex-shrink: 0;
}

.teenplus-gallery__thumb.is-active {
  border-color: var(--primary, #ff7966);
}

.teenplus-gallery__thumb img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

@media (max-width: 700px) {
  .teenplus-gallery {
    flex-direction: column;
    gap: 8px;
  }

  /* Mobile: hide thumbs, show main images as a horizontal swipe slider */
  .teenplus-gallery__thumbs { display: none !important; }

  .teenplus-gallery__main {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 10px;
  }
  .teenplus-gallery__main::-webkit-scrollbar { display: none; }

  .teenplus-gallery__main-item {
    display: block !important;
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
  .teenplus-gallery__main-img {
    width: 100%;
    height: auto;
  }
}

/* ===== Color swatches (csw) ===== */
.csw-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 14px;
}
.csw-swatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border: 2px solid #e6e6e6;
  border-radius: 30px;
  cursor: pointer;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  font-size: 13px;
  line-height: 1;
  user-select: none;
}
.csw-swatch:hover { border-color: #d63e73; }
.csw-swatch.selected {
  border-color: #d63e73;
  box-shadow: 0 0 0 3px rgba(214,62,115,.15);
}
.csw-swatch-color {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(0,0,0,.1);
  flex-shrink: 0;
}
.csw-swatch-name { color: #241a1e; font-weight: 500; }
.csw-hidden-input { display: none; }


@media (min-width: 701px) {
  .flex-control-thumbs {
    width: 96px;
    flex: 0 0 78px;
    max-height: 669px;
    overflow-y: auto;
  }
}

.flex-control-thumbs li img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  opacity: .75;
  transition: all .15s ease;
}

.flex-control-thumbs li img:hover {
  opacity: 1;
}

.flex-control-thumbs li img.flex-active {
  border-color: var(--secondary);
  opacity: 1;
}

/* ---- Summary column ---- */
.single-product-summary .product_title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.single-product-summary .woocommerce-product-rating {
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--muted);
}

.single-product-summary .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  display: block;
}

.single-product-summary .price del {
  color: var(--muted);
  font-weight: 400;
  font-size: 15px;
  margin-right: 8px;
}

.single-product-summary .price ins {
  text-decoration: none;
  color: var(--primary);
}

.single-product-summary p.stock {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

/* Feature tag chips (Padded, Wirefree, Cotton...) */
.teenplus-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.teenplus-feature-chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--secondary);
}

.single-product-summary .woocommerce-product-details__short-description {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.single-product-summary .woocommerce-product-details__short-description ul {
  padding-left: 18px;
}

/* Add to cart form */
.single-product-summary form.cart {
  margin-bottom: 20px;
}

.single-product-summary .quantity {
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 12px;
}

.single-product-summary .quantity .qty {
  width: 70px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  font-size: 14px;
}

.single-product-summary .single_add_to_cart_button {
  height: 46px;
  padding: 0 34px;
  border: none;
  border-radius: var(--radius);
  background: var(--secondary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  cursor: pointer;
}

.single-product-summary .single_add_to_cart_button:hover {
  background: var(--primary);
}

.single-product-summary .product_meta {
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 10px;
}

.single-product-summary .product_meta > span {
  display: block;
  margin-bottom: 4px;
}

/* ---- Tabs (description / additional info / reviews) ---- */
.single-product-tabs {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  margin-bottom: 50px;
}

.single-product-tabs .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 10px;
  list-style: none;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.single-product-tabs .woocommerce-tabs ul.tabs li {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
  border-bottom: 2px solid transparent;
}

.single-product-tabs .woocommerce-tabs ul.tabs li.active {
  color: var(--text);
  border-bottom-color: var(--primary);
}

.single-product-tabs .woocommerce-tabs .panel {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* ---- Related products ---- */
.related-products-section {
  border-top: 1px solid var(--border);
  padding-top: 30px;
}

.related-products-section > h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Reuse existing product-card grid pattern for related products */
.related-products-section ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
}

@media(max-width: 1100px) {
  .single-product-wrap {
    grid-template-columns: 1fr;
  }

  .single-product-gallery {
    position: static;
  }

  .related-products-section ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 700px) {
  .woocommerce-product-gallery {
    flex-direction: column-reverse;
  }

  .flex-control-thumbs {
    flex-direction: row;
    width: 100%;
    flex: none;
    overflow-x: auto;
  }

  .flex-control-thumbs li img {
    width: 60px;
  }

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