:root {
  --black: #000000;
  --white: #ffffff;
  --dark: #050505;
  --dark-soft: #111111;
  --gray-bg: #f4f4f4;
  --gray-light: #e9e9e9;
  --gray: #777777;
  --text: #1f1f1f;
  --muted: #696969;
  --border: #dddddd;
  --yellow: #f6b900;
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1180px;
  --font-main: "Inter", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

/* =========================
   Header
========================= */

/* =========================
   Header / Floating Navbar
========================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 100;
  padding: 26px 0;
}

.top-nav {
  min-height: 76px;
  background: rgba(0, 0, 0, 0.86);
  color: #fff;
  border-radius: 999px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255,255,255,0.12);
}

.brand-logo {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.brand-logo img {
  width: 130px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  display: block;
}

.main-nav {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-size: 17px;
  color: #fff;
  opacity: 0.9;
}

.main-nav a.active,
.main-nav a:hover {
  opacity: 1;
  font-weight: 800;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-search {
  width: 330px;
  height: 46px;
  background: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 0 8px 0 18px;
}

.header-search input {
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
}

.header-search button {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
}

.header-icon,
.header-cart {
  color: #fff;
  font-size: 20px;
  position: relative;
}

.header-cart span {
  position: absolute;
  top: -12px;
  right: -14px;
  background: #fff;
  color: #000;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  background: #fff;
  color: #000;
  border: 0;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 22px;
  justify-self: end;
}
/* =========================
   General Sections
========================= */

.section {
  padding: 72px 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-gray {
  background: #303030;
  color: var(--white);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  text-align: center;
  margin: 0 0 48px;
  font-weight: 700;
}

.page-title {
  font-size: clamp(36px, 5vw, 58px);
  margin: 0 0 18px;
  letter-spacing: -2px;
}

.page-subtitle {
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  min-height: 52px;
  padding: 0 30px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.88;
}

.outline-btn {
  background: var(--white);
  color: var(--black);
  border-color: var(--border);
}

.small-btn {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

/* =========================
   Hero
========================= */

.hero {
  min-height: 650px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88), rgba(0,0,0,0.35)),
    url("/images/placeholder.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  max-width: 600px;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 1.08;
  margin: 0 0 20px;
  font-weight: 700;
}

.hero p {
  max-width: 520px;
  color: rgba(255,255,255,0.86);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 28px;
}





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

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 28px;
}

.product-card {
  position: relative;
}

.product-image-wrap {
  display: block;
  background: #d9d9d9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-info {
  background: var(--black);
  color: var(--white);
  width: 74%;
  min-height: 82px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 0 0 8px 8px;
  margin: -40px 0 0 24px;
  position: relative;
  z-index: 2;
  padding: 14px 16px;
}

.product-card-info h3 {
  font-size: 15px;
  margin: 0 0 7px;
  font-weight: 600;
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.current-price {
  font-size: 22px;
  font-weight: 800;
}

.old-price {
  font-size: 14px;
  color: #aaa;
  text-decoration: line-through;
}

/* =========================
   Shop Page
========================= */

.shop-header {
  padding-bottom: 28px;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  margin: 28px 0 24px;
}

.search-form input {
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  outline: 0;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.category-links a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  background: var(--white);
}

.category-links a:hover {
  background: var(--black);
  color: var(--white);
}

/* =========================
   Product Detail
========================= */

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 72px;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 82px;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--gray-bg);
}

.product-detail h1 {
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.05;
  margin: 14px 0 20px;
  letter-spacing: -2px;
}

.product-category-label {
  color: var(--gray);
  font-size: 18px;
}

.large-price {
  font-size: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 26px;
}

.product-description {
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
  max-width: 620px;
}

.product-options {
  margin: 24px 0;
}

.product-options label {
  display: block;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--text);
}

.product-options select,
.product-options input {
  width: min(100%, 280px);
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  outline: 0;
}

.product-action-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* =========================
   Cart
========================= */

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}

.cart-item img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--gray-bg);
}

.cart-item h3 {
  margin: 0 0 8px;
}

.cart-item p {
  margin: 5px 0;
  color: var(--muted);
}

.cart-item input {
  max-width: 100px;
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 10px;
}

.cart-summary {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: 20px;
}

.cart-summary h3 {
  margin-top: 0;
  font-size: 24px;
}

/* =========================
   Checkout
========================= */

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

#checkout-form {
  display: grid;
  gap: 13px;
}

#checkout-form label {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  outline: 0;
  font-size: 15px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.checkout-summary-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.checkout-item {
  color: var(--muted);
}

#checkout-message {
  font-weight: 700;
  color: var(--black);
}

/* =========================
   Success / Basic Pages
========================= */

.success-box {
  max-width: 680px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 54px 34px;
}

.success-box h1 {
  font-size: 52px;
  margin-top: 0;
}

.content-card {
  max-width: 840px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px;
}

.content-card p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  max-width: 640px;
}

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

.site-footer {
  background: var(--black);
  color: var(--white);
  margin-top: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 0.68fr 1fr 1.15fr;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.footer-box {
  min-height: 132px;
  padding: 36px 42px;
  border-right: 1px solid #222;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-box:last-child {
  border-right: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  width: 150px;
  height: auto;
  max-height: 78px;
  object-fit: contain;
  display: block;
}

.footer-logo span {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -2px;
}

.footer-logo small {
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-box h3 {
  font-size: 34px;
  margin: 0;
}

.newsletter-box h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.newsletter-box p {
  margin: 0;
  color: #cfcfcf;
  line-height: 1.6;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid #888;
  border-radius: 999px;
  padding: 4px;
}

.newsletter-form input {
  border: 0;
  background: transparent;
  color: var(--white);
  min-height: 44px;
}

.newsletter-form button {
  border: 0;
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  cursor: pointer;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  border-bottom: 1px solid #111;
}

.footer-contact-item,
.footer-copyright {
   min-height: 110px;
  padding: 30px 42px;
  border-right: 1px solid #222;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-contact-item strong {
  font-size: 20px;
  line-height: 1.2;
  word-break: break-word;
}


.footer-copyright {
  justify-content: center;
  text-align: center;
  color: #d8d8d8;
  font-size: 14px;
}

.footer-round-icon {
  width: 62px;
  height: 62px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 62px;
  font-size: 28px;
  font-weight: 900;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1100px) {
  .top-nav {
    grid-template-columns: auto auto;
  }

  .mobile-menu-btn {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
  }

  .main-nav.open,
  .header-actions.open {
    display: flex;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 18px;
  }

  .header-search {
    width: 100%;
  }

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

  .footer-top,
  .footer-bottom-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 0;
  }

  .top-nav {
    border-radius: 28px;
    padding: 18px;
  }

  .brand-logo span {
    font-size: 24px;
  }

  .hero {
    min-height: 520px;
  }

  .section {
    padding: 52px 0;
  }

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

  .product-card-info {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 90px 1fr;
  }

  .cart-item > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-top,
  .footer-bottom-grid {
    grid-template-columns: 1fr;
  }

  .footer-box,
  .footer-contact-item,
  .footer-copyright {
    border-right: 0;
    border-bottom: 1px solid #222;
    padding: 28px 24px;
  }
}
/* =========================
   Phase 4 Improvements
========================= */

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.left-title {
  text-align: left;
  margin-bottom: 0;
}

.text-link {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}

.center-text {
  max-width: 780px;
  margin: -24px auto 44px;
  text-align: center;
  line-height: 1.8;
  color: #e7e7e7;
}







.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}






.center-btn {
  text-align: center;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

.round-arrow-btn {
  width: 72px;
  height: 72px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 34px;
  font-weight: 800;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-image-box img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 20px;
}

.why-content p {
  color: #d6d6d6;
  line-height: 1.8;
}



.eyebrow-text {
  text-align: center;
  color: #e2e2e2;
  margin: 0 0 8px;
}







.stars {
  color: #f5a623;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.product-main-image-wrap {
  background: #f2f2f2;
  border-radius: 14px;
  overflow: hidden;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.thumbnail-btn {
  border: 2px solid transparent;
  padding: 0;
  background: #f4f4f4;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.thumbnail-btn.active {
  border-color: #000;
}

.thumbnail-btn img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}

.product-info-panel {
  padding-top: 10px;
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.rating-text {
  font-size: 22px;
  font-weight: 800;
}

.rating-text::first-letter {
  color: #f5a623;
}

.product-divider {
  height: 1px;
  border-top: 1px dashed #d8d8d8;
  margin: 24px 0;
}

.color-options,
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.color-swatch {
  width: 58px;
  height: 40px;
  border-radius: 9px;
  border: 3px solid #fff;
  outline: 1px solid #ddd;
  cursor: pointer;
}

.color-swatch.selected {
  outline: 2px solid #000;
}

.hidden-select {
  display: none;
}

.size-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 520px;
  gap: 20px;
}

.size-chart-link {
  text-decoration: underline;
  font-weight: 700;
}

.size-pill {
  min-width: 74px;
  height: 42px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 9px;
  font-weight: 800;
  cursor: pointer;
}

.size-pill.selected {
  border-color: #000;
  background: #f5f5f5;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 44px 80px 44px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.quantity-control button {
  border: 0;
  background: #f6f6f6;
  font-size: 20px;
  cursor: pointer;
}

.quantity-control input {
  border: 0;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  border-radius: 0;
}

.delivery-note {
  margin-top: 20px;
  text-decoration: underline;
  color: #777;
}

.empty-box {
  border: 1px solid #ddd;
  border-radius: 18px;
  padding: 42px;
  text-align: center;
  background: #fff;
}

.dark-empty {
  background: #111;
  border-color: #222;
  color: #fff;
}

.full-btn {
  width: 100%;
}

.continue-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  text-decoration: underline;
  font-weight: 700;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 0;
}

.total-line {
  font-size: 20px;
}

.checkout-form-card,
.checkout-summary-box,
.contact-info-card,
.contact-form-card {
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 28px;
  background: #fff;
}

.payment-box {
  background: #f6f6f6;
  border-radius: 12px;
  padding: 18px;
  margin: 10px 0;
}

.payment-box p {
  margin: 8px 0 0;
  color: #555;
}

.checkout-item-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  border-bottom: 1px solid #eee;
  padding: 14px 0;
}

.checkout-item-row img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
  background: #f4f4f4;
}

.empty-mini-box {
  background: #f6f6f6;
  border-radius: 12px;
  padding: 18px;
}

.empty-mini-box a {
  text-decoration: underline;
  font-weight: 700;
}

.checkout-note,
.form-note {
  color: #777;
  line-height: 1.6;
  font-size: 14px;
}

.page-hero-small {
  background: #e41212;
  color: #fff;
  padding: 80px 0;
}

.page-hero-small h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  margin: 0 0 12px;
}

.page-hero-small p {
  color: #d8d8d8;
  font-size: 18px;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.about-image {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 22px;
}

.no-max {
  max-width: none;
}

.content-card h2,
.contact-info-card h2,
.contact-form-card h2 {
  font-size: 34px;
  margin-top: 0;
}

.contact-line {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.contact-line span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: #000;
  color: #fff;
  border-radius: 50%;
}

.contact-line p {
  margin: 6px 0 0;
  color: #666;
}

/* Phase 4 Responsive */
@media (max-width: 900px) {
  .collection-collage,
  .why-grid,
  .testimonial-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .collage-card.small,
  .collage-card.medium,
  .collage-card.large {
    height: 320px;
  }

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

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .testimonial-card.active-card {
    transform: none;
  }
}

@media (max-width: 600px) {
  .product-meta-row,
  .size-label-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .thumbnail-btn img {
    height: 80px;
  }

  .checkout-item-row {
    grid-template-columns: 60px 1fr;
  }

  .checkout-item-row img {
    width: 60px;
    height: 60px;
  }

  .empty-box {
    padding: 28px 18px;
  }
}
/* =========================
   Phase 5 Cart Validation UI
========================= */

.error-message {
  color: #b00020 !important;
  background: #ffe9ed;
  border: 1px solid #ffc4cf;
  padding: 12px 14px;
  border-radius: 10px;
}

.info-message {
  color: #0b4f71 !important;
  background: #e7f6ff;
  border: 1px solid #b8e5ff;
  padding: 12px 14px;
  border-radius: 10px;
}

button:disabled,
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
/* =========================
   Product Page Inline Message
========================= */

.product-message {
  margin-top: 18px;
  min-height: 24px;
  font-weight: 700;
}

.success-message {
  color: #0f7a32 !important;
  background: #e9f8ee;
  border: 1px solid #bde8ca;
  padding: 12px 14px;
  border-radius: 10px;
}

.product-message.error-message {
  color: #b00020 !important;
  background: #ffe9ed;
  border: 1px solid #ffc4cf;
  padding: 12px 14px;
  border-radius: 10px;
}
/* =========================
   Phase 7 Final Styling Polish
========================= */

.figma-hero {
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.35), rgba(0,0,0,0.1)),
    url("/images/hero.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.figma-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(transparent, #000);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 660px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--yellow);
  margin: 0 0 14px;
}

.hero-kicker::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.center-kicker {
  display: flex;
  justify-content: center;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-secondary-link {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
}

/* =========================
   Infinite Yellow Sale Strip
========================= */


/* =========================
   Smooth Infinite Yellow Sale Strip
========================= */

/* =========================
   Smooth Yellow Sale Strip
========================= */

.sale-strip {
  width: 100%;
  overflow: hidden;
  background: var(--yellow);
  color: #000;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.sale-marquee {
  display: inline-flex;
  align-items: center;
  width: max-content;
  animation: smoothSaleStrip 120s linear infinite;
  will-change: transform;
}

.sale-marquee span {
  display: inline-flex;
  align-items: center;
  padding: 13px 18px;
  border-right: 1px dashed rgba(0, 0, 0, 0.45);
  flex: 0 0 auto;
}

@keyframes smoothSaleStrip {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}




.category-showcase {
  background: #000;
  padding: 34px 0 76px;
}

.category-showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 22px;
}

.category-feature-card {
  min-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: #1f1f1f;
  color: #fff;
  display: block;
}

.category-feature-card.big-card {
  grid-row: span 2;
  min-height: 544px;
}

.category-feature-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: 0.35s ease;
  opacity: 0.78;
}

.category-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
}

.category-feature-card div {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px;
}

.category-feature-card span {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
}

.category-feature-card h2 {
  font-size: clamp(30px, 4vw, 52px);
  margin: 6px 0 0;
  letter-spacing: -1px;
}

.category-feature-card:hover img {
  transform: scale(1.06);
  opacity: 0.92;
}

.product-card {
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-image-wrap {
  position: relative;
}

.discount-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: #000;
  z-index: 4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
}

.product-image-wrap img {
  transition: 0.35s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.04);
}

.section-dark .text-link {
  color: #fff;
}

.why-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 26px 0;
}

.why-points div {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px;
}

.why-points strong {
  display: block;
  margin-bottom: 4px;
}

.why-points span {
  color: #cfcfcf;
}

.shop-hero {
  background:
    linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.82)),
    url("../images/hero.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 90px 0;
}

.shop-hero p:last-child {
  color: #d8d8d8;
  max-width: 620px;
  line-height: 1.7;
}

.shop-filter-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 22px;
  margin-bottom: 40px;
}

.shop-filter-card .search-form {
  margin-top: 0;
}

.shop-filter-card .search-form input {
  background: #fff;
}

.shop-filter-card .category-links {
  margin-bottom: 0;
}

.shop-filter-card .category-links a {
  border-color: rgba(255,255,255,0.2);
}

.shop-filter-card .category-links a:hover {
  background: #fff;
  color: #000;
}

.product-main-image-wrap {
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.product-info-panel {
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 30px;
  background: #fff;
}

.footer-top,
.footer-bottom-grid {
  max-width: 1440px;
  margin: 0 auto;
}

.site-footer {
  border-top: 1px solid #111;
}

/* Better mobile spacing */
@media (max-width: 900px) {
  .figma-hero {
    min-height: 620px;
  }

  .category-showcase-grid {
    grid-template-columns: 1fr;
  }

  .category-feature-card.big-card {
    grid-row: auto;
    min-height: 360px;
  }

  .category-feature-card {
    min-height: 280px;
  }

  .product-info-panel {
    padding: 22px;
  }
}

@media (max-width: 600px) {
  .figma-hero {
    min-height: 560px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .hero-secondary-link {
    width: 100%;
    text-align: center;
  }

  .category-showcase {
    padding-bottom: 52px;
  }

  .category-feature-card.big-card,
  .category-feature-card {
    min-height: 250px;
  }

  .shop-hero {
    padding: 64px 0;
  }

  .product-info-panel {
    border-radius: 18px;
    padding: 18px;
  }
}
/* =========================
   Phase 8 Final Polish
========================= */

.success-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e9f8ee;
  color: #0f7a32;
  border: 1px solid #bde8ca;
  font-size: 44px;
  font-weight: 900;
}

.success-details {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  text-align: left;
}

.success-details div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #f7f7f7;
  border-radius: 12px;
  padding: 14px 16px;
}

.success-details span {
  color: #666;
  font-weight: 600;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.empty-box .btn {
  margin: 8px;
}

.product-card-price .current-price,
.large-price .current-price {
  letter-spacing: -0.5px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

@media (max-width: 600px) {
  .success-details div {
    align-items: flex-start;
    flex-direction: column;
  }

  .success-actions {
    flex-direction: column;
  }

  .success-actions .btn {
    width: 100%;
  }
}
/* =========================
   Frontend Polish Fixes
========================= */

/* Make navbar float over hero/background */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  z-index: 100;
  padding: 26px 0;
}

.top-nav {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255,255,255,0.12);
}

body {
  overflow-x: hidden;
}

/* Add top padding only where no hero exists */
.section:first-child {
  padding-top: 140px;
}
/* Home hero full background behind floating navbar */
.figma-hero {
  margin-top: 0;
  padding-top: 130px;
  min-height: 760px;
  display: flex;
  align-items: center;
}

.hero {
  margin-top: 0;
}

.hero-content {
  padding-top: 40px;
}
/* Why Choose section closer to Figma screenshot */
.why-section-final {
  padding: 110px 0;
}

.why-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.why-collage-final {
  position: relative;
  min-height: 520px;
}

.why-img {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  background: #222;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.why-img:hover {
  transform: translateY(-8px) rotateX(3deg) rotateY(-3deg);
}

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

.why-img-main {
  width: 58%;
  height: 430px;
  left: 8%;
  top: 42px;
  z-index: 2;
}

.top-small {
  width: 42%;
  height: 250px;
  right: 5%;
  top: 0;
  z-index: 1;
}

.bottom-small {
  width: 42%;
  height: 250px;
  right: 0;
  bottom: 20px;
  z-index: 3;
}

/* =========================
   Why Choose Rotating Brand Stamp
========================= */

.brand-stamp {
  position: absolute;
  left: 0;
  bottom: 58px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  z-index: 8;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.brand-stamp-svg {
  position: absolute;
  inset: 7px;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  animation: rotateStampText 18s linear infinite;
}

.brand-stamp-svg text {
  fill: #000;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.brand-stamp-arrow {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  font-size: 54px;
  line-height: 1;
  font-weight: 300;
  color: #000;
  transform: translateY(-2px);
}

@keyframes rotateStampText {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 600px) {
  .brand-stamp {
    width: 98px;
    height: 98px;
    bottom: 42px;
  }

  .brand-stamp-svg text {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .brand-stamp-arrow {
    font-size: 40px;
    width: 46px;
    height: 46px;
  }
}
@keyframes rotateStamp {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.why-content-final h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  margin: 0 0 26px;
  color: #fff;
}

.why-content-final p {
  color: #d7d7d7;
  line-height: 1.75;
  max-width: 560px;
}

.animated-read-btn {
  position: relative;
  overflow: hidden;
}

.animated-read-btn::after {
  content: "→";
  margin-left: 10px;
  display: inline-block;
  transition: transform 0.25s ease;
}

.animated-read-btn:hover::after {
  transform: translateX(6px);
}
.round-arrow-btn {
  animation: floatingArrow 2.4s ease-in-out infinite;
  transition: 0.3s ease;
}

.round-arrow-btn:hover {
  transform: scale(1.08) rotate(12deg);
  background: var(--yellow);
}

@keyframes floatingArrow {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}


.testimonial-slide.active-slide {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}



.testimonial-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: 0.25s ease;
}


/* Inner pages need space because navbar is absolute */
.product-detail {
  padding-top: 150px;
}

.page-hero-small,
.shop-hero {
  padding-top: 170px;
  min-height: 430px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
    url("/images/hero.jpg");
  background-size: cover;
  background-position: center;
}


.product-page-hero-bg .product-detail {
  padding-top: 40px;
  padding-bottom: 0;
}

.product-page-hero-bg .product-info-panel {
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}

.product-page-hero-bg .product-gallery {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 18px;
  backdrop-filter: blur(10px);
}
/* Fix category/search colors */
.shop-filter-card .category-links a {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.shop-filter-card .category-links a:hover {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}

.shop-filter-card .search-form .btn {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.shop-filter-card .search-form .btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
}
.about-modern-section {
  background: #000;
  color: #fff;
}

.about-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-modern-images {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  align-items: end;
}

.about-modern-images img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.about-modern-images img:nth-child(2) {
  height: 390px;
  transform: translateY(40px);
}

.about-modern-content h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  margin: 0 0 24px;
}

.about-modern-content p {
  color: #d8d8d8;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.about-stats div {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px;
  border-radius: 16px;
}

.about-stats strong {
  display: block;
  font-size: 22px;
}

.about-stats span {
  color: #cfcfcf;
  font-size: 13px;
}
.contact-modern-section {
  background: #050505;
  color: #fff;
}

.contact-modern-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-modern-info,
.contact-modern-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 34px;
  backdrop-filter: blur(12px);
}

.contact-modern-info h2,
.contact-modern-form h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.04;
  margin: 0 0 26px;
}

.contact-modern-section .contact-line {
  border-bottom-color: rgba(255,255,255,0.12);
}

.contact-modern-section .contact-line p {
  color: #d2d2d2;
}

.contact-modern-section .contact-line span {
  background: #fff;
  color: #000;
}

.contact-modern-form {
  display: grid;
  gap: 14px;
}

.contact-modern-form input,
.contact-modern-form textarea {
  background: rgba(255,255,255,0.96);
}
/* Lightweight premium motion */
.product-card,
.checkout-form-card,
.checkout-summary-box,
.cart-summary,
.empty-box,
.contact-modern-info,
.contact-modern-form,
.about-stats div {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card:hover,
.checkout-form-card:hover,
.checkout-summary-box:hover,
.cart-summary:hover,
.contact-modern-info:hover,
.contact-modern-form:hover,
.about-stats div:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.16);
}

.btn {
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

/* Smooth reveal feel without heavy JS */
.hero-content,
.section-title,
.product-card,
.why-content-final,
.about-modern-content,
.contact-modern-info,
.contact-modern-form {
  animation: softReveal 0.75s ease both;
}

@keyframes softReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .why-final-grid,
  .about-modern-grid,
  .contact-modern-grid {
    grid-template-columns: 1fr;
  }

  .why-collage-final {
    min-height: 470px;
  }

  .why-content-final h2,
  .about-modern-content h2,
  .contact-modern-info h2,
  .contact-modern-form h2 {
    font-size: 42px;
  }

  .about-modern-images img,
  .about-modern-images img:nth-child(2) {
    height: 340px;
    transform: none;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 14px 0;
  }

  .top-nav {
    border-radius: 24px;
  }

  .figma-hero {
    padding-top: 120px;
  }

  .why-collage-final {
    min-height: 410px;
  }

  .why-img-main {
    width: 66%;
    height: 330px;
    left: 0;
  }

  .top-small,
  .bottom-small {
    width: 48%;
    height: 190px;
  }

  

  .about-stats {
    grid-template-columns: 1fr;
  }

  .testimonial-slider {
    min-height: 310px;
  }
}
/* =========================
   Fixed Infinite Sale Strip
========================= */








/* =========================
   Product Page Clean White Design
========================= */

.product-page-body {
  background: #fff;
}

.product-clean-main {
  background: #fff;
  padding-top: 150px;
  padding-bottom: 80px;
}

.product-clean-layout {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 90px;
  align-items: start;
}

.product-clean-left {
  position: relative;
}

.product-gallery-clean {
  display: grid;
  gap: 18px;
}

.clean-main-image-wrap {
  border-radius: 10px;
  overflow: hidden;
  background: #f2f2f2;
  box-shadow: none;
}

.clean-product-image {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 10px;
}

.clean-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.clean-thumbnails .thumbnail-btn {
  height: 88px;
  background: #f2f2f2;
  border-radius: 8px;
}

.clean-thumbnails .thumbnail-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-clean-right {
  padding-top: 6px;
}

.product-clean-right h1 {
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  margin: 12px 0 18px;
  color: #1c1c1c;
}

.clean-product-meta {
  align-items: center;
}

.sold-rating-text {
  color: #777;
  font-size: 18px;
  font-weight: 600;
}

.sold-rating-text span {
  color: #f5a623;
}

.product-clean-right .product-divider {
  margin: 26px 0;
}

.product-clean-right h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.product-clean-right .product-description {
  color: #666;
  font-size: 17px;
  line-height: 1.65;
}

.clean-action-row {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 22px;
  max-width: 540px;
}

.clean-action-row .btn {
  min-height: 58px;
  border-radius: 8px;
  font-size: 17px;
}

.product-clean-right .color-swatch {
  width: 66px;
  height: 42px;
}

.product-clean-right .size-pill {
  min-width: 82px;
  height: 44px;
}

.product-clean-right .quantity-control {
  margin-top: 6px;
}

.product-page-body .site-footer {
  margin-top: 0;
}

/* Remove dark product hero override if old CSS exists */
.product-page-hero-bg {
  background: none !important;
  padding: 0 !important;
}

.product-page-hero-bg .product-gallery {
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
}

.product-page-hero-bg .product-info-panel {
  box-shadow: none !important;
}

/* Product page navbar should stay floating but over white page */
.product-page-body .site-header {
  position: absolute;
  background: transparent !important;
}

.product-page-body .top-nav {
  background: #000;
}
@media (max-width: 900px) {
  .product-clean-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-clean-main {
    padding-top: 130px;
  }

  .clean-action-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .product-clean-main {
    padding-top: 120px;
  }

  .product-clean-right h1 {
    font-size: 34px;
  }

  .clean-thumbnails {
    grid-template-columns: repeat(4, 1fr);
  }

  .clean-thumbnails .thumbnail-btn {
    height: 74px;
  }
}
/* =========================
   Inner Page Picture Hero
   Shop / About / Contact
========================= */

.inner-hero {
  position: relative;
  min-height: 430px;
  padding-top: 155px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.623) 0%,
      rgba(0, 0, 0, 0.374) 48%,
      rgba(0, 0, 0, 0.167) 100%
    );
  z-index: 1;
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.02;
  margin: 0 0 18px;
  color: #fff;
}

.inner-hero p:not(.section-kicker) {
  max-width: 650px;
  color: rgba(255,255,255,0.86);
  font-size: 18px;
  line-height: 1.7;
}

/* Different pages can use different image files */
.inner-hero-shop {
  background-image: url("../images/hero.png");
}

.inner-hero-about {
  background-image: url("/images/about.jpeg");
}

.inner-hero-contact {
  background-image: url("/images/contact.jpeg");
}

/* fallback if image is too bright/dark */
.inner-hero-shop,
.inner-hero-about,
.inner-hero-contact {
  background-color: #111;
}

/* Make navbar float nicely over inner hero */
.inner-hero + .section {
  margin-top: 0;
}

/* Remove old hero conflicts */
.page-hero-small,
.shop-hero {
  background: none !important;
  padding: 0 !important;
  min-height: 0 !important;
}

/* Mobile */
@media (max-width: 700px) {
  .inner-hero {
    min-height: 360px;
    padding-top: 130px;
    padding-bottom: 60px;
  }

  .inner-hero h1 {
    font-size: 42px;
  }

  .inner-hero p:not(.section-kicker) {
    font-size: 16px;
  }
}
.search-result-text {
  color: #fff;
  margin: 0 0 24px;
  font-weight: 600;
}

.search-result-text strong {
  color: var(--yellow);
}
/* =========================
   Phase 9 Contact + Newsletter Messages
========================= */

.form-message,
.newsletter-message {
  margin: 10px 0 0;
  min-height: 22px;
  font-size: 14px;
  font-weight: 700;
}

.newsletter-message {
  color: #fff;
}

.newsletter-message.success-message,
.form-message.success-message {
  color: #0f7a32 !important;
  background: #e9f8ee;
  border: 1px solid #bde8ca;
  padding: 10px 12px;
  border-radius: 10px;
}

.newsletter-message.error-message,
.form-message.error-message {
  color: #b00020 !important;
  background: #ffe9ed;
  border: 1px solid #ffc4cf;
  padding: 10px 12px;
  border-radius: 10px;
}

.newsletter-message.info-message,
.form-message.info-message {
  color: #0b4f71 !important;
  background: #e7f6ff;
  border: 1px solid #b8e5ff;
  padding: 10px 12px;
  border-radius: 10px;
}

.newsletter-form button:disabled,
.contact-modern-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media (max-width: 1100px) {
  .top-nav {
    grid-template-columns: auto auto;
  }

  .brand-logo {
    justify-self: start;
  }

  .brand-logo img {
    width: 130px;
    max-height: 52px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .main-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
  }

  .main-nav.open,
  .header-actions.open {
    display: flex;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 14px;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 16px;
  }

  .header-search {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-logo img {
    width: 150px;
  }

  .footer-contact-item strong {
    font-size: 18px;
  }

  .footer-round-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    font-size: 22px;
  }
}
/* =========================
   Floating WhatsApp Button
========================= */

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d365;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: whatsappFloat 2.4s ease-in-out infinite;
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: #ffffffaf;
  display: block;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 22px 55px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 700px) {
  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }

  .floating-whatsapp svg {
    width: 30px;
    height: 30px;
  }
}
/* =========================
   3D Stacked Collection Carousel
========================= */

.collection-section {
  position: relative;
  /* background:
    radial-gradient(circle at center top, rgba(255,255,255,0.08), transparent 34%),
    linear-gradient(180deg, #3a3a3a 0%, #2b2b2b 100%);
  color: #fff; */
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 90px;
  
  background:
    radial-gradient(circle at 18% 20%, rgba(246, 185, 0, 0.22), transparent 28%),
    radial-gradient(circle at 90% 78%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #050505 0%, #111 45%, #241b05 100%);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* Premium grid overlay like Our Story section */
.collection-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.collection-section > .container {
  position: relative;
  z-index: 2;
}
/* subtle glow */
.collection-section::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -100px;
  top: 60px;
  background: rgba(246, 185, 0, 0.10);
  filter: blur(90px);
  border-radius: 50%;
  pointer-events: none;
}

.collection-carousel {
  position: relative;
  height: 470px;
  max-width: 1120px;
  margin: 55px auto 0;
  perspective: 1200px;
}



/* =========================
   Exclusive Collection Image Fit Fix
========================= */

.collection-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 310px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  transition:
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 650ms ease,
    filter 650ms ease;
  will-change: transform, opacity, filter;
  transform-style: preserve-3d;
}
.collection-card img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.035);
}
.collection-card[data-position="hidden"] {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transform:
    translate(160%, -50%)
    scale(0.55)
    rotateY(-28deg)
    translateZ(-220px);
}

/* far left */
.collection-card[data-position="-2"] {
  z-index: 1;
  opacity: 0.68;
  filter: brightness(0.78) saturate(0.9);
  transform:
    translate(-190%, -50%)
    scale(0.66)
    rotateY(26deg)
    translateZ(-160px);
}

/* left near */
.collection-card[data-position="-1"] {
  z-index: 3;
  opacity: 0.9;
  filter: brightness(0.9) saturate(0.96);
  transform:
    translate(-112%, -50%)
    scale(0.82)
    rotateY(18deg)
    translateZ(-60px);
}

/* center main */
.collection-card[data-position="0"] {
  z-index: 6;
  opacity: 1;
  filter: brightness(1) saturate(1.04);
  transform:
    translate(-50%, -50%)
    scale(1)
    rotateY(0deg)
    translateZ(120px);
}

/* right near */
.collection-card[data-position="1"] {
  z-index: 3;
  opacity: 0.9;
  filter: brightness(0.9) saturate(0.96);
  transform:
    translate(12%, -50%)
    scale(0.82)
    rotateY(-18deg)
    translateZ(-60px);
}

/* far right */
.collection-card[data-position="2"] {
  z-index: 1;
  opacity: 0.68;
  filter: brightness(0.78) saturate(0.9);
  transform:
    translate(90%, -50%)
    scale(0.66)
    rotateY(-26deg)
    translateZ(-160px);
}

.collection-card:hover {
  filter: brightness(1.05) saturate(1.08);
}

.collection-arrow-wrap {
  margin-top: -32px;
  position: relative;
  z-index: 10;
}

.round-arrow-btn {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .collection-card {
    transition: none;
  }
}

/* Responsive */
@media (max-width: 1000px) {
  .collection-carousel {
    height: 420px;
  }

  .collection-card {
    width: 260px;
    height: 360px;
  }

  .collection-card[data-position="-2"] {
    transform: translate(-170%, -50%) scale(0.62) rotateY(22deg) translateZ(-140px);
  }

  .collection-card[data-position="-1"] {
    transform: translate(-105%, -50%) scale(0.78) rotateY(16deg) translateZ(-60px);
  }

  .collection-card[data-position="1"] {
    transform: translate(5%, -50%) scale(0.78) rotateY(-16deg) translateZ(-60px);
  }

  .collection-card[data-position="2"] {
    transform: translate(75%, -50%) scale(0.62) rotateY(-22deg) translateZ(-140px);
  }
}

@media (max-width: 700px) {
  .collection-carousel {
    height: 370px;
    margin-top: 35px;
  }

  .collection-card {
    width: 220px;
    height: 310px;
  }

  .collection-card[data-position="-2"] {
    opacity: 0.35;
    transform: translate(-130%, -50%) scale(0.55) rotateY(18deg);
  }

  .collection-card[data-position="-1"] {
    opacity: 0.75;
    transform: translate(-88%, -50%) scale(0.72) rotateY(14deg);
  }

  .collection-card[data-position="0"] {
    transform: translate(-50%, -50%) scale(1) rotateY(0deg);
  }

  .collection-card[data-position="1"] {
    opacity: 0.75;
    transform: translate(-12%, -50%) scale(0.72) rotateY(-14deg);
  }

  .collection-card[data-position="2"] {
    opacity: 0.35;
    transform: translate(30%, -50%) scale(0.55) rotateY(-18deg);
  }
}
/* =========================
   Testimonials Section Like Figma
========================= */

.testimonials-section {
  position: relative;
  background:
    radial-gradient(circle at 18% 20%, rgba(246, 185, 0, 0.22), transparent 28%),
    radial-gradient(circle at 90% 78%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #050505 0%, #111 45%, #241b05 100%);
  color: #fff;
  padding: 84px 0 88px;
  overflow: hidden;
}
.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.testimonials-section > .container {
  position: relative;
  z-index: 2;
}

.eyebrow-text {
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin: 0 0 14px;
  font-weight: 500;
}

.testimonial-title {
  font-family: var(--font-display);
  text-align: center;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 500;
  margin: 0 0 60px;
  color: #fff;
}

.testimonial-carousel {
  position: relative;
  max-width: 1260px;
  height: 285px;
  margin: 0 auto;
}

.testimonial-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 330px;
  min-height: 230px;
  border-radius: 42px 42px 42px 42px;
  padding: 0;
  color: #111;
  transition:
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 650ms ease,
    background 650ms ease,
    filter 650ms ease;
  will-change: transform, opacity;
  box-shadow: none;
  overflow: hidden;
}

.testimonial-content {
  position: relative;
  padding: 38px 34px 30px;
  height: 100%;
}

.testimonial-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
  color: #111;
}

.testimonial-item .stars {
  color: #f4d000;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testimonial-line {
  width: 150px;
  height: 1px;
  background: rgba(0,0,0,0.12);
  margin: 0 0 22px;
}

.testimonial-item p {
  margin: 0;
  color: #1d1d1d;
  font-size: 14px;
  line-height: 1.62;
  max-width: 260px;
}

.quote-mark {
  position: absolute;
  right: 26px;
  top: 20px;
  font-size: 105px;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.28);
  pointer-events: none;
}

/* Left card */
.testimonial-item[data-position="-1"] {
  z-index: 2;
  opacity: 1;
  background: #d7d7d7;
  transform: translate(-170%, -50%) scale(0.92);
}

/* Center card */
.testimonial-item[data-position="-1"] {
  z-index: 2;
  opacity: 0.92;
  background: #d4d4d4;
  transform: translate(-172%, -50%) scale(0.9);
}

.testimonial-item[data-position="0"] {
  z-index: 5;
  opacity: 1;
  background: #fff;
  transform: translate(-50%, -50%) scale(1.06);
}

.testimonial-item[data-position="1"] {
  z-index: 2;
  opacity: 0.92;
  background: #d4d4d4;
  transform: translate(72%, -50%) scale(0.9);
}

.testimonial-item[data-position="2"],
.testimonial-item[data-position="hidden"] {
  z-index: 1;
  opacity: 0;
  background: #d4d4d4;
  transform: translate(150%, -50%) scale(0.78);
  pointer-events: none;
}

/* Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.24);
  cursor: pointer;
  transition: 0.25s ease;
}

.testimonial-dots button.active-dot {
  width: 42px;
  height: 10px;
  background: #fff;
}

/* Mobile testimonials */
@media (max-width: 900px) {
  .testimonial-carousel {
    height: 290px;
  }

  .testimonial-item {
    width: 310px;
  }

  .testimonial-item[data-position="-1"] {
    opacity: 0.35;
    transform: translate(-130%, -50%) scale(0.8);
  }

  .testimonial-item[data-position="0"] {
    transform: translate(-50%, -50%) scale(1);
  }

  .testimonial-item[data-position="1"] {
    opacity: 0.35;
    transform: translate(30%, -50%) scale(0.8);
  }
}

@media (max-width: 600px) {
  .testimonials-section {
    padding: 60px 0 70px;
  }

  .testimonial-title {
    font-size: 38px;
    margin-bottom: 36px;
  }

  .eyebrow-text {
    font-size: 16px;
  }

  .testimonial-carousel {
    height: 330px;
  }

  .testimonial-item {
    width: min(330px, 88vw);
    min-height: 270px;
  }

  .testimonial-item[data-position="-1"],
  .testimonial-item[data-position="1"],
  .testimonial-item[data-position="2"] {
    opacity: 0;
    pointer-events: none;
  }

  .testimonial-item[data-position="0"] {
    transform: translate(-50%, -50%) scale(1);
  }
}
/* =========================
   Attractive Our Story Section
========================= */

.our-story-section {
  position: relative;
  background:
    radial-gradient(circle at 18% 20%, rgba(246, 185, 0, 0.22), transparent 28%),
    radial-gradient(circle at 90% 78%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #050505 0%, #111 45%, #241b05 100%);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.our-story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.our-story-bg-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: 80px;
  background: rgba(246, 185, 0, 0.18);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
}

.our-story-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.our-story-left {
  position: sticky;
  top: 120px;
}

.our-story-left h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.02;
  margin: 0 0 32px;
  color: #fff;
  letter-spacing: -1px;
}

.story-price-card {
  max-width: 320px;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(246,185,0,0.98), rgba(255,231,130,0.92));
  color: #000;
  box-shadow: 0 24px 70px rgba(246,185,0,0.2);
  transform: rotate(-2deg);
}

.story-price-card span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 900;
  margin-bottom: 8px;
}

.story-price-card strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
}

.story-price-card p {
  margin: 10px 0 0;
  font-weight: 700;
}

.our-story-right {
  position: relative;
  display: grid;
  gap: 26px;
}

.story-timeline-line {
  position: absolute;
  left: 37px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(to bottom, var(--yellow), rgba(255,255,255,0.12));
}

.story-step {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 22px 70px rgba(0,0,0,0.22);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.story-step:hover {
  transform: translateY(-8px);
  border-color: rgba(246,185,0,0.55);
  background: rgba(255,255,255,0.1);
}

.story-number {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 14px 38px rgba(0,0,0,0.26);
}

.story-step h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 26px;
  letter-spacing: -0.5px;
}

.story-step p {
  margin: 0;
  color: #d9d9d9;
  font-size: 16px;
  line-height: 1.8;
}

.story-step strong {
  color: var(--yellow);
}

@media (max-width: 950px) {
  .our-story-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .our-story-left {
    position: relative;
    top: auto;
  }

  .story-price-card {
    transform: none;
  }
}

@media (max-width: 600px) {
  .story-step {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .story-timeline-line {
    display: none;
  }

  .story-number {
    width: 62px;
    height: 62px;
    font-size: 18px;
  }

  .story-step h3 {
    font-size: 22px;
  }

  .story-step p {
    font-size: 15px;
  }
}
/* =========================
   Mobile Ecommerce Product Grid
========================= */

@media (max-width: 760px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px 14px;
  }

  .product-image-wrap {
    aspect-ratio: 1 / 1.18;
    border-radius: 10px;
  }

  .product-card-info {
    width: calc(100% - 14px);
    min-height: 66px;
    margin: -30px 0 0 7px;
    padding: 10px 10px;
    border-radius: 0 0 8px 8px;
  }

  .product-card-info h3 {
    font-size: 12px;
    line-height: 1.25;
    margin-bottom: 5px;
  }

  .current-price {
    font-size: 16px;
  }

  .old-price {
    font-size: 11px;
  }

  .discount-badge {
    top: 8px;
    left: 8px;
    font-size: 10px;
    padding: 6px 8px;
  }
}

@media (max-width: 360px) {
  .product-grid {
    gap: 18px 10px;
  }

  .product-card-info h3 {
    font-size: 11px;
  }

  .current-price {
    font-size: 15px;
  }
}
/* =========================
   Shop Mobile UX
========================= */

.shop-mobile-toolbar {
  display: none;
}

@media (max-width: 760px) {
  .shop-hero,
  .inner-hero-shop {
    display: none;
  }
   .section.section-dark {
    padding-top: 120px;
  }

  .inner-hero-shop h1 {
    font-size: 38px;
  }

  .inner-hero-shop p:not(.section-kicker) {
    display: none;
  }

  .shop-mobile-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
  }

  .shop-mobile-toolbar h2 {
    color: #fff;
    margin: 0;
    font-size: 26px;
  }

  .shop-mobile-toolbar button {
  border: 1px solid rgba(255,255,255,0.18);
  background: #fff;
  color: #000;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

  .shop-filter-card {
    padding: 14px;
    border-radius: 18px;
    margin-bottom: 28px;
  }

  .shop-filter-card .category-links {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    margin-bottom: 0;
    scrollbar-width: none;
  }

  .shop-filter-card .category-links::-webkit-scrollbar {
    display: none;
  }

  .shop-filter-card .category-links a {
    flex: 0 0 auto;
    padding: 9px 14px;
    font-size: 13px;
    border-radius: 999px;
  }

 .shop-search-form {
  display: none;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  background: #fff;
  border-radius: 999px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,0.22);
}

.shop-filter-card.show-mobile-search .shop-search-form {
  display: grid;
}

.shop-search-form input {
  min-height: 42px;
  font-size: 14px;
  border: 0;
  box-shadow: none;
  padding: 0 12px;
  border-radius: 999px;
}

.shop-search-form input:focus {
  box-shadow: none;
}

.shop-search-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: #ffffff;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 16px;
  transition: 0.22s ease;
}

.shop-search-icon-btn:hover {
  background: var(--yellow);
  color: #000;
  transform: scale(1.04);
}

  .search-result-text {
    font-size: 14px;
    margin-bottom: 18px;
  }
}
@media (max-width: 760px) {
  .header-actions {
    width: 100%;
  }

  .header-search {
    height: 44px;
  }

  .header-icon {
    display: none;
  }
}
/* =========================
   Shop Search SVG Icons
========================= */

.shop-search-icon-btn svg,
.mobile-search-toggle svg {
  width: 18px;
  height: 18px;
  display: block;
}

.shop-search-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.22s ease;
}

.shop-search-icon-btn:hover {
  background: var(--yellow);
  color: #000;
  transform: scale(1.04);
}

.mobile-search-toggle {
  border: 1px solid rgba(255,255,255,0.18);
  background: #fff;
  color: #000;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
/* =========================
   Shop Filter / Search Final Fix
========================= */

.shop-filter-card {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.shop-filter-card .category-links {
  margin-bottom: 18px;
}

.shop-search-form {
  display: grid;
  grid-template-columns: 1fr 52px;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.shop-search-form input {
  width: 100%;
  height: 54px;
  border-radius: 10px;
  border: 0;
  background: #fff;
  color: #000;
  padding: 0 18px;
  font-size: 16px;
  outline: none;
  box-shadow: none;
}

.shop-search-form input:focus {
  box-shadow: 0 0 0 3px rgba(246, 185, 0, 0.25);
}

.shop-search-icon-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.22s ease;
  flex: 0 0 52px;
}

.shop-search-icon-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.shop-search-icon-btn:hover {
  background: var(--yellow);
  color: #000;
  transform: scale(1.04);
}
/* Laptop search bar fix */
@media (min-width: 901px) and (max-width: 1280px) {
  .shop-filter-card {
    padding: 22px;
  }

  .shop-search-form {
    grid-template-columns: 1fr 52px;
    gap: 10px;
  }

  .shop-search-form input {
    height: 54px;
  }

  .shop-search-icon-btn {
    width: 52px;
    height: 52px;
  }
}
/* Mobile shop search final */
@media (max-width: 760px) {
  .shop-search-form {
    display: none;
    grid-template-columns: 1fr 44px;
    gap: 6px;
    background: #fff;
    padding: 5px;
    border-radius: 999px;
    margin-top: 14px;
  }

  .shop-filter-card.show-mobile-search .shop-search-form {
    display: grid;
  }

  .shop-search-form input {
    height: 42px;
    border-radius: 999px;
    padding: 0 12px;
    font-size: 14px;
  }

  .shop-search-icon-btn {
    width: 42px;
    height: 42px;
  }

  .shop-search-icon-btn svg {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 901px) and (max-width: 1280px) {
  .shop-filter-card .category-links a {
    padding: 10px 18px;
    font-size: 15px;
  }
}
/* More testimonial dots fix */
.testimonial-dots {
  flex-wrap: wrap;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}
/* Testimonial small final polish */
.testimonial-item {
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.testimonial-item[data-position="0"] {
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
}

.testimonial-title {
  margin-bottom: 54px;
}

.testimonial-content {
  padding: 34px 32px 28px;
}

.testimonial-item p {
  font-size: 13.5px;
  line-height: 1.62;
}

.quote-mark {
  opacity: 0.75;
}

.testimonial-dots {
  margin-top: 26px;
}
/* =========================
   Policy Pages
========================= */

.policy-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(246, 185, 0, 0.18), transparent 28%),
    linear-gradient(135deg, #050505 0%, #111 50%, #241b05 100%);
  color: #fff;
}

.policy-card {
  max-width: 950px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  padding: 42px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}

.policy-card h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  margin: 0 0 24px;
}

.policy-card h3 {
  color: var(--yellow);
  margin: 28px 0 10px;
  font-size: 22px;
}

.policy-card p {
  color: #dedede;
  line-height: 1.85;
  font-size: 16px;
}

.footer-links-box a {
  color: #d8d8d8;
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.footer-links-box a:hover {
  color: var(--yellow);
}

@media (max-width: 600px) {
  .policy-card {
    padding: 28px 20px;
  }
}
/* =========================
   Footer Legal Policy Links
========================= */

.footer-legal-row {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 42px 22px;
  border-top: 1px solid #111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  background: #000;
  color: #9f9f9f;
  font-size: 13px;
}

.footer-legal-row a {
  color: #cfcfcf;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-legal-row a:hover {
  color: var(--yellow);
}

.footer-legal-row span {
  color: #555;
}

@media (max-width: 600px) {
  .footer-legal-row {
    padding: 16px 20px 22px;
    gap: 8px;
    font-size: 12px;
    text-align: center;
  }
}