/* Theme 1 - Fashion commerce refresh */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --t1-ink: #101828;
  --t1-text: #344054;
  --t1-muted: #667085;
  --t1-soft: #f6f8fb;
  --t1-panel: #ffffff;
  --t1-line: #e4e7ec;
  --t1-brand: #0f766e;
  --t1-brand-dark: #0f4f4a;
  --t1-accent: #f59e0b;
  --t1-danger: #dc2626;
  --t1-shadow: 0 22px 60px rgba(16, 24, 40, 0.1);
  --t1-radius: 8px;
  --t1-section: clamp(46px, 7vw, 92px);
  --t1-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.t1-premium {
  color: var(--t1-ink);
  font-family: var(--t1-font);
  background: #fff;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.t1-premium a {
  text-decoration: none;
}

.t1-premium > .t1-hero:first-child {
  margin-top: 0 !important;
}

.t1-hero {
  position: relative;
  min-height: min(690px, calc(100vh - 122px));
  display: flex;
  align-items: center;
  margin: 0;
  background-color: var(--t1-ink);
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.t1-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 24, 40, 0.82) 0%, rgba(16, 24, 40, 0.58) 43%, rgba(16, 24, 40, 0.18) 100%),
    linear-gradient(180deg, rgba(16, 24, 40, 0.08), rgba(16, 24, 40, 0.42));
}

.t1-hero .container {
  position: relative;
  z-index: 1;
}

.t1-hero-content {
  width: min(680px, 100%);
  padding: clamp(42px, 8vw, 96px) 0;
}

.t1-hero-badge,
.t1-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--t1-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.t1-hero-badge {
  padding: 9px 14px;
  margin-bottom: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.t1-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 900;
  line-height: 0.98;
}

.t1-hero-sub {
  max-width: 610px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.65;
}

.t1-hero-actions,
.t1-featured-meta,
.t1-pcard-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.t1-hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.t1-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.t1-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--t1-radius);
  font-family: var(--t1-font);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.t1-btn:hover {
  transform: translateY(-2px);
}

.t1-btn-primary {
  color: var(--t1-ink);
  background: #fff;
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.18);
}

.t1-btn-primary:hover,
.t1-btn-dark:hover {
  color: #fff;
  background: var(--t1-brand);
}

.t1-btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
}

.t1-btn-outline:hover {
  color: var(--t1-ink);
  background: #fff;
}

.t1-btn-dark {
  color: #fff;
  background: var(--t1-ink);
}

.t1-trustbar {
  background: #fff;
  border-bottom: 1px solid var(--t1-line);
}

.t1-trustbar-grid {
  min-height: 64px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.t1-trustbar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 10px;
  color: var(--t1-text);
  font-size: 13px;
  font-weight: 800;
  border-right: 1px solid var(--t1-line);
}

.t1-trustbar-item:last-child {
  border-right: 0;
}

.t1-trustbar-item i {
  color: var(--t1-brand);
}

.t1-category-showcase,
.t1-products-section,
.t1-testimonials {
  padding: var(--t1-section) 0;
}

.t1-category-showcase,
.t1-testimonials {
  background: var(--t1-soft);
}

.t1-section-header {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.t1-section-header-split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  text-align: left;
}

.t1-section-title {
  margin: 8px 0 0;
  color: var(--t1-ink);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.05;
}

.t1-section-desc {
  max-width: 560px;
  margin: 12px auto 0;
  color: var(--t1-muted);
  font-size: 15px;
  line-height: 1.65;
}

.t1-section-header-split .t1-section-desc {
  margin: 0;
}

.t1-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.t1-category-card {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  border-radius: var(--t1-radius);
  background: #d0d5dd;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.08);
}

.t1-category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.t1-category-card:hover img {
  transform: scale(1.05);
}

.t1-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 40, 0.02) 0%, rgba(16, 24, 40, 0.74) 100%);
}

.t1-category-content {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 24px;
  color: #fff;
}

.t1-category-content small,
.t1-category-content em {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.t1-category-content strong {
  display: block;
  margin: 7px 0 13px;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.08;
}

.t1-promos {
  padding: 34px 0;
  background: #fff;
}

.t1-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.t1-promo-card {
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--t1-line);
  border-radius: var(--t1-radius);
  background: #fff;
}

.t1-promo-card i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  color: #fff;
  background: var(--t1-brand);
  border-radius: 50%;
}

.t1-promo-card h4 {
  margin: 0 0 5px;
  color: var(--t1-ink);
  font-size: 16px;
  font-weight: 900;
}

.t1-promo-card p {
  margin: 0;
  color: var(--t1-muted);
  font-size: 13px;
  line-height: 1.45;
}

.t1-featured-product {
  padding: var(--t1-section) 0;
  background: #fff;
}

.t1-featured-product-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid var(--t1-line);
  border-radius: var(--t1-radius);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.t1-featured-copy h2 {
  margin: 8px 0 14px;
  color: var(--t1-ink);
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.04;
}

.t1-featured-copy p {
  margin: 0 0 18px;
  color: var(--t1-muted);
  font-size: 16px;
  line-height: 1.7;
}

.t1-featured-meta {
  margin-bottom: 24px;
}

.t1-featured-meta span,
.t1-pcard-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--t1-text);
  font-size: 12px;
  font-weight: 800;
}

.t1-featured-meta i,
.t1-pcard-trust i {
  color: var(--t1-brand);
}

.t1-featured-media {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--t1-radius);
  background: var(--t1-soft);
  overflow: hidden;
}

.t1-featured-media img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  padding: clamp(18px, 4vw, 42px);
}

.t1-featured-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: min(310px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--t1-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--t1-shadow);
  backdrop-filter: blur(16px);
}

.t1-featured-card small {
  color: var(--t1-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.t1-featured-card strong,
.t1-featured-card span {
  display: block;
}

.t1-featured-card strong {
  margin: 6px 0 8px;
  color: var(--t1-ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}

.t1-featured-card span {
  color: var(--t1-brand-dark);
  font-size: 21px;
  font-weight: 900;
}

.t1-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.t1-tab {
  display: block;
  padding: 10px 18px;
  border: 1px solid var(--t1-line);
  border-radius: 999px;
  color: var(--t1-text);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.t1-tab-item.active .t1-tab,
.t1-tab:hover {
  color: #fff;
  border-color: var(--t1-ink);
  background: var(--t1-ink);
}

.t1-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.t1-pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--t1-line);
  border-radius: var(--t1-radius);
  background: #fff;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.t1-pcard:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: var(--t1-shadow);
}

.t1-pcard-img {
  position: relative;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: var(--t1-soft);
}

.t1-pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.34s ease;
}

.t1-pcard:hover .t1-pcard-img img {
  transform: scale(1.04);
}

.t1-pcard-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 6px 9px;
  color: var(--t1-ink);
  background: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.t1-pcard-wish {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--t1-line);
  border-radius: 50%;
  color: var(--t1-text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
}

.t1-pcard-wish:hover,
.t1-pcard-wish i.fas {
  color: var(--t1-danger);
}

.t1-pcard-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.t1-pcard-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 8px;
  color: var(--t1-accent);
  font-size: 12px;
}

.t1-pcard-cat {
  margin: 0 0 6px;
  color: var(--t1-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.t1-pcard-name {
  min-height: 46px;
  margin: 0 0 10px;
}

.t1-pcard-name a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--t1-ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.t1-pcard-name a:hover {
  color: var(--t1-brand-dark);
}

.t1-pcard-price {
  margin: 0 0 10px;
  color: var(--t1-ink);
  font-size: 20px;
  font-weight: 900;
}

.t1-pcard-price-variant {
  font-size: 14px;
  color: var(--t1-text);
}

.t1-pcard-trust {
  gap: 10px;
  margin-bottom: 15px;
}

.t1-pcard-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: auto;
}

.t1-btn-cart,
.t1-btn-buynow,
.t1-btn-options {
  min-height: 44px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: var(--t1-radius);
  border: 1px solid transparent;
  font-family: var(--t1-font);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.t1-btn-cart,
.t1-btn-options {
  color: #fff;
  background: var(--t1-ink);
}

.t1-btn-buynow {
  color: var(--t1-ink);
  border-color: var(--t1-line);
  background: #fff;
}

.t1-btn-cart:hover,
.t1-btn-options:hover {
  color: #fff;
  background: var(--t1-brand);
}

.t1-btn-buynow:hover {
  color: #fff;
  border-color: var(--t1-brand);
  background: var(--t1-brand);
}

.t1-tab-pane {
  display: none;
}

.t1-tab-pane.active {
  display: block;
}

.t1-empty {
  padding: 58px 20px;
  color: var(--t1-muted);
  text-align: center;
}

.t1-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.t1-testimonial-card {
  padding: 24px;
  border: 1px solid var(--t1-line);
  border-radius: var(--t1-radius);
  background: #fff;
}

.t1-stars {
  display: flex;
  gap: 4px;
  color: var(--t1-accent);
  font-size: 13px;
}

.t1-testimonial-card p {
  margin: 16px 0;
  color: var(--t1-text);
  font-size: 15px;
  line-height: 1.65;
}

.t1-testimonial-card strong {
  color: var(--t1-ink);
  font-size: 13px;
  font-weight: 900;
}

.t1-newsletter {
  position: relative;
  padding: var(--t1-section) 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.t1-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 24, 40, 0.9), rgba(15, 118, 110, 0.74));
}

.t1-newsletter .container {
  position: relative;
  z-index: 1;
}

.t1-newsletter-inner {
  width: min(640px, 100%);
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.t1-newsletter-inner h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.08;
}

.t1-newsletter-inner p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.t1-nl-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--t1-radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.t1-nl-form input[type="email"] {
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--t1-radius);
  color: #fff;
  background: transparent;
}

.t1-nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.t1-nl-form input:focus {
  outline: none;
}

.t1-nl-form button {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--t1-radius);
  color: var(--t1-ink);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.t1-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.t1-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .t1-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .t1-hero {
    min-height: 620px;
  }

  .t1-section-header-split,
  .t1-featured-product-inner {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
    text-align: left;
  }

  .t1-category-grid,
  .t1-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .t1-promo-grid {
    grid-template-columns: 1fr;
  }

  .t1-featured-media {
    min-height: 380px;
  }
}

@media (max-width: 767px) {
  .t1-hero {
    min-height: 560px;
  }

  .t1-hero-content {
    padding: 54px 0;
  }

  .t1-trustbar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .t1-trustbar-item:nth-child(2) {
    border-right: 0;
  }

  .t1-trustbar-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--t1-line);
  }

  .t1-product-grid,
  .t1-category-grid,
  .t1-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .t1-category-card {
    min-height: 300px;
  }

  .t1-nl-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .t1-hero-actions .t1-btn,
  .t1-btn {
    width: 100%;
  }

  .t1-hero-proof {
    display: grid;
    gap: 8px;
  }

  .t1-pcard-body {
    padding: 16px;
  }

  .t1-featured-card {
    position: static;
    width: auto;
    margin: -6px 14px 14px;
  }

  .t1-featured-media {
    display: block;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
