@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-light: #f0fdfa;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --radius: 20px;
  --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px -10px rgba(13, 148, 136, 0.2);
  --font-body: 'Outfit', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

html.dark-mode {
  --teal: #00e5ff;
  /* Vibrant cyan from screenshots */
  --teal-dark: #00b8cc;
  --teal-light: rgba(0, 229, 255, 0.1);
  --text: #ffffff;
  --muted: #a1a1aa;
  --border: #27272a;
  --bg: #000000;
  /* Deep black background */
  --bg-light: #121212;
  /* Dark grey for cards */
  --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.8);
  --shadow-hover: 0 20px 40px -10px rgba(0, 229, 255, 0.15);
}

html.dark-mode .header-wrapper {
  background: #000000;
  border-bottom: 1px solid #1a1a1a;
}

html.dark-mode .ann-bar {
  background: #121212;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

html.dark-mode .s-box,
html.dark-mode .s-box input {
  background: #121212;
  color: #fff;
  border-color: var(--border);
}

html.dark-mode .card,
html.dark-mode .dept-card,
html.dark-mode .prod-card,
html.dark-mode .testi-card,
html.dark-mode .sb-card,
html.dark-mode .summary-box,
html.dark-mode .inq-card,
html.dark-mode .cart-table td {
  background: #121212;
  border: 1px solid #1a1a1a;
}

html.dark-mode #heroShopNow {
  background: var(--teal);
  color: #000;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.2);
}

html.dark-mode #heroBrowseCats {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

html.dark-mode #heroBrowseCats:hover {
  background: #fff;
  color: #000;
}

html.dark-mode .logo {
  color: #fff;
}

html.dark-mode .price,
html.dark-mode .prod-price {
  color: var(--teal);
}

html.dark-mode .prod-badge {
  background: var(--teal);
  color: #000;
  border: 1px solid var(--teal);
}

html.dark-mode .prod-badge.sale {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
}

html.dark-mode .prod-wish {
  background: #27272a;
  color: #fff;
  border: 1px solid #3f3f46;
}

html.dark-mode .add-btn {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}

html.dark-mode .add-btn:hover:not(:disabled) {
  background: var(--teal);
  color: #000;
  border-color: var(--teal);
}

html.dark-mode .stars {
  color: var(--teal);
}

html.dark-mode .ico,
html.dark-mode .qty-btn,
html.dark-mode .pick-img,
html.dark-mode .feat-card {
  background: #121212;
  border-color: #27272a;
  color: #fff;
}

html.dark-mode .ico:hover,
html.dark-mode .qty-btn:hover {
  background: #27272a;
  border-color: #3f3f46;
  color: var(--teal);
}

html.dark-mode .nl-form,
html.dark-mode .nl-input {
  background: #121212;
  color: #fff;
  border-color: var(--border);
}

html.dark-mode .page-hero {
  background: linear-gradient(135deg, #121212 0%, #000000 100%);
  border-bottom-color: #1a1a1a;
}

html.dark-mode footer {
  background: #000000;
  border-top: 1px solid #1a1a1a;
}

html.dark-mode .testi-section {
  background: #000000;
}

html.dark-mode .send-btn {
  background: var(--teal);
  color: #000;
}

html.dark-mode .send-btn:hover {
  background: var(--teal-dark);
  color: #000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6
}

a {
  text-decoration: none;
  color: inherit;
  transition: .3s
}

img {
  max-width: 100%;
  display: block
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  transition: .3s
}

/* ANIMATIONS */
@keyframes revealUp {
  from {
    transform: translateY(28px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes marquee-ltr {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  display: flex;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  gap: 40px;
  animation: marquee-ltr 20s linear infinite;
  width: max-content;
  will-change: transform;
}

.marquee-content:hover {
  animation-play-state: paused;
}

/* REVEAL SYSTEM — elements are ALWAYS visible (opacity:1).
   The .reveal-on class adds a transform slide-up animation as a visual bonus.
   This is 100% bulletproof — even if JS fails, content is visible. */
.reveal,
.fade-in {
  opacity: 1;
  will-change: transform;
}

.reveal.reveal-on {
  animation: revealUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fade-in.reveal-on {
  animation: revealUp 1s ease both;
}

.delay-1 {
  animation-delay: 0.08s;
}

.delay-2 {
  animation-delay: 0.16s;
}

.delay-3 {
  animation-delay: 0.24s;
}

.delay-4 {
  animation-delay: 0.32s;
}

.delay-5 {
  animation-delay: 0.4s;
}

/* ANNOUNCEMENT */
.ann-bar {
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px
}

.ann-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600
}

/* HEADER */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header {
  border-bottom: 1px solid rgba(226, 232, 240, 0.3);
  padding: 0 48px;
}

.hdr {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px
}

.logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px
}

.hdr-icons {
  display: flex;
  align-items: center;
  gap: 12px
}

.ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 18px;
  transition: .3s;
  background: var(--bg-light);
  border: 1px solid var(--border)
}

.ico:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2)
}

.cart-wrap {
  position: relative
}

.cart-wrap .dot {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: #ef4444;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3)
}

/* NAV */
nav {
  padding: 0 48px;
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 52px
}

.nav a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: .3s;
  position: relative;
  padding-bottom: 4px;
  letter-spacing: 0.3px
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: .3s ease-out;
  border-radius: 2px
}

.nav a:hover,
.nav a.active {
  color: var(--teal)
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%
}

/* SEARCH OVERLAY */
.s-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px
}

.s-overlay.on {
  display: flex;
  animation: fadeIn 0.3s ease
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.s-box {
  background: var(--bg);
  border-radius: 24px;
  padding: 24px;
  width: min(640px, 92vw);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1)
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

.s-box input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: 14px;
  font-size: 18px;
  font-family: inherit;
  outline: none;
  background: var(--bg-light);
  transition: 0.3s
}

.s-box input:focus {
  border-color: var(--teal);
  background: var(--bg);
  box-shadow: 0 0 0 4px var(--teal-light)
}

/* HERO SECTION */
.hero-section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--teal-light) 0%, transparent 70%);
  opacity: 0.5;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  padding: 100px 48px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.hero-badge-item svg {
  color: var(--teal);
}

.text-teal {
  color: var(--teal);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(26, 122, 110, .28);
  transition: .2s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26, 122, 110, 0.35);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: .2s;
}

.btn-hero-outline:hover {
  border-color: var(--text);
  background: var(--bg-light);
}

.hero-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .14);
}

.hero-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-image-content {
  position: relative;
}

.hero-partner-card {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--bg);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}

.partner-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid var(--bg);
}

.hero-arrival-card {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--bg);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  min-width: 170px;
}

.arrival-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}

.arrival-name {
  font-size: 14px;
  font-weight: 700;
}

.arrival-status {
  font-size: 11px;
  color: var(--muted);
}

/* DEPT CARDS */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 80px
}

.dept-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
  transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1)
}

.dept-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1)
}

.dept-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover)
}

.dept-card:hover img {
  transform: scale(1.08)
}

.dept-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0) 60%)
}

.dept-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px
}

.dept-info h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px
}

.dept-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-weight: 300
}

.dept-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: 0.3s
}

.dept-card:hover .dept-btn {
  background: #fff;
  color: var(--text);
  border-color: #fff;
  transform: translateY(-2px)
}

/* SECTION HEADERS */
.sec-hdr {
  text-align: center;
  padding: 80px 48px 40px
}

.sec-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: inline-block;
  padding: 6px 16px;
  background: var(--teal-light);
  border-radius: 20px
}

.sec-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.5px
}

.sec-link {
  font-size: 15px;
  color: var(--teal);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px
}

.sec-link:hover {
  gap: 8px
}

/* PRODUCT GRID */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 80px
}

.prod-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column
}

.prod-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
  border-color: var(--teal-light)
}

.prod-img {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  padding: 16px
}

.prod-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 12px
}

.prod-card:hover .prod-img img {
  transform: scale(1.06)
}

.prod-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08)
}

.prod-badge.sale {
  background: #ef4444;
  color: #fff
}

.prod-wish {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.prod-wish:hover {
  background: #ef4444;
  color: #fff;
  transform: scale(1.1)
}

.prod-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.prod-brand {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em
}

.prod-name-price {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 12px
}

.prod-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3
}

.prod-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap
}

.prod-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--muted)
}

.stars {
  color: #f59e0b;
  font-size: 14px
}

.add-btn {
  width: 100%;
  padding: 14px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: 0.3s;
}

.prod-body form,
.prod-body > .add-btn {
  margin-top: auto;
  width: 100%;
}

.add-btn:hover:not(:disabled) {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.25);
  transform: translateY(-2px)
}

/* SIMPLE PICKS GRID */
.picks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 40px
}

.pick-card {
  cursor: pointer;
}

.pick-img {
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-light);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  transition: 0.4s
}

.pick-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1)
}

.pick-card:hover .pick-img {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover)
}

.pick-card:hover .pick-img img {
  transform: scale(1.08)
}

.pick-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  transition: 0.3s
}

.pick-card:hover .pick-name {
  color: var(--teal)
}

/* FEATURES STRIP */
.features {
  background: var(--bg-light);
  padding: 60px 48px;
  margin-top: 40px
}

.feat-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px
}

.feat-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 24px;
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: 0.4s
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover)
}

.feat-ico {
  font-size: 36px;
  margin-bottom: 16px;
  display: inline-block;
  padding: 16px;
  background: var(--teal-light);
  border-radius: 50%
}

.feat-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px
}

.feat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6
}

/* TESTIMONIAL */
.testi-section {
  position: relative;
  background: #0f172a;
  padding: 100px 48px;
  overflow: hidden
}

.testi-section img.testi-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  mix-blend-mode: luminosity
}

.testi-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center
}

.testi-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 48px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2)
}

.testi-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  gap: 8px
}

.testi-stars {
  color: #f59e0b;
  font-size: 24px;
  letter-spacing: 4px
}

.testi-liked {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}

.testi-text {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #fff;
  line-height: 1.6;
  font-style: italic
}

.testi-author {
  color: #fff;
  margin-top: 32px
}

.testi-author strong {
  display: block;
  font-size: 18px;
  font-weight: 600
}

.testi-author span {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-light);
  opacity: 0.8;
  margin-top: 4px;
  display: block
}

/* CONTACT SECTION */
.contact-section {
  padding: 100px 48px;
  background: linear-gradient(to bottom, var(--bg), var(--bg-light))
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center
}

.nl-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2
}

.nl-desc {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6
}

.nl-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 16px;
  background: var(--bg);
  padding: 8px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

@media(max-width: 580px) {
  .nl-form {
    grid-template-columns: 1fr;
    background: transparent;
    padding: 0;
    box-shadow: none;
    gap: 16px;
  }
  .nl-input {
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
}

.nl-input {
  width: 100%;
  padding: 16px 20px;
  border: none;
  background: transparent;
  font-size: 16px;
  font-family: inherit;
  outline: none;
}

.nl-btn {
  padding: 16px 32px;
  background: var(--teal);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s
}

.nl-btn:hover {
  background: var(--teal-dark);
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3)
}

.inq-card {
  background: var(--bg);
  border-radius: 32px;
  padding: 48px;
  box-shadow: var(--shadow)
}

.inq-card h3 {
  font-size: 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 32px
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  background: var(--bg-light);
  transition: 0.3s;
  margin-bottom: 20px
}

.form-input:focus {
  border-color: var(--teal);
  background: var(--bg);
  box-shadow: 0 0 0 4px var(--teal-light)
}

textarea.form-input {
  resize: vertical;
  min-height: 140px
}

.send-btn {
  width: 100%;
  padding: 18px;
  background: var(--text);
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s
}

.send-btn:hover {
  background: var(--teal);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.25);
  transform: translateY(-2px)
}

/* PASSWORD TOGGLE */
.pass-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
  display: flex;
  align-items: stretch;
}

.pass-wrap .form-input {
  flex: 1;
  margin-bottom: 0 !important;
  padding-right: 50px;
  min-width: 0;
}

.eye-btn {
  position: absolute;
  right: 15px;
  top: 0;
  height: 100%;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.2s;
  z-index: 5;
}

.eye-btn:hover {
  color: var(--teal);
}

/* SUMMER BANNER */
.summer-banner {
  background: var(--bg-light);
  border-radius: 24px;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border)
}

.banner-text-wrap {
  position: relative;
  z-index: 2;
  max-width: 550px
}

.summer-banner-cta-wrap {
  display: flex;
  gap: 16px;
  margin-top: 10px
}

/* FOOTER */
footer {
  background: #0f172a;
  padding: 80px 48px 32px;
  color: rgba(255, 255, 255, 0.7)
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px
}

.f-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  display: inline-block
}

.f-desc {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 320px
}

.f-socials {
  display: flex;
  gap: 12px
}

.f-soc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  transition: 0.3s
}

.f-soc:hover {
  background: var(--teal);
  transform: translateY(-3px)
}

.f-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.05em
}

.f-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.f-col a {
  font-size: 14px;
  transition: 0.3s
}

.f-col a:hover {
  color: var(--teal-light);
  padding-left: 4px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 13px
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--border) 100%);
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(13, 148, 136, 0.1) 0%, transparent 70%)
}

.page-hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 1
}

.page-hero small {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal)
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--text);
  margin: 16px 0;
  line-height: 1.1;
  letter-spacing: -1px
}

.page-hero p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6
}

/* CART LAYOUT */
.cart-wrap-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 48px
}

.cart-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 16px
}

.cart-table th {
  text-align: left;
  padding: 0 16px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid var(--border)
}

.cart-table td {
  padding: 24px 16px;
  background: #fff;
  vertical-align: middle
}

.cart-table tr td:first-child {
  border-radius: 16px 0 0 16px;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.cart-table tr td:last-child {
  border-radius: 0 16px 16px 0;
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.cart-table tr td:not(:first-child):not(:last-child) {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px
}

.summary-box {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border)
}

.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-light);
  padding: 4px;
  border-radius: 12px;
  display: inline-flex
}

.qty-btn {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05)
}

.qty-btn:hover {
  color: var(--teal);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15)
}

/* SHOP SIDEBAR */
.shop-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px
}

.sidebar {
  position: sticky;
  top: 100px;
  align-self: start
}

.sb-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border)
}

.sb-card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bg-light)
}

.fcheck {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.3s
}

.fcheck:hover {
  color: var(--teal)
}

.fcheck input {
  accent-color: var(--teal);
  width: 16px;
  height: 16px
}

.apply-btn {
  width: 100%;
  padding: 14px;
  background: var(--teal);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
  transition: 0.3s
}

.apply-btn:hover {
  background: var(--teal-dark);
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.25);
  transform: translateY(-2px)
}

/* ABOUT & MISC LAYOUT */
.about-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-wrap-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.cat-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 60px;
}

.blog-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn {
  display: none;
}

/* MEDIA QUERIES */

@media(max-width:1024px) {

  .dept-grid,
  .prod-grid,
  .feat-grid,
  .cat-icon-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .picks-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:991px) {

  html,
  body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  .logo {
    font-size: 20px !important;
  }

  .hdr-icons {
    gap: 6px !important;
  }

  .ico {
    width: 34px !important;
    height: 34px !important;
    font-size: 15px !important;
  }

  header,
  nav,
  .dept-grid,
  .prod-grid,
  .picks-grid,
  .features {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-section {
    padding: 60px 20px;
    overflow-x: hidden;
  }

  .support-bar,
  footer {
    padding-left: 20px;
    padding-right: 20px
  }

  .dept-grid {
    grid-template-columns: 1fr
  }

  .feat-grid {
    grid-template-columns: 1fr
  }

  .cat-icon-grid {
    grid-template-columns: 1fr;
  }

  .prod-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .shop-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 30px 24px !important;
  }

  .sidebar {
    position: static !important;
    width: 100%;
    margin-bottom: 32px;
  }

  .sidebar .sb-card {
    margin-bottom: 16px;
  }

  .cart-layout {
    grid-template-columns: 1fr
  }

  .cart-wrap-page {
    padding-left: 20px;
    padding-right: 20px;
    overflow-x: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .account-wrap-header {
    display: flex !important;
  }

  .account-wrap {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
  }

  .account-sidebar {
    display: none;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-light);
  }

  .account-sidebar.active {
    display: block;
    animation: fadeInDown 0.3s ease;
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .order-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .address-card-inner {
    flex-direction: column;
    gap: 16px
  }

  .grid-2col {
    grid-template-columns: 1fr
  }

  .settings-display-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px !important;
    text-align: center;
  }

  .summer-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px !important;
  }

  .summer-banner .banner-text-wrap {
    text-align: center;
  }

  .summer-banner-cta-wrap {
    justify-content: center;
  }

  .contact-grid {
    gap: 40px;
    width: 100%;
    overflow-x: hidden;
  }

  .nl-title {
    font-size: 32px;
  }

  .nl-btn {
    width: 100% !important;
    padding: 16px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
  }

  .inq-card {
    padding: 32px 24px;
  }

  .mobile-menu-btn {
    display: flex !important;
  }

  .nav-wrapper {
    display: none;
    width: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: static;
  }

  .nav-wrapper.active {
    display: block;
    animation: fadeInDown 0.3s ease;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
    overflow-x: hidden;
    white-space: normal;
    height: auto;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
  }

  .nav a:last-child {
    border-bottom: none;
  }


  .cat-icon-grid {
    grid-template-columns: 1fr !important;
    padding: 0 24px 60px !important;
  }

  .about-grid-2col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-wrap-container {
    padding: 40px 24px !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  .page-hero {
    padding: 60px 24px !important;
  }

  .page-hero h1 {
    font-size: 32px !important;
  }

  .shop-wrap {
    padding: 30px 24px !important;
    gap: 32px !important;
  }

  .blog-container {
    padding: 40px 24px !important;
  }

  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .modal-content-inner {
    padding: 24px !important;
  }

  .modal-content {
    max-width: 95% !important;
  }

  .sidebar {
    margin-bottom: 24px;
  }

  .prod-grid {
    gap: 16px !important;
  }

  .s-box {
    padding: 32px 24px !important;
    max-width: 92% !important;
  }

  .wishlist-container {
    padding: 0 24px !important;
    margin: 40px auto !important;
  }

  .cart-wrap-page {
    padding: 40px 24px !important;
  }

  .grid-2col {
    grid-template-columns: 1fr !important;
  }

  .account-wrap {
    grid-template-columns: 1fr !important;
    padding: 30px 20px !important;
    gap: 0 !important;
  }
  .account-wrap-header {
    display: flex !important;
  }
  .account-sidebar {
    display: none;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 24px !important;
    margin-bottom: 24px !important;
  }
  .account-sidebar.active {
    display: block !important;
  }

  .order-card {
    grid-template-columns: 1fr !important;
    text-align: left !important;
    gap: 12px !important;
  }

  .order-card div {
    text-align: left !important;
  }

  .address-card-inner {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .account-sidebar {
    position: static !important;
    width: 100% !important;
  }

  .settings-display-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
}

/* ACCOUNT LAYOUT */
.account-wrap {

  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  min-height: 500px;
}

.order-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.address-card-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.settings-display-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* INDEX LAYOUT STYLES MOVED TO TOP SECTIONS */

.wishlist-container {
  max-width: 1280px;
  margin: 80px auto;
  padding: 0 48px;
}
/* Checkout & Generic Input Fixes */
input[type="text"], input[type="email"], input[type="tel"], input[type="password"], textarea {
  color: var(--text);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

html.dark-mode input[type="text"],
html.dark-mode input[type="email"],
html.dark-mode input[type="tel"],
html.dark-mode input[type="password"],
html.dark-mode textarea {
  background: #121212;
  border: 1.5px solid #27272a;
  color: #ffffff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

/* Force Visibility for Badges and Buttons in Dark Mode */
html.dark-mode .prod-badge {
    background: #00e5ff !important; /* solid vibrant cyan */
    color: #000000 !important;      /* solid black text */
    backdrop-filter: none !important;
    opacity: 1 !important;
    z-index: 20 !important;
}

html.dark-mode .prod-wish {
    background: #1e1e1e !important;
    color: #ffffff !important;
    border: 1.5px solid #333 !important;
    opacity: 1 !important;
}

html.dark-mode .prod-price {
    color: #00e5ff !important;
}
