/* =========================================================
   GRABZONE — CLEAN MASTER STYLES
   Rebuilt from the uploaded styles.css.
   Includes:
   - Store layout
   - Responsive mobile layout
   - Product cards
   - Product detail
   - Footer / policy link
   - ONE notice marquee system only
========================================================= */

:root {
  --ink: #101010;
  --muted: #6d6d6d;
  --line: #e7e7e7;
  --soft: #f5f5f2;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

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

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

button {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

/* =========================================================
   NOTICE BOARD
   IMPORTANT: This is the ONLY notice animation in this file.
========================================================= */

.notice-wrap {
  position: relative;
  z-index: 20;

  width: 100%;
  height: 42px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: #101010;
  color: #ffffff;

  isolation: isolate;
}

.notice-label {
  position: relative;
  z-index: 5;

  flex: 0 0 88px;
  width: 88px;
  height: 100%;

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

  padding: 0 12px;

  background: #101010;
  border-right: 1px solid #333333;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1;

  white-space: nowrap;
}

.notice-track {
  position: relative;

  flex: 1 1 auto;
  width: 0;
  min-width: 0;
  height: 100%;

  overflow: hidden;
  display: block;

  white-space: nowrap;
}

/*
  The moving element starts outside the RIGHT side.
  It never begins in the middle.
*/
.notice-loop {
  position: absolute;
  z-index: 1;

  top: 50%;
  left: 100%;

  display: inline-flex;
  align-items: center;

  width: max-content;
  min-width: max-content;
  height: max-content;

  margin: 0;
  padding: 0;

  white-space: nowrap;

  transform: translate3d(0, -50%, 0);

  animation: grabzoneNoticeMarquee 34s linear infinite;

  will-change: transform;
  backface-visibility: hidden;
}

.notice-content {
  display: inline-flex;
  align-items: center;

  width: max-content;
  min-width: max-content;

  flex: 0 0 auto;

  white-space: nowrap;
}

.notice-group {
  display: inline-flex;
  align-items: center;

  width: max-content;
  min-width: max-content;

  flex: 0 0 auto;
}

.notice-item {
  display: inline-flex;
  align-items: center;

  width: max-content;
  min-width: max-content;

  flex: 0 0 auto;

  margin: 0 100px 0 0;
  padding: 0;

  font-size: 13px;
  font-weight: 500;
  line-height: 1;

  white-space: nowrap;
}

.notice-item b {
  display: inline-block;

  margin: 0 14px 0 0;

  font-weight: 900;

  white-space: nowrap;
}

.notice-message {
  display: inline-block;

  margin: 0;
  padding: 0;

  white-space: nowrap;
}

/* No bullet / no dot / no pseudo separator */
.notice-item::before,
.notice-item::after {
  content: none !important;
  display: none !important;
}

/*
  From:
    left edge of the notice item is at the right edge of the track.

  To:
    entire notice item has travelled past the left side.

  Because the animation is based on the moving element's own width,
  it does not start halfway through the text.
*/
@keyframes grabzoneNoticeMarquee {
  0% {
    transform: translate3d(0, -50%, 0);
  }

  100% {
    transform: translate3d(calc(-100% - 100vw), -50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .notice-loop {
    animation: none !important;
    left: 0;
    transform: translate3d(0, -50%, 0);
  }
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 10;

  height: 76px;

  display: flex;
  align-items: center;

  padding: 0 5vw;
  gap: 35px;

  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid var(--line);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand {
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 10px;

  font-weight: 900;
  letter-spacing: -.04em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  min-width: 34px;

  display: grid;
  place-items: center;

  overflow: hidden;

  border-radius: 10px;
  background: #111111;
  color: #ffffff;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.header nav {
  display: flex;
  align-items: center;
  gap: 25px;

  flex: 1;

  font-size: 14px;
}

.header nav a {
  transition: opacity .2s ease;
}

.header nav a:hover {
  opacity: .6;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.icon-btn {
  border: 0;
  background: transparent;
  font-size: 23px;
  color: inherit;
}

.btn {
  min-height: 42px;

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

  padding: 11px 18px;

  border: 1px solid #111111;
  border-radius: 999px;

  background: #ffffff;
  color: #111111;

  font-weight: 750;

  transition:
    transform .2s ease,
    opacity .2s ease,
    background .2s ease;
}

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

.btn-dark {
  background: #111111;
  color: #ffffff;
}

.btn-lg {
  padding: 14px 24px;
}

.btn-full {
  width: 100%;
}

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

.hero {
  min-height: 620px;

  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;

  gap: 60px;

  padding: 80px 8vw;

  background: #f1f1ed;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 15px;

  color: #777777;

  font-size: 11px;
  font-weight: 850;
  letter-spacing: .17em;
}

.hero h1 {
  margin: 0 0 28px;

  font-size: clamp(48px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -.07em;
}

.hero h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero p {
  max-width: 560px;

  margin: 0;

  color: #555555;

  font-size: 18px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;

  margin: 30px 0;
}

.text-link {
  font-weight: 750;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;

  color: #666666;

  font-size: 12px;
}

.hero-card {
  height: 450px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 24px;

  overflow: hidden;

  border-radius: 28px;

  background: #111111;
  color: #ffffff;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-card-top,
.hero-card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;

  font-size: 11px;
  letter-spacing: .14em;
}

.hero-product-shape {
  font-size: 180px;
  font-weight: 950;
  line-height: 1;

  text-align: center;
}

/* =========================================================
   OFFER
========================================================= */

.offer-strip {
  margin: 25px 5vw;
  padding: 18px 24px;

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

  gap: 20px;

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

  background: #ffffff;
}

.offer-strip > div:first-child {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;

  border-radius: 50%;
  background: #111111;
}

.offer-code {
  font-weight: 900;
}

.offer-strip > div:last-child {
  flex-shrink: 0;
}

/* =========================================================
   SHOP
========================================================= */

.shop-section,
.how-section {
  padding: 90px 5vw;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 35px;
}

.section-head h2,
.how-section h2,
.ref-section h2 {
  margin: 0;

  font-size: 46px;
  line-height: 1;
  letter-spacing: -.055em;
}

.shop-tools {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.shop-tools input {
  width: 220px;

  padding: 12px 16px;

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

  outline: none;
  background: #ffffff;
}

.shop-tools input:focus {
  border-color: #111111;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;

  padding: 9px 13px;

  background: #ffffff;
  color: #111111;

  cursor: pointer;

  font-size: 12px;

  transition:
    background .2s ease,
    color .2s ease,
    transform .2s ease;
}

.chip:hover {
  transform: translateY(-1px);
}

.chip.active {
  background: #111111;
  color: #ffffff;
}

/* =========================================================
   PRODUCTS
========================================================= */

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

  width: 100%;
}

.product-card {
  min-width: 0;

  overflow: hidden;

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

  background: #ffffff;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .07);
}

.product-image {
  width: 100%;
  aspect-ratio: 1;

  overflow: hidden;

  background: #f3f3f0;
}

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

  object-fit: cover;
}

.product-info {
  padding: 17px;
}

.product-cat {
  color: #888888;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.product-name {
  margin: 8px 0;

  font-weight: 800;

  overflow-wrap: anywhere;
}

.price {
  font-size: 18px;
  font-weight: 900;
}

.old {
  margin-left: 7px;

  color: #999999;

  font-size: 13px;
  text-decoration: line-through;
}

.tag {
  display: inline-block;

  margin-bottom: 6px;
  padding: 5px 8px;

  border-radius: 999px;

  background: #111111;
  color: #ffffff;

  font-size: 9px;
  font-weight: 800;
}

.empty {
  padding: 70px;

  color: #777777;

  text-align: center;
}

/* =========================================================
   HOW TO ORDER
========================================================= */

.how-section {
  background: #f6f6f3;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 1px;

  margin-top: 45px;

  background: #dddddd;
}

.step {
  min-height: 200px;

  padding: 35px;

  background: #f6f6f3;
}

.step p,
.ref-section p {
  color: #666666;
  line-height: 1.65;
}

/* =========================================================
   REFERRAL
========================================================= */

.ref-section {
  margin: 80px 5vw;
  padding: 55px;

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

  gap: 30px;

  border-radius: 28px;

  background: #e9e9e4;
}

.ref-section > div {
  min-width: 0;
}

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

.detail {
  padding: 70px 8vw;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

  gap: 70px;
}

.detail-image {
  aspect-ratio: 1;

  overflow: hidden;

  border-radius: 25px;

  background: #f3f3f0;
}

.detail-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.detail h1 {
  margin-top: 0;

  font-size: 56px;
  line-height: 1;
  letter-spacing: -.06em;

  overflow-wrap: anywhere;
}

.detail-price {
  margin: 20px 0;

  font-size: 28px;
  font-weight: 900;
}

.detail-desc {
  color: #666666;

  line-height: 1.8;
}

.dm-box {
  margin-top: 30px;
  padding: 22px;

  border-radius: 20px;

  background: var(--soft);
}

.dm-box input {
  width: 100%;

  margin: 8px 0 12px;
  padding: 13px;

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

  outline: none;
  background: #ffffff;
}

.dm-box input:focus {
  border-color: #111111;
}

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

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 35px 5vw;

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

  color: #777777;

  font-size: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.grabzone-policy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 6px;

  color: inherit;

  font-size: inherit;
  font-weight: inherit;

  transition:
    color .25s ease,
    opacity .25s ease,
    transform .25s ease;
}

.grabzone-policy-link:hover {
  opacity: .7;
  transform: translateY(-1px);
}

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

@media (max-width: 900px) {

  .header nav {
    display: none;
  }

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

    padding: 60px 6vw;
  }

  .hero-card {
    height: 330px;
  }

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

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

  .steps {
    grid-template-columns: 1fr;
  }

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

  .detail-grid {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 600px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* NOTICE */

  .notice-wrap {
    height: 34px;
  }

  .notice-label {
    flex-basis: 62px;
    width: 62px;

    height: 34px;

    padding: 0 10px;

    font-size: 8px;
    letter-spacing: .10em;
  }

  .notice-loop {
    animation-duration: 30s;
  }

  .notice-item {
    margin-right: 60px;

    font-size: 10px;
  }

  .notice-item b {
    margin-right: 8px;
  }

  /* HEADER */

  .header {
    height: 62px;

    width: 100%;

    padding: 0 12px;
    gap: 6px;
  }

  .header .brand {
    min-width: 0;
    flex: 1;

    gap: 6px;

    overflow: hidden;

    font-size: 13px;
  }

  .header .brand span:last-child {
    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    min-width: 30px;

    border-radius: 8px;
  }

  .header-actions {
    gap: 3px;

    flex-shrink: 0;
  }

  .header-actions .icon-btn {
    padding: 5px;

    font-size: 18px;
  }

  .header-actions .btn {
    padding: 9px 11px;

    font-size: 10px;

    white-space: nowrap;
  }

  /* HERO */

  .hero {
    width: 100%;

    min-height: auto;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 28px;

    padding: 44px 16px 34px;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;

    margin-bottom: 20px;

    font-size: 46px;
    line-height: .94;
    letter-spacing: -.065em;
  }

  .hero p {
    max-width: 100%;

    margin: 0;

    font-size: 14px;
    line-height: 1.6;
  }

  .hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin: 23px 0;
  }

  .hero-buttons .btn-lg {
    padding: 11px 17px;

    font-size: 12px;
  }

  .text-link {
    font-size: 12px;
  }

  .trust {
    display: flex;

    gap: 7px 12px;

    font-size: 8px;
    line-height: 1.3;
  }

  /* HERO CARD */

  .hero-card {
    width: 100%;
    height: auto;
    min-height: 205px;

    padding: 15px;

    border-radius: 22px;

    background-size: cover;
    background-position: center;
  }

  .hero-card-top,
  .hero-card-bottom {
    font-size: 7px;
    line-height: 1.2;
  }

  .hero-product-shape {
    font-size: 82px;
  }

  /* OFFER */

  .offer-strip {
    width: auto;

    margin: 12px 12px 0;
    padding: 13px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    gap: 10px;

    align-items: center;

    border-radius: 16px;
  }

  .offer-strip > div:first-child {
    display: flex;
    align-items: flex-start;

    gap: 7px;

    min-width: 0;

    font-size: 10px;
    line-height: 1.35;
  }

  .offer-code {
    max-width: 80px;

    font-size: 10px;
    line-height: 1.15;

    white-space: normal;

    text-align: right;
  }

  /* SHOP */

  .shop-section,
  .how-section {
    width: 100%;

    padding: 52px 12px;
  }

  .section-head {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 18px;

    margin-bottom: 24px;
  }

  .section-head h2,
  .how-section h2,
  .ref-section h2 {
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.055em;
  }

  .shop-tools {
    width: 100%;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    gap: 8px;

    align-items: center;
  }

  .shop-tools input {
    width: 100%;
    min-width: 0;

    padding: 10px 13px;

    font-size: 12px;
  }

  .chips {
    min-width: 0;
    max-width: 100%;

    display: flex;
    flex-wrap: nowrap;

    overflow-x: auto;

    padding-bottom: 2px;

    scrollbar-width: none;
  }

  .chips::-webkit-scrollbar {
    display: none;
  }

  .chip {
    flex-shrink: 0;

    padding: 8px 11px;

    font-size: 10px;
  }

  /* PRODUCTS */

  .product-grid {
    width: 100%;

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

    gap: 10px;
  }

  .product-card {
    min-width: 0;

    border-radius: 14px;
  }

  .product-image {
    width: 100%;
    aspect-ratio: 1;
  }

  .product-info {
    padding: 10px;
  }

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

  .product-name {
    margin: 5px 0;

    font-size: 12px;
    line-height: 1.25;

    overflow-wrap: anywhere;
  }

  .price {
    font-size: 14px;
  }

  .old {
    font-size: 11px;
  }

  .empty {
    padding: 45px 8px;

    font-size: 11px;
  }

  /* HOW TO ORDER */

  .steps {
    display: block;

    margin-top: 28px;

    background: transparent;
  }

  .step {
    min-height: 0;

    padding: 23px 18px;

    border-bottom: 1px solid #dddddd;

    background: #f6f6f3;
  }

  .step:first-child {
    border-top: 1px solid #dddddd;
  }

  .step h3 {
    font-size: 14px;
  }

  .step p {
    margin-bottom: 0;

    font-size: 11px;
    line-height: 1.55;
  }

  /* REFERRAL */

  .ref-section {
    width: auto;

    margin: 40px 12px;
    padding: 25px 19px;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 20px;

    border-radius: 22px;
  }

  .ref-section > div {
    width: 100%;
    min-width: 0;
  }

  .ref-section p {
    font-size: 11px;
    line-height: 1.55;
  }

  .ref-section .btn-lg {
    width: 100%;

    padding: 12px;

    font-size: 11px;
  }

  /* FOOTER */

  footer {
    width: 100%;

    padding: 24px 12px;

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

    gap: 12px;

    text-align: center;

    font-size: 9px;
  }

  footer .brand {
    justify-content: center;
  }

  .footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px;

    font-size: 9px;
  }

  .grabzone-policy-link {
    margin-left: 0;

    font-size: 12px;
  }

  /* PRODUCT DETAIL */

  .detail {
    width: 100%;

    padding: 34px 12px;
  }

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

    gap: 28px;
  }

  .detail h1 {
    font-size: 38px;
    line-height: 1;
  }

  .detail-price {
    font-size: 24px;
  }

  .detail-desc {
    font-size: 13px;
    line-height: 1.65;
  }

  .dm-box {
    padding: 17px;

    border-radius: 16px;
  }
}

/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

  .header {
    padding: 0 9px;
  }

  .header-actions .btn {
    padding: 8px 9px;

    font-size: 9px;
  }

  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }

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

  .hero-card {
    min-height: 185px;
  }

  .section-head h2,
  .how-section h2,
  .ref-section h2 {
    font-size: 31px;
  }

  .product-grid {
    gap: 8px;
  }

  .product-info {
    padding: 8px;
  }

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

  .notice-item {
    margin-right: 50px;
  }
}
