/* =========================================================
   LUMORA E-COMMERCE
   DARK / HIGH CONTRAST / MOBILE FRIENDLY
========================================================= */

/* =========================================================
   ROOT
========================================================= */

:root {
  /* Background */
  --bg: #090b0f;
  --bg-soft: #0e1217;

  /* Panels */
  --panel: #151a21;
  --panel-hover: #1b2129;
  --panel-deep: #10151b;

  /* Borders */
  --border: #2a313b;
  --border-light: #3b4551;

  /* Gold Accent */
  --accent: #e2b15c;
  --accent-light: #ffd98a;
  --accent-dark: #a77a35;

  /* Text */
  --text: #f5f7fa;
  --text-soft: #c3c9d2;
  --text-muted: #8d96a3;

  /* Status */
  --success: #4ade80;
  --danger: #f87171;

  /* Layout */
  --radius: 16px;
  --container: 1380px;

  /* Motion */
  --transition: 0.25s ease;
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;

  overflow-x: hidden;

  background: var(--bg);
  color: var(--text);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;
}

img {
  display: block;

  max-width: 100%;
}

a {
  color: var(--text-soft);

  text-decoration: none;

  transition: color var(--transition);
}

a:hover {
  color: var(--accent-light);
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* =========================================================
   CONTAINER
========================================================= */

.container {
  width: min(calc(100% - 32px), var(--container));

  margin-inline: auto;
}

/* =========================================================
   TOPBAR
========================================================= */

.topbar {
  min-height: 38px;

  background: #07090c;

  border-bottom: 1px solid var(--border);

  color: var(--text-soft);

  font-size: 13px;
}

.topbar-inner {
  min-height: 38px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.topbar-links {
  display: flex;

  gap: 22px;
}

.topbar a {
  color: var(--text-muted);
}

.topbar a:hover {
  color: var(--accent-light);
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;

  top: 0;

  z-index: 1000;

  background: rgba(9, 11, 15, 0.95);

  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-main {
  min-height: 78px;

  display: grid;

  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: 40px;
}

/* =========================================================
   LOGO
========================================================= */

.logo {
  display: inline-flex;
  align-items: center;

  color: var(--text);

  font-size: 25px;
  font-weight: 900;

  letter-spacing: 0.12em;
  line-height: 1;
}

.logo span {
  color: var(--accent);
}

/* =========================================================
   NAVIGATION
========================================================= */

.main-nav ul {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 30px;
}

.main-nav a {
  position: relative;

  color: var(--text-soft);

  font-size: 14px;
  font-weight: 600;
}

.main-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: var(--accent);

  transition: width var(--transition);
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  width: 100%;
}

/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
  display: flex;
  align-items: center;

  gap: 9px;
}

.icon-button {
  position: relative;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 1px solid var(--border);
  border-radius: 50%;

  background: var(--panel);

  color: var(--text);

  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.icon-button:hover {
  background: var(--panel-hover);

  border-color: var(--border-light);

  color: var(--accent-light);

  transform: translateY(-1px);
}

.cart-count {
  position: absolute;

  top: -4px;
  right: -3px;

  min-width: 19px;
  height: 19px;

  display: grid;
  place-items: center;

  border: 2px solid var(--bg);

  border-radius: 50%;

  background: var(--accent);

  color: #111;

  font-size: 9px;
  font-weight: 900;

  line-height: 1;
}

.mobile-menu {
  display: none;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  min-height: 590px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(9, 11, 15, 0.99) 0%,
      rgba(9, 11, 15, 0.92) 30%,
      rgba(9, 11, 15, 0.62) 58%,
      rgba(9, 11, 15, 0.22) 100%
    ),
    url("https://res.cloudinary.com/papahoki888/image/upload/ar_1:1,b_gen_fill,c_pad/e_enhance/c_crop,g_north_west,h_500,w_1207/gacorjp77.jpg")
      center / cover no-repeat;
}

.hero::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg, transparent 65%, var(--bg) 100%);

  pointer-events: none;
}

.hero-content {
  position: relative;

  z-index: 2;

  max-width: 650px;

  padding-block: 90px;
}

.eyebrow {
  display: inline-flex;

  margin-bottom: 20px;

  padding: 7px 12px;

  border: 1px solid rgba(226, 177, 92, 0.42);

  border-radius: 50px;

  background: rgba(226, 177, 92, 0.09);

  color: var(--accent-light);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 22px;

  color: var(--text);

  font-size: clamp(44px, 6vw, 78px);

  line-height: 1.02;

  letter-spacing: -0.045em;
}

.hero h1 span {
  color: var(--accent-light);
}

.hero p {
  max-width: 570px;

  margin-bottom: 32px;

  color: var(--text-soft);

  font-size: 17px;
}

.hero-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}

/* =========================================================
   BUTTONS
========================================================= */

.button {
  min-height: 48px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 0 22px;

  border: 1px solid var(--border-light);

  border-radius: 10px;

  background: var(--panel);

  color: var(--text);

  font-size: 14px;
  font-weight: 700;

  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.button:hover {
  background: var(--panel-hover);

  border-color: var(--accent-dark);

  color: var(--accent-light);

  transform: translateY(-1px);
}

.button-primary {
  border-color: var(--accent);

  background: var(--accent);

  color: #111;
}

.button-primary:hover {
  border-color: var(--accent-light);

  background: var(--accent-light);

  color: #111;
}

.button-secondary {
  background: rgba(21, 26, 33, 0.75);
}

/* =========================================================
   FEATURE STRIP
========================================================= */

.feature-strip {
  background: var(--bg-soft);

  border-block: 1px solid var(--border);
}

.feature-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);
}

.feature {
  min-height: 100px;

  display: flex;

  align-items: center;

  gap: 14px;

  padding: 20px;

  border-right: 1px solid var(--border);
}

.feature:last-child {
  border-right: 0;
}

.feature-icon {
  color: var(--accent);

  font-size: 25px;
}

.feature strong {
  display: block;

  color: var(--text);

  font-size: 14px;
}

.feature span {
  display: block;

  margin-top: 2px;

  color: var(--text-muted);

  font-size: 12px;
}

/* =========================================================
   SHOP SECTION
========================================================= */

.shop-section {
  padding: 90px 0;
}

.section-heading {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 20px;

  margin-bottom: 35px;
}

.section-heading h2 {
  color: var(--text);

  font-size: clamp(28px, 4vw, 42px);

  line-height: 1.1;

  letter-spacing: -0.035em;
}

.section-heading p {
  margin-top: 8px;

  color: var(--text-muted);

  font-size: 14px;
}

/* =========================================================
   SHOP LAYOUT
========================================================= */

.shop-layout {
  display: grid;

  grid-template-columns:
    240px
    minmax(0, 1fr);

  gap: 35px;
}

.shop-content {
  min-width: 0;
}

/* =========================================================
   SIDEBAR
========================================================= */

.sidebar {
  position: sticky;

  top: 105px;

  align-self: start;

  overflow: hidden;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  background: linear-gradient(180deg, #161b22, #13181f);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.sidebar-section {
  padding: 22px;

  border-bottom: 1px solid var(--border);
}

.sidebar-section:last-child {
  border-bottom: 0;
}

.sidebar h3 {
  margin-bottom: 16px;

  color: var(--text);

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

/* =========================================================
   CATEGORY LIST
========================================================= */

.category-list li + li {
  margin-top: 11px;
}

.category-list a {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 5px 0;

  color: var(--text-soft);

  font-size: 14px;
}

.category-list a:hover {
  color: var(--accent-light);
}

.category-count {
  color: var(--text-muted);

  font-size: 12px;
}

/* =========================================================
   FILTER
========================================================= */

.filter-option {
  display: flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 12px;

  color: var(--text-soft);

  font-size: 13px;

  cursor: pointer;
}

.filter-option:last-child {
  margin-bottom: 0;
}

.filter-option:hover {
  color: var(--text);
}

.filter-option input {
  width: 15px;
  height: 15px;

  accent-color: var(--accent);
}

/* =========================================================
   TOOLBAR
========================================================= */

.shop-toolbar {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  margin-bottom: 22px;
}

.result-count {
  color: var(--text-muted);

  font-size: 13px;
}

.sort-select {
  min-height: 42px;

  padding: 0 35px 0 13px;

  border: 1px solid var(--border-light);

  border-radius: 9px;

  outline: none;

  background: var(--panel-deep);

  color: var(--text);

  cursor: pointer;
}

.sort-select:hover,
.sort-select:focus {
  border-color: var(--accent-dark);
}

/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 20px;
}

/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
  min-width: 0;

  overflow: hidden;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  background: var(--panel);

  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.12);

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);

  border-color: var(--border-light);

  background: var(--panel-hover);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image {
  position: relative;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  background: #0b0e12;
}

.product-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.45s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* =========================================================
   PRODUCT BADGE
========================================================= */

.product-badge {
  position: absolute;

  top: 12px;
  left: 12px;

  z-index: 2;

  padding: 5px 9px;

  border-radius: 5px;

  background: var(--accent);

  color: #111;

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 0.03em;

  text-transform: uppercase;
}

/* =========================================================
   WISHLIST
========================================================= */

.wishlist {
  position: absolute;

  top: 10px;
  right: 10px;

  z-index: 2;

  width: 36px;
  height: 36px;

  display: grid;

  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.18);

  border-radius: 50%;

  background: rgba(8, 10, 13, 0.72);

  color: var(--text);

  backdrop-filter: blur(8px);

  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.wishlist:hover {
  border-color: var(--accent);

  background: var(--accent);

  color: #111;
}

/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.product-info {
  padding: 18px;
}

.product-category {
  color: var(--accent);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}

.product-title {
  margin: 5px 0 8px;

  color: var(--text);

  font-size: 16px;
  font-weight: 700;

  line-height: 1.3;
}

.product-rating {
  margin-bottom: 12px;

  color: var(--accent-light);

  font-size: 12px;
}

.product-rating span {
  color: var(--text-muted);
}

.product-price {
  display: flex;

  align-items: center;

  gap: 8px;
}

.price-current {
  color: var(--text);

  font-size: 17px;
  font-weight: 900;
}

.price-old {
  color: var(--text-muted);

  font-size: 12px;

  text-decoration: line-through;
}

/* =========================================================
   PROMOTION
========================================================= */

.promo-section {
  padding-bottom: 90px;
}

.promo {
  position: relative;

  min-height: 280px;

  display: flex;

  align-items: center;

  padding: 50px;

  overflow: hidden;

  border: 1px solid #493a25;

  border-radius: 22px;

  background:
    linear-gradient(
      90deg,
      rgba(15, 18, 23, 0.98) 0%,
      rgba(15, 18, 23, 0.86) 50%,
      rgba(15, 18, 23, 0.45) 100%
    ),
    url("https://res.cloudinary.com/papahoki888/image/upload/t_promo/GACORJP77-hero.webp")
      center / cover no-repeat;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.promo-content {
  position: relative;

  z-index: 2;

  max-width: 550px;
}

.promo h2 {
  margin-bottom: 10px;

  color: var(--text);

  font-size: clamp(27px, 4vw, 42px);

  line-height: 1.1;
}

.promo p {
  margin-bottom: 22px;

  color: var(--text-soft);
}

/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter {
  padding: 70px 0;

  background: var(--bg-soft);

  border-block: 1px solid var(--border);
}

.newsletter-inner {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: 40px;
}

.newsletter h2 {
  margin-bottom: 7px;

  color: var(--text);

  font-size: 30px;
}

.newsletter p {
  color: var(--text-muted);
}

.newsletter-form {
  display: flex;

  width: min(100%, 480px);
}

.newsletter-form input {
  min-width: 0;

  flex: 1;

  height: 48px;

  padding: 0 15px;

  border: 1px solid var(--border-light);

  border-right: 0;

  border-radius: 9px 0 0 9px;

  outline: none;

  background: var(--panel-deep);

  color: var(--text);
}

.newsletter-form input::placeholder {
  color: #78818c;
}

.newsletter-form input:focus {
  border-color: var(--accent-dark);
}

.newsletter-form button {
  height: 48px;

  padding: 0 20px;

  border: 1px solid var(--accent);

  border-radius: 0 9px 9px 0;

  background: var(--accent);

  color: #111;

  font-weight: 900;

  transition: background var(--transition);
}

.newsletter-form button:hover {
  background: var(--accent-light);
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 65px 0 25px;

  background: #07090c;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.5fr
    repeat(3, 1fr);

  gap: 45px;

  padding-bottom: 50px;
}

.footer-brand p {
  max-width: 330px;

  margin-top: 15px;

  color: var(--text-muted);

  font-size: 14px;
}

.footer-column h3 {
  margin-bottom: 18px;

  color: var(--text);

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.footer-column li + li {
  margin-top: 10px;
}

.footer-column a {
  color: var(--text-muted);

  font-size: 13px;
}

.footer-column a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding-top: 22px;

  border-top: 1px solid var(--border);

  color: var(--text-muted);

  font-size: 12px;
}

/* =========================================================
   STICKY CTA / LIVE CHAT
========================================================= */

.sticky-cta {
  position: fixed;

  right: 24px;
  bottom: 24px;

  z-index: 2000;

  min-width: 190px;
  min-height: 62px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 10px 17px 10px 10px;

  border: 1px solid rgba(226, 177, 92, 0.48);

  border-radius: 50px;

  background: linear-gradient(135deg, #19150f, #11151a);

  color: var(--text);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.025);

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.sticky-cta:hover {
  transform: translateY(-3px);

  border-color: var(--accent);

  color: var(--text);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.55),
    0 0 25px rgba(226, 177, 92, 0.12);
}

/* CTA ICON */

.sticky-cta-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: var(--accent);

  color: #111;
}

.sticky-cta-icon svg {
  width: 23px;
  height: 23px;
}

/* CTA TEXT */

.sticky-cta-text {
  display: flex;

  flex-direction: column;

  line-height: 1.25;
}

.sticky-cta-text strong {
  color: var(--text);

  font-size: 14px;
  font-weight: 900;
}

.sticky-cta-text small {
  margin-top: 2px;

  color: var(--text-muted);

  font-size: 11px;
}

/* ONLINE DOT */

.sticky-cta-dot {
  position: absolute;

  top: 7px;
  left: 43px;

  width: 10px;
  height: 10px;

  border: 2px solid #151a21;

  border-radius: 50%;

  background: var(--success);

  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.08);

  animation: stickyPulse 2s infinite;
}

@keyframes stickyPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.35);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
  .header-main {
    grid-template-columns:
      auto
      auto;

    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu {
    display: grid;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 850px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature:nth-child(2) {
    border-right: 0;
  }

  .feature:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    width: 100%;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  /* TOPBAR */

  .topbar-inner {
    min-height: 34px;

    justify-content: center;

    font-size: 11px;
  }

  .topbar-links {
    display: none;
  }

  /* HEADER */

  .header-main {
    min-height: 68px;

    gap: 8px;
  }

  .logo {
    font-size: 20px;
  }

  .header-actions {
    gap: 5px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  /* HERO */

  .hero {
    min-height: 600px;

    background:
      linear-gradient(180deg, rgba(9, 11, 15, 0.7), rgba(9, 11, 15, 0.98)),
      url("https://res.cloudinary.com/papahoki888/image/upload/q_auto:best/gacorjp77.jpg")
        62% center / cover no-repeat;
  }

  .hero-content {
    padding-block: 70px;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .hero p {
    font-size: 15px;
  }

  .hero-buttons {
    display: grid;

    grid-template-columns: 1fr;
  }

  .hero-buttons .button {
    width: 100%;
  }

  /* FEATURES */

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: 82px;

    border-right: 0;

    border-bottom: 1px solid var(--border);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  /* SHOP */

  .shop-section {
    padding: 60px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading .button {
    width: auto;

    margin-top: 20px;
  }

  /* SIDEBAR */

  .sidebar {
    grid-template-columns: 1fr;
  }

  /* TOOLBAR */

  .shop-toolbar {
    flex-direction: column;

    align-items: stretch;
  }

  .sort-select {
    width: 100%;
  }

  /* PRODUCTS */

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;
  }

  .product-info {
    padding: 13px;
  }

  .product-title {
    font-size: 14px;
  }

  .product-price {
    display: block;
  }

  .price-current {
    font-size: 15px;
  }

  .price-old {
    display: block;

    margin-top: 2px;
  }

  .product-badge {
    top: 8px;
    left: 8px;

    padding: 4px 7px;

    font-size: 8px;
  }

  .wishlist {
    top: 7px;
    right: 7px;

    width: 32px;
    height: 32px;
  }

  /* PROMO */

  .promo-section {
    padding-bottom: 60px;
  }

  .promo {
    min-height: 350px;

    padding: 30px 22px;

    border-radius: 18px;

    background-position: 65% center;
  }

  /* NEWSLETTER */

  .newsletter {
    padding: 55px 0;
  }

  .newsletter-form {
    display: grid;

    gap: 8px;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;

    border: 1px solid var(--border);

    border-radius: 9px;
  }

  .newsletter-form button {
    border-color: var(--accent);
  }

  /* FOOTER */

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 35px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
  }

  .footer-bottom span + span {
    margin-top: 7px;
  }

  /* STICKY CTA */

  .sticky-cta {
    right: 14px;
    bottom: 14px;

    min-width: auto;

    min-height: 56px;

    padding: 7px 15px 7px 7px;

    gap: 9px;
  }

  .sticky-cta-icon {
    width: 40px;
    height: 40px;

    flex-basis: 40px;
  }

  .sticky-cta-text strong {
    font-size: 13px;
  }

  .sticky-cta-text small {
    font-size: 10px;
  }

  .sticky-cta-dot {
    top: 5px;
    left: 38px;

    width: 9px;
    height: 9px;
  }
}

/* =========================================================
   EXTRA SMALL PHONE
========================================================= */

@media (max-width: 380px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .header-actions .icon-button {
    width: 35px;
    height: 35px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  /* COMPACT STICKY CTA */

  .sticky-cta {
    right: 10px;
    bottom: 10px;

    width: 52px;
    height: 52px;

    min-width: 52px;
    min-height: 52px;

    padding: 5px;

    justify-content: center;
  }

  .sticky-cta-text {
    display: none;
  }

  .sticky-cta-icon {
    width: 42px;
    height: 42px;

    flex-basis: 42px;
  }

  .sticky-cta-dot {
    top: 3px;
    left: 35px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }
}
