/* ============================================================
   JJ LUXURY STYLE
   PUBLIC STOREFRONT
   ============================================================ */

:root {

  --black:
    #090808;

  --black-soft:
    #080e17;

  --navy:
    #171213;

  --navy-light:
    #251718;

  --blue:
    #c9141c;

  --blue-soft:
    #f1eded;

  --gold:
    #c9141c;

  --gold-light:
    #f4f1ef;

  --gold-dark:
    #78070c;

  --cream:
    #f8f3e7;

  --white:
    #ffffff;

  --muted:
    #aeb5c0;

  --border:
    rgba(
      214,
      173,
      69,
      0.26
    );

}


* {

  box-sizing:
    border-box;

}


html {

  scroll-behavior:
    smooth;

}


body {

  margin:
    0;

  background:
    var(--black);

  color:
    var(--white);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

}


a {

  color:
    inherit;

  text-decoration:
    none;

}


button,
input,
select {

  font:
    inherit;

}


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

.announcement-bar {

  min-height:
    34px;

  padding:
    8px 5%;

  display:
    flex;

  justify-content:
    center;

  gap:
    70px;

  align-items:
    center;

  background:
    linear-gradient(
      90deg,
      #78070c,
      #c9141c,
      #78070c
    );

  color:
    #080808;

  font-size:
    10px;

  font-weight:
    800;

  letter-spacing:
    2px;

}


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

.store-header {

  height:
    92px;

  padding:
    0 5%;

  display:
    grid;

  grid-template-columns:
    230px 1fr 230px;

  align-items:
    center;

  position:
    sticky;

  top:
    0;

  z-index:
    100;

  background:
    rgba(
      3,
      7,
      13,
      0.94
    );

  backdrop-filter:
    blur(18px);

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

}


.store-brand {

  display:
    inline-flex;

  align-items:
    center;

}


.store-brand img {

  width:
    175px;

  max-height:
    73px;

  object-fit:
    contain;

  object-position:
    left center;

}


.store-nav {

  display:
    flex;

  justify-content:
    center;

  gap:
    42px;

}


.store-nav a {

  position:
    relative;

  font-size:
    12px;

  text-transform:
    uppercase;

  letter-spacing:
    1.8px;

  color:
    #d9dce1;

  transition:
    0.25s ease;

}


.store-nav a:hover {

  color:
    var(--gold-light);

}


.store-nav a::after {

  content:
    "";

  position:
    absolute;

  left:
    0;

  bottom:
    -8px;

  width:
    0;

  height:
    1px;

  background:
    var(--gold);

  transition:
    0.25s ease;

}


.store-nav a:hover::after {

  width:
    100%;

}


.header-actions {

  display:
    flex;

  justify-content:
    flex-end;

  gap:
    10px;

}


.search-toggle,
.cart-button {

  min-height:
    39px;

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

  background:
    transparent;

  color:
    var(--white);

  padding:
    0 16px;

  border-radius:
    30px;

  cursor:
    pointer;

}


.cart-button {

  color:
    #090909;

  background:
    var(--gold);

  border-color:
    var(--gold);

  font-weight:
    700;

}


.cart-button span {

  margin-left:
    7px;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  min-width:
    20px;

  height:
    20px;

  padding:
    0 5px;

  border-radius:
    20px;

  background:
    #070707;

  color:
    white;

  font-size:
    10px;

}


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

.hero {

  position:
    relative;

  min-height:
    620px;

  height:
    72vh;

  max-height:
    720px;

  padding:
    70px 6%;

  display:
    flex;

  align-items:
    center;

  overflow:
    hidden;

  isolation:
    isolate;

  background-color:
    #090808;

  background-image:
    url("../assets/images/jj-hero-wide.png");

  /*
    IMPORTANT:
    Do not use cover here.

    This keeps the complete horizontal artwork visible
    and makes the bottle look farther away.
  */
  background-size:
    auto 100%;

  background-position:
    right center;

  background-repeat:
    no-repeat;

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

}

.hero-overlay {

  position:
    absolute;

  inset:
    0;

  z-index:
    0;

  pointer-events:
    none;

  background:
    linear-gradient(
      90deg,

      rgba(1, 4, 9, 0.99) 0%,

      rgba(1, 4, 9, 0.96) 20%,

      rgba(2, 7, 15, 0.88) 32%,

      rgba(2, 7, 15, 0.55) 45%,

      rgba(3, 12, 24, 0.15) 64%,

      rgba(1, 5, 10, 0.02) 100%
    );

}


.hero-content {

  position:
    relative;

  z-index:
    2;

  max-width:
    630px;

}


.hero-eyebrow {

  display:
    inline-block;

  margin-bottom:
    20px;

  color:
    var(--blue-soft);

  letter-spacing:
    5px;

  font-size:
    11px;

}


.hero h1 {

  margin:
    0;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(
      54px,
      7vw,
      100px
    );

  line-height:
    0.94;

  font-weight:
    500;

}


.hero h1 span {

  display:
    block;

  color:
    var(--gold-light);

}


.hero p {

  max-width:
    530px;

  margin:
    28px 0 0;

  color:
    #d2d7df;

  font-size:
    16px;

  line-height:
    1.8;

}


.hero-actions {

  margin-top:
    34px;

  display:
    flex;

  gap:
    14px;

  flex-wrap:
    wrap;

}


.primary-store-btn,
.secondary-store-btn,
.whatsapp-store-btn {

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  min-height:
    48px;

  padding:
    0 25px;

  border-radius:
    4px;

  text-transform:
    uppercase;

  letter-spacing:
    1.5px;

  font-size:
    11px;

  font-weight:
    800;

  transition:
    0.25s ease;

}


.primary-store-btn {

  color:
    #090909;

  background:
    linear-gradient(
      135deg,
      var(--gold-light),
      var(--gold)
    );

}


.primary-store-btn:hover {

  transform:
    translateY(-2px);

  box-shadow:
    0 10px 35px
    rgba(
      214,
      173,
      69,
      0.3
    );

}


.secondary-store-btn {

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

  color:
    var(--white);

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

}


.hero-scroll {

  position:
    absolute;

  z-index:
    2;

  bottom:
    25px;

  right:
    5%;

  color:
    #adb6c2;

  text-transform:
    uppercase;

  letter-spacing:
    2px;

  font-size:
    9px;

}


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

.benefits {

  display:
    grid;

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

  padding:
    0 6%;

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

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

  background:
    linear-gradient(
      180deg,
      #070c13,
      #090808
    );

}


.benefits article {

  min-height:
    130px;

  padding:
    28px 35px;

  display:
    flex;

  align-items:
    center;

  gap:
    18px;

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

}


.benefits article:last-child {

  border-right:
    0;

}


.benefit-icon {

  font-family:
    Georgia,
    serif;

  color:
    var(--gold-light);

  font-size:
    33px;

}


.benefits strong {

  font-family:
    Georgia,
    serif;

  font-size:
    17px;

  color:
    var(--white);

}


.benefits p {

  margin:
    5px 0 0;

  color:
    var(--muted);

  font-size:
    12px;

}


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

.shop-section {

  padding:
    100px 6% 120px;

  background:
    radial-gradient(
      circle at top,
      #171213,
      #090808 45%
    );

}


.section-heading {

  max-width:
    680px;

  margin:
    0 auto 48px;

  text-align:
    center;

}


.section-heading > span,
.about-content > span,
.contact-section > span {

  color:
    var(--gold);

  font-size:
    10px;

  letter-spacing:
    4px;

  font-weight:
    800;

}


.section-heading h2,
.about-content h2,
.contact-section h2 {

  margin:
    13px 0;

  font-family:
    Georgia,
    serif;

  font-weight:
    500;

  font-size:
    clamp(
      36px,
      4vw,
      56px
    );

}


.section-heading p {

  color:
    var(--muted);

  line-height:
    1.7;

}


.shop-toolbar {

  max-width:
    1250px;

  margin:
    0 auto 35px;

  display:
    grid;

  grid-template-columns:
    1fr 230px;

  gap:
    15px;

}


.shop-toolbar input,
.shop-toolbar select {

  width:
    100%;

  min-height:
    48px;

  padding:
    0 17px;

  color:
    white;

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

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

  border-radius:
    4px;

  outline:
    none;

}


.shop-toolbar select option {

  color:
    #111;

}


.shop-toolbar input:focus,
.shop-toolbar select:focus {

  border-color:
    var(--gold);

}


.product-grid {

  max-width:
    1250px;

  margin:
    auto;

  display:
    grid;

  grid-template-columns:
    repeat(
      auto-fill,
      minmax(
        250px,
        1fr
      )
    );

  gap:
    22px;

}


.product-card {

  position:
    relative;

  overflow:
    hidden;

  background:
    linear-gradient(
      180deg,
      #0b121c,
      #070b11
    );

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

  border-radius:
    8px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;

}


.product-card:hover {

  transform:
    translateY(-7px);

  border-color:
    var(--gold-dark);

}


.product-image {

  height:
    315px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  position:
    relative;

  background:
    radial-gradient(
      circle at center,
      #12355a,
      #050a11 65%
    );

}


.product-image img {

  width:
    85%;

  height:
    85%;

  object-fit:
    contain;

}


.product-placeholder {

  width:
    115px;

  height:
    160px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

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

  color:
    var(--gold-light);

  font-family:
    Georgia,
    serif;

  font-size:
    36px;

  background:
    linear-gradient(
      145deg,
      #06090d,
      #111c29
    );

}


.sale-badge {

  position:
    absolute;

  top:
    16px;

  left:
    16px;

  z-index:
    2;

  padding:
    7px 10px;

  border-radius:
    3px;

  color:
    #080808;

  background:
    var(--gold);

  font-size:
    9px;

  font-weight:
    900;

  letter-spacing:
    1px;

}


.product-info {

  padding:
    22px;

}


.product-brand {

  color:
    var(--blue-soft);

  text-transform:
    uppercase;

  letter-spacing:
    1.5px;

  font-size:
    9px;

}


.product-info h3 {

  min-height:
    48px;

  margin:
    9px 0 5px;

  font-family:
    Georgia,
    serif;

  font-weight:
    500;

  font-size:
    20px;

}


.product-meta {

  color:
    var(--muted);

  font-size:
    11px;

}


.product-price-row {

  margin-top:
    17px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    12px;

}


.product-price {

  font-family:
    Georgia,
    serif;

  color:
    var(--gold-light);

  font-size:
    23px;

}


.original-price {

  margin-right:
    8px;

  color:
    #818895;

  text-decoration:
    line-through;

  font-size:
    12px;

}


.add-cart-button {

  min-height:
    37px;

  padding:
    0 13px;

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

  border-radius:
    4px;

  color:
    var(--gold-light);

  background:
    transparent;

  cursor:
    pointer;

}


.add-cart-button:hover {

  color:
    #080808;

  background:
    var(--gold);

}


.stock-note {

  margin-top:
    13px;

  color:
    #72cf91;

  font-size:
    10px;

}


.store-loading {

  grid-column:
    1 / -1;

  padding:
    60px 0;

  text-align:
    center;

  color:
    var(--muted);

}


/* ============================================================
   ABOUT
   ============================================================ */

.about-section {

  min-height:
    680px;

  display:
    grid;

  grid-template-columns:
    1fr 1fr;

  background:
    #05090f;

}


.about-image {

  overflow:
    hidden;

}


.about-image img {

  width:
    100%;

  height:
    100%;

  min-height:
    680px;

  object-fit:
    cover;

}


.about-content {

  padding:
    100px 10%;

  display:
    flex;

  flex-direction:
    column;

  justify-content:
    center;

  align-items:
    flex-start;

  background:
    linear-gradient(
      135deg,
      #07101b,
      #03070c
    );

}


.about-content p {

  color:
    var(--muted);

  line-height:
    1.9;

  max-width:
    570px;

}


.about-content .primary-store-btn {

  margin-top:
    20px;

}


/* ============================================================
   CONTACT
   ============================================================ */

.contact-section {

  padding:
    110px 6%;

  text-align:
    center;

  background:
    radial-gradient(
      circle at center,
      #0d3155,
      #03070c 65%
    );

}


.contact-section p {

  max-width:
    570px;

  margin:
    20px auto 30px;

  color:
    var(--muted);

  line-height:
    1.7;

}


.whatsapp-store-btn {

  color:
    white;

  background:
    #158f50;

}


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

.store-footer {

  padding:
    60px 6% 25px;

  display:
    grid;

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

  gap:
    50px;

  background:
    #020407;

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

}


.footer-brand img {

  width:
    220px;

  max-height:
    110px;

  object-fit:
    contain;

  object-position:
    left center;

}


.footer-brand p,
.footer-contact span {

  color:
    var(--muted);

}


.footer-links,
.footer-contact {

  display:
    flex;

  flex-direction:
    column;

  gap:
    13px;

  font-size:
    12px;

}


.footer-links a:hover {

  color:
    var(--gold-light);

}


.footer-bottom {

  grid-column:
    1 / -1;

  margin-top:
    20px;

  padding-top:
    22px;

  display:
    flex;

  justify-content:
    space-between;

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

  color:
    #7f8792;

  font-size:
    10px;

}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (
  max-width: 900px
) {

  .announcement-bar {

    gap:
      20px;

    justify-content:
      space-between;

  }


  .store-header {

    grid-template-columns:
      1fr auto;

    height:
      75px;

  }


  .store-brand img {

    width:
      140px;

  }


  .store-nav {

    display:
      none;

  }


  .search-toggle {

    display:
      none;

  }


  .hero {

    min-height:
      720px;

    padding:
      75px 7%;

    background-position:
      63% center;

  }


  .hero-overlay {

    background:
      linear-gradient(
        90deg,
        rgba(1, 4, 9, 0.96),
        rgba(1, 5, 11, 0.72)
      );

  }


  .benefits {

    grid-template-columns:
      1fr;

  }


  .benefits article {

    border-right:
      0;

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

  }


  .shop-toolbar {

    grid-template-columns:
      1fr;

  }


  .about-section {

    grid-template-columns:
      1fr;

  }


  .about-image img {

    min-height:
      480px;

  }


  .about-content {

    padding:
      70px 7%;

  }


  .store-footer {

    grid-template-columns:
      1fr;

  }


  .footer-bottom {

    flex-direction:
      column;

    gap:
      8px;

  }

}


@media (
  max-width: 560px
) {

  .announcement-bar span:nth-child(2),
  .announcement-bar span:nth-child(3) {

    display:
      none;

  }


  .announcement-bar {

    justify-content:
      center;

  }


  .header-actions {

    gap:
      4px;

  }


  .cart-button {

    padding:
      0 12px;

  }


  .hero h1 {

    font-size:
      52px;

  }


  .hero p {

    font-size:
      14px;

  }


  .hero-actions {

    flex-direction:
      column;

    align-items:
      flex-start;

  }


  .primary-store-btn,
  .secondary-store-btn {

    width:
      100%;

  }


  .shop-section {

    padding-left:
      4%;

    padding-right:
      4%;

  }


  .product-grid {

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

    gap:
      10px;

  }


  .product-image {

    height:
      220px;

  }


  .product-info {

    padding:
      14px;

  }


  .product-info h3 {

    font-size:
      16px;

  }


  .product-price-row {

    align-items:
      flex-start;

    flex-direction:
      column;

  }

}

/* ============================================================
   SHOPPING CART
   ============================================================ */

.cart-overlay {

  position:
    fixed;

  inset:
    0;

  z-index:
    500;

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

  backdrop-filter:
    blur(4px);

  opacity:
    0;

  visibility:
    hidden;

  transition:
    0.3s ease;

}


.cart-overlay.show {

  opacity:
    1;

  visibility:
    visible;

}


.cart-drawer {

  position:
    fixed;

  top:
    0;

  right:
    0;

  z-index:
    501;

  width:
    min(480px, 100%);

  height:
    100vh;

  display:
    flex;

  flex-direction:
    column;

  background:
    linear-gradient(
      180deg,
      #07101b,
      #03070c
    );

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

  box-shadow:
    -20px 0 60px
    rgba(0, 0, 0, 0.5);

  transform:
    translateX(100%);

  transition:
    transform 0.35s ease;

}


.cart-drawer.show {

  transform:
    translateX(0);

}


body.cart-open {

  overflow:
    hidden;

}


.cart-header {

  min-height:
    105px;

  padding:
    25px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

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

}


.cart-header span {

  color:
    var(--gold);

  font-size:
    9px;

  letter-spacing:
    3px;

  font-weight:
    800;

}


.cart-header h2 {

  margin:
    6px 0 0;

  font-family:
    Georgia,
    serif;

  font-size:
    28px;

  font-weight:
    500;

}


.cart-close {

  width:
    40px;

  height:
    40px;

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

  border-radius:
    50%;

  background:
    transparent;

  color:
    white;

  font-size:
    26px;

  cursor:
    pointer;

}


.cart-items {

  padding:
    20px;

  overflow-y:
    auto;

  flex:
    1;

}


.cart-empty {

  padding:
    70px 20px;

  text-align:
    center;

  color:
    var(--muted);

}


.cart-empty strong {

  display:
    block;

  margin-bottom:
    8px;

  color:
    white;

  font-family:
    Georgia,
    serif;

  font-size:
    22px;

}


.cart-item {

  padding:
    16px 0;

  display:
    grid;

  grid-template-columns:
    70px 1fr auto;

  gap:
    14px;

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

}


.cart-item-image {

  width:
    70px;

  height:
    85px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  background:
    #091522;

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

  color:
    var(--gold);

  font-family:
    Georgia,
    serif;

}


.cart-item-image img {

  width:
    100%;

  height:
    100%;

  object-fit:
    contain;

}


.cart-item-name {

  margin:
    0;

  font-family:
    Georgia,
    serif;

  font-size:
    16px;

}


.cart-item-meta {

  margin-top:
    5px;

  color:
    var(--muted);

  font-size:
    10px;

}


.cart-item-price {

  margin-top:
    8px;

  color:
    var(--gold-light);

  font-weight:
    700;

}


.cart-quantity {

  margin-top:
    12px;

  display:
    inline-flex;

  align-items:
    center;

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

}


.cart-quantity button {

  width:
    30px;

  height:
    30px;

  border:
    0;

  background:
    transparent;

  color:
    white;

  cursor:
    pointer;

}


.cart-quantity span {

  width:
    32px;

  text-align:
    center;

  font-size:
    11px;

}


.cart-remove {

  border:
    0;

  background:
    transparent;

  color:
    #b9bec6;

  cursor:
    pointer;

  font-size:
    11px;

}


.cart-checkout {

  max-height:
    58vh;

  overflow-y:
    auto;

  padding:
    22px;

  background:
    #050a11;

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

}


.cart-summary {

  margin-bottom:
    22px;

}


.cart-summary > div {

  margin-bottom:
    9px;

  display:
    flex;

  justify-content:
    space-between;

  color:
    #c4cad2;

  font-size:
    12px;

}


.cart-summary strong {

  color:
    white;

}


#cart-savings {

  color:
    #75d496;

}


.cart-total-row {

  margin-top:
    13px;

  padding-top:
    14px;

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

  font-size:
    15px !important;

}


.cart-total-row strong {

  color:
    var(--gold-light);

  font-family:
    Georgia,
    serif;

  font-size:
    22px;

}


.cart-customer h3 {

  margin:
    0 0 17px;

  font-family:
    Georgia,
    serif;

  font-weight:
    500;

}


.cart-customer label {

  display:
    block;

  margin:
    13px 0 6px;

  color:
    #c7ccd4;

  font-size:
    10px;

  letter-spacing:
    0.6px;

}


.cart-customer input,
.cart-customer select,
.cart-customer textarea {

  width:
    100%;

  min-height:
    43px;

  padding:
    10px 12px;

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

  border-radius:
    3px;

  outline:
    none;

  color:
    white;

  background:
    #09121d;

}


.cart-customer select option {

  color:
    #111;

}


.cart-customer textarea {

  min-height:
    75px;

  resize:
    vertical;

}


.cart-customer input:focus,
.cart-customer select:focus,
.cart-customer textarea:focus {

  border-color:
    var(--gold);

}


.cart-address-grid {

  display:
    grid;

  grid-template-columns:
    1fr 100px;

  gap:
    10px;

}


.cart-disclaimer {

  margin:
    18px 0;

  color:
    #8e97a3;

  font-size:
    10px;

  line-height:
    1.6;

}


.send-order-button {

  width:
    100%;

  min-height:
    52px;

  border:
    0;

  border-radius:
    4px;

  color:
    white;

  background:
    #168f50;

  text-transform:
    uppercase;

  letter-spacing:
    1.5px;

  font-size:
    11px;

  font-weight:
    900;

  cursor:
    pointer;

}


.send-order-button:hover {

  background:
    #1ca55e;

}


@media (max-width: 560px) {

  .cart-checkout {

    max-height:
      62vh;

  }


  .cart-address-grid {

    grid-template-columns:
      1fr;

  }

}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-page {
  min-height: 100vh;

  background:
    radial-gradient(
      circle at top,
      #0b2340,
      #090808 42%
    );

  color: #ffffff;
}


.legal-header {
  min-height: 90px;

  padding: 0 6%;

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

  background: rgba(3, 7, 13, 0.96);

  border-bottom:
    1px solid var(--border);
}


.legal-header-logo img {
  width: 175px;
  max-height: 72px;

  object-fit: contain;
  object-position: left center;
}


.legal-back {
  padding: 11px 18px;

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

  border-radius: 30px;

  color: var(--gold-light);

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 1px;

  transition: 0.2s ease;
}


.legal-back:hover {
  background: var(--gold);
  color: #080808;
}


.legal-hero {
  padding: 90px 6% 60px;

  text-align: center;
}


.legal-hero span {
  color: var(--gold);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 4px;
}


.legal-hero h1 {
  margin: 14px 0;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(42px, 5vw, 68px);

  font-weight: 500;
}


.legal-hero p {
  max-width: 650px;

  margin: auto;

  color: var(--muted);

  line-height: 1.8;
}


.legal-container {
  width:
    min(900px, 88%);

  margin: 0 auto;

  padding-bottom: 100px;
}


.legal-content {
  padding: 45px;

  background:
    rgba(6, 12, 20, 0.9);

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

  border-radius: 10px;

  box-shadow:
    0 30px 80px
    rgba(0, 0, 0, 0.25);
}


.legal-updated {
  margin-bottom: 35px;

  padding-bottom: 20px;

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

  color: #858e9a;

  font-size: 11px;
}


.legal-section {
  margin-bottom: 38px;
}


.legal-section:last-child {
  margin-bottom: 0;
}


.legal-section h2 {
  margin: 0 0 13px;

  color: var(--gold-light);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 23px;

  font-weight: 500;
}


.legal-section p,
.legal-section li {
  color: #bac1ca;

  font-size: 14px;

  line-height: 1.9;
}


.legal-section ul {
  padding-left: 22px;
}


.legal-section a {
  color: var(--blue-soft);
}


.legal-contact-box {
  padding: 22px;

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

  border-radius: 6px;

  background:
    rgba(214, 173, 69, 0.05);
}


.legal-footer {
  padding: 30px 6%;

  display: flex;

  justify-content: space-between;

  gap: 20px;

  background: #020407;

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

  color: #7d8692;

  font-size: 10px;
}


@media (max-width: 650px) {

  .legal-header {
    min-height: 75px;
  }


  .legal-header-logo img {
    width: 130px;
  }


  .legal-content {
    padding: 25px 20px;
  }


  .legal-hero {
    padding-top: 65px;
  }


  .legal-footer {
    flex-direction: column;
  }

}

.footer-admin-link {
  margin-top:
    8px;

  color:
    #68717c !important;

  font-size:
    10px;

  opacity:
    0.7;
}


.footer-admin-link:hover {
  color:
    var(--gold-light) !important;

  opacity:
    1;
}


/* ============================================================
   PRODUCT DETAILS
   ============================================================ */

.product-card {
  cursor: pointer;
}


.product-detail-overlay {
  position: fixed;
  inset: 0;

  z-index: 5000;

  overflow-y: auto;

  background:
    #05090f;

  display: none;
}


.product-detail-overlay.show {
  display: block;
}


body.product-detail-open {
  overflow: hidden;
}


.product-detail-page {
  width: min(
    1500px,
    100%
  );

  min-height: 100vh;

  margin: 0 auto;

  padding:
    32px 40px 70px;

  color: #ffffff;
}


.product-detail-back {
  width: 44px;
  height: 44px;

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

  margin-bottom: 25px;

  border:
    1px solid
    rgba(
      213,
      170,
      61,
      0.45
    );

  border-radius: 50%;

  background:
    #09121d;

  color:
    #ffffff;

  font-size:
    21px;

  cursor: pointer;
}


.product-detail-main {
  display: grid;

  grid-template-columns:
    minmax(
      420px,
      0.95fr
    )
    minmax(
      420px,
      1.05fr
    );

  gap: 55px;

  align-items: start;
}


.product-detail-image {
  background: transparent;
  border: none;
  padding: 24px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
}


.product-detail-placeholder {
  color: #c9141c;

  font-family:
    Georgia,
    serif;

  font-size: 90px;
}


.product-detail-info {
  padding:
    25px 0;
}


.product-detail-brand {
  color:
    #ef3138;

  font-size:
    12px;

  font-weight:
    700;

  letter-spacing:
    2px;

  text-transform:
    uppercase;
}


.product-detail-info h1 {
  margin:
    12px 0 14px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(
      36px,
      4vw,
      58px
    );

  line-height:
    1.05;
}


.product-detail-meta {
  display: flex;
  flex-wrap: wrap;

  gap:
    9px;

  margin-bottom:
    28px;

  color:
    #aeb7c1;

  font-size:
    13px;
}


.product-detail-meta > span {
  padding:
    7px 10px;

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

  border-radius:
    5px;

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


.gender-pill {
  color:
    #d8d3d1;
}


.available-pill {
  color:
    #3dd982 !important;
}


.product-detail-price {
  display: flex;

  align-items:
    center;

  gap:
    14px;

  margin-bottom:
    25px;
}


.product-detail-price strong {
  color:
    #f4f1ef;

  font-family:
    Georgia,
    serif;

  font-size:
    34px;
}


.product-detail-old-price {
  color:
    #7e8790;

  text-decoration:
    line-through;
}


.product-detail-add {
  width: 100%;

  padding:
    17px 20px;

  border:
    1px solid
    #c9141c;

  border-radius:
    7px;

  background:
    linear-gradient(
      135deg,
      #ef3138,
      #c9141c
    );

  color:
    #080b10;

  font-weight:
    800;

  letter-spacing:
    0.5px;

  cursor:
    pointer;
}


.product-detail-description-area {
  display: grid;

  grid-template-columns:
    0.85fr 1.15fr;

  gap:
    14px;

  margin-top:
    35px;
}


.product-detail-box {
  padding:
    20px;

  border:
    1px solid
    rgba(
      213,
      170,
      61,
      0.20
    );

  border-radius:
    10px;

  background:
    #111010;
}


.product-detail-box > span {
  display: block;

  margin-bottom:
    15px;

  color:
    #c9141c;

  font-size:
    10px;

  font-weight:
    800;

  letter-spacing:
    1.5px;
}


.product-detail-spec-grid {
  display: grid;

  gap:
    15px;
}


.product-detail-spec-grid div {
  display: flex;

  flex-direction:
    column;

  gap:
    4px;
}


.product-detail-spec-grid small {
  color:
    #71808f;
}


.product-detail-spec-grid strong {
  font-size:
    13px;
}


.product-description-box p {
  margin: 0;

  color:
    #c4ccd5;

  line-height:
    1.8;

  white-space:
    pre-line;
}


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

.related-products-section {
  margin-top:
    75px;

  padding-top:
    30px;

  border-top:
    1px solid
    rgba(
      213,
      170,
      61,
      0.20
    );
}


.related-products-heading h2 {
  margin-bottom:
    22px;

  font-family:
    Georgia,
    serif;

  font-size:
    25px;
}


.related-products-grid {
  display: grid;

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

  gap:
    20px;
}


.related-product-card {
  padding-bottom:
    15px;

  border:
    1px solid
    rgba(
      213,
      170,
      61,
      0.16
    );

  border-radius:
    10px;

  overflow: hidden;

  background:
    #07101a;

  cursor:
    pointer;
}


.related-product-image {
  height:
    250px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  background:
    #ffffff;
}


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

  height:
    100%;

  object-fit:
    contain;

  padding:
    15px;
}


.related-product-card > span,
.related-product-card > h3,
.related-product-card > strong {
  display:
    block;

  margin-left:
    15px;

  margin-right:
    15px;
}


.related-product-card > span {
  margin-top:
    15px;

  color:
    #ef3138;

  font-size:
    9px;

  font-weight:
    700;

  letter-spacing:
    1px;

  text-transform:
    uppercase;
}


.related-product-card h3 {
  margin-top:
    7px;

  margin-bottom:
    11px;

  font-family:
    Georgia,
    serif;

  font-size:
    17px;
}


.related-product-card strong {
  color:
    #e6bd4d;
}


.no-related-products {
  color:
    #768290;
}


/* ============================================================
   GENDER FILTER
   ============================================================ */

#gender-filter {
  min-width:
    140px;
}


@media (
  max-width: 900px
) {

  .product-detail-page {
    padding:
      20px 18px 45px;
  }


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

    gap:
      25px;
  }


  .product-detail-image {
    min-height:
      400px;
  }


  .product-detail-image img {
    height:
      400px;
  }


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


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

}

/* ============================================================
   GENDER FILTER PILLS
   ============================================================ */

.gender-filter-pills {
  display: flex;
  align-items: center;
  gap: 10px;

  width: 100%;

  margin-top: 5px;
}


.gender-filter-pill {
  display: inline-flex;

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

  gap: 6px;

  padding:
    10px 18px;

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

  border-radius:
    999px;

  background:
    transparent;

  color:
    #b7bdc5;

  font-size:
    13px;

  cursor:
    pointer;

  transition:
    all 0.2s ease;
}


.gender-filter-pill:hover {
  color:
    #ffffff;

  border-color:
    rgba(
      213,
      170,
      61,
      0.65
    );
}


.gender-filter-pill.active {
  color:
    #f4f1ef;

  border-color:
    #c9141c;

  background:
    rgba(
      213,
      170,
      61,
      0.10
    );
}


@media (
  max-width: 700px
) {

  .gender-filter-pills {
    overflow-x: auto;

    padding-bottom:
      5px;
  }


  .gender-filter-pill {
    flex-shrink: 0;
  }

}

/* ============================================================
   PRODUCT DETAIL - REFINED DESIGN
   ============================================================ */

.product-detail-page {
  width: min(1380px, 100%);
  margin: 0 auto;
  padding: 28px 42px 70px;
}


/* MAIN AREA */

.product-detail-main {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}


/* MAIN IMAGE */

.product-detail-image {
  min-height: 570px;

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

  padding: 22px;

  background:
    radial-gradient(
      circle at center,
      #0d1c2c 0%,
      #050a10 72%
    );

  border: 1px solid rgba(213, 170, 61, 0.18);
  border-radius: 18px;

  overflow: hidden;
}


.product-detail-image img {
  width: 96%;
  height: 530px;

  max-width: none;
  max-height: none;

  padding: 0;

  object-fit: contain;

  border: none;
  border-radius: 0;

  background: transparent;
}


/* PRODUCT INFORMATION */

.product-detail-info {
  padding: 15px 0;
}


.product-detail-brand {
  display: block;

  margin-bottom: 10px;

  color: #42b8ff;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 2px;

  text-transform: uppercase;
}


.product-detail-info h1 {
  max-width: 650px;

  margin: 0 0 16px;

  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;

  letter-spacing: -1px;
}


/* META */

.product-detail-meta {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 25px;
}


.product-detail-meta > span {
  padding: 7px 11px;

  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;

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

  color: #c3cad2;

  font-size: 12px;
}


.product-detail-meta .available-pill {
  color: #32da7a !important;
  border-color: rgba(50,218,122,0.25);
}


/* PRICE */

.product-detail-price {
  margin-bottom: 20px;
}


.product-detail-price strong {
  color: #eac14c;
  font-size: 34px;
}


/* ADD BUTTON */

.product-detail-add {
  margin-bottom: 30px;

  border-radius: 8px;

  padding: 17px;

  font-size: 14px;
}


/* ============================================================
   DETAILS + DESCRIPTION AS ONE PANEL
   ============================================================ */

.product-detail-description-area {
  display: grid;

  grid-template-columns:
    minmax(180px, 0.72fr)
    minmax(0, 1.28fr);

  gap: 0;

  margin-top: 0;

  border: 1px solid rgba(213,170,61,0.22);
  border-radius: 14px;

  overflow: hidden;

  background: #08131f;
}


.product-detail-box {
  min-height: 210px;

  padding: 23px;

  border: none;
  border-radius: 0;

  background: transparent;
}


.product-detail-box:first-child {
  border-right:
    1px solid rgba(213,170,61,0.17);
}


.product-detail-box > span {
  margin-bottom: 20px;

  color: #e5b93e;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 1.7px;
}


.product-detail-spec-grid {
  gap: 17px;
}


.product-detail-spec-grid small {
  margin-bottom: 2px;

  color: #758493;
}


.product-detail-spec-grid strong {
  color: #ffffff;

  font-size: 13px;
}


.product-description-box p {
  margin: 0;

  color: #c8d0d8;

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


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

.related-products-section {
  margin-top: 65px;
  padding-top: 35px;

  border-top:
    1px solid rgba(213,170,61,0.20);
}


.related-products-heading h2 {
  margin-bottom: 25px;

  font-size: 25px;
}


.related-products-grid {
  display: grid;

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

  gap: 18px;
}


.related-product-card {
  border:
    1px solid rgba(213,170,61,0.18);

  border-radius: 12px;

  background: #07101a;

  overflow: hidden;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}


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

  border-color:
    rgba(213,170,61,0.55);
}


/* REMOVE THE WHITE IMAGE BOX */

.related-product-image {
  height: 270px;

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

  padding: 18px;

  background:
    radial-gradient(
      circle at center,
      #102031,
      #060c13 75%
    );
}


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

  padding: 0;

  object-fit: contain;

  background: transparent;
}


.related-product-card > span {
  margin-top: 16px;
}


.related-product-card h3 {
  min-height: 42px;
}


/* MOBILE */

@media (max-width: 900px) {

  .product-detail-page {
    padding: 20px 18px 45px;
  }

  .product-detail-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-detail-image {
    min-height: 430px;
    padding: 16px;
  }

  .product-detail-image img {
    width: 96%;
    height: 400px;
  }

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

  .product-detail-box:first-child {
    border-right: none;

    border-bottom:
      1px solid rgba(213,170,61,0.17);
  }

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

}
/* ============================================================
   JJ LUXURY STYLE — BLACK / RED / WHITE IDENTITY
   2026 STOREFRONT REFRESH
   ============================================================ */

:root {
  --black: #090808;
  --black-soft: #121010;
  --navy: #171213;
  --navy-light: #251718;
  --blue: #c9141c;
  --blue-soft: #f1eded;
  --gold: #c9141c;
  --gold-light: #f4f1ef;
  --gold-dark: #78070c;
  --cream: #f4f1ef;
  --white: #f7f5f4;
  --muted: #aaa4a2;
  --border: rgba(201, 20, 28, 0.28);
}

body {
  background: #090808;
  color: var(--white);
}

.announcement-bar {
  background:
    linear-gradient(
      90deg,
      #320406,
      #a80d13 45%,
      #c9141c 50%,
      #a80d13 55%,
      #320406
    );
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.store-header {
  background: rgba(9, 8, 8, 0.96);
  border-bottom: 1px solid rgba(201, 20, 28, 0.22);
}

.store-brand img {
  width: 205px;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
}

.store-nav {
  align-items: center;
}

.store-nav .department-nav-link {
  appearance: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #d9d5d3;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  position: relative;
  transition: color 0.25s ease;
}

.store-nav .department-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.store-nav .department-nav-link:hover,
.store-nav .department-nav-link.active,
.store-nav a:hover {
  color: #ffffff;
}

.store-nav .department-nav-link:hover::after,
.store-nav .department-nav-link.active::after {
  width: 100%;
}

.store-nav a::after {
  background: var(--gold);
}

.search-toggle,
.cart-button {
  border-color: rgba(255, 255, 255, 0.14);
  color: #f7f5f4;
  background: rgba(255, 255, 255, 0.025);
}

.search-toggle:hover {
  border-color: rgba(201, 20, 28, 0.75);
  color: #ffffff;
}

.cart-button {
  border-color: #c9141c;
  background: #c9141c;
  color: #ffffff;
}

.cart-button:hover {
  background: #a80d13;
}

.cart-button span {
  background: #090808;
  color: #ffffff;
}

/* ---------- Collection gateway ---------- */

.department-gateway {
  position: relative;
  min-height: 690px;
  padding: 88px 6% 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 16%, rgba(201, 20, 28, 0.14), transparent 25%),
    radial-gradient(circle at 14% 88%, rgba(123, 7, 12, 0.16), transparent 30%),
    linear-gradient(145deg, #080707 0%, #100d0d 52%, #070606 100%);
  border-bottom: 1px solid rgba(201, 20, 28, 0.2);
}

.department-gateway::before,
.department-gateway::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(201, 20, 28, 0.15);
  transform: rotate(38deg);
}

.department-gateway::before {
  width: 420px;
  height: 420px;
  left: -250px;
  top: 90px;
}

.department-gateway::after {
  width: 520px;
  height: 520px;
  right: -330px;
  bottom: -160px;
}

.gateway-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 24%, black 78%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 78%, transparent);
}

.gateway-content {
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.interactive-crown {
  width: 138px;
  height: 105px;
  padding: 0;
  margin: 0 auto 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform-origin: center 70%;
}

.interactive-crown img {
  width: 126px;
  max-height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(201, 20, 28, 0.15));
  transition: transform 0.32s ease, filter 0.32s ease;
}

.interactive-crown:hover img {
  transform: translateY(-3px) scale(1.025);
  filter: drop-shadow(0 12px 30px rgba(201, 20, 28, 0.28));
}

.interactive-crown.crown-activated img {
  animation: jj-crown-signature 0.62s ease;
}

@keyframes jj-crown-signature {
  0% { transform: scale(1) rotate(0deg); }
  30% { transform: scale(1.08) rotate(-3deg); }
  58% { transform: scale(1.04) rotate(3deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.gateway-eyebrow,
.gateway-signature {
  display: block;
  color: #c9141c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 5px;
}

.department-gateway h1 {
  margin: 15px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 6vw, 76px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -1.8px;
  color: #f6f3f1;
}

.gateway-intro {
  max-width: 620px;
  margin: 0 auto;
  color: #aaa4a2;
  line-height: 1.75;
  font-size: 14px;
}

.department-choice-grid {
  max-width: 930px;
  margin: 46px auto 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.department-choice {
  position: relative;
  min-height: 255px;
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.department-choice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 46px;
  height: 2px;
  transform: translateX(-50%);
  background: #c9141c;
  transition: width 0.28s ease;
}

.department-choice:hover,
.department-choice.active {
  transform: translateY(-4px);
  border-color: rgba(201, 20, 28, 0.62);
  background:
    radial-gradient(circle at top, rgba(201, 20, 28, 0.1), transparent 45%),
    rgba(255, 255, 255, 0.025);
}

.department-choice:hover::before,
.department-choice.active::before {
  width: 100%;
}

.department-icon {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.department-icon svg {
  width: 88px;
  height: 88px;
  fill: none;
  stroke: #eeeae8;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.28s ease, transform 0.28s ease;
}

.department-choice:hover .department-icon svg,
.department-choice.active .department-icon svg {
  stroke: #c9141c;
  transform: scale(1.035);
}

.department-label {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  letter-spacing: 0.4px;
}

.department-description {
  margin-top: 8px;
  color: #9f9997;
  font-size: 12px;
  letter-spacing: 0.2px;
}

.department-enter {
  margin-top: 19px;
  color: #d8d3d1;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}

.gateway-signature {
  color: #817b79;
  font-size: 8px;
  letter-spacing: 3px;
}

/* ---------- Benefits ---------- */

.benefits {
  background: linear-gradient(180deg, #111010, #0a0909);
  border-color: rgba(201, 20, 28, 0.18);
}

.benefits article {
  border-color: rgba(201, 20, 28, 0.15);
}

.benefit-icon {
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #c9141c;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Collection ---------- */

.shop-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 20, 28, 0.09), transparent 26%),
    #0b0a0a;
}

.section-heading > span,
.about-content > span,
.contact-section > span {
  color: #c9141c;
}

.collection-switcher {
  max-width: 560px;
  margin: -8px auto 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #0e0d0d;
}

.collection-switch {
  min-height: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #a9a3a1;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease;
}

.collection-switch + .collection-switch {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.collection-switch:hover,
.collection-switch.active {
  background: #c9141c;
  color: #ffffff;
}

.shop-toolbar {
  grid-template-columns: minmax(0, 1fr) 220px auto;
  align-items: center;
}

.shop-toolbar input,
.shop-toolbar select {
  border-color: rgba(255, 255, 255, 0.12);
  background: #111010;
}

.shop-toolbar input:focus,
.shop-toolbar select:focus {
  border-color: #c9141c;
  box-shadow: 0 0 0 2px rgba(201, 20, 28, 0.08);
}

.gender-filter-pills {
  min-height: 48px;
}

.gender-filter-pill {
  border-color: rgba(255, 255, 255, 0.1);
  color: #aaa4a2;
  background: #111010;
}

.gender-filter-pill:hover,
.gender-filter-pill.active {
  border-color: #c9141c;
  color: #ffffff;
  background: #c9141c;
}

.department-prompt {
  grid-column: 1 / -1;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.015);
  color: #aaa4a2;
  text-align: center;
}

.department-prompt img {
  width: 75px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 5px;
}

.department-prompt strong {
  font-family: Georgia, "Times New Roman", serif;
  color: #f4f1ef;
  font-size: 24px;
  font-weight: 500;
}

.department-prompt span {
  font-size: 12px;
}

/* ---------- Products ---------- */

.product-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: #100f0f;
}

.product-card:hover {
  border-color: rgba(201, 20, 28, 0.45);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.product-image {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.045), transparent 62%),
    #0c0b0b;
}

.sale-badge {
  background: #c9141c;
  color: #ffffff;
}

.product-brand,
.product-price,
.product-detail-brand,
.related-product-card > span {
  color: #c9141c;
}

.add-cart-button,
.product-detail-add,
.primary-store-btn,
.whatsapp-store-btn {
  border-color: #c9141c;
  background: #c9141c;
  color: #ffffff;
}

.add-cart-button:hover,
.product-detail-add:hover,
.primary-store-btn:hover,
.whatsapp-store-btn:hover {
  background: #a80d13;
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(201, 20, 28, 0.18);
}

.stock-note,
.available-pill {
  color: #d4cfcd;
}

/* ---------- Brand / contact / footer ---------- */

.about-section {
  background: #0d0c0c;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(114, 0, 5, 0.24);
  mix-blend-mode: color;
  pointer-events: none;
}

.contact-section {
  background:
    radial-gradient(circle at top, rgba(201, 20, 28, 0.13), transparent 40%),
    #090808;
}

.store-footer,
.legal-header,
.legal-page {
  background: #090808;
}

.store-footer {
  border-top-color: rgba(201, 20, 28, 0.2);
}

.footer-brand img,
.legal-header-logo img {
  filter: none;
}

.legal-hero {
  background:
    radial-gradient(circle at top, rgba(201, 20, 28, 0.1), transparent 45%),
    #0b0a0a;
}

/* ---------- Product details ---------- */

.product-detail-page,
.product-detail-main,
.product-detail-box,
.related-products-section {
  background-color: #0d0c0c;
}

.product-detail-box,
.related-product-card,
.product-detail-image {
  border-color: rgba(255, 255, 255, 0.08);
}

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

/* ---------- Focus ---------- */

.department-choice:focus-visible,
.collection-switch:focus-visible,
.department-nav-link:focus-visible,
.interactive-crown:focus-visible,
.search-toggle:focus-visible,
.cart-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .interactive-crown img,
  .department-choice,
  .department-icon svg {
    transition: none;
  }

  .interactive-crown.crown-activated img {
    animation: none;
  }
}

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

  .store-nav {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    padding: 12px 0 3px;
    gap: 24px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .store-header {
    height: auto;
    min-height: 88px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .shop-toolbar {
    grid-template-columns: minmax(0, 1fr) 200px;
  }

  .gender-filter-pills {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .announcement-bar {
    gap: 12px;
    justify-content: space-between;
    overflow: hidden;
  }

  .announcement-bar span:nth-child(2) {
    display: none;
  }

  .department-gateway {
    min-height: 0;
    padding: 64px 5% 70px;
  }

  .interactive-crown {
    width: 110px;
    height: 86px;
  }

  .interactive-crown img {
    width: 103px;
  }

  .department-gateway h1 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .gateway-intro {
    font-size: 13px;
  }

  .department-choice-grid {
    grid-template-columns: 1fr;
    margin-top: 35px;
  }

  .department-choice {
    min-height: 210px;
    padding: 26px 20px;
  }

  .department-icon,
  .department-icon svg {
    width: 74px;
    height: 74px;
  }

  .department-label {
    font-size: 24px;
  }

  .shop-toolbar {
    grid-template-columns: 1fr;
  }

  .gender-filter-pills {
    grid-column: auto;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .collection-switcher {
    width: 100%;
  }

  .store-brand img {
    width: 160px;
  }

  .header-actions {
    gap: 7px;
  }

  .search-toggle,
  .cart-button {
    min-height: 36px;
    padding: 0 12px;
  }
}

@media (max-width: 440px) {
  .announcement-bar span:last-child {
    display: none;
  }

  .announcement-bar {
    justify-content: center;
  }

  .store-brand img {
    width: 145px;
  }

  .search-toggle {
    display: none;
  }

  .gateway-eyebrow {
    letter-spacing: 3.2px;
  }

  .gateway-signature {
    letter-spacing: 1.7px;
  }

  .collection-switch {
    letter-spacing: 1.2px;
    font-size: 9px;
  }
}

/* ============================================================
   V2 — SEPARATE COLLECTION PAGES
   ============================================================ */

.landing-page {
  min-height: 100%;
  background: #080707;
}

.landing-header {
  min-height: 90px;
  padding: 10px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(8, 7, 7, 0.96);
  border-bottom: 1px solid rgba(201, 20, 28, 0.18);
}

.landing-header .store-brand img {
  width: 175px;
}

.landing-header-signature {
  color: #8f8886;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
}

.landing-gateway {
  min-height: 650px;
  border-bottom: 0;
}

.landing-gateway .department-choice {
  text-decoration: none;
}

.landing-footer {
  min-height: 74px;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(201, 20, 28, 0.16);
  background: #080707;
  color: #77716f;
  font-size: 10px;
  letter-spacing: 1.3px;
}

.landing-footer a {
  color: #bdb7b4;
}

.catalog-header .department-nav-link {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 0;
  background: transparent;
  color: #d9dce1;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  cursor: pointer;
}

.catalog-header .department-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  background: #c9141c;
  transition: transform 0.22s ease;
}

.catalog-header .department-nav-link:hover,
.catalog-header .department-nav-link.active {
  color: #ffffff;
}

.catalog-header .department-nav-link:hover::after,
.catalog-header .department-nav-link.active::after {
  transform: scaleX(1);
}

.catalog-hero {
  position: relative;
  min-height: 330px;
  padding: 62px 6% 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 20, 28, 0.14), transparent 34%),
    linear-gradient(145deg, #080707, #100d0d 60%, #070606);
  border-bottom: 1px solid rgba(201, 20, 28, 0.16);
}

.catalog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.catalog-crown {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 64px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-crown img {
  width: 82px;
  max-height: 64px;
  object-fit: contain;
  transition: transform .25s ease, filter .25s ease;
}

.catalog-crown:hover img {
  transform: translateY(-2px) scale(1.035);
  filter: drop-shadow(0 10px 22px rgba(201, 20, 28, .24));
}

.catalog-hero > span {
  position: relative;
  z-index: 1;
  color: #c9141c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 4px;
}

.catalog-hero h1 {
  position: relative;
  z-index: 1;
  margin: 10px 0 10px;
  color: #f5f2ef;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 6vw, 70px);
  font-weight: 500;
  line-height: 1;
}

.catalog-hero p {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0;
  color: #a9a2a0;
  font-size: 13px;
  line-height: 1.7;
}

.change-collection-link {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(201, 20, 28, .55);
  color: #d7d1cf;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.change-collection-link:hover {
  color: #ffffff;
  border-bottom-color: #c9141c;
}

.catalog-shop-section {
  padding-top: 76px;
}

.catalog-contact {
  border-top: 1px solid rgba(201, 20, 28, 0.14);
}

/* The old brand collage/about composition is intentionally not used in V2. */

@media (max-width: 720px) {
  .landing-header {
    justify-content: center;
  }

  .landing-header-signature {
    display: none;
  }

  .landing-gateway {
    min-height: 0;
  }

  .catalog-hero {
    min-height: 285px;
    padding: 50px 5% 44px;
  }

  .catalog-header .store-nav {
    gap: 22px;
  }
}


/* ============================================================
   V3 — CATALOG CROWN + LANDING FOOTER HARDENING
   ============================================================ */

/* Keep the collection crown at a controlled logo size even if
   the SVG intrinsic dimensions or an older browser rule tries
   to stretch it. */
.catalog-hero .catalog-crown {
  flex: 0 0 86px;
  width: 86px;
  min-width: 86px;
  max-width: 86px;
  height: 64px;
  min-height: 64px;
  max-height: 64px;
  overflow: hidden;
}

.catalog-hero .catalog-crown img {
  display: block;
  width: 82px !important;
  min-width: 82px;
  max-width: 82px !important;
  height: auto !important;
  max-height: 55px !important;
  object-fit: contain;
}

.landing-store-footer {
  position: relative;
  z-index: 2;
  background: #070606;
}

.landing-store-footer .footer-contact a {
  color: var(--muted);
  transition: color .2s ease;
}

.landing-store-footer .footer-contact a:hover {
  color: #ffffff;
}

@media (max-width: 720px) {
  .catalog-hero .catalog-crown {
    flex-basis: 72px;
    width: 72px;
    min-width: 72px;
    max-width: 72px;
    height: 54px;
    min-height: 54px;
    max-height: 54px;
  }

  .catalog-hero .catalog-crown img {
    width: 68px !important;
    min-width: 68px;
    max-width: 68px !important;
    max-height: 46px !important;
  }
}


/* ============================================================
   V4 — INLINE CATALOG CROWN: HARD SIZE LOCK
   External image sizing is intentionally bypassed here so the
   collection mark can never expand to fill the viewport.
   ============================================================ */
.catalog-hero .catalog-crown {
  box-sizing: border-box !important;
  display: grid !important;
  place-items: center !important;
  flex: 0 0 86px !important;
  inline-size: 86px !important;
  block-size: 64px !important;
  min-inline-size: 86px !important;
  max-inline-size: 86px !important;
  min-block-size: 64px !important;
  max-block-size: 64px !important;
  overflow: visible !important;
  color: #c9141c;
}

.catalog-hero .catalog-crown .catalog-crown-mark {
  box-sizing: border-box !important;
  display: block !important;
  flex: none !important;
  inline-size: 82px !important;
  block-size: 55px !important;
  min-inline-size: 82px !important;
  max-inline-size: 82px !important;
  min-block-size: 55px !important;
  max-block-size: 55px !important;
  width: 82px !important;
  height: 55px !important;
  overflow: visible;
  transform-origin: center;
  transition: transform .25s ease, filter .25s ease;
}

.catalog-hero .catalog-crown:hover .catalog-crown-mark {
  transform: translateY(-2px) scale(1.035);
  filter: drop-shadow(0 10px 22px rgba(201, 20, 28, .24));
}

@media (max-width: 720px) {
  .catalog-hero .catalog-crown {
    flex-basis: 72px !important;
    inline-size: 72px !important;
    block-size: 54px !important;
    min-inline-size: 72px !important;
    max-inline-size: 72px !important;
    min-block-size: 54px !important;
    max-block-size: 54px !important;
  }

  .catalog-hero .catalog-crown .catalog-crown-mark {
    inline-size: 68px !important;
    block-size: 46px !important;
    min-inline-size: 68px !important;
    max-inline-size: 68px !important;
    min-block-size: 46px !important;
    max-block-size: 46px !important;
    width: 68px !important;
    height: 46px !important;
  }
}

/* ============================================================
   V5 — CLEAN CATALOG FLOW + SEPARATE CONTACT PAGE
   ============================================================ */

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Catalog pages should feel like storefronts, not stacked landing pages. */
.catalog-hero.catalog-hero-compact {
  min-height: 238px;
  padding: 38px 6% 40px;
  gap: 0;
  background:
    radial-gradient(circle at 50% -25%, rgba(201, 20, 28, 0.15), transparent 38%),
    linear-gradient(145deg, #080707, #0d0a0a 58%, #070606);
}

.catalog-hero-compact .catalog-crown {
  margin-bottom: 5px;
}

.catalog-intro-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.catalog-intro-copy > span {
  color: #d71820;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 4px;
}

.catalog-intro-copy h1 {
  margin: 8px 0 8px;
  font-size: clamp(42px, 5vw, 62px);
}

.catalog-intro-copy p {
  max-width: 610px;
  margin: 0;
  color: #aaa3a1;
  font-size: 13px;
  line-height: 1.65;
}

.catalog-shop-section {
  padding: 48px 6% 110px;
  background:
    radial-gradient(circle at 50% -10%, rgba(138, 12, 17, 0.08), transparent 30%),
    #080707;
}

.catalog-shop-topline {
  max-width: 1250px;
  margin: 0 auto 22px;
  padding-bottom: 17px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(201, 20, 28, 0.18);
}

.catalog-shop-topline > span:first-child {
  flex: 0 0 auto;
  color: #d71820;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3.2px;
}

.catalog-shop-topline p {
  max-width: 610px;
  margin: 0;
  color: #85807e;
  font-size: 12px;
  line-height: 1.55;
  text-align: right;
}

.catalog-page .shop-toolbar {
  margin-bottom: 32px;
}

/* Contact information is intentionally absent from product pages. */
.catalog-page .catalog-contact,
.catalog-page .footer-contact {
  display: none !important;
}

.catalog-store-footer {
  grid-template-columns: 2fr 1fr;
}

.catalog-store-footer .footer-bottom {
  grid-column: 1 / -1;
}

/* The home page points to Contact, but does not expose contact details. */
.footer-contact-link-only .footer-contact-page-link {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(201, 20, 28, 0.55);
  color: #d7d1cf;
}

.footer-contact-link-only .footer-contact-page-link:hover {
  color: #fff;
  border-bottom-color: #d71820;
}

/* Dedicated Contact page */
.contact-page {
  min-height: 100%;
  background: #080707;
}

.contact-header .store-nav .active-static {
  color: #fff;
}

.contact-header .store-nav .active-static::after {
  transform: scaleX(1);
  background: #d71820;
}

.contact-main {
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 20, 28, 0.14), transparent 30%),
    #080707;
}

.contact-hero-new {
  min-height: 335px;
  padding: 64px 6% 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid rgba(201, 20, 28, 0.16);
}

.contact-crown {
  width: 82px;
  height: 55px;
  margin-bottom: 13px;
  color: #d71820;
}

.contact-crown svg {
  display: block;
  width: 82px;
  height: 55px;
}

.contact-hero-new > span {
  color: #d71820;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 4px;
}

.contact-hero-new h1 {
  margin: 12px 0 12px;
  color: #f5f2ef;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 500;
  line-height: 1;
}

.contact-hero-new p {
  max-width: 650px;
  margin: 0;
  color: #aaa3a1;
  font-size: 14px;
  line-height: 1.7;
}

.contact-methods {
  max-width: 1180px;
  margin: 0 auto;
  padding: 62px 6% 96px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-method-card {
  min-height: 285px;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(155deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.contact-method-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 24, 32, 0.5);
  background: linear-gradient(155deg, rgba(201,20,28,0.08), rgba(255,255,255,0.015));
}

.contact-method-primary {
  border-color: rgba(215, 24, 32, 0.32);
}

.contact-method-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 24px;
  color: #d71820;
}

.contact-method-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method-kicker {
  margin-bottom: 8px;
  color: #d71820;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2.6px;
}

.contact-method-card strong {
  margin-bottom: 9px;
  color: #f4f0ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
}

.contact-method-card > span:not(.contact-method-icon):not(.contact-method-kicker) {
  color: #aaa3a1;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.contact-method-card em {
  margin-top: 26px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(215, 24, 32, 0.55);
  color: #e3ddda;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.contact-store-footer {
  grid-template-columns: 2fr 1fr;
}

@media (max-width: 900px) {
  .catalog-shop-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .catalog-shop-topline p {
    text-align: left;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .contact-method-card {
    min-height: 225px;
  }
}

@media (max-width: 720px) {
  .catalog-hero.catalog-hero-compact {
    min-height: 215px;
    padding: 32px 5% 34px;
  }

  .catalog-intro-copy h1 {
    font-size: 43px;
  }

  .catalog-shop-section {
    padding: 38px 5% 82px;
  }

  .catalog-header .store-nav {
    gap: 18px;
  }

  .contact-hero-new {
    min-height: 280px;
    padding: 48px 6% 42px;
  }

  .contact-methods {
    padding: 42px 5% 72px;
  }
}


/* ============================================================
   V10 — DISCREET ADMIN ACCESS FROM FOOTER CROWN
   ============================================================ */
.footer-bottom {
  position: relative;
}

.footer-admin-crown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  color: var(--jj-red, #d51520);
  opacity: .72;
  text-decoration: none;
  border-radius: 10px;
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
}

.footer-admin-crown svg {
  display: block;
  width: 34px;
  height: 24px;
}

.footer-admin-crown:hover,
.footer-admin-crown:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  background: rgba(213, 21, 32, .08);
  outline: none;
}

.footer-admin-crown:focus-visible {
  box-shadow: 0 0 0 2px rgba(213, 21, 32, .38);
}

@media (max-width: 720px) {
  .footer-admin-crown {
    width: 40px;
    height: 32px;
  }
  .footer-admin-crown svg {
    width: 31px;
    height: 22px;
  }
}


/* ============================================================
   V14 — STRUCTURED THREE-COLUMN PUBLIC FOOTER
   ============================================================ */
.jj-site-footer {
  display: block !important;
  padding: 0 !important;
  background: #080808 !important;
  border-top: 1px solid rgba(215, 24, 32, .16) !important;
  color: #f4f0ed;
}

.jj-site-footer .jj-footer-main {
  width: min(1680px, 100%);
  margin: 0 auto;
  padding: 72px 6% 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(190px, .8fr) minmax(280px, 1fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}

.jj-footer-about {
  min-width: 0;
}

.jj-footer-logo {
  display: inline-flex;
  width: min(270px, 100%);
  margin-bottom: 28px;
}

.jj-site-footer .jj-footer-logo img {
  display: block;
  width: 100% !important;
  max-width: 270px !important;
  max-height: none !important;
  height: auto !important;
  object-fit: contain;
  object-position: left center;
}

.jj-footer-about p {
  max-width: 540px;
  margin: 0;
  color: #aaa3a1;
  font-size: 16px;
  line-height: 1.75;
}

.jj-footer-links,
.jj-footer-contacts {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-size: 14px;
}

.jj-footer-links h3,
.jj-footer-contacts h3 {
  margin: 0 0 25px;
  color: #ffffff;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.jj-footer-links a {
  padding: 8px 0;
  color: #d2cdca;
  font-size: 15px;
  line-height: 1.5;
  transition: color .2s ease, transform .2s ease;
}

.jj-footer-links a:hover,
.jj-footer-links a:focus-visible {
  color: #e11620;
  transform: translateX(3px);
  outline: none;
}

.jj-footer-contacts {
  min-width: 0;
}

.jj-footer-contact-row {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  color: #d2cdca;
  font-size: 15px;
  line-height: 1.45;
  transition: color .2s ease;
}

.jj-footer-contact-row > span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.jj-footer-contact-row:hover,
.jj-footer-contact-row:focus-visible {
  color: #ffffff;
  outline: none;
}

.jj-footer-contact-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
  color: #d71820;
}

.jj-footer-contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.jj-site-footer .jj-footer-bottom {
  width: min(1680px, 88%);
  min-height: 74px;
  margin: 0 auto;
  padding: 22px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.jj-footer-bottom p {
  margin: 0;
  color: #77716f;
  font-size: 13px;
  text-align: center;
}

.jj-site-footer .footer-admin-crown {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.jj-site-footer .footer-admin-crown:hover,
.jj-site-footer .footer-admin-crown:focus-visible {
  transform: translateY(calc(-50% - 1px));
}

/* Override older catalog-footer rules that hid contact information. */
.catalog-page .jj-site-footer .jj-footer-contacts,
.catalog-page .jj-site-footer .jj-footer-contact-row {
  display: flex !important;
}

@media (max-width: 980px) {
  .jj-site-footer .jj-footer-main {
    grid-template-columns: 1.35fr 1fr;
  }

  .jj-footer-contacts {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .jj-site-footer .jj-footer-main {
    padding: 52px 7% 42px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .jj-footer-contacts {
    grid-column: auto;
  }

  .jj-footer-logo {
    width: 230px;
    margin-bottom: 22px;
  }

  .jj-footer-about p {
    font-size: 15px;
  }

  .jj-site-footer .jj-footer-bottom {
    width: 86%;
    min-height: 96px;
    padding: 24px 52px 24px 0;
    justify-content: flex-start;
  }

  .jj-footer-bottom p {
    text-align: left;
  }
}
