:root {
  --bg: #f6f5f2;
  --surface: #ffffff;
  --surface-soft: #efeee9;

  --dark: #181817;
  --dark-soft: #282724;

  --text: #1c1c1a;
  --muted: #7b7a75;

  --line: #e6e4de;

  --accent: #a97c50;
  --accent-soft: #eee2d5;

  --green: #1daa59;
  --green-dark: #158844;

  --danger: #d74747;

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 38px;

  --shadow-sm: 0 8px 30px rgba(26, 25, 22, 0.045);

  --shadow: 0 22px 55px rgba(26, 25, 22, 0.08);

  --container: 1420px;
}

/* =========================================================
   BASE
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--bg);

  color: var(--text);

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.store-container {
  width: min(calc(100% - 48px), var(--container));

  margin: 0 auto;
}

/* =========================================================
   ANNOUNCEMENT
========================================================= */

.store-announcement {
  min-height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 6px 20px;

  background: var(--dark);

  color: rgba(255, 255, 255, 0.72);

  font-size: 10px;

  letter-spacing: 0.25px;
}

.store-announcement strong {
  margin: 0 4px;

  color: #fff;
}

/* =========================================================
   HEADER
========================================================= */

.store-header {
  position: sticky;

  top: 0;

  z-index: 1040;

  background: rgba(246, 245, 242, 0.88);

  backdrop-filter: blur(24px);

  -webkit-backdrop-filter: blur(24px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.045);
}

.store-header-main {
  min-height: 82px;

  display: grid;

  grid-template-columns:
    210px
    minmax(300px, 670px)
    1fr;

  align-items: center;

  gap: 28px;
}

/* =========================================================
   LOGO
========================================================= */

.store-logo {
  display: inline-flex;

  align-items: center;

  width: fit-content;

  font-size: 23px;

  font-weight: 900;

  letter-spacing: -1.1px;
}

.store-logo img {
  max-width: 170px;
  max-height: 46px;

  object-fit: contain;
}

/* =========================================================
   SEARCH
========================================================= */

.store-search {
  position: relative;

  width: 100%;
}

.store-search-inner {
  position: relative;
}

.store-search-icon {
  position: absolute;

  left: 18px;
  top: 50%;

  transform: translateY(-50%);

  color: #999;

  font-size: 13px;

  pointer-events: none;
}

.store-search input {
  width: 100%;

  height: 49px;

  padding: 0 120px 0 43px;

  border: 1px solid rgba(0, 0, 0, 0.075);

  border-radius: 100px;

  outline: none;

  background: rgba(255, 255, 255, 0.74);

  color: var(--text);

  font-size: 12px;

  transition: 0.2s ease;
}

.store-search input::placeholder {
  color: #aaa;
}

.store-search input:focus {
  border-color: #bcb8af;

  background: #fff;

  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.025);
}

.store-search button {
  position: absolute;

  top: 5px;
  right: 5px;

  height: 39px;

  padding: 0 18px;

  border: 0;

  border-radius: 100px;

  background: var(--dark);

  color: #fff;

  font-size: 10px;

  font-weight: 750;
}

/* =========================================================
   HEADER ACTIONS
========================================================= */

.store-header-actions {
  display: flex;

  justify-content: flex-end;
  align-items: center;

  gap: 9px;
}

.header-action {
  min-height: 42px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 0 15px;

  border: 1px solid var(--line);

  border-radius: 100px;

  background: rgba(255, 255, 255, 0.72);

  color: #565550;

  font-size: 10px;

  font-weight: 700;

  transition: 0.18s ease;
}

.header-action:hover {
  transform: translateY(-1px);

  border-color: #d3d0c8;

  background: #fff;

  color: #181817;
}

.header-action-whatsapp {
  background: #eaf8ef;

  border-color: rgba(29, 170, 89, 0.14);

  color: #168948;
}

/* =========================================================
   NAV
========================================================= */

.store-nav {
  border-top: 1px solid rgba(0, 0, 0, 0.032);
}

.store-nav-inner {
  min-height: 47px;

  display: flex;

  align-items: center;

  gap: 28px;

  overflow-x: auto;

  scrollbar-width: none;
}

.store-nav-inner::-webkit-scrollbar {
  display: none;
}

.store-nav-link {
  position: relative;

  flex-shrink: 0;

  color: #6d6b66;

  font-size: 10px;

  font-weight: 720;

  transition: 0.2s ease;
}

.store-nav-link:hover {
  color: #181817;
}

.store-nav-link::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: -15px;

  height: 2px;

  border-radius: 2px;

  background: var(--dark);

  transform: scaleX(0);

  transition: 0.2s ease;
}

.store-nav-link:hover::after {
  transform: scaleX(1);
}

/* =========================================================
   HERO
========================================================= */

.hero-section {
  padding: 28px 0 10px;
}

.hero-store {
  position: relative;

  min-height: 510px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(360px, 0.85fr);

  overflow: hidden;

  border-radius: var(--radius-xl);

  background: linear-gradient(135deg, #171716 0%, #24231f 54%, #383128 100%);

  color: #fff;

  box-shadow: 0 28px 65px rgba(25, 24, 20, 0.13);
}

.hero-store::before {
  content: "";

  position: absolute;

  width: 660px;
  height: 660px;

  right: -250px;
  top: -360px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.075);
}

.hero-store::after {
  content: "";

  position: absolute;

  width: 400px;
  height: 400px;

  left: 42%;

  bottom: -320px;

  border-radius: 50%;

  background: rgba(169, 124, 80, 0.22);
}

.hero-content {
  position: relative;

  z-index: 3;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 70px 30px 70px 70px;
}

.hero-label {
  width: fit-content;

  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-bottom: 19px;

  padding: 8px 13px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 100px;

  background: rgba(255, 255, 255, 0.065);

  color: rgba(255, 255, 255, 0.72);

  font-size: 9px;

  font-weight: 750;

  text-transform: uppercase;

  letter-spacing: 1.2px;
}

.hero-title {
  max-width: 690px;

  margin: 0;

  font-size: clamp(48px, 5.4vw, 78px);

  line-height: 0.94;

  font-weight: 900;

  letter-spacing: -3.5px;
}

.hero-title span {
  color: #c8a27b;
}

.hero-description {
  max-width: 590px;

  margin: 23px 0 0;

  color: rgba(255, 255, 255, 0.58);

  font-size: 13px;

  line-height: 1.9;
}

.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 9px;

  margin-top: 28px;
}

.hero-button {
  min-height: 48px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 0 19px;

  border-radius: 100px;

  background: #fff;

  color: #181817;

  font-size: 10px;

  font-weight: 800;

  transition: 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
}

.hero-button-secondary {
  background: rgba(255, 255, 255, 0.07);

  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================================
   HERO PRODUCT
========================================================= */

.hero-product-area {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: flex-end;

  justify-content: center;

  padding: 45px 45px 0;
}

.hero-product-card {
  position: relative;

  width: min(100%, 410px);

  overflow: hidden;

  border-radius: 30px 30px 0 0;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.09);

  border-bottom: 0;

  backdrop-filter: blur(12px);

  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.16);
}

.hero-product-image {
  width: 100%;

  aspect-ratio: 1 / 1.05;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.08);
}

.hero-product-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.hero-product-noimage {
  width: 100%;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.35);

  font-size: 44px;
}

.hero-product-content {
  padding: 17px 18px 21px;

  background: rgba(20, 20, 19, 0.62);
}

.hero-product-category {
  color: rgba(255, 255, 255, 0.4);

  font-size: 8px;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.hero-product-name {
  margin-top: 5px;

  color: #fff;

  font-size: 15px;

  line-height: 1.4;

  font-weight: 750;
}

.hero-product-price {
  margin-top: 7px;

  color: #fff;

  font-size: 17px;

  font-weight: 850;
}

/* =========================================================
   BENEFITS
========================================================= */

.store-benefits {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 11px;

  margin-top: 12px;
}

.benefit-card {
  min-height: 90px;

  display: flex;

  align-items: center;

  gap: 13px;

  padding: 16px 18px;

  background: rgba(255, 255, 255, 0.68);

  border: 1px solid var(--line);

  border-radius: 19px;

  transition: 0.2s ease;
}

.benefit-card:hover {
  background: #fff;

  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  width: 44px;
  height: 44px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: #eceae5;

  color: #363531;

  font-size: 15px;
}

.benefit-title {
  font-size: 11px;

  font-weight: 780;
}

.benefit-description {
  margin-top: 3px;

  color: var(--muted);

  font-size: 9px;
}

/* =========================================================
   SECTION
========================================================= */

.store-section {
  padding: 52px 0;
}

.section-header {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 23px;
}

.section-eyebrow {
  margin-bottom: 5px;

  color: #9b7a59;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}

.section-title {
  margin: 0;

  font-size: 29px;

  font-weight: 900;

  letter-spacing: -1px;
}

.section-description {
  margin: 6px 0 0;

  color: var(--muted);

  font-size: 11px;
}

.section-link {
  min-height: 36px;

  display: inline-flex;

  align-items: center;

  gap: 7px;

  padding: 0 13px;

  border: 1px solid var(--line);

  border-radius: 100px;

  background: #fff;

  color: #5c5b57;

  font-size: 9px;

  font-weight: 750;
}

/* =========================================================
   CATEGORY
========================================================= */

.category-scroll {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

/* CARD */

.category-card {
  position: relative;
  isolation: isolate;

  min-width: 0;
  min-height: 165px;

  display: flex;
  flex-direction: column;

  padding: 16px;

  overflow: hidden;

  background: #fff;

  border: 1px solid var(--line);

  border-radius: 22px;

  box-shadow: 0 8px 25px rgba(30, 29, 26, 0.025);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.category-card:hover {
  transform: translateY(-4px);

  border-color: #dcd9d1;

  box-shadow: 0 18px 42px rgba(30, 29, 26, 0.07);
}

/*
|--------------------------------------------------------------------------
| Ornamen background
|--------------------------------------------------------------------------
|
| WAJIB berada di belakang isi.
|
*/

.category-card::after {
  content: "";

  position: absolute;

  z-index: 0;

  width: 115px;
  height: 115px;

  right: -38px;
  bottom: -48px;

  border-radius: 50%;

  background: #f5f3ef;

  pointer-events: none;
}

/* IMAGE */

.category-image {
  position: relative;

  z-index: 2;

  width: 67px;
  height: 67px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-radius: 19px;

  background: #efede8;

  color: #787671;

  font-size: 20px;
}

.category-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* CONTENT */

.category-content {
  position: relative;

  z-index: 2;

  width: 100%;

  margin-top: auto;

  padding-top: 17px;
}

/*
|--------------------------------------------------------------------------
| Tetap support markup lama
|--------------------------------------------------------------------------
|
| Walaupun .category-name tidak dibungkus .category-content,
| teks tetap tidak akan tertutup ornamen.
|
*/

.category-name {
  position: relative;

  z-index: 3;

  display: -webkit-box;

  width: 100%;

  margin: auto 0 0;

  overflow: hidden;

  color: #22211f;

  font-size: 12px;

  font-weight: 800;

  line-height: 1.35;

  overflow-wrap: anywhere;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.category-arrow {
  position: relative;

  z-index: 3;

  margin-top: 5px;

  color: #aaa7a0;

  font-size: 8px;

  font-weight: 600;
}

/* =========================================================
   FEATURED PANEL
========================================================= */

.featured-panel {
  padding: 28px;

  border-radius: 30px;

  background: #ece9e3;
}

/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 18px;
}

/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
  position: relative;

  height: 100%;

  overflow: hidden;

  background: #fff;

  border: 1px solid var(--line);

  border-radius: 22px;

  transition:
    transform 0.23s ease,
    box-shadow 0.23s ease;
}

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

  box-shadow: var(--shadow);
}

.product-image-wrap {
  position: relative;

  width: 100%;

  aspect-ratio: 1 / 1.11;

  overflow: hidden;

  background: #efeee9;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.45s ease;
}

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

/* =========================================================
   PRODUCT BADGE
========================================================= */

.product-label {
  position: absolute;

  z-index: 4;

  top: 12px;
  left: 12px;

  display: inline-flex;

  align-items: center;

  gap: 5px;

  padding: 6px 9px;

  border-radius: 100px;

  background: rgba(25, 25, 24, 0.85);

  backdrop-filter: blur(10px);

  color: #fff;

  font-size: 8px;

  font-weight: 750;
}

.discount-label {
  position: absolute;

  z-index: 4;

  top: 12px;
  right: 12px;

  padding: 6px 9px;

  border-radius: 100px;

  background: rgba(255, 255, 255, 0.92);

  color: var(--danger);

  font-size: 8px;

  font-weight: 850;
}

/* =========================================================
   CARD BODY
========================================================= */

.product-card-body {
  padding: 16px 16px 17px;
}

.product-category {
  color: #aaa7a1;

  font-size: 8px;

  font-weight: 760;

  letter-spacing: 0.9px;

  text-transform: uppercase;
}

.product-name {
  min-height: 42px;

  margin: 6px 0 10px;

  font-size: 13px;

  line-height: 1.45;

  font-weight: 730;
}

.product-price-wrap {
  min-height: 42px;
}

.product-price {
  color: #171716;

  font-size: 17px;

  font-weight: 900;

  letter-spacing: -0.45px;
}

.product-old-price {
  display: block;

  margin-top: 2px;

  color: #aaa;

  font-size: 9px;

  text-decoration: line-through;
}

.product-stock {
  margin-top: 7px;

  color: #9a9892;

  font-size: 8px;
}

.product-actions {
  display: grid;

  grid-template-columns:
    40px
    1fr;

  gap: 7px;

  margin-top: 13px;
}

.product-detail-button {
  min-height: 40px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid var(--line);

  border-radius: 12px;

  background: #fff;

  color: #454440;

  transition: 0.2s ease;
}

.product-detail-button:hover {
  background: #f5f4f0;
}

.product-wa-button {
  min-height: 40px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  border-radius: 12px;

  background: #eaf8ef;

  color: #168d47;

  font-size: 9px;

  font-weight: 800;

  transition: 0.2s ease;
}

.product-wa-button:hover {
  background: #def4e6;
}

/* =========================================================
   PLACEHOLDER
========================================================= */

.product-placeholder {
  width: 100%;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #b5b2ab;

  font-size: 35px;
}

/* =========================================================
   RESULT
========================================================= */

.result-info {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  padding: 8px 11px;

  border: 1px solid var(--line);

  border-radius: 100px;

  background: #fff;

  color: #75736e;

  font-size: 9px;

  font-weight: 700;
}

/* =========================================================
   EMPTY
========================================================= */

.store-empty {
  padding: 80px 20px;

  text-align: center;

  background: #fff;

  border: 1px solid var(--line);

  border-radius: 28px;
}

.store-empty-icon {
  width: 70px;
  height: 70px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin: 0 auto 17px;

  border-radius: 22px;

  background: #efeee9;

  color: #aaa;

  font-size: 24px;
}

.store-empty h4 {
  margin-bottom: 7px;

  font-size: 17px;

  font-weight: 850;
}

.store-empty p {
  color: #888;

  font-size: 10px;
}

/* =========================================================
   PRODUCT DETAIL
========================================================= */

.product-detail-section {
  padding: 34px 0 58px;
}

.product-detail-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(420px, 0.92fr);

  gap: 62px;

  align-items: start;
}

.product-gallery-main {
  overflow: hidden;

  border-radius: 30px;

  background: #ecebe7;

  box-shadow: 0 18px 45px rgba(30, 28, 24, 0.05);
}

.product-detail-image {
  display: block;

  width: 100%;

  aspect-ratio: 1/1;

  object-fit: cover;
}

.product-gallery-thumbs {
  display: flex;

  flex-wrap: wrap;

  gap: 9px;

  margin-top: 11px;
}

.product-thumbnail {
  width: 76px;
  height: 76px;

  padding: 2px;

  object-fit: cover;

  cursor: pointer;

  border: 2px solid transparent;

  border-radius: 14px;

  background: #fff;

  transition: 0.2s ease;
}

.product-thumbnail:hover,
.product-thumbnail.active {
  border-color: var(--dark);
}

.product-info-panel {
  position: sticky;

  top: 155px;

  padding-top: 12px;
}

.product-breadcrumb {
  margin-bottom: 14px;

  color: #a2a09a;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.product-detail-title {
  margin: 0;

  font-size: clamp(32px, 4.2vw, 55px);

  line-height: 1.02;

  font-weight: 900;

  letter-spacing: -2px;
}

.product-detail-prices {
  margin-top: 19px;
}

.product-detail-price {
  font-size: 29px;

  font-weight: 900;

  letter-spacing: -0.8px;
}

.product-detail-old {
  margin-top: 4px;

  color: #a5a29c;

  font-size: 11px;

  text-decoration: line-through;
}

.product-short-description {
  margin-top: 23px;

  max-width: 590px;

  color: #77756f;

  font-size: 12px;

  line-height: 1.9;
}

.product-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-top: 20px;
}

.product-meta-item {
  padding: 7px 11px;

  border: 1px solid var(--line);

  border-radius: 100px;

  background: #fff;

  color: #74716c;

  font-size: 8px;

  font-weight: 650;
}

.product-variant-box {
  margin-top: 27px;
}

.product-variant-box label {
  display: block;

  margin-bottom: 8px;

  font-size: 10px;

  font-weight: 780;
}

.product-variant-box select {
  width: 100%;

  height: 50px;

  padding: 0 14px;

  border: 1px solid #dedbd3;

  border-radius: 14px;

  background: #fff;

  outline: none;

  font-size: 11px;
}

.product-main-wa {
  width: 100%;

  min-height: 55px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  margin-top: 14px;

  border: 0;

  border-radius: 15px;

  background: var(--green);

  color: #fff;

  font-size: 11px;

  font-weight: 850;

  transition: 0.2s ease;
}

.product-main-wa:hover {
  background: var(--green-dark);

  transform: translateY(-1px);
}

.product-description-box {
  margin-top: 36px;

  padding-top: 26px;

  border-top: 1px solid var(--line);
}

.product-description-title {
  margin-bottom: 11px;

  font-size: 13px;

  font-weight: 850;
}

.product-description-text {
  color: #76736d;

  font-size: 11px;

  line-height: 1.9;
}

/* =========================================================
   MOBILE BUY BAR
========================================================= */

.mobile-product-buybar {
  display: none;
}

/* =========================================================
   FOOTER
========================================================= */

.store-footer {
  margin-top: 65px;

  padding: 68px 0 32px;

  background: #181817;

  color: #fff;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    2fr
    1fr
    1fr;

  gap: 60px;
}

.footer-brand {
  margin-bottom: 13px;

  font-size: 24px;

  font-weight: 900;

  letter-spacing: -1px;
}

.footer-description {
  max-width: 480px;

  color: rgba(255, 255, 255, 0.43);

  font-size: 10px;

  line-height: 1.9;
}

.footer-title {
  margin-bottom: 13px;

  font-size: 10px;

  font-weight: 800;
}

.footer-text {
  color: rgba(255, 255, 255, 0.43);

  font-size: 9px;

  line-height: 1.9;
}

.footer-social {
  display: flex;

  gap: 7px;

  margin-top: 15px;
}

.footer-social a {
  width: 37px;
  height: 37px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 12px;

  color: rgba(255, 255, 255, 0.65);

  transition: 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.07);

  color: #fff;
}

.footer-bottom {
  margin-top: 45px;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.07);

  color: rgba(255, 255, 255, 0.25);

  font-size: 8px;
}

/* =========================================================
   FLOATING WA
========================================================= */

.floating-wa {
  position: fixed;

  z-index: 1030;

  right: 23px;
  bottom: 23px;

  width: 57px;
  height: 57px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--green);

  color: #fff;

  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);

  font-size: 23px;

  transition: 0.2s ease;
}

.floating-wa:hover {
  transform: translateY(-3px);

  color: #fff;
}

/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-store-nav {
  display: none;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {
  .store-header-main {
    grid-template-columns:
      170px
      1fr
      auto;
  }

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

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

  .hero-store {
    grid-template-columns:
      minmax(0, 1.15fr)
      minmax(300px, 0.85fr);
  }

  .hero-content {
    padding-left: 50px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  body {
    padding-bottom: 75px;
  }

  .compact-intro {
    padding: 12px 0 6px;
  }

  .compact-intro-card {
    min-height: 112px;

    padding: 18px 19px;

    border-radius: 20px;
  }

  .compact-intro-card h1 {
    max-width: 250px;

    font-size: 22px;

    letter-spacing: -0.8px;
  }

  .compact-intro-card p {
    max-width: 260px;

    font-size: 8px;
  }

  .compact-intro-action {
    display: none;
  }

  /* banner mobile */

  .image-banner-section {
    padding: 7px 0;
  }

  .store-banner-carousel {
    border-radius: 20px;
  }

  .store-banner-slide {
    aspect-ratio: 16 / 7.2;
  }

  .store-banner-overlay {
    padding: 20px 20px;

    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.63),
      rgba(0, 0, 0, 0.18) 70%,
      transparent
    );
  }

  .store-banner-content {
    max-width: 250px;
  }

  .store-banner-content h2 {
    font-size: 22px;

    letter-spacing: -0.8px;
  }

  .store-banner-content p {
    max-width: 230px;

    margin-top: 7px;

    font-size: 8px;

    line-height: 1.5;
  }

  .store-banner-button {
    min-height: 33px;

    margin-top: 11px;

    padding: 0 11px;

    font-size: 7px;
  }

  .store-banner-indicators {
    margin-bottom: 9px;
  }

  .store-banner-indicators [data-bs-target] {
    width: 5px;
    height: 5px;
  }

  .store-banner-indicators .active {
    width: 18px;
  }

  .store-banner-arrow {
    display: none;
  }

  .store-container {
    width: calc(100% - 24px);
  }

  .store-announcement {
    display: none;
  }

  /* HEADER */

  .store-header-main {
    min-height: auto;

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    padding: 10px 0 11px;
  }

  .store-logo {
    max-width: calc(100% - 55px);

    font-size: 19px;
  }

  .store-logo img {
    max-width: 140px;
    max-height: 38px;
  }

  .store-header-actions {
    margin-left: auto;
  }

  .store-header-actions .header-action:not(.header-action-whatsapp) {
    display: none;
  }

  .header-action-whatsapp {
    width: 40px;
    height: 40px;

    min-height: 40px;

    padding: 0;

    border-radius: 50%;

    font-size: 0;
  }

  .header-action-whatsapp i {
    font-size: 17px;
  }

  .store-search {
    flex-basis: 100%;

    order: 3;
  }

  .store-search input {
    height: 44px;

    padding: 0 48px 0 39px;

    background: #f3f2ee;

    font-size: 10px;
  }

  .store-search button {
    width: 35px;
    height: 35px;

    top: 4px;

    padding: 0;

    font-size: 0;
  }

  .store-search button::before {
    content: "\f002";

    font-family: "Font Awesome 7 Free";

    font-weight: 900;

    font-size: 12px;
  }

  .store-search-icon {
    left: 15px;

    font-size: 11px;
  }

  .store-nav {
    display: none;
  }

  /* HERO */

  .hero-section {
    padding: 12px 0 5px;
  }

  .hero-store {
    min-height: 460px;

    display: flex;

    flex-direction: column;

    border-radius: 25px;
  }

  .hero-content {
    width: 100%;

    padding: 31px 23px 22px;
  }

  .hero-label {
    margin-bottom: 12px;

    padding: 6px 9px;

    font-size: 7px;
  }

  .hero-title {
    max-width: 410px;

    font-size: clamp(35px, 11vw, 49px);

    line-height: 0.97;

    letter-spacing: -2px;
  }

  .hero-description {
    margin-top: 14px;

    font-size: 10px;

    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-button {
    min-height: 40px;

    padding: 0 14px;

    font-size: 8px;
  }

  .hero-product-area {
    width: 100%;

    flex: 1;

    align-items: flex-end;

    padding: 0 20px;
  }

  .hero-product-card {
    width: 100%;

    max-width: 330px;

    border-radius: 22px 22px 0 0;
  }

  .hero-product-image {
    aspect-ratio: 1.6 / 1;
  }

  .hero-product-content {
    padding: 11px 13px 14px;
  }

  .hero-product-name {
    font-size: 11px;
  }

  .hero-product-price {
    font-size: 13px;
  }

  /* BENEFITS */

  .store-benefits {
    display: flex;

    overflow-x: auto;

    gap: 8px;

    margin-right: -12px;

    padding-right: 12px;

    scrollbar-width: none;
  }

  .store-benefits::-webkit-scrollbar {
    display: none;
  }

  .benefit-card {
    flex: 0 0 210px;

    min-height: 67px;

    padding: 11px;
  }

  .benefit-icon {
    width: 38px;
    height: 38px;
  }

  .benefit-title {
    font-size: 9px;
  }

  .benefit-description {
    font-size: 8px;
  }

  /* SECTIONS */

  .store-section {
    padding: 31px 0;
  }

  .section-header {
    align-items: center;

    margin-bottom: 15px;
  }

  .section-eyebrow {
    font-size: 7px;
  }

  .section-title {
    font-size: 21px;

    letter-spacing: -0.7px;
  }

  .section-description {
    font-size: 9px;
  }

  .section-link {
    min-height: 32px;

    padding: 0 10px;

    font-size: 8px;
  }

  /* CATEGORIES */

  .category-scroll {
    display: flex;

    overflow-x: auto;

    gap: 9px;

    margin-right: -12px;

    padding-right: 12px;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;
  }

  .category-scroll::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    flex: 0 0 108px;

    min-height: 128px;

    padding: 12px;

    border-radius: 17px;

    scroll-snap-align: start;
  }

  .category-image {
    width: 53px;
    height: 53px;

    border-radius: 15px;
  }

  .category-name {
    margin-top: 10px;

    font-size: 10px;
  }

  .category-arrow {
    font-size: 7px;
  }

  /* FEATURED */

  .featured-panel {
    margin: 0 -12px;

    padding: 20px 12px;

    border-radius: 0;
  }

  /* PRODUCTS */

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

    gap: 9px;
  }

  .product-card {
    border-radius: 17px;
  }

  .product-image-wrap {
    aspect-ratio: 1 / 1.16;
  }

  .product-label {
    top: 8px;
    left: 8px;

    padding: 4px 6px;

    font-size: 6px;
  }

  .discount-label {
    top: 8px;
    right: 8px;

    padding: 4px 6px;

    font-size: 6px;
  }

  .product-card-body {
    padding: 10px 10px 11px;
  }

  .product-category {
    font-size: 6px;
  }

  .product-name {
    min-height: 34px;

    margin: 5px 0 7px;

    font-size: 10px;

    line-height: 1.45;
  }

  .product-price-wrap {
    min-height: 33px;
  }

  .product-price {
    font-size: 13px;
  }

  .product-old-price {
    font-size: 7px;
  }

  .product-stock {
    font-size: 7px;
  }

  .product-actions {
    grid-template-columns:
      34px
      1fr;

    gap: 5px;

    margin-top: 8px;
  }

  .product-detail-button,
  .product-wa-button {
    min-height: 35px;

    border-radius: 10px;
  }

  .product-detail-button {
    font-size: 10px;
  }

  .product-wa-button {
    font-size: 8px;
  }

  /* DETAIL */

  .product-detail-section {
    padding: 12px 0 30px;
  }

  .product-detail-grid {
    display: block;
  }

  .product-gallery-main {
    border-radius: 23px;
  }

  .product-gallery-thumbs {
    flex-wrap: nowrap;

    overflow-x: auto;

    scrollbar-width: none;
  }

  .product-gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .product-thumbnail {
    flex-shrink: 0;

    width: 65px;
    height: 65px;
  }

  .product-info-panel {
    position: static;

    margin-top: 25px;

    padding: 0;
  }

  .product-detail-title {
    font-size: 30px;

    letter-spacing: -1.1px;
  }

  .product-detail-price {
    font-size: 23px;
  }

  .product-short-description {
    font-size: 10px;

    line-height: 1.8;
  }

  .product-main-wa {
    display: none;
  }

  /* FOOTER */

  .store-footer {
    margin-top: 36px;

    padding: 43px 0 105px;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 29px;
  }

  .floating-wa {
    display: none;
  }

  /* MOBILE NAV */

  .mobile-store-nav {
    position: fixed;

    z-index: 1050;

    left: 10px;
    right: 10px;
    bottom: 10px;

    height: 61px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    padding: 5px;

    border: 1px solid rgba(0, 0, 0, 0.055);

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(22px);

    -webkit-backdrop-filter: blur(22px);

    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.17);
  }

  .mobile-store-nav a {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 3px;

    color: #9b9993;

    font-size: 7px;

    font-weight: 720;
  }

  .mobile-store-nav a i {
    font-size: 15px;
  }

  .mobile-store-nav a.active {
    color: var(--dark);
  }

  .mobile-store-nav .mobile-wa-menu {
    color: var(--green);
  }

  /* MOBILE PRODUCT BUYBAR */

  .mobile-product-buybar {
    position: fixed;

    z-index: 1060;

    left: 10px;
    right: 10px;
    bottom: 10px;

    min-height: 64px;

    display: grid;

    grid-template-columns:
      1fr
      auto;

    align-items: center;

    gap: 10px;

    padding: 8px 8px 8px 15px;

    border: 1px solid rgba(0, 0, 0, 0.06);

    border-radius: 19px;

    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(22px);

    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.18);
  }

  .mobile-buy-price-label {
    color: #aaa;

    font-size: 7px;

    text-transform: uppercase;

    letter-spacing: 0.7px;
  }

  .mobile-buy-price {
    margin-top: 1px;

    font-size: 14px;

    font-weight: 900;
  }

  .mobile-buy-button {
    min-height: 47px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    padding: 0 17px;

    border: 0;

    border-radius: 13px;

    background: var(--green);

    color: #fff;

    font-size: 9px;

    font-weight: 850;
  }

  body.product-page {
    padding-bottom: 83px;
  }

  body.product-page .mobile-store-nav {
    display: none;
  }
}

/* =========================================================
   VERY SMALL
========================================================= */

@media (max-width: 380px) {
  .store-container {
    width: calc(100% - 18px);
  }

  .hero-content {
    padding-left: 19px;
    padding-right: 19px;
  }

  .product-grid {
    gap: 7px;
  }

  .product-card-body {
    padding: 9px;
  }
}

/* =========================================================
   COMPACT INTRO HERO
========================================================= */

.compact-intro {
  padding: 25px 0 10px;
}

.compact-intro-card {
  min-height: 145px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding: 26px 34px;

  overflow: hidden;

  position: relative;

  border-radius: 25px;

  background: linear-gradient(120deg, #181817, #302b25);

  color: white;
}

.compact-intro-card::after {
  content: "";

  position: absolute;

  width: 230px;
  height: 230px;

  right: -60px;
  top: -140px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.compact-intro-label {
  display: block;

  margin-bottom: 7px;

  color: rgba(255, 255, 255, 0.48);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}

.compact-intro-card h1 {
  margin: 0;

  font-size: clamp(25px, 3vw, 39px);

  line-height: 1.05;

  font-weight: 900;

  letter-spacing: -1.4px;
}

.compact-intro-card p {
  margin: 8px 0 0;

  color: rgba(255, 255, 255, 0.52);

  font-size: 10px;
}

.compact-intro-action {
  position: relative;

  z-index: 2;

  flex-shrink: 0;
}

.compact-intro-button {
  min-height: 43px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  padding: 0 17px;

  border-radius: 100px;

  background: white;

  color: #171717;

  font-size: 9px;

  font-weight: 800;
}

/* =========================================================
   IMAGE BANNER CAROUSEL
========================================================= */

.image-banner-section {
  padding: 12px 0 10px;
}

.store-banner-carousel {
  overflow: hidden;

  border-radius: 28px;

  background: #e9e7e1;

  box-shadow: 0 15px 40px rgba(20, 20, 20, 0.065);
}

.store-banner-slide {
  position: relative;

  width: 100%;

  aspect-ratio: 16 / 5.2;

  overflow: hidden;

  background: #e8e6e0;
}

.store-banner-slide > img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

/* Dark gradient overlay */

.store-banner-overlay {
  position: absolute;

  inset: 0;

  display: flex;

  align-items: center;

  padding: 50px 70px;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.31) 40%,
    rgba(0, 0, 0, 0) 72%
  );
}

.store-banner-content {
  max-width: 570px;

  color: white;
}

.store-banner-content h2 {
  max-width: 570px;

  margin: 0;

  font-size: clamp(27px, 4vw, 52px);

  line-height: 1;

  font-weight: 900;

  letter-spacing: -1.8px;
}

.store-banner-content p {
  max-width: 450px;

  margin: 12px 0 0;

  color: rgba(255, 255, 255, 0.73);

  font-size: 11px;

  line-height: 1.7;
}

.store-banner-button {
  min-height: 41px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 7px;

  margin-top: 18px;

  padding: 0 15px;

  border-radius: 100px;

  background: white;

  color: #181817;

  font-size: 9px;

  font-weight: 800;
}

/* indicators */

.store-banner-indicators {
  z-index: 5;

  margin-bottom: 16px;
}

.store-banner-indicators [data-bs-target] {
  width: 7px;
  height: 7px;

  margin: 0 4px;

  border: 0;

  border-radius: 50%;

  background: white;

  opacity: 0.45;

  transition: 0.2s;
}

.store-banner-indicators .active {
  width: 24px;

  border-radius: 100px;

  opacity: 1;
}

/* arrows */

.store-banner-arrow {
  width: 70px;

  opacity: 0;

  transition: 0.2s ease;
}

.store-banner-carousel:hover .store-banner-arrow {
  opacity: 1;
}

.store-banner-arrow span {
  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.88);

  color: #171717;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.13);

  font-size: 12px;
}
