/* Vicodin — medical ecommerce (template layout) */
:root {
  --v-green: #0a9a73;
  --v-green-dark: #087a5b;
  --v-orange: #f0a202;
  --v-hero-bg: #d9eef8;
  --v-text: #071c1f;
  --v-muted: #5c727d;
  --v-border: #e6eaed;
  --v-topbar: #f5f7f8;
  --v-dark: #071c1f;
  --font: "Nunito Sans", system-ui, sans-serif;
  --display: "Josefin Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--v-muted);
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--v-green); text-decoration: none; }
a:hover { color: var(--v-green-dark); }
ul { list-style: none; margin: 0; padding: 0; }
.container { width: min(1200px, calc(100% - 2rem)); margin-inline: auto; }
h1,h2,h3,h4,.logo-text,.section-title,.slide-title {
  font-family: var(--display); color: var(--v-text); letter-spacing: -0.02em;
}
.body-wrapper { overflow-x: hidden; }

/* ========== HEADER ========== */
.ltn-header-top {
  background: var(--v-topbar);
  border-bottom: 1px solid var(--v-border);
  font-size: 0.88rem;
}
.ltn-top-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 42px; gap: 1rem; flex-wrap: wrap;
}
.ltn-top-menu { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.ltn-top-menu a, .ltn-top-menu li {
  display: inline-flex; align-items: center; gap: 0.4rem; color: var(--v-muted);
}
.ltn-top-menu a:hover { color: var(--v-green); }
.ltn-top-right { display: flex; align-items: center; gap: 1.25rem; }
.ltn-lang { position: relative; }
.ltn-lang-toggle {
  background: none; border: 0; cursor: pointer; font: inherit; color: var(--v-muted);
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.ltn-lang-drop {
  display: none; position: absolute; right: 0; top: 100%;
  background: #fff; border: 1px solid var(--v-border); min-width: 120px;
  z-index: 50; box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.ltn-lang-drop.is-open { display: block; }
.ltn-lang-drop a {
  display: block; padding: 0.5rem 0.85rem; color: var(--v-text); font-size: 0.88rem;
}
.ltn-lang-drop a:hover { background: #f5f7f8; color: var(--v-green); }
.ltn-social { display: flex; gap: 0.85rem; }
.ltn-social a { color: var(--v-text); }
.ltn-social a:hover { color: var(--v-green); }

.ltn-header-middle { background: #fff; padding: 1.1rem 0; }
.ltn-mid-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 1.5rem;
}
.site-logo {
  display: inline-flex; align-items: center; gap: 0.55rem; color: inherit;
}
.logo-mark { display: inline-flex; line-height: 0; }
.logo-text { font-size: 1.75rem; font-weight: 700; color: var(--v-text); }
.header-search form {
  display: flex; border: 1px solid var(--v-border); background: #f8fafb;
  max-width: 520px; margin-inline: auto; width: 100%;
}
.header-search input {
  flex: 1; border: 0; background: transparent; padding: 0.85rem 1rem;
  font: inherit; outline: none; min-width: 0;
}
.header-search button {
  border: 0; background: var(--v-green); color: #fff; width: 52px; cursor: pointer;
}
.header-search button:hover { background: var(--v-green-dark); }
.mini-cart {
  display: inline-flex; align-items: center; gap: 0.7rem; color: inherit;
}
.mini-cart-ico {
  position: relative; font-size: 1.35rem; color: var(--v-text);
}
.mini-cart-ico sup {
  position: absolute; top: -8px; right: -10px;
  background: var(--v-green); color: #fff; border-radius: 50%;
  font-style: normal; font-size: 0.68rem; min-width: 18px; height: 18px;
  display: grid; place-items: center; font-family: var(--font); font-weight: 700;
}
.mini-cart-meta { display: flex; flex-direction: column; line-height: 1.2; }
.mini-cart-meta span { color: var(--v-text); font-weight: 700; font-size: 0.72rem; }
.mini-cart-meta strong { color: var(--v-green); font-size: 0.95rem; }

.mobile-menu-bar { display: none; border-top: 1px solid var(--v-border); padding: 0.65rem 0; }
.mobile-menu-toggle {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: none; border: 0; font: inherit; font-weight: 700; cursor: pointer;
  color: var(--v-text);
}

.ltn-header-bottom {
  border-top: 1px solid var(--v-border);
  border-bottom: 1px solid var(--v-border);
  background: #fff;
}
.ltn-bottom-inner {
  display: grid; grid-template-columns: 240px 1fr auto;
  align-items: center; gap: 1rem; min-height: 56px;
}
.ltn-category-wrap { position: relative; height: 100%; }
.ltn-category-title {
  width: 100%; height: 56px; border: 0; cursor: pointer;
  background: var(--v-green); color: #fff; font-family: var(--display);
  font-weight: 700; font-size: 1rem; text-transform: lowercase;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  letter-spacing: 0.02em;
}
.ltn-category-title:hover, .ltn-category-title.is-open { background: var(--v-green-dark); }
.ltn-category-menu {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border: 1px solid var(--v-border); z-index: 40;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.ltn-category-menu.is-open { display: block; }
.ltn-category-menu a {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.75rem 1rem; color: var(--v-text); border-bottom: 1px solid var(--v-border);
  font-weight: 600; font-size: 0.92rem;
}
.ltn-category-menu a span { margin-left: auto; color: var(--v-muted); font-weight: 500; }
.ltn-category-menu a:hover { color: var(--v-green); background: #f8fafb; }
.ltn-category-menu a i { color: var(--v-green); width: 1.1rem; text-align: center; }

.ltn-main-menu ul { display: flex; gap: 1.75rem; justify-content: center; flex-wrap: wrap; }
.ltn-main-menu a {
  color: var(--v-text); font-weight: 700; font-size: 0.95rem; padding: 0.5rem 0;
}
.ltn-main-menu a.is-active, .ltn-main-menu a:hover { color: var(--v-green); }
.header-phone a {
  color: var(--v-green); font-weight: 700; font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.header-phone i { color: var(--v-orange); }

/* ========== BUTTONS ========== */
.theme-btn, .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border: 0; cursor: pointer; font-family: var(--display); font-weight: 600;
  padding: 0.85rem 1.6rem; transition: 0.2s ease;
  background: var(--v-green); color: #fff; border-radius: 2px;
}
.theme-btn:hover, .btn:hover, .btn-primary:hover { background: var(--v-green-dark); color: #fff; }
.btn-primary { background: var(--v-green); color: #fff; border-radius: 2px; }
.btn-ghost { background: #fff; color: var(--v-text); border: 1px solid var(--v-border); }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.88rem; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.text-link {
  color: var(--v-green); font-weight: 700; text-decoration: underline;
  text-underline-offset: 3px; margin-left: 1rem;
}
.btn-wrapper { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }

/* ========== SLIDER ========== */
.ltn-slider-area { padding: 1.75rem 0 0; }
.ltn-slider-grid {
  display: grid; grid-template-columns: 1.55fr 0.9fr; gap: 1.25rem; align-items: stretch;
}
.ltn-slider {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 4px;
  isolation: isolate;
}
.ltn-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s ease, visibility .55s ease;
  z-index: 1;
}
.ltn-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
.ltn-slide.tone-blue {
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.55), transparent 28%),
    linear-gradient(135deg, #d7eef8 0%, #c5e6f4 45%, #b7dcef 100%);
}
.ltn-slide.tone-mint {
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.55), transparent 28%),
    linear-gradient(135deg, #d8f3ea 0%, #c6ebe0 45%, #b5e2d5 100%);
}
.ltn-slide.tone-teal {
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.55), transparent 28%),
    linear-gradient(135deg, #d3ebe6 0%, #c0e0d9 45%, #aed5cc 100%);
}
.ltn-slide-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 1rem;
  align-items: center; padding: 2.75rem 2.5rem 3.5rem; height: 100%;
  min-height: 420px;
}
.slide-info { position: relative; z-index: 2; max-width: 34rem; }
.slide-sub {
  color: var(--v-green); font-weight: 700; margin: 0 0 0.75rem;
  font-size: 1.05rem; font-family: var(--display);
}
.slide-title {
  font-size: clamp(2.1rem, 3.8vw, 3.15rem); line-height: 1.12;
  margin: 0 0 0.65rem; max-width: 11ch;
}
.slide-product-name {
  margin: 0 0 0.55rem; color: var(--v-muted); font-size: 0.95rem;
  font-weight: 600; max-width: 28ch;
}
.slide-price {
  color: var(--v-orange); font-family: var(--display); font-weight: 700;
  font-size: 1.35rem; margin: 0;
}
.slide-img {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
}
.slide-img-glow {
  position: absolute;
  width: min(78%, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.75) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
}
.slide-img img {
  position: relative; z-index: 1;
  width: min(100%, 300px); max-height: 300px; object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(7,60,80,.16));
  animation: slideFloat 5.5s ease-in-out infinite;
}
.ltn-slide.is-active .slide-info {
  animation: slideInLeft .55s ease both;
}
.ltn-slide.is-active .slide-img {
  animation: slideInRight .55s ease both;
}
@keyframes slideFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

.ltn-slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 42px; height: 42px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.88); color: var(--v-text);
  cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(7,28,31,.1); transition: .2s;
}
.ltn-slider-arrow:hover { background: var(--v-green); color: #fff; }
.ltn-slider-arrow.prev { left: 14px; }
.ltn-slider-arrow.next { right: 14px; }

.ltn-slider-dots {
  position: absolute; left: 2.5rem; bottom: 1.35rem; display: flex; gap: 0.45rem; z-index: 5;
}
.ltn-slider-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0;
  background: rgba(7,28,31,.22); cursor: pointer; padding: 0; transition: .2s;
}
.ltn-slider-dots button.is-active {
  background: var(--v-green); width: 26px; border-radius: 999px;
}

.ltn-side-banners { display: flex; flex-direction: column; gap: 1.25rem; }
.ltn-promo-card {
  flex: 1; min-height: 198px; display: grid; grid-template-columns: 1.15fr 0.85fr;
  align-items: center; gap: 0.75rem; padding: 1.25rem 1.15rem;
  border-radius: 4px; overflow: hidden; color: inherit; position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ltn-promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(7,40,50,.1);
  color: inherit;
}
.ltn-promo-card.promo-a {
  background: linear-gradient(135deg, #e8f7f2 0%, #d4efe7 55%, #c5e8dd 100%);
}
.ltn-promo-card.promo-b {
  background: linear-gradient(135deg, #e7f3fb 0%, #d5e9f6 55%, #c5dff0 100%);
}
.promo-copy { display: flex; flex-direction: column; gap: 0.35rem; z-index: 1; }
.promo-tag {
  display: inline-flex; align-self: flex-start;
  background: var(--v-green); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 0.28rem 0.55rem; letter-spacing: .03em; text-transform: uppercase;
}
.promo-copy strong {
  color: var(--v-text); font-family: var(--display); font-size: 1.05rem; line-height: 1.25;
}
.promo-copy em {
  font-style: normal; color: var(--v-orange); font-weight: 800; font-size: 0.95rem;
}
.promo-cta {
  margin-top: 0.35rem; color: var(--v-green); font-weight: 700; font-size: 0.88rem;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.promo-thumb {
  display: flex; align-items: center; justify-content: center;
}
.promo-thumb img {
  width: 100%; max-width: 120px; max-height: 120px; object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(7,60,80,.12));
  transition: transform .3s ease;
}
.ltn-promo-card:hover .promo-thumb img { transform: scale(1.06); }

/* Keep older banner utility for featured/about sections */
.ltn-banner-item {
  position: relative; display: block; overflow: hidden; background: #f4f7f8;
  flex: 1; min-height: 168px;
}
.ltn-banner-item img {
  width: 100%; height: 100%; object-fit: cover; min-height: 168px;
  transition: transform .35s ease;
}
.ltn-banner-item:hover img { transform: scale(1.04); }
.ltn-banner-item.tall { min-height: 220px; }
.ltn-banner-item.tall img { min-height: 220px; }
.banner-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(7,28,31,.72));
  color: #fff; display: flex; flex-direction: column; gap: 0.15rem;
}
.banner-caption strong { color: #fff; font-family: var(--display); font-size: 0.95rem; }
.banner-caption em { font-style: normal; color: #c8f5e5; font-size: 0.85rem; font-weight: 700; }

/* ========== CATEGORY CARDS ========== */
.ltn-category-area { padding: 1.75rem 0 2rem; }
.ltn-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.ltn-cat-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid var(--v-border);
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  min-height: 96px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ltn-cat-card:hover {
  color: inherit;
  text-decoration: none;
  border-color: var(--v-green);
  box-shadow: 0 10px 24px rgba(10, 154, 115, 0.1);
  transform: translateY(-2px);
}
.ltn-cat-card.is-all {
  background: linear-gradient(145deg, #0a9a73, #087a5b);
  border-color: transparent;
  color: #fff;
}
.ltn-cat-card.is-all:hover { color: #fff; }
.ltn-cat-card.is-all .ltn-cat-count,
.ltn-cat-card.is-all p { color: rgba(255,255,255,.78); }
.ltn-cat-card.is-all h6 { color: #fff; }
.ltn-cat-media {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: #f4faf8;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0.35rem;
}
.ltn-cat-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.ltn-cat-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(10,154,115,.12);
  color: var(--v-green);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}
.ltn-cat-card.is-all .ltn-cat-ico {
  background: rgba(255,255,255,.16);
  color: #fff;
}
.ltn-cat-copy { min-width: 0; }
.ltn-cat-count {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--v-green);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 0.2rem;
}
.ltn-cat-copy h6 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-family: var(--font);
  font-weight: 800;
  color: var(--v-text);
  line-height: 1.25;
}
.ltn-cat-copy p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--v-muted);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1100px) {
  .ltn-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
  .ltn-cat-grid { grid-template-columns: 1fr; }
  .ltn-cat-copy p { white-space: normal; }
}

/* ========== PRODUCTS ========== */
.ltn-product-area { padding-bottom: 2rem; }
.pt-65 { padding-top: 3.5rem; }
.pt-115 { padding-top: 4.5rem; }
.pb-70 { padding-bottom: 3.5rem; }
.section-title-area { text-align: center; margin-bottom: 2rem; }
.section-title { margin: 0; font-size: clamp(1.6rem, 3vw, 2.1rem); }

.featured-layout {
  display: grid; grid-template-columns: 240px 1fr; gap: 1.25rem;
}
.featured-side { display: flex; flex-direction: column; gap: 1.25rem; }
.featured-grid, .product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.product-grid { grid-template-columns: repeat(4, 1fr); }
.product-grid-center .ltn-product-item { text-align: center; }

.ltn-product-item { background: #fff; }
.ltn-product-item.text-left .product-info { text-align: left; }
.ltn-product-item.text-center .product-info { text-align: center; }
.product-img {
  position: relative; aspect-ratio: 1; background: #f4f7f8; overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-badge { position: absolute; top: 12px; left: 12px; z-index: 2; }
.sale-badge {
  background: #e74c3c; color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 0.55rem; display: inline-block;
}
.sale-badge.oos { background: #5c727d; }
.product-hover-action {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(7,28,31,.35); opacity: 0; transition: .25s;
}
.product-img:hover .product-hover-action { opacity: 1; }
.product-hover-action ul { display: flex; gap: 0.4rem; }
.product-hover-action a {
  width: 42px; height: 42px; background: #fff; color: var(--v-text);
  display: grid; place-items: center; border-radius: 2px;
}
.product-hover-action a:hover { background: var(--v-green); color: #fff; }
.product-info { padding: 1rem 0.15rem 0.5rem; }
.product-ratting ul { display: flex; gap: 0.15rem; justify-content: inherit; margin-bottom: 0.35rem; }
.text-center .product-ratting ul { justify-content: center; }
.product-ratting i { color: var(--v-orange); font-size: 0.78rem; }
.product-title {
  margin: 0 0 0.4rem; font-size: 1rem; line-height: 1.35;
  font-family: var(--display); font-weight: 600;
}
.product-title a { color: var(--v-text); }
.product-title a:hover { color: var(--v-green); }
.product-price { display: flex; gap: 0.55rem; align-items: center; flex-wrap: wrap; }
.text-center .product-price { justify-content: center; }
.product-price span { color: var(--v-green); font-weight: 800; }
.product-price del { color: var(--v-muted); font-size: 0.9rem; }

/* Legacy aliases for shop/product pages */
.product-card { background: #fff; }
.card-media { position: relative; aspect-ratio: 1; background: #f4f7f8; overflow: hidden; display: block; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1rem 0; }
.card-title { margin: 0 0 0.35rem; font-size: 1rem; }
.card-title a { color: var(--v-text); }
.card-price { color: var(--v-green); font-weight: 800; }
.badge { position: absolute; top: 10px; left: 10px; background: #e74c3c; color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.5rem; }

/* ========== PRODUCT SPOTLIGHT ========== */
.ltn-countdown-area,
.ltn-spotlight-area {
  margin-top: 2rem;
  background:
    linear-gradient(105deg, rgba(10,154,115,.94) 0%, rgba(8,90,70,.9) 55%, rgba(7,28,31,.7) 100%),
    var(--v-hero-bg);
  padding: 3.25rem 0 3.5rem;
  color: #fff;
}
.spotlight-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.75rem;
}
.spotlight-head .slide-sub { color: #c8f5e5; }
.spotlight-head .section-title { color: #fff; margin: 0 0 0.65rem; }
.spotlight-head p {
  color: rgba(255,255,255,.88);
  margin: 0;
  line-height: 1.5;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.spotlight-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.9rem;
  align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 0.9rem;
  color: #fff;
  text-decoration: none;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.spotlight-card:hover {
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.18);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
.spotlight-media {
  width: 110px;
  height: 110px;
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 0.45rem;
  overflow: hidden;
}
.spotlight-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.spotlight-copy { min-width: 0; }
.spotlight-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #c8f5e5;
  margin-bottom: 0.3rem;
}
.spotlight-copy strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}
.spotlight-copy em {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 0.7rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.spotlight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.spotlight-meta b {
  font-size: 1.05rem;
  color: #fff;
}
.spotlight-meta span {
  font-size: 0.8rem;
  font-weight: 700;
  color: #c8f5e5;
}
.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  margin-top: 1.75rem;
}
.spotlight-actions .theme-btn { background: #fff; color: var(--v-green); }
.spotlight-actions .theme-btn:hover { background: #e8fff6; color: var(--v-green-dark); }
.spotlight-actions .text-link { color: #fff; margin-left: 0; }

@media (max-width: 991px) {
  .spotlight-grid { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  .spotlight-card { grid-template-columns: 88px 1fr; }
  .spotlight-media { width: 88px; height: 88px; }
  .spotlight-copy em { white-space: normal; }
}

/* ========== BANNER ROW ========== */
.ltn-banner-area { padding: 2.5rem 0 0; }
.banner-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.banner-row .ltn-banner-item { min-height: 200px; }
.banner-row .ltn-banner-item img { min-height: 200px; }

/* ========== SMALL PRODUCTS ========== */
.ltn-small-product-area {
  background: #f5f7f8; margin-top: 3.5rem; padding: 4rem 0 3rem;
}
.small-product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem 1.5rem;
}
.ltn-small-product-item {
  display: flex; gap: 1rem; align-items: center; background: #fff;
  padding: 0.85rem; border: 1px solid var(--v-border);
}
.small-product-img {
  flex: 0 0 90px; width: 90px; height: 90px; background: #f4f7f8; overflow: hidden;
}
.small-product-img img { width: 100%; height: 100%; object-fit: cover; }
.small-product-info { min-width: 0; }
.small-product-info .product-title { font-size: 0.95rem; }

/* ========== ABOUT ========== */
.ltn-about-area {
  background:
    linear-gradient(90deg, rgba(217,238,248,.95) 45%, rgba(217,238,248,.55) 100%),
    #d9eef8;
  padding: 4.5rem 0;
  margin-top: 1rem;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
}
.about-visual img {
  max-height: 360px; margin-inline: auto;
  filter: drop-shadow(0 18px 30px rgba(7,60,80,.12));
  object-fit: contain;
}
.ltn-list-half {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1rem;
  margin: 1.5rem 0;
}
.ltn-list-half li {
  display: flex; align-items: center; gap: 0.55rem;
  color: var(--v-text); font-weight: 600;
}
.ltn-list-half i { color: var(--v-green); }

/* ========== FEATURE STRIP ========== */
.ltn-feature-area { padding: 1.5rem 0; background: #f5f7f8; margin-top: 0; }
.ltn-feature-box {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  background: #fff; border: 1px solid var(--v-border); padding: 1.25rem;
}
.ltn-feature-item { display: flex; gap: 0.85rem; align-items: center; }
.ltn-feature-icon {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: rgba(10,154,115,.1); color: var(--v-green);
  display: grid; place-items: center; font-size: 1.15rem;
}
.ltn-feature-info h4 {
  margin: 0 0 0.15rem; font-size: 1rem; font-family: var(--display);
}
.ltn-feature-info p { margin: 0; font-size: 0.88rem; }

/* ========== FOOTER ========== */
.ltn-footer { background: #071c1f; color: #c5d2d7; margin-top: 0; }
.footer-top { padding: 3.5rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 1.75rem;
}
.footer-widget .logo-text { color: #fff; }
.footer-widget p { margin: 0.75rem 0 1rem; }
.footer-title {
  color: #fff; margin: 0 0 1rem; font-size: 1.15rem;
}
.footer-menu a, .footer-address a {
  display: block; color: #c5d2d7; margin: 0.4rem 0;
}
.footer-menu a:hover, .footer-address a:hover { color: #fff; }
.footer-address li {
  display: flex; gap: 0.65rem; align-items: flex-start; margin: 0.55rem 0;
}
.footer-address i { color: var(--v-green); margin-top: 0.2rem; }
.footer-social { display: flex; gap: 0.85rem; margin-top: 1rem; }
.footer-social a { color: #fff; }
.footer-newsletter {
  display: flex; border: 1px solid rgba(255,255,255,.15); margin-top: 0.75rem;
}
.footer-newsletter input {
  flex: 1; border: 0; background: transparent; color: #fff;
  padding: 0.75rem 0.85rem; font: inherit; outline: none; min-width: 0;
}
.footer-newsletter input::placeholder { color: #8aa0a8; }
.footer-newsletter button {
  border: 0; background: var(--v-green); color: #fff; width: 48px; cursor: pointer;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 1rem 0 1.25rem;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap; font-size: 0.9rem;
}
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal a { color: #c5d2d7; }
.footer-legal a:hover { color: #fff; }

/* ========== INNER PAGES ========== */
.section { padding: 3.5rem 0; }
.section-alt { background: #f8fafb; }
.section-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 1.5rem; gap: 1rem; }
.section-head h2 { margin: 0; font-size: 1.8rem; }
.page-hero { padding: 2.5rem 0 1rem; background: var(--v-hero-bg); }
.page-hero h1 { margin: 0 0 0.4rem; }
.page-hero p { margin: 0; }

.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 2rem; }
.shop-sidebar { border: 1px solid var(--v-border); padding: 1.1rem; position: sticky; top: 1rem; background: #fff; }
.cat-list { list-style: none; padding: 0; margin: 0; }
.cat-list a { display: flex; justify-content: space-between; padding: 0.45rem 0; color: var(--v-muted); }
.cat-list a.is-active, .cat-list a:hover { color: var(--v-green); font-weight: 700; }
.search-form { display: flex; gap: 0.4rem; margin-bottom: 1rem; }
.search-form input, .contact-form input, .contact-form textarea, .qty-wrap input {
  width: 100%; border: 1px solid var(--v-border); padding: 0.7rem 0.8rem; font: inherit; background: #fff;
}
.result-count { margin: 0 0 1rem; }

.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.product-main-img { width: 100%; aspect-ratio: 1; object-fit: cover; border: 1px solid var(--v-border); background: #f4f7f8; }
.thumbs { display: flex; gap: 0.6rem; margin-top: 0.75rem; flex-wrap: wrap; }
.thumb { border: 1px solid var(--v-border); width: 72px; height: 72px; padding: 0; overflow: hidden; cursor: pointer; background: #fff; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info h1 { margin-top: 0; }
.product-meta { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1rem; }
.price { color: var(--v-green); font-weight: 800; font-size: 1.35rem; }
.stock.in { color: var(--v-green); font-weight: 700; }
.stock.out { color: #e74c3c; font-weight: 700; }
.feature-list { padding-left: 1.1rem; }
.add-form { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; margin: 1.25rem 0; }
.qty-wrap { display: inline-flex; border: 1px solid var(--v-border); }
.qty-wrap button { border: 0; background: #f5f7f8; width: 38px; height: 38px; cursor: pointer; }
.qty-wrap input { width: 52px; border: 0; text-align: center; padding: 0.4rem 0; }
.sku { font-size: 0.85rem; }

.cart-table { display: flex; flex-direction: column; gap: 1rem; }
.cart-row {
  display: grid; grid-template-columns: 88px 1fr auto auto auto; gap: 1rem; align-items: center;
  border: 1px solid var(--v-border); padding: 0.85rem;
}
.cart-img img { width: 88px; height: 88px; object-fit: cover; background: #f4f7f8; }
.cart-info h3 { margin: 0 0 0.35rem; font-size: 1rem; }
.cart-info a { color: var(--v-text); }
.cart-actions { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; align-items: center; }
.cart-summary { text-align: right; }
.link-btn { background: none; border: 0; color: #e74c3c; cursor: pointer; font: inherit; text-decoration: underline; }
.empty-cart, .empty { text-align: center; padding: 2rem; }

.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; }
.contact-form { display: grid; gap: 0.9rem; }
.contact-form label { display: grid; gap: 0.35rem; font-weight: 700; color: var(--v-text); font-size: 0.92rem; }
.prose { max-width: 70ch; color: var(--v-muted); }
.prose h2 { color: var(--v-text); }

.flash { margin: 1rem 0 0; padding: 0.85rem 1rem; font-weight: 600; }
.flash-success { background: #e5f8ef; color: #087a5b; }
.flash-error { background: #fdeceb; color: #8f1f16; }

/* Shop product grid uses ltn cards now */
.shop-layout .product-grid { grid-template-columns: repeat(3, 1fr); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .ltn-bottom-inner { grid-template-columns: 200px 1fr; }
  .header-phone { display: none; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 980px) {
  .ltn-slider-grid, .featured-layout, .about-grid,
  .product-layout, .shop-layout, .contact-layout { grid-template-columns: 1fr; }
  .ltn-slider { min-height: 380px; }
  .ltn-slide-inner { grid-template-columns: 1fr 1fr; min-height: 380px; padding: 2.25rem 1.75rem 3.25rem; }
  .banner-row, .ltn-feature-box, .small-product-grid { grid-template-columns: 1fr 1fr; }
  .featured-side { display: grid; grid-template-columns: 1fr 1fr; }
  .shop-sidebar { position: static; }
  .header-search { display: none; }
  .ltn-mid-inner { grid-template-columns: 1fr auto; }
  .ltn-side-banners { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .mobile-menu-bar { display: block; }
  .ltn-header-bottom { border-top: 0; }
  .ltn-bottom-inner { grid-template-columns: 1fr; position: relative; }
  .ltn-category-wrap { order: 2; }
  .ltn-category-title { height: 48px; }
  .ltn-main-menu {
    display: none; position: absolute; left: 0; right: 0; top: 0;
    background: #fff; border: 1px solid var(--v-border); z-index: 30;
    padding: 0.75rem 1rem;
  }
  .ltn-main-menu.is-open { display: block; }
  .ltn-main-menu ul { flex-direction: column; gap: 0; align-items: stretch; }
  .ltn-main-menu a { display: block; padding: 0.7rem 0; border-bottom: 1px solid var(--v-border); }
  .ltn-slide-inner {
    grid-template-columns: 1fr; text-align: center;
    padding: 2rem 1.25rem 3.25rem; min-height: 460px;
  }
  .ltn-slider { min-height: 460px; }
  .slide-title, .slide-product-name { margin-inline: auto; }
  .slide-img { order: -1; min-height: 180px; }
  .slide-img img { max-height: 180px; width: min(100%, 180px); }
  .btn-wrapper { justify-content: center; }
  .ltn-slider-dots { left: 50%; transform: translateX(-50%); }
  .ltn-slider-arrow { width: 36px; height: 36px; }
  .ltn-slider-arrow.prev { left: 8px; }
  .ltn-slider-arrow.next { right: 8px; }
  .ltn-side-banners { grid-template-columns: 1fr; }
  .ltn-promo-card { min-height: 160px; }
  .product-grid, .featured-grid, .banner-row, .ltn-feature-box,
  .small-product-grid, .footer-grid, .shop-layout .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ltn-list-half { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 72px 1fr; }
  .mini-cart-meta { display: none; }
  .ltn-top-menu li:last-child { display: none; }
}

@media (max-width: 480px) {
  .product-grid, .featured-grid, .banner-row, .ltn-feature-box,
  .small-product-grid, .footer-grid, .shop-layout .product-grid {
    grid-template-columns: 1fr;
  }
  .featured-side { grid-template-columns: 1fr; }
}
