:root {
  --primary-color: #096B6C;
  /* Main TorsoTale color */
  --primary-hover: #075253;
  --bg-color: #ffffff;
  --text-color: #2b2b2b;
  --border-color: #eaeaea;
}

@keyframes tt-shimmer {
  0% {
    background-position: -600px 0;
  }

  100% {
    background-position: 600px 0;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* Adjusts scroll position so sticky navbar doesn't overlap content */
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

main {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* =========================================
   Navbar Styles
   ========================================= */
.app-navbar {
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 5%;
  background-color: var(--bg-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.nav-brand {
  flex-shrink: 0;
}

.nav-brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 48px;
  /* Adjust according to original ratio */
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.8rem;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

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

.nav-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.mobile-cart-icon {
  display: none !important;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border-color);
  background: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  cursor: pointer;
}

.nav-mobile-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-icon-close {
  display: none;
}

.nav-toggle.open .nav-icon-menu {
  display: none;
}

.nav-toggle.open .nav-icon-close {
  display: block;
}

.nav-menu {
  display: contents;
}

.nav-drawer-header {
  display: none !important;
}

.mobile-only-link {
  display: none !important;
}

.mobile-social-icons {
  display: none;
}

.nav-icons a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-icons a:hover {
  color: var(--primary-color);
  transform: scale(1.05);
}

.nav-icons button {
  background: none;
  border: none;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.nav-icons button:hover {
  color: var(--primary-color);
  transform: scale(1.05);
}

.lucide {
  width: 20px;
  height: 20px;
}

/* Cart Badge */
.cart-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-color);
  font-family: inherit;
  cursor: pointer;
  transform: translateZ(0);
  /* Helps font rendering consistency during scale */
  transition: color 0.3s ease, transform 0.2s ease;
}

.cart-icon-wrapper:hover {
  color: var(--primary-color);
  transform: scale(1.05);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.65rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================================
   EXACT REACT REPLICA HERO SLIDER STYLES
   ========================================= */

.hero-slider-exact {
  position: relative;
  height: clamp(60vh, 92vh, 800px);
  width: calc(100% - 2.5rem);
  max-width: 1536px;
  margin: 0 auto 0;
  border-radius: 2rem 2rem 0 0;
  overflow: hidden;
  cursor: grab;
  background-color: transparent;
}

.hero-slider-exact:active {
  cursor: grabbing;
}

.slides-container-exact {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-exact {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.slide-exact.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-exact.exit {
  opacity: 0;
  z-index: 9;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-exact-bg {
  position: absolute;
  inset: -30px;
  /* Expand past edges to prevent parallax exposing white background */
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  background-size: cover;
  background-position: center;
  transform: none;
  transition: none;
}

.slide-fade-overlay {
  position: absolute;
  inset: 0;
  background-color: white;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 1.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-exact.active .slide-fade-overlay {
  opacity: 0;
  animation: fadeWhite 1.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeWhite {
  0% {
    opacity: 0.25;
  }

  100% {
    opacity: 0;
  }
}

.slide-exact-content-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.slide-exact-content {
  text-align: center;
  color: white;
  padding: 0 1rem;
  width: 100%;
  max-width: 100%;
}

.slide-exact-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 1.75rem;
  line-height: 1.95rem;
  font-weight: 400;
  letter-spacing: 0.6px;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(15px);
  transition: all 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s;
}

@media (min-width: 768px) {
  .slide-exact-subtitle {
    font-size: 1.95rem;
  }
}

.slide-exact.active .slide-exact-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.slide-exact-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  opacity: 0;
  transform: translateY(15px);
  transition: all 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.4s;
}

@media (min-width: 768px) {
  .slide-exact-title {
    font-size: 3.9rem;
  }
}

@media (min-width: 1024px) {
  .slide-exact-title {
    font-size: 4.4rem;
  }
}

.slide-exact.active .slide-exact-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-exact-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(15px);
  transition: all 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.6s;
}

@media (min-width: 768px) {
  .slide-exact-desc {
    font-size: 1.12rem;
  }
}

.slide-exact.active .slide-exact-desc {
  opacity: 1;
  transform: translateY(0);
}

.slide-exact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(15px);
  transition: all 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.7s;
}

@media (min-width: 640px) {
  .slide-exact-buttons {
    flex-direction: row;
  }
}

.slide-exact.active .slide-exact-buttons {
  opacity: 1;
  transform: translateY(0);
}

.btn-exact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 2.6rem;
  padding: 0 1.45rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  border-radius: 9999px;
  /* Fully rounded buttons as requested */
  text-decoration: none;
  backdrop-filter: blur(2px);
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Tailwind exact match colors from your React app */
.btn-exact-primary {
  background-color: #096c6c;
  /* saree.teal */
  color: #F8F8F0;
  /* saree.off-white */
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.55);
}

.btn-exact-primary:hover {
  background-color: #075858;
  /* hover:bg-saree-deep-teal */
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.65);
}

.btn-exact-outline {
  background-color: rgba(255, 255, 255, 0.03);
  color: #F8F8F0;
  border: 1px solid #F8F8F0;
}

.btn-exact-outline:hover {
  background-color: rgba(248, 248, 240, 0.18);
  /* hover:bg-saree-off-white/20 */
}

.btn-exact .lucide {
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  transform: translateX(0);
  transition: transform 0.25s ease;
  will-change: transform;
}

.group:hover .group-hover-translate-x {
  transform: translateX(0.2rem);
}

.transition-transform {
  transition: transform 0.25s ease;
}

.slider-exact-indicators {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  /* space-x-3 */
  z-index: 20;
}

/* Slider Navigation Buttons */
.slider-nav-prev,
.slider-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-nav-prev:hover,
.slider-nav-next:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
}

.slider-nav-prev {
  left: 2rem;
}

.slider-nav-next {
  right: 2rem;
}

.slider-nav-prev .lucide,
.slider-nav-next .lucide {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.indicator-exact {
  height: 3px;
  width: 22px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.5);
  /* bg-white/50 */
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.indicator-exact:hover {
  background-color: rgba(255, 255, 255, 0.7);
  /* hover:bg-white/70 */
}

.indicator-exact.active {
  background-color: white;
  width: 34px;
  transform: none;
}

@media (max-width: 1200px) {
  .app-navbar {
    padding: 0.45rem 3.5%;
  }

  .nav-menu {
    gap: 1.25rem;
  }

  .nav-links {
    gap: 1.8rem;
  }

  .nav-icons {
    gap: 1rem;
  }

  .hero-slider-exact {
    height: clamp(50vh, calc(100vh - 62px), 700px);
  }
}

@media (max-width: 991px) {
  .app-navbar {
    padding: 0.45rem 4%;
    position: sticky;
    z-index: 1001;
  }

  .brand-logo {
    height: 42px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-cart-icon {
    display: inline-flex !important;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
  }

  .desktop-cart-icon {
    display: none !important;
  }

  /* Backdrop */
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-backdrop.open {
    display: block;
    opacity: 1;
  }

  /* Drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 72vw;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-drawer-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0rem 1.4rem 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.75rem 0;
    position: static;
    transform: none;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.85rem 1.4rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-icons {
    gap: 1.25rem;
    width: 100%;
    justify-content: flex-start;
    padding: 1.25rem 1.4rem;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
  }

  .mobile-only-link {
    display: block !important;
  }

  .desktop-user-icon {
    display: none !important;
  }

  .mobile-social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }

  .hero-slider-exact {
    width: calc(100% - 1rem);
    margin: 0 auto 0;
    height: clamp(50vh, calc(100vh - 62px), 700px);
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .slide-exact-content {
    padding: 0 1.2rem;
  }

  .slide-exact-subtitle {
    font-size: 1.55rem;
    line-height: 1.8rem;
  }

  .slide-exact-title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .slide-exact-desc {
    font-size: 1rem;
    max-width: 30rem;
    margin-bottom: 1.4rem;
  }

  .btn-exact {
    height: 2.5rem;
    font-size: 0.84rem;
    padding: 0 1.2rem;
  }

  .slider-nav-prev,
  .slider-nav-next {
    width: 42px;
    height: 42px;
  }

  .slider-nav-prev {
    left: 0.9rem;
  }

  .slider-nav-next {
    right: 0.9rem;
  }
}

@media (max-width: 767px) {
  .app-navbar {
    padding: 0.45rem 3.5%;
  }

  .nav-menu {
    padding: 1rem 3.5% 1.2rem;
  }

  .hero-slider-exact {
    height: 60vh;
    border-radius: 1rem 1rem 0 0;
    margin: 0 auto 0;
  }

  .slide-exact-content {
    padding: 0 1rem;
  }

  .slide-exact-subtitle {
    font-size: 1.4rem;
    line-height: 1.55rem;
  }

  .slide-exact-title {
    font-size: 2.25rem;
    margin-bottom: 0.8rem;
  }

  .slide-exact-desc {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    max-width: 23rem;
  }

  .slide-exact-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-exact {
    min-width: 210px;
    height: 2.45rem;
  }

  .slider-nav-prev,
  .slider-nav-next {
    display: none;
  }

  .slider-exact-indicators {
    bottom: 1.2rem;
    gap: 0.5rem;
  }

  .indicator-exact {
    width: 16px;
    height: 3px;
  }

  .indicator-exact.active {
    width: 24px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    height: 38px;
  }

  .nav-toggle {
    width: 34px;
    height: 34px;
  }

  .slide-exact-subtitle {
    font-size: 1.25rem;
    line-height: 1.4rem;
  }

  .slide-exact-title {
    font-size: 1.95rem;
  }

  .slide-exact-desc {
    font-size: 0.84rem;
    max-width: 18.5rem;
  }

  .btn-exact {
    min-width: 195px;
    font-size: 0.8rem;
  }
}

/* Ensure app-navbar doesn't overlap weirdly when hero is set to 100vh */
.app-navbar {
  /* No changes needed, sticky handles it */
}

/* =========================================
   Section Defaults (shared)
   ========================================= */
.tt-section {
  padding: 5rem 5% 0;
  max-width: 1536px;
  margin: 0 auto;
  position: relative;
}

.tt-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.25rem;
}

.tt-eyebrow {
  font-family: 'Mona Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tt-section-title {
  font-family: 'Mona Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  display: block;
}

.tt-section-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: #6b6b6b;
  line-height: 1.7;
  margin-top: 0.5rem;
}

.tt-teal {
  color: var(--primary-color);
}

.tt-section-footer {
  text-align: center;
  margin-top: 2.75rem;
}

.tt-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 9999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  letter-spacing: 0.3px;
}

.tt-view-all:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.tt-view-all .lucide {
  width: 1rem;
  height: 1rem;
}

/* =========================================
   Category Section
   ========================================= */

.tt-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.tt-category-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  display: block;
  cursor: pointer;
  background: linear-gradient(90deg, #f0f0f0 25%, #e6e6e6 50%, #f0f0f0 75%);
  background-size: 600px 100%;
  animation: tt-shimmer 1.4s ease-in-out infinite;
}

.tt-category-card.img-loaded {
  background: #f7f6f2;
  animation: none;
}

.tt-category-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.tt-category-card.img-loaded .tt-category-img {
  opacity: 1;
}

.tt-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.tt-category-card.img-loaded .tt-category-overlay {
  opacity: 1;
}

.tt-category-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.75rem 1.75rem 1.6rem;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.tt-category-card.img-loaded .tt-category-content {
  opacity: 1;
}

.tt-category-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.92;
}

.tt-category-name {
  font-family: 'Mona Sans', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.tt-category-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.tt-category-cta .lucide {
  width: 0.9rem;
  height: 0.9rem;
}

/* =========================================
   Product Cards
   ========================================= */

.tt-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 1rem;
  row-gap: 2rem;
}

.product-card {
  background-color: #fff;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  border: none;
  cursor: pointer;
}

.product-card-image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #f7f6f2;
}

.product-card.skeleton-active .product-card-image-wrap {
  background: linear-gradient(90deg, #f0f0f0 25%, #e6e6e6 50%, #f0f0f0 75%);
  background-size: 600px 100%;
  animation: tt-shimmer 1.4s ease-in-out infinite;
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card.skeleton-active .product-card-cart {
  visibility: hidden;
}

/* Skeleton bars for card body */
.product-card.skeleton-active .product-card-name {
  width: 72%;
  height: 0.85rem;
  background: linear-gradient(90deg, #f0f0f0 25%, #e6e6e6 50%, #f0f0f0 75%);
  background-size: 600px 100%;
  animation: tt-shimmer 1.4s ease-in-out infinite;
  color: transparent;
  border-radius: 3px;
  overflow: hidden;
}

.product-card.skeleton-active .product-card-pricing {
  width: 55%;
  height: 0.8rem;
  background: linear-gradient(90deg, #f0f0f0 25%, #e6e6e6 50%, #f0f0f0 75%);
  background-size: 600px 100%;
  animation: tt-shimmer 1.4s ease-in-out infinite;
  border-radius: 3px;
  overflow: hidden;
}

.product-card.skeleton-active .product-card-pricing>* {
  visibility: hidden;
}

.product-card.skeleton-active .product-card-saved {
  width: 45%;
  height: 0.72rem;
  background: linear-gradient(90deg, #f0f0f0 25%, #e6e6e6 50%, #f0f0f0 75%);
  background-size: 600px 100%;
  animation: tt-shimmer 1.4s ease-in-out infinite;
  color: transparent;
  border-radius: 3px;
  overflow: hidden;
}

.product-card-cart {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #2b2b2b;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s ease;
  z-index: 2;
}

.product-card-cart:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.product-card-cart .lucide {
  width: 0.85rem;
  height: 0.85rem;
  stroke-width: 2;
  transition: none;
}

.product-card-body {
  padding: 0.6rem 0 0;
  text-align: left;
}

.product-card-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #2b2b2b;
  margin-bottom: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card-pricing {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.product-card-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #2b2b2b;
}

.product-card-original {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  color: #aaa;
  text-decoration: line-through;
}

.product-card-off {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #26a541;
}

.product-card-saved {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #26a541;
  margin-top: 0.2rem;
}

/* =========================================
   Final CTA
   ========================================= */

.tt-final-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 5rem;
  min-height: 520px;
}

.tt-cta-col {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
}

.tt-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.tt-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.08) 100%);
}

.tt-cta-content {
  position: relative;
  z-index: 2;
  padding: 2.75rem 3rem;
  color: #fff;
}

.tt-cta-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.55rem;
  opacity: 0.8;
}

.tt-cta-title {
  font-family: 'Mona Sans', sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.tt-cta-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.65;
  opacity: 0.82;
  margin-bottom: 1.4rem;
  max-width: 26rem;
}

.tt-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.tt-cta-col:hover .tt-cta-btn {
  border-color: #fff;
}

.tt-cta-btn .lucide {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform 0.2s ease;
}

.tt-cta-col:hover .tt-cta-btn .lucide {
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .tt-final-cta {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .tt-cta-col {
    min-height: 360px;
  }

  .tt-cta-content {
    padding: 2rem 1.5rem;
  }
}

/* =========================================
   Instagram Section
   ========================================= */

.tt-instagram {
  padding-left: 0;
  padding-right: 0;
}

.tt-instagram .tt-section-head {
  padding-left: 5%;
  padding-right: 5%;
}

.tt-insta-handle {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.tt-insta-handle:hover {
  text-decoration: underline;
}

.tt-insta-track {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-left: 5%;
  padding-right: 5%;
  scroll-padding-left: 5%;
  cursor: grab;
  will-change: scroll-position;
}

.tt-insta-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
  -webkit-user-select: none;
}

.tt-insta-track.is-dragging .tt-insta-card,
.tt-insta-track.is-dragging .tt-insta-card * {
  pointer-events: none;
  transition: none !important;
}

.tt-insta-track::-webkit-scrollbar {
  display: none;
}

.tt-insta-card {
  flex: 0 0 22%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  display: block;
  scroll-snap-align: start;
  background: linear-gradient(90deg, #f0f0f0 25%, #e6e6e6 50%, #f0f0f0 75%);
  background-size: 600px 100%;
  animation: tt-shimmer 1.4s ease-in-out infinite;
  cursor: grab;
}

.tt-insta-card.img-loaded {
  background: #f7f6f2;
  animation: none;
}

.tt-insta-track.is-dragging .tt-insta-card {
  cursor: grabbing;
}

.tt-insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.tt-insta-card.img-loaded img {
  opacity: 1;
}

.tt-insta-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.tt-insta-overlay .lucide {
  width: 1.75rem;
  height: 1.75rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  stroke-width: 1.5;
}

.tt-insta-card:hover .tt-insta-overlay {
  background-color: rgba(0, 0, 0, 0.35);
}

.tt-insta-card:hover .tt-insta-overlay .lucide {
  opacity: 1;
}

/* =========================================
   Footer
   ========================================= */

.tt-footer {
  background-color: #111;
  color: #fff;
  margin-top: 5rem;
}

.tt-footer .ft-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 5rem 5% 1.75rem;
}

/* TOP — brand + CTA card */
.tt-footer .ft-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: stretch;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tt-footer .ft-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tt-footer .ft-brand-name {
  font-family: 'Mona Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.tt-footer .ft-tag {
  font-family: 'Mona Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.tt-footer .ft-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin-bottom: 2rem;
}

.tt-footer .ft-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tt-footer .ft-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.tt-footer .ft-social-link:hover {
  background: rgba(9, 107, 108, 0.3);
  border-color: rgba(9, 107, 108, 0.6);
  color: #fff;
}

.tt-footer .ft-social-link img {
  width: 15px;
  height: 15px;
  display: block;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.tt-footer .ft-social-link:hover img {
  opacity: 1;
}

/* CTA / Newsletter card */
.tt-footer .ft-cta {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tt-footer .ft-cta-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.tt-footer .ft-cta-h {
  font-family: 'Mona Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 1rem;
}

.tt-footer .ft-cta-body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.tt-footer .ft-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1rem;
  background: var(--primary-color);
  color: #fff;
  border-radius: 9999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
  margin-top: auto;
}

.tt-footer .ft-cta-btn:hover {
  background: var(--primary-hover);
}

/* Column grid */
.tt-footer .ft-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.25rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tt-footer .ft-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

.tt-footer .ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.tt-footer .ft-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tt-footer .ft-links a:hover {
  color: #fff;
}

.tt-footer .ft-links--info li {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* Bottom bar */
.tt-footer .ft-bottom {
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.tt-footer .ft-copy {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.tt-footer .ft-legal {
  display: flex;
  gap: 1.5rem;
}

.tt-footer .ft-legal a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tt-footer .ft-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1000px) {
  .tt-footer .ft-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tt-footer .ft-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .tt-footer .ft-wrap {
    padding: 3rem 5% 1.5rem;
  }

  .tt-footer .ft-cols {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }

  .tt-footer .ft-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================
   Responsive (sections)
   ========================================= */
@media (max-width: 1100px) {
  .tt-category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

}

@media (max-width: 900px) {
  .tt-section {
    padding: 5rem 5% 0rem;
  }

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

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

@media (max-width: 640px) {
  .tt-section {
    padding: 5rem 4% 0rem;
  }

  .tt-section-title {
    font-size: 1.75rem;
  }

  .tt-category-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 0.75rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }

  .tt-category-grid::-webkit-scrollbar {
    display: none;
  }

  .tt-category-card {
    flex: 0 0 72vw;
    aspect-ratio: 3 / 4;
    scroll-snap-align: start;
  }

  .tt-category-name {
    font-size: 1.6rem;
  }

  .tt-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }

  .product-card-body {
    padding: 0.75rem 0.6rem 0.9rem;
  }

  .product-card-name {
    font-size: 0.92rem;
  }

  .product-card-price {
    font-size: 0.92rem;
  }

  .product-card-original {
    font-size: 0.74rem;
  }

  .product-card-cart {
    font-size: 0.75rem;
    padding: 0.6rem;
  }

  .tt-insta-card {
    flex: 0 0 55vw;
  }
}

/* =========================================
   Cart Drawer Styles
   ========================================= */
/* Cart Backdrop */
.cart-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-backdrop.open {
  display: block;
  opacity: 1;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  display: flex;
  flex-direction: column;
  padding: 0;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1002;
  overflow-y: auto;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.cart-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
}

.cart-close {
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

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

.cart-close .lucide {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.cart-content {
  flex: 1;
  padding: 1.5rem 1.4rem;
  overflow-y: auto;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
  gap: 0.75rem;
}

.cart-empty-icon {
  width: 48px;
  height: 48px;
  color: #d0d0d0;
}

.cart-empty-text {
  font-size: 0.95rem;
  color: #6b6b6b;
  margin: 0;
}

.cart-continue {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.6rem 1.2rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

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

.cart-footer {
  padding: 1rem 1.4rem;
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.cart-total span:first-child {
  font-weight: 600;
  color: var(--text-color);
}

.cart-total span:last-child {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.cart-checkout {
  width: 100%;
  padding: 0.8rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cart-checkout:hover {
  background-color: var(--primary-hover);
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.cart-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cart-item-image {
  width: 80px;
  height: 92px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  overflow: hidden;
  justify-content: center;
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
  margin: 0;
  line-height: 1.3;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item-pricing {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0;
}

.cart-item-original {
  font-size: 0.8rem;
  color: #aaa;
  text-decoration: line-through;
}

.cart-item-off {
  font-size: 0.8rem;
  font-weight: 600;
  color: #26a541;
}

.cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  width: fit-content;
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  font-size: 1.2rem;
  transition: background-color 0.2s;
}

.qty-btn:hover {
  background-color: #f5f5f5;
}

.qty-input {
  width: 36px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  font-size: 0.9rem;
  height: 28px;
  padding: 0;
  -moz-appearance: textfield;
}

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

.cart-item-total {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
  margin-right: 0.5rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #e53e3e;
  cursor: pointer;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-remove:hover {
  opacity: 0.8;
}

.cart-item-remove .lucide {
  width: 18px;
  height: 18px;
}

@media (max-width: 991px) {
  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
  }
}