* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #050608;
  color: #f5f5f7;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

small {
  color: #d8b96a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}


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

header {
  min-height: 84px;
  padding: 10px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 6, 8, 0.97);
  border-bottom: 1px solid #262626;
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #343434;
}

.brand b {
  font-size: 20px;
  letter-spacing: -0.3px;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #dddde3;
}

nav a:hover {
  background: #151515;
  color: #fff;
}

.cart-count {
  display: inline-flex;
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  align-items: center;
  justify-content: center;
  margin-left: 3px;
  border-radius: 999px;
  background: #c9a957;
  color: #080808;
  font-size: 11px;
}


/* =========================
   GENERAL TEXT
========================= */

h1,
h2,
h3 {
  color: #fff;
}

h1 {
  margin: 12px 0 24px;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 em {
  color: #d8b96a;
  font-style: normal;
}

h2 {
  margin: 12px 0 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3 {
  line-height: 1.25;
}

p {
  margin-top: 0;
}

.muted,
.hero p,
.materials p,
.card p {
  color: #b4b4bd;
}


/* =========================
   BUTTONS
========================= */

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9a957;
  border-radius: 10px;
  background: #c9a957;
  color: #080808;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  cursor: pointer;
}

.button:hover {
  background: #e0c477;
}

.button.secondary,
.secondary {
  background: transparent;
  color: #f0dfad;
  border: 1px solid #665b3c;
}


/* =========================
   HOMEPAGE
========================= */

.hero {
  min-height: 74vh;
  max-width: 1500px;
  margin: auto;
  padding: 72px 6%;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 70px;
  align-items: center;
  background:
    radial-gradient(circle at 78% 45%, rgba(199, 167, 82, 0.12), transparent 32%);
}

.hero p {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 18px;
}

.hero > img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border: 1px solid #292929;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.wrap {
  max-width: 1320px;
  margin: auto;
  padding: 95px 6%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  overflow: hidden;
  border: 1px solid #262626;
  border-radius: 20px;
  background: #0c0c0f;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.card > a {
  display: block;
  overflow: hidden;
}

.card > a > img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.card > div {
  padding: 27px;
}

.card h3 {
  margin: 8px 0 10px;
  font-size: 22px;
}

.card p {
  min-height: 50px;
  margin-bottom: 22px;
}

.card section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.card strong {
  white-space: nowrap;
  font-size: 22px;
}

.materials {
  padding: 90px 6%;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 85px;
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
  background: #09090b;
}

.materials p {
  font-size: 17px;
}

.faq {
  max-width: 1000px;
}

.faq details {
  padding: 0;
  border-bottom: 1px solid #28282c;
}

.faq summary {
  position: relative;
  padding: 22px 45px 22px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 18px;
  color: #d8b96a;
  font-size: 25px;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  padding: 0 0 22px;
  color: #b4b4bd;
}

.notice {
  max-width: 1150px;
  margin: 0 auto 75px;
  padding: 18px 22px;
  border: 1px solid #2a2a2f;
  border-radius: 12px;
  background: #0b0b0e;
  color: #9999a4;
  font-size: 14px;
}


/* =========================
   PREMIUM PRODUCT PAGE
========================= */

.premium-product {
  width: min(1180px, 92%);
  margin: auto;
  padding: 48px 0 80px;
}


/* GALLERY */

.premium-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 18px;
  margin-bottom: 42px;
}

.premium-main-image {
  overflow: hidden;
  border: 1px solid #51472f;
  border-radius: 18px;
  background: #0b0b0d;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

.premium-main-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.premium-thumbs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.premium-thumbs button {
  padding: 0;
  overflow: hidden;
  border: 1px solid #51472f;
  border-radius: 14px;
  background: #0b0b0d;
  cursor: pointer;
}

.premium-thumbs button:hover {
  border-color: #d8b96a;
}

.premium-thumbs img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}


/* PRODUCT DETAILS */

.premium-details {
  max-width: 1180px;
}

.premium-brand {
  margin-bottom: 8px;
  color: #d8ad39;
  font-size: 17px;
  font-weight: 700;
}

.premium-details h1 {
  max-width: 900px;
  margin: 0 0 18px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.premium-price {
  margin: 0 0 18px;
  font-size: 40px;
  font-weight: 800;
}

.premium-description {
  max-width: 760px;
  margin-bottom: 24px;
  color: #bcbcc4;
  font-size: 18px;
  line-height: 1.65;
}


/* ADD TO CART */

.premium-cart-button {
  width: 100%;
  min-height: 62px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, #d7a927, #f0c84d);
  color: #080808;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.3px;
  cursor: pointer;
}

.premium-cart-button:hover {
  filter: brightness(1.06);
}


/* ORDER INFORMATION */

.premium-order-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 25px 0 45px;
  overflow: hidden;
  border: 1px solid #3b3934;
  border-radius: 16px;
  background: #0d0e10;
}

.order-info-item {
  padding: 25px 28px;
  text-align: center;
}

.order-info-item + .order-info-item {
  border-left: 1px solid #3b3934;
}

.order-icon {
  margin-bottom: 9px;
  color: #e0b53c;
  font-size: 27px;
}

.order-info-item strong {
  display: block;
  margin-bottom: 7px;
  color: #e2b944;
  font-size: 14px;
}

.order-info-item p {
  margin: 0;
  color: #c5c5cb;
  font-size: 14px;
  line-height: 1.5;
}


/* WHAT'S INCLUDED */

.premium-included {
  margin-top: 10px;
}

.premium-included h2 {
  margin-bottom: 24px;
  font-size: 38px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px 50px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e2e6;
  font-size: 17px;
}

.included-item span {
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d6aa32;
  color: #080808;
  font-size: 13px;
  font-weight: 900;
}


/* FEATURE STRIP */

.premium-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 45px;
  padding: 25px 0;
  border: 1px solid #343434;
  border-radius: 16px;
  background: #0d0e10;
}

.premium-features > div {
  padding: 5px 20px;
  text-align: center;
}

.premium-features span {
  display: block;
  margin-bottom: 9px;
  color: #dfb239;
  font-size: 29px;
}

.premium-features strong {
  display: block;
  color: #dfb239;
  font-size: 12px;
}

.premium-features p {
  margin: 6px 0 0;
  color: #bcbcc3;
  font-size: 13px;
}


/* =========================
   LEGACY PRODUCT PAGE SUPPORT
========================= */

.product {
  max-width: 1350px;
  margin: auto;
  padding: 60px 5%;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
}

.mainpic {
  height: 680px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #293651;
}

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

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow: auto;
}

.thumbs button {
  padding: 0;
  background: none;
  border: 1px solid #34405d;
  border-radius: 10px;
  overflow: hidden;
}

.thumbs img {
  width: 90px;
  height: 75px;
  object-fit: cover;
}

.copy h1 {
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
}

.price {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.copy li {
  margin: 9px 0;
  color: #c8cede;
}

.wide {
  width: 100%;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: #9aa5b9;
  margin: 0 0 14px;
}

.breadcrumbs a {
  color: #d8b96a;
}

.breadcrumbs span {
  padding: 0 6px;
  color: #6f7888;
}


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

.cart {
  max-width: 900px;
}

.cart h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.cartrow {
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid #28282c;
}

.cartrow img {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border-radius: 11px;
}

.cartrow h3 {
  margin: 0 0 5px;
}

.cartrow button {
  padding: 0;
  border: 0;
  background: none;
  color: #d8b96a;
  cursor: pointer;
}

#total {
  padding: 28px 0;
  text-align: right;
  font-size: 26px;
  font-weight: 800;
}


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

footer {
  padding: 38px 6% 44px;
  border-top: 1px solid #262626;
  background: #08080a;
  color: #9696a0;
  font-size: 14px;
  line-height: 2;
}

footer a {
  color: #c5c5cc !important;
}

footer a:hover {
  color: #fff !important;
}


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

@media (max-width: 850px) {

  header {
    position: relative;
    padding: 12px 16px 14px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand b {
    display: block;
    font-size: 19px;
  }

  nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    font-size: 11px;
  }

  nav a {
    padding: 10px 4px;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #292929;
    border-radius: 7px;
    background: #0d0d10;
  }

  .hero,
  .grid,
  .materials,
  .product {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 58px 20px 55px;
    gap: 40px;
  }

  .hero > img {
    height: auto;
    max-height: 500px;
    aspect-ratio: 4 / 5;
  }

  .wrap {
    padding: 70px 20px;
  }

  .card > a > img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .card section {
    flex-direction: column;
    align-items: stretch;
  }

  .card section .button {
    width: 100%;
  }

  .materials {
    padding: 70px 20px;
    gap: 24px;
  }

  .premium-gallery {
    grid-template-columns: 1fr;
  }

  .premium-main-image img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .premium-thumbs {
    flex-direction: row;
    overflow-x: auto;
  }

  .premium-thumbs button {
    flex: 0 0 90px;
  }

  .premium-thumbs img {
    height: 78px;
  }

  .premium-order-info {
    grid-template-columns: 1fr;
  }

  .order-info-item + .order-info-item {
    border-left: 0;
    border-top: 1px solid #3b3934;
  }

  .premium-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .product {
    padding: 30px 18px 65px;
  }

  .mainpic {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  footer {
    padding: 32px 20px 38px;
    text-align: center;
  }
}


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

@media (max-width: 550px) {

  nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-product {
    width: calc(100% - 32px);
    padding-top: 24px;
  }

  .premium-gallery {
    gap: 12px;
    margin-bottom: 32px;
  }

  .premium-main-image {
    border-radius: 14px;
  }

  .premium-details h1 {
    font-size: 40px;
  }

  .premium-price {
    font-size: 32px;
  }

  .premium-description {
    font-size: 16px;
  }

  .premium-cart-button {
    min-height: 58px;
    font-size: 14px;
  }

  .included-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .premium-included h2 {
    font-size: 32px;
  }

  .premium-features {
    grid-template-columns: 1fr 1fr;
  }

  .premium-features > div {
    padding: 18px 10px;
  }

  .hero {
    padding-top: 45px;
  }

  .button {
    width: 100%;
  }
}


/* ==================================================
   UNIQUECOILS FINAL HEADER + MOBILE REFINEMENT
   ================================================== */


/* ---------- HEADER BRAND ---------- */

header .brand{
  display:flex;
  align-items:center;
  gap:14px;
}

header .brand img{
  width:54px;
  height:54px;
  flex:0 0 54px;
  object-fit:cover;
  border-radius:50%;
  border:1px solid #404040;
  box-shadow:0 0 0 2px rgba(255,255,255,.03);
}

header .brand b{
  display:block;
  color:#fff;
  font-size:26px;
  font-weight:900;
  line-height:1;
  letter-spacing:1.4px;
}


/* ---------- DESKTOP HEADER ---------- */

@media(min-width:851px){

  header{
    min-height:88px;
    padding-top:12px;
    padding-bottom:12px;
  }

  header .brand img{
    width:52px;
    height:52px;
    flex-basis:52px;
  }

  header .brand b{
    font-size:27px;
  }

}


/* ==================================================
   MOBILE PRODUCT PAGE REFINEMENT
   ================================================== */

@media(max-width:850px){

  header{
    position:relative;
    padding:14px 18px 16px;
    gap:13px;
  }

  header .brand{
    width:100%;
    justify-content:center;
    gap:13px;
  }

  header .brand img{
    width:48px;
    height:48px;
    flex-basis:48px;
  }

  header .brand b{
    font-size:24px;
    letter-spacing:1.2px;
  }

  nav{
    width:100%;
    grid-template-columns:repeat(4,1fr);
    gap:7px;
  }

  nav a{
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:8px 4px;
    font-size:11px;
  }


  /* PRODUCT CONTAINER */

  .premium-product{
    width:calc(100% - 36px);
    padding-top:28px;
    padding-bottom:58px;
  }


  /* MAIN PRODUCT IMAGE */

  .premium-gallery{
    gap:12px;
    margin-bottom:32px;
  }

  .premium-main-image{
    border-radius:15px;
  }

  .premium-main-image img{
    width:100%;
    height:auto;
    aspect-ratio:1 / 1;
    object-fit:cover;
  }


  /* THUMBNAILS */

  .premium-thumbs{
    gap:8px;
    padding-bottom:2px;
  }

  .premium-thumbs button{
    flex:0 0 76px;
    border-radius:10px;
  }

  .premium-thumbs img{
    width:76px;
    height:68px;
    object-fit:cover;
  }


  /* PRODUCT NAME */

  .premium-brand{
    margin-bottom:9px;
    font-size:15px;
  }

  .premium-details h1{
    margin-bottom:20px;
    font-size:38px;
    line-height:1.04;
    letter-spacing:-1.5px;
  }

  .premium-price{
    margin-bottom:20px;
    font-size:31px;
  }

  .premium-description{
    margin-bottom:24px;
    font-size:16px;
    line-height:1.65;
  }


  /* ADD TO CART */

  .premium-cart-button{
    min-height:58px;
    border-radius:12px;
    font-size:14px;
  }


  /* SHIPPING / MADE TO ORDER / CHECKOUT */

  .premium-order-info{
    margin:22px 0 38px;
    border-radius:14px;
  }

  .order-info-item{
    padding:20px 18px;
  }

  .order-icon{
    margin-bottom:5px;
    font-size:22px;
  }

  .order-info-item strong{
    margin-bottom:5px;
    font-size:13px;
  }

  .order-info-item p{
    max-width:520px;
    margin:auto;
    font-size:13px;
    line-height:1.45;
  }


  /* WHAT'S INCLUDED */

  .premium-included h2{
    margin-bottom:22px;
    font-size:32px;
    line-height:1.05;
  }

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

  .included-item{
    align-items:flex-start;
    gap:10px;
    font-size:15px;
    line-height:1.45;
  }

  .included-item span{
    flex:0 0 22px;
    width:22px;
    height:22px;
    margin-top:1px;
  }


  /* FEATURE PANEL */

  .premium-features{
    margin-top:38px;
    padding:17px 8px;
    grid-template-columns:repeat(2,1fr);
    border-radius:14px;
  }

  .premium-features > div{
    padding:16px 9px;
  }

  .premium-features span{
    margin-bottom:7px;
    font-size:24px;
  }

  .premium-features strong{
    font-size:11px;
  }

  .premium-features p{
    margin-top:5px;
    font-size:12px;
    line-height:1.4;
  }


  /* FOOTER */

  footer{
    padding:30px 22px 34px;
    font-size:13px;
    line-height:1.9;
  }

}


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

@media(max-width:520px){

  header .brand img{
    width:44px;
    height:44px;
    flex-basis:44px;
  }

  header .brand b{
    font-size:22px;
  }

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

  nav a{
    min-height:46px;
    font-size:10px;
  }

  .premium-product{
    width:calc(100% - 30px);
  }

  .premium-details h1{
    font-size:35px;
  }

  .included-grid{
    gap:14px 16px;
  }

  .included-item{
    font-size:14px;
  }

}


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

@media(max-width:390px){

  header .brand b{
    font-size:20px;
  }

  nav{
    grid-template-columns:repeat(2,1fr);
  }

  .premium-details h1{
    font-size:32px;
  }

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

}


/* ==================================================
   UNIQUECOILS TEXT-ONLY HEADER
   ================================================== */

header{
  min-height:104px;
  padding-top:20px;
  padding-bottom:20px;
}

header .brand{
  display:flex;
  align-items:center;
}

header .brand b{
  display:block;
  color:#ffffff;
  font-size:34px;
  font-weight:900;
  line-height:1;
  letter-spacing:2.5px;
}


/* Homepage brand artwork */

.hero > img{
  object-fit:contain;
  background:#050608;
  padding:0;
  border-color:#353535;
}


/* MOBILE */

@media(max-width:850px){

  header{
    padding:24px 18px 16px;
  }

  header .brand{
    width:100%;
    justify-content:center;
  }

  header .brand b{
    font-size:31px;
    letter-spacing:2.2px;
  }

  .hero > img{
    width:100%;
    height:auto;
    aspect-ratio:auto;
    object-fit:contain;
    border-radius:16px;
  }

}

@media(max-width:430px){

  header .brand b{
    font-size:28px;
    letter-spacing:1.8px;
  }

}

/* ==================================================
   HOMEPAGE HERO ARTWORK — DESKTOP ONLY
   Remove oversized image container
   Mobile remains unchanged
   ================================================== */

@media(min-width:851px){

  .hero > img{
    width:100%;
    height:auto;
    aspect-ratio:auto;
    object-fit:contain;

    border:none;
    border-radius:18px;
    background:transparent;
    padding:0;

    align-self:center;
  }

}

/* =========================================================
   UNIQUECOILS MOBILE HOMEPAGE — FINAL LAYOUT
   ========================================================= */

@media (max-width:800px){

  /* ---------- HEADER ---------- */

  header{
    display:block;
    height:auto;
    min-height:0;
    padding:24px 24px 18px;
    background:#050608;
    border-bottom:1px solid #252525;
  }

  header .brand{
    display:block;
    margin:0 0 18px 4px;
    padding:0;
  }

  header .brand img{
    display:none !important;
  }

  header .brand b{
    display:block !important;
    margin:0;
    color:#ffffff;
    font-size:34px;
    font-weight:900;
    line-height:1;
    letter-spacing:2px;
  }


  /* ---------- NAVIGATION ---------- */

  header nav{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    width:100%;
    gap:8px;
    margin:0;
  }

  header nav a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:0;
    min-height:58px;
    padding:10px 4px;

    background:#0b0b0f;
    border:1px solid #292932;
    border-radius:8px;

    color:#dddde3;
    font-size:12px;
    font-weight:800;
    line-height:1;
    white-space:nowrap;
  }

  header .cart-count{
    margin-left:4px;
  }


  /* ---------- HOMEPAGE HERO ---------- */

  .hero{
    display:flex !important;
    flex-direction:column !important;

    min-height:0;
    padding:10px 24px 48px !important;
    gap:0 !important;

    background:
      radial-gradient(
        circle at 70% 55%,
        rgba(201,169,87,.09),
        transparent 38%
      );
  }


  /* Banner image ABOVE Frequency wellness */

  .hero > img{
    order:1;

    display:block;
    width:100%;
    height:auto !important;
    aspect-ratio:auto !important;

    margin:0 0 42px;
    padding:0;

    object-fit:contain !important;

    border:0 !important;
    border-radius:16px;

    background:transparent !important;
  }


  /* Hero wording BELOW image */

  .hero > div{
    order:2;
    width:100%;
  }

  .hero small{
    display:block;

    margin:0 0 14px;

    color:#d8b45b;

    font-size:16px;
    font-weight:800;
    line-height:1.3;
    letter-spacing:1.5px;
  }

  .hero h1{
    margin:0 0 28px;

    color:#ffffff;

    font-size:clamp(42px,11vw,58px);
    font-weight:900;
    line-height:.98;
    letter-spacing:-1.8px;
  }

  .hero h1 em{
    display:block;

    margin-top:4px;

    color:#d8b45b;

    font-style:normal;
  }

  .hero p{
    max-width:720px;

    margin:0 0 30px;

    color:#bfc0c7;

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


  /* ---------- SHOP BUTTON ---------- */

  .hero .button{
    display:inline-flex;

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

    min-height:58px;

    padding:0 28px;

    background:#d8b45b;
    border:1px solid #d8b45b;
    border-radius:10px;

    color:#090909;

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


  /* ---------- COLLECTION ---------- */

  #shop{
    padding:38px 24px 65px;

    border-top:1px solid #242424;
  }

  #shop > small{
    display:block;

    margin-bottom:10px;

    color:#d8b45b;

    font-size:16px;
    font-weight:800;
    letter-spacing:1.5px;
  }

  #shop > h2{
    margin:0 0 8px;

    color:#ffffff;

    font-size:36px;
    font-weight:900;
    line-height:1.1;
  }

  #shop > .muted{
    margin-top:0;

    color:#999ca5;
  }

}


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

@media (max-width:430px){

  header{
    padding-left:20px;
    padding-right:20px;
  }

  header .brand{
    margin-left:2px;
  }

  header .brand b{
    font-size:30px;
    font-weight:900;
    letter-spacing:1.7px;
  }

  header nav{
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:6px;
  }

  header nav a{
    min-height:56px;

    padding-left:2px;
    padding-right:2px;

    font-size:11px;
  }

  .hero{
    padding-left:20px !important;
    padding-right:20px !important;
  }

  .hero > img{
    margin-bottom:38px;
  }

  .hero small{
    font-size:14px;
  }

  .hero h1{
    font-size:43px;
    font-weight:900;
  }

  .hero p{
    font-size:17px;
  }

  #shop{
    padding-left:20px;
    padding-right:20px;
  }

}
/* =========================================================
   UNIQUECOILS PREMIUM CART
   ========================================================= */

.premium-cart-page{
  width:min(980px,92%);
  margin:auto;
  padding:70px 0 90px;
}

.premium-cart-heading{
  margin-bottom:35px;
}

.premium-cart-heading small{
  display:block;
  margin-bottom:8px;
  color:#d8b45b;
  font-weight:800;
  letter-spacing:1.5px;
}

.premium-cart-heading h1{
  margin:0 0 12px;
  font-size:clamp(3rem,6vw,5rem);
  line-height:1;
}

.premium-cart-heading p{
  margin:0;
  color:#a9a9b2;
  font-size:17px;
}


/* CART ITEMS */

.premium-cart-panel{
  overflow:hidden;
  margin-bottom:24px;
  padding:0 26px;
  border:1px solid #303034;
  border-radius:18px;
  background:#0c0c0f;
}

.premium-cart-panel .cartrow{
  grid-template-columns:105px minmax(0,1fr) auto;
  gap:22px;
  padding:24px 0;
  border-bottom:1px solid #29292d;
}

.premium-cart-panel .cartrow img{
  width:105px;
  height:105px;
  border-radius:13px;
}

.premium-cart-panel .cartrow h3{
  margin:0 0 7px;
  color:#fff;
  font-size:20px;
}

.premium-cart-panel .cartrow button{
  color:#d8b45b;
  font-weight:700;
}


/* TOTAL */

.premium-cart-total{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:25px 0;
}

.premium-cart-total > span{
  color:#bcbcc3;
  font-size:17px;
  font-weight:700;
}

.premium-cart-total #total{
  padding:0;
  text-align:right;
  color:#fff;
  font-size:29px;
  font-weight:900;
}


/* BENEFITS */

.premium-cart-benefits{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  overflow:hidden;
  margin:0 0 24px;
  border:1px solid #3b3934;
  border-radius:16px;
  background:#0d0e10;
}

.premium-cart-benefits > div{
  padding:25px 22px;
  text-align:center;
}

.premium-cart-benefits > div + div{
  border-left:1px solid #3b3934;
}

.cart-benefit-icon{
  display:block;
  margin-bottom:7px;
  color:#e0b53c;
  font-size:26px;
}

.premium-cart-benefits strong{
  display:block;
  margin-bottom:7px;
  color:#e0b53c;
  font-size:13px;
  letter-spacing:.4px;
}

.premium-cart-benefits p{
  margin:0;
  color:#bdbdc5;
  font-size:13px;
  line-height:1.55;
}


/* CHECKOUT */

.premium-checkout-button{
  width:100%;
  min-height:64px;
  padding:14px 25px;
  border:0;
  border-radius:14px;
  background:linear-gradient(90deg,#d7a927,#f0c84d);
  color:#080808;
  font-size:15px;
  font-weight:900;
  letter-spacing:.4px;
  cursor:pointer;
}

.premium-checkout-button:hover{
  filter:brightness(1.06);
}


/* STRIPE NOTE */

.premium-stripe-note{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-top:18px;
  padding:17px 19px;
  border:1px solid #28282c;
  border-radius:12px;
  background:#09090b;
}

.premium-stripe-note span{
  color:#d8b45b;
  font-size:20px;
  line-height:1.25;
}

.premium-stripe-note p{
  margin:0;
  color:#9696a0;
  font-size:13px;
  line-height:1.55;
}

.continue-shopping{
  display:inline-block;
  margin-top:26px;
  color:#d8b45b;
  font-size:13px;
  font-weight:800;
  letter-spacing:.5px;
}


/* MOBILE */

@media(max-width:800px){

  .premium-cart-page{
    width:calc(100% - 36px);
    padding:45px 0 65px;
  }

  .premium-cart-heading{
    margin-bottom:26px;
  }

  .premium-cart-heading h1{
    font-size:42px;
  }

  .premium-cart-heading p{
    font-size:15px;
  }

  .premium-cart-panel{
    padding:0 18px;
    border-radius:15px;
  }

  .premium-cart-panel .cartrow{
    grid-template-columns:82px minmax(0,1fr);
    gap:15px;
    padding:20px 0;
  }

  .premium-cart-panel .cartrow img{
    width:82px;
    height:82px;
  }

  .premium-cart-panel .cartrow h3{
    font-size:17px;
  }

  .premium-cart-total{
    padding:22px 0;
  }

  .premium-cart-total #total{
    font-size:25px;
  }

  .premium-cart-benefits{
    grid-template-columns:1fr;
  }

  .premium-cart-benefits > div{
    padding:20px 18px;
  }

  .premium-cart-benefits > div + div{
    border-left:0;
    border-top:1px solid #3b3934;
  }

  .premium-checkout-button{
    min-height:60px;
    font-size:14px;
  }

}


@media(max-width:430px){

  .premium-cart-page{
    width:calc(100% - 30px);
  }

  .premium-cart-heading h1{
    font-size:38px;
  }

  .premium-cart-total{
    align-items:flex-start;
    flex-direction:column;
    gap:5px;
  }

  .premium-cart-total #total{
    text-align:left;
  }

}
/* =========================================================
   UNIQUECOILS EMPTY CART
   ========================================================= */

.empty-cart{
  padding:48px 25px 52px;
  text-align:center;
}

.empty-cart h2{
  margin:0 0 10px;
  color:#ffffff;
  font-size:30px;
  line-height:1.1;
}

.empty-cart p{
  max-width:540px;
  margin:0 auto 27px;
  color:#a9a9b2;
  font-size:15px;
  line-height:1.6;
}

.empty-cart-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:54px;
  padding:0 30px;

  background:linear-gradient(90deg,#d7a927,#f0c84d);
  border-radius:11px;

  color:#080808;

  font-size:14px;
  font-weight:900;
  letter-spacing:.4px;
}

.empty-cart-button:hover{
  filter:brightness(1.06);
}

@media(max-width:800px){

  .empty-cart{
    padding:40px 15px 44px;
  }

  .empty-cart h2{
    font-size:27px;
  }

  .empty-cart-button{
    width:100%;
  }

}

/* =========================================================
   PRODUCT SECTION STYLE REFINEMENT
   Keeps current section order
   ========================================================= */

/* ---------- FEATURE STRIP ---------- */

.premium-features{
  margin-top:28px;
  padding:18px 0;

  border:1px solid #343434;
  border-radius:14px;

  background:#0d0e10;
}

.premium-features > div{
  padding:6px 18px;
}

.premium-features span{
  margin-bottom:6px;
  font-size:24px;
}

.premium-features strong{
  font-size:11px;
  letter-spacing:.3px;
}

.premium-features p{
  margin-top:4px;
  font-size:12px;
  line-height:1.35;
}


/* ---------- WHAT'S INCLUDED ---------- */

.premium-included{
  margin-top:24px;
}

.premium-included h2{
  margin:0 0 18px;
  font-size:34px;
}

.included-grid{
  gap:13px 40px;
}

.included-item{
  gap:10px;
  font-size:15px;
}

.included-item span{
  flex:0 0 21px;
  width:21px;
  height:21px;
  font-size:12px;
}


/* ---------- SHIPPING / MADE TO ORDER / CHECKOUT ---------- */

.premium-order-info{
  margin:28px 0 0;

  border:1px solid #3b3934;
  border-radius:14px;

  background:#0d0e10;
}

.order-info-item{
  padding:20px 20px;
}

.order-icon{
  margin-bottom:6px;
  font-size:22px;
}

.order-info-item strong{
  margin-bottom:5px;
  font-size:12px;
}

.order-info-item p{
  font-size:13px;
  line-height:1.45;
}


/* ---------- MOBILE ---------- */

@media(max-width:800px){

  .premium-features{
    margin-top:22px;
    padding:14px 6px;
    border-radius:13px;
  }

  .premium-features > div{
    padding:13px 7px;
  }

  .premium-features span{
    font-size:21px;
  }

  .premium-features strong{
    font-size:10px;
  }

  .premium-features p{
    font-size:11px;
  }

  .premium-included{
    margin-top:22px;
  }

  .premium-included h2{
    font-size:30px;
    margin-bottom:16px;
  }

  .included-grid{
    gap:12px 18px;
  }

  .included-item{
    font-size:14px;
  }

  .premium-order-info{
    margin-top:24px;
  }

  .order-info-item{
    padding:17px 16px;
  }

  .order-icon{
    font-size:20px;
  }

  .order-info-item strong{
    font-size:12px;
  }

  .order-info-item p{
    font-size:12px;
  }

}



/* =========================================================
   PRODUCT BACK BUTTON
   ========================================================= */

.product-back-button{
  grid-column:1 / -1;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;

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

  margin:0 0 20px;
  padding:0 17px;

  border:1px solid #34343b;
  border-radius:9px;

  background:#0d0e12;
  color:#ffffff;

  font-size:12px;
  line-height:1;
  font-weight:800;
  letter-spacing:.7px;

  text-decoration:none;

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

.product-back-button span{
  color:#d8b45b;
  font-size:19px;
  line-height:1;
}

.product-back-button:hover{
  background:#15161b;
  border-color:#d8b45b;
  transform:translateX(-2px);
}


/* MOBILE */

@media(max-width:800px){

  .product-back-button{
    margin:0 0 16px;
    min-height:44px;
    padding:0 16px;

    font-size:12px;
  }

  .product-back-button span{
    font-size:20px;
  }

}

/* =========================================================
   UNIQUECOILS PREMIUM POLICY PAGES
   ========================================================= */

.policy-page{
  width:min(100% - 48px,1050px);
  margin:0 auto;
  padding:75px 0 90px;
}

.policy-page > small{
  display:block;
  margin-bottom:10px;

  color:#d8b45b;

  font-size:13px;
  font-weight:900;
  letter-spacing:1.8px;
}

.policy-page > h1{
  max-width:900px;

  margin:0 0 18px;

  color:#ffffff;

  font-size:clamp(42px,6vw,70px);
  line-height:1;
  font-weight:900;
  letter-spacing:-2px;
}

.policy-page > .muted{
  max-width:760px;

  margin:0;

  color:#a8a9b0;

  font-size:17px;
  line-height:1.7;
}


/* =========================================================
   POLICY CONTENT CARD
   ========================================================= */

.policy-content{
  margin-top:38px;
  padding:12px 42px 36px;

  background:
    linear-gradient(
      145deg,
      rgba(18,18,21,.98),
      rgba(9,9,11,.98)
    );

  border:1px solid #323238;
  border-radius:20px;

  box-shadow:
    0 18px 50px rgba(0,0,0,.20);
}


/* Section headings */

.policy-content h2{
  position:relative;

  margin:0;
  padding:34px 0 12px;

  color:#ffffff;

  font-size:25px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:-.4px;
}

.policy-content h2:not(:first-child){
  margin-top:12px;
  border-top:1px solid #29292e;
}

.policy-content h2::after{
  content:"";

  display:block;

  width:42px;
  height:2px;

  margin-top:11px;

  background:#d8b45b;
  border-radius:10px;
}


/* Paragraphs */

.policy-content p{
  max-width:900px;

  margin:8px 0 15px;

  color:#b9bac1;

  font-size:15px;
  line-height:1.75;
}

.policy-content strong{
  color:#f3f3f4;
  font-weight:800;
}


/* Lists */

.policy-content ul{
  margin:10px 0 20px;
  padding:0;

  list-style:none;
}

.policy-content li{
  position:relative;

  margin:8px 0;
  padding-left:25px;

  color:#b9bac1;

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

.policy-content li::before{
  content:"✓";

  position:absolute;
  left:0;
  top:0;

  color:#d8b45b;
  font-weight:900;
}


/* =========================================================
   BACK BUTTON
   ========================================================= */

.policy-back-wrap{
  margin-top:30px;
}

.policy-back-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;

  min-height:48px;
  padding:0 20px;

  background:#0d0e12;

  border:1px solid #37373e;
  border-radius:10px;

  color:#ffffff;

  font-size:12px;
  font-weight:900;
  letter-spacing:.7px;

  text-decoration:none;

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

.policy-back-button span{
  color:#d8b45b;

  font-size:20px;
  line-height:1;
}

.policy-back-button:hover{
  background:#15161a;
  border-color:#d8b45b;
  transform:translateX(-2px);
}


/* =========================================================
   POLICY FOOTER LINKS
   ========================================================= */

.policy-page + footer a{
  color:#aeb8cc;
  text-decoration:none;
}

.policy-page + footer a:hover{
  color:#d8b45b;
}


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

@media(max-width:800px){

  .policy-page{
    width:calc(100% - 40px);

    padding:48px 0 65px;
  }

  .policy-page > small{
    font-size:12px;
  }

  .policy-page > h1{
    margin-bottom:15px;

    font-size:42px;
    line-height:1.03;
    letter-spacing:-1.4px;
  }

  .policy-page > .muted{
    font-size:15px;
    line-height:1.65;
  }

  .policy-content{
    margin-top:28px;

    padding:4px 21px 28px;

    border-radius:16px;
  }

  .policy-content h2{
    padding-top:27px;

    font-size:22px;
  }

  .policy-content h2:not(:first-child){
    margin-top:8px;
  }

  .policy-content p{
    font-size:14px;
    line-height:1.7;
  }

  .policy-content li{
    font-size:14px;
    line-height:1.55;
  }

  .policy-back-wrap{
    margin-top:24px;
  }

  .policy-back-button{
    width:100%;
    min-height:52px;
  }

}


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

@media(max-width:430px){

  .policy-page{
    width:calc(100% - 32px);
  }

  .policy-page > h1{
    font-size:37px;
  }

  .policy-content{
    padding-left:18px;
    padding-right:18px;
  }

}

/* =========================================================
   POLICY SECTION TITLE UNDERLINES — FULL WIDTH
   ========================================================= */

.policy-content h2{
  display:inline-block;
  width:auto;
  max-width:100%;
  padding-bottom:10px;
  border-bottom:2px solid #d8b45b;
}

.policy-content h2::after{
  display:none !important;
  content:none !important;
}

/* =========================================================
   HOMEPAGE BUY NOW BUTTONS
   ========================================================= */

.card section{
  align-items:center;
}

.card-actions{
  display:flex;
  align-items:center;
  gap:9px;
}

.card-actions .button,
.card-actions button{
  min-height:44px;
  padding:11px 16px;
  white-space:nowrap;
}

.buy-now-button{
  appearance:none;
  -webkit-appearance:none;

  border:1px solid #d8b45b;

  background:#d8b45b;
  color:#080808;

  font-family:inherit;
  font-size:12px;
  font-weight:900;
  letter-spacing:.35px;

  cursor:pointer;
}

.buy-now-button:hover{
  background:#e6c56c;
}


/* MOBILE */

@media(max-width:800px){

  .card section{
    align-items:stretch;
  }

  .card-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
    gap:8px;
  }

  .card-actions .button,
  .card-actions button{
    width:100%;
    min-height:48px;
    padding:10px 8px;

    font-size:11px;
  }

}


/* VERY SMALL PHONES */

@media(max-width:390px){

  .card-actions{
    grid-template-columns:1fr;
  }

}

/* ===== SHOW FULL PRODUCT IMAGES IN SHOP LISTINGS ===== */

.card > a {
  display: block;
  background: #050608;
}

.card > a > img {
  width: 100% !important;
  height: 430px !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #050608 !important;
}


/* ===== PRODUCT CARD HIGHLIGHT BORDER ===== */
.card {
  border: 1px solid rgba(255,255,255,0.35) !important;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 8px 28px rgba(0,0,0,0.45);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.card:hover {
  border-color: rgba(255,255,255,0.8) !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10),
    0 12px 36px rgba(0,0,0,0.55);
  transform: translateY(-3px);
}


/* ===== FULL-WIDTH PRODUCT PHOTOS - NO SIDE GAPS ===== */
.card > a {
  display: block !important;
  width: 100% !important;
  background: #000 !important;
}

.card > a > img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #000 !important;
}


/* ===== PRODUCT PAGE IMAGE FIX ===== */

.premium-main-image {
  background: #000 !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
}

.premium-main-image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #000 !important;
}

.premium-thumbs button {
  background: #000 !important;
  border: 1px solid rgba(255,255,255,0.30) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

.premium-thumbs img {
  display: block !important;
  width: 100% !important;
  height: 112px !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #000 !important;
}

/* MOBILE PRODUCT IMAGES */
@media(max-width:850px) {
  .premium-main-image img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
  }

  .premium-thumbs img {
    width: 76px !important;
    height: 68px !important;
    object-fit: contain !important;
    background: #000 !important;
  }
}


/* ===== MOBILE SHOP CARD IMAGE WIDTH FIX ===== */
@media(max-width:850px) {
  .card > a {
    width:100% !important;
    background:#000 !important;
    overflow:hidden !important;
  }

  .card > a > img {
    width:100% !important;
    height:420px !important;
    object-fit:contain !important;
    object-position:center center !important;
    background:#000 !important;
  }
}


/* ===== FINAL MOBILE SHOP IMAGE FIX ===== */
@media(max-width:850px) {

  .card > a {
    display:block !important;
    width:100% !important;
    overflow:hidden !important;
    background:#000 !important;
  }

  /* Restore natural full-width sizing on mobile */
  .card > a > img {
    display:block !important;
    width:100% !important;
    height:auto !important;
    max-height:none !important;
    object-fit:initial !important;
    margin:0 !important;
    background:#000 !important;
  }

  /* Multicolor pendant has extra dark space baked into its photo.
     Slightly enlarge it on MOBILE ONLY to remove the side gaps. */
  .card > a > img[src*="pendant-multicolor-studio"] {
    width:124% !important;
    max-width:none !important;
    margin-left:-12% !important;
    margin-right:-12% !important;
  }

}


/* ===== MOBILE IMAGE PROPORTION FIX ===== */
@media(max-width:850px) {

  /* Normal cards: keep natural proportions */
  .card > a > img {
    width:100% !important;
    height:auto !important;
    max-width:100% !important;
    margin:0 !important;
    object-fit:contain !important;
  }

  /* Multicolor pendant only:
     fill the card without stretching the product */
  .card > a > img[src*="pendant-multicolor-studio"] {
    width:100% !important;
    height:520px !important;
    max-width:100% !important;
    margin:0 !important;
    object-fit:cover !important;
    object-position:center center !important;
  }

}

/* =========================================================
   FINAL DESKTOP PRODUCT CARD ALIGNMENT
   Keeps all product cards perfectly even
   ========================================================= */

@media(min-width:851px){

  .grid{
    align-items:stretch !important;
  }

  .card{
    display:flex !important;
    flex-direction:column !important;
    height:100% !important;
  }

  /* SAME IMAGE AREA HEIGHT ON EVERY CARD */
  .card > a{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:100% !important;
    height:430px !important;
    overflow:hidden !important;
    background:#000 !important;
    flex-shrink:0 !important;
  }

  .card > a > img{
    display:block !important;
    width:100% !important;
    height:100% !important;
    max-height:430px !important;
    object-fit:contain !important;
    object-position:center center !important;
    margin:0 !important;
    background:#000 !important;
  }

  /* SAME LOWER CONTENT AREA */
  .card > div{
    display:flex !important;
    flex-direction:column !important;
    flex:1 !important;
    min-height:255px !important;
    padding:27px !important;
  }

  .card h3{
    margin-top:8px !important;
  }

  /* PUSH PRICE + BUTTONS TO SAME BOTTOM POSITION */
  .card section{
    margin-top:auto !important;
    width:100% !important;
  }

}

/* ===== FINAL DESKTOP PENDANT IMAGE FILL FIX ===== */
@media(min-width:851px){

  /* Green pendant */
  .card > a > img[src*="pendant-green-worn"]{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
  }

  /* Multicolor pendant */
  .card > a > img[src*="pendant-multicolor-studio"]{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
  }

}

/* ===== FINAL DESKTOP PENDANT IMAGE FIX ===== */
@media(min-width:851px){

  .card > a{
    height:430px !important;
    background:#000 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    overflow:hidden !important;
  }

  .card > a > img[src*="pendant-green-worn"],
  .card > a > img[src*="pendant-multicolor-studio"]{
    width:100% !important;
    height:100% !important;
    object-fit:contain !important;
    object-position:center center !important;
    background:#000 !important;
  }

}

/* =========================================================
   MOBILE PENDANT RESTORE
   Desktop keeps V7/V8; mobile uses original photos
   ========================================================= */

.shop-product-picture{
  display:block;
  width:100%;
  height:100%;
}

.shop-product-picture > img{
  display:block;
  width:100%;
  height:100%;
}

@media(max-width:850px){

  .card > a{
    width:100% !important;
    height:auto !important;
    overflow:hidden !important;
  }

  .shop-product-picture{
    display:block !important;
    width:100% !important;
    height:auto !important;
  }

  .shop-product-picture > img{
    display:block !important;
    width:100% !important;
    height:auto !important;
    max-width:100% !important;
    object-fit:contain !important;
  }

  /* Multicolor: fill the mobile card like the earlier layout */
  .card > a[href*="multicolor-pemf-pendant"]{
    height:520px !important;
  }

  .card > a[href*="multicolor-pemf-pendant"] .shop-product-picture,
  .card > a[href*="multicolor-pemf-pendant"] .shop-product-picture > img{
    width:100% !important;
    height:100% !important;
  }

  .card > a[href*="multicolor-pemf-pendant"] .shop-product-picture > img{
    object-fit:cover !important;
    object-position:center center !important;
  }
}


/* =========================================================
   DESKTOP ONLY — FILL PRODUCT IMAGE GAPS
   Mobile stays untouched
   ========================================================= */

@media(min-width:851px){

  .card > a{
    height:430px !important;
    overflow:hidden !important;
    background:#000 !important;
  }

  .card > a .shop-product-picture{
    display:block !important;
    width:100% !important;
    height:100% !important;
  }

  .card > a .shop-product-picture > img{
    display:block !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
  }

}


/* =========================================================
   BUY ME A COFFEE — TIGHTER MOBILE IMAGE
   Only affects the coffee listing
   ========================================================= */

@media(max-width:850px){

  .card > a:has(img[src*="buy-me-a-coffee"]){
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;
    background:#000 !important;
  }

  .card > a > img[src*="buy-me-a-coffee"]{
    display:block !important;
    width:100% !important;
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;
    object-fit:contain !important;
    margin:0 !important;
  }

}


/* =========================================================
   BUY ME A COFFEE MOBILE — REMOVE EXTRA BLACK SPACE
   ========================================================= */
@media(max-width:850px){

  a[href="/products/buy-me-a-coffee.html"]{
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;
    aspect-ratio:auto !important;
    display:block !important;
    overflow:hidden !important;
    background:#000 !important;
  }

  a[href="/products/buy-me-a-coffee.html"] img{
    display:block !important;
    width:100% !important;
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;
    aspect-ratio:auto !important;
    object-fit:contain !important;
    margin:0 !important;
    padding:0 !important;
  }

}

/* =========================================================
   BUY ME A COFFEE — EXTRA COMPACT MOBILE CARD
   ========================================================= */

@media(max-width:850px){

  /* Entire donation card */
  .card:has(a[href="/products/buy-me-a-coffee.html"]){
    width:92% !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  /* Shorter yellow image */
  .card > a[href="/products/buy-me-a-coffee.html"]{
    height:250px !important;
    min-height:0 !important;
    max-height:250px !important;
    overflow:hidden !important;
  }

  .card > a[href="/products/buy-me-a-coffee.html"] img{
    width:100% !important;
    height:250px !important;
    object-fit:cover !important;
    object-position:center center !important;
  }

  /* Tighter text area */
  .card:has(a[href="/products/buy-me-a-coffee.html"]) > div{
    padding:18px 20px !important;
    min-height:0 !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) small{
    margin-bottom:6px !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) h3{
    margin:4px 0 6px !important;
    font-size:22px !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) p{
    margin:0 0 14px !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) section{
    margin-top:8px !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) strong{
    font-size:24px !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) .card-actions{
    margin-top:12px !important;
  }

}

/* =========================================================
   BUY ME A COFFEE — FINAL SMALL MOBILE DONATION CARD
   ========================================================= */

@media(max-width:850px){

  .card:has(a[href="/products/buy-me-a-coffee.html"]){
    width:88% !important;
    max-width:88% !important;
    margin:24px auto !important;
  }

  .card > a[href="/products/buy-me-a-coffee.html"]{
    height:190px !important;
    min-height:190px !important;
    max-height:190px !important;
    overflow:hidden !important;
  }

  .card > a[href="/products/buy-me-a-coffee.html"] img{
    width:100% !important;
    height:190px !important;
    min-height:190px !important;
    max-height:190px !important;
    object-fit:cover !important;
    object-position:center center !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) > div{
    padding:14px 18px 16px !important;
    min-height:0 !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) small{
    margin:0 0 3px !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) h3{
    font-size:20px !important;
    margin:3px 0 4px !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) p{
    margin:0 0 8px !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) section{
    margin:4px 0 0 !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) strong{
    font-size:22px !important;
    margin:0 !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) .card-actions{
    margin-top:8px !important;
    gap:8px !important;
  }

}


/* =========================================================
   BUY ME A COFFEE — SHORT MOBILE CARD
   Full width, much less HEIGHT
   ========================================================= */

@media(max-width:850px){

  /* Restore normal card width */
  .card:has(a[href="/products/buy-me-a-coffee.html"]){
    width:100% !important;
    max-width:100% !important;
    margin:20px 0 !important;
    min-height:0 !important;
    height:auto !important;
  }

  /* Make yellow image much shorter */
  .card > a[href="/products/buy-me-a-coffee.html"]{
    height:145px !important;
    min-height:145px !important;
    max-height:145px !important;
    overflow:hidden !important;
  }

  .card > a[href="/products/buy-me-a-coffee.html"] img{
    display:block !important;
    width:100% !important;
    height:145px !important;
    min-height:145px !important;
    max-height:145px !important;
    object-fit:cover !important;
    object-position:center center !important;
    margin:0 !important;
  }

  /* Remove the tall flex behavior from the lower section */
  .card:has(a[href="/products/buy-me-a-coffee.html"]) > div{
    display:block !important;
    flex:none !important;
    min-height:0 !important;
    height:auto !important;
    padding:12px 18px 14px !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) small{
    display:block !important;
    margin:0 0 2px !important;
    line-height:1.15 !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) h3{
    font-size:20px !important;
    line-height:1.15 !important;
    margin:3px 0 4px !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) p{
    line-height:1.25 !important;
    margin:0 0 10px !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) section{
    display:block !important;
    width:100% !important;
    margin:0 !important;
    padding:0 !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) strong{
    display:block !important;
    font-size:22px !important;
    line-height:1 !important;
    margin:0 0 10px !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) .card-actions{
    margin:0 !important;
    gap:8px !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) .card-actions .button,
  .card:has(a[href="/products/buy-me-a-coffee.html"]) .card-actions button{
    min-height:42px !important;
    height:42px !important;
    padding:7px 8px !important;
  }

}

/* =========================================================
   BUY ME A COFFEE — COMPACT DESKTOP CARD
   Desktop only
   ========================================================= */

@media(min-width:851px){

  .card:has(a[href="/products/buy-me-a-coffee.html"]){
    height:auto !important;
    min-height:0 !important;
  }

  .card > a[href="/products/buy-me-a-coffee.html"]{
    height:190px !important;
    min-height:190px !important;
    max-height:190px !important;
    overflow:hidden !important;
  }

  .card > a[href="/products/buy-me-a-coffee.html"] img{
    display:block !important;
    width:100% !important;
    height:190px !important;
    min-height:190px !important;
    max-height:190px !important;
    object-fit:cover !important;
    object-position:center center !important;
    margin:0 !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) > div{
    display:block !important;
    flex:none !important;
    min-height:0 !important;
    height:auto !important;
    padding:16px 20px 18px !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) small{
    display:block !important;
    margin:0 0 3px !important;
    line-height:1.15 !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) h3{
    margin:4px 0 5px !important;
    line-height:1.15 !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) p{
    margin:0 0 12px !important;
    line-height:1.3 !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) section{
    display:block !important;
    width:100% !important;
    margin:0 !important;
    padding:0 !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) strong{
    display:block !important;
    margin:0 0 12px !important;
  }

  .card:has(a[href="/products/buy-me-a-coffee.html"]) .card-actions{
    margin:0 !important;
    gap:9px !important;
  }

}

/* =========================================================
   DESKTOP REAL PRODUCT CARDS — SMALLER / TIGHTER
   Does NOT affect mobile or Buy Me a Coffee
   ========================================================= */

@media(min-width:851px){

  /* Only the first 4 real product cards */
  .products-grid .card:nth-child(-n+4){
    max-width:500px !important;
    width:100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  /* Reduce desktop product image height */
  .products-grid .card:nth-child(-n+4) > a{
    height:350px !important;
    min-height:350px !important;
    max-height:350px !important;
  }

  .products-grid .card:nth-child(-n+4) > a > img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
  }

  /* Tighten information section slightly */
  .products-grid .card:nth-child(-n+4) > div{
    padding-top:18px !important;
    padding-bottom:18px !important;
  }

}


/* =========================================================
   FINAL DESKTOP PRODUCT CARD SIZE
   First 4 real products only
   ========================================================= */

@media(min-width:851px){

  /* Make the 2-column desktop grid narrower */
  .grid{
    grid-template-columns:420px 420px !important;
    justify-content:center !important;
    gap:24px !important;
  }

  /* First four cards = actual products */
  .grid > .card:nth-of-type(-n+4){
    width:420px !important;
    max-width:420px !important;
    height:auto !important;
  }

  /* Shorter image section */
  .grid > .card:nth-of-type(-n+4) > a{
    width:100% !important;
    height:320px !important;
    min-height:320px !important;
    max-height:320px !important;
    overflow:hidden !important;
  }

  /* Direct Blue / Gold images */
  .grid > .card:nth-of-type(-n+4) > a > img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center !important;
  }

  /* Green / Multicolor picture wrapper */
  .grid > .card:nth-of-type(-n+4) .shop-product-picture{
    width:100% !important;
    height:100% !important;
  }

  .grid > .card:nth-of-type(-n+4) .shop-product-picture > img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center !important;
  }

  /* Compact product information */
  .grid > .card:nth-of-type(-n+4) > div{
    min-height:220px !important;
    padding:18px 20px !important;
  }

}

/* =========================================================
   DESKTOP BLUE + GOLD COILS — SHOW FULL IMAGE
   Keep smaller card size, remove cropping
   ========================================================= */

@media(min-width:851px){

  .grid > .card img[src*="coil-blue"],
  .grid > .card img[src*="coil-gold"]{
    width:100% !important;
    height:100% !important;
    object-fit:contain !important;
    object-position:center center !important;
    background:#000 !important;
  }

}

/* =========================================================
   FINAL DESKTOP BLUE + GOLD IMAGE FIX
   Full image visible inside smaller cards
   ========================================================= */

@media(min-width:851px){

  .grid > .card:nth-of-type(-n+4) > a[href*="blue-full-size-pemf-coil"] > img[src*="coil-blue"],
  .grid > .card:nth-of-type(-n+4) > a[href*="gold-full-size-pemf-coil"] > img[src*="coil-gold"]{
    display:block !important;
    width:100% !important;
    height:100% !important;
    max-width:100% !important;
    max-height:100% !important;

    object-fit:contain !important;
    object-position:center center !important;

    background:#000 !important;
    margin:0 !important;
  }

}

/* =========================================================
   SHOP BACKGROUND — SUBTLE PREMIUM GLOW
   ========================================================= */

.shop{
  position:relative !important;
  overflow:hidden !important;

  background:
    radial-gradient(
      ellipse at 50% 35%,
      rgba(201,169,87,0.10) 0%,
      rgba(80,70,50,0.06) 28%,
      rgba(20,20,22,0.45) 52%,
      rgba(5,5,7,1) 78%
    ) !important;
}

/* Very subtle second glow behind lower products */
.shop::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  pointer-events:none !important;

  background:
    radial-gradient(
      circle at 50% 72%,
      rgba(201,169,87,0.055) 0%,
      transparent 38%
    ) !important;

  z-index:0 !important;
}

/* Keep all shop content above the background */
.shop > *{
  position:relative !important;
  z-index:1 !important;
}

/* =========================================================
   UNIQUECOILS REAL GALAXY CANVAS
   Desktop only
   ========================================================= */

@media(min-width:851px){

  #shop{
    position:relative !important;
    isolation:isolate !important;
    overflow:hidden !important;
    background:#000 !important;
  }

  #unique-galaxy-canvas{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;

    z-index:0 !important;
    pointer-events:none !important;

    background:#000 !important;
  }

  #shop > *:not(#unique-galaxy-canvas){
    position:relative !important;
    z-index:2 !important;
  }

}

@media(max-width:850px){
  #unique-galaxy-canvas{
    display:none !important;
  }
}


/* =========================================================
   MOBILE GALAXY ENABLE
   ========================================================= */

@media(max-width:850px){

  #shop{
    position:relative !important;
    isolation:isolate !important;
    overflow:hidden !important;
    background:#000 !important;
  }

  #unique-galaxy-canvas{
    display:block !important;
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    z-index:0 !important;
    pointer-events:none !important;
    background:#000 !important;
  }

  #shop > *:not(#unique-galaxy-canvas){
    position:relative !important;
    z-index:2 !important;
  }

}

/* =========================================================
   MOBILE PRODUCT CARDS — SLIGHTLY SMALLER
   ========================================================= */

@media(max-width:850px){

  /* Four main product cards only */
  #shop .grid > .card:nth-of-type(-n+4){
    width:94% !important;
    max-width:94% !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

}


/* =========================================================
   MOBILE MAIN PRODUCT CARDS — TRUE SIZE REDUCTION
   ========================================================= */

@media(max-width:850px){

  #shop .grid > article.card:nth-of-type(1),
  #shop .grid > article.card:nth-of-type(2),
  #shop .grid > article.card:nth-of-type(3),
  #shop .grid > article.card:nth-of-type(4){
    width:calc(100% - 28px) !important;
    max-width:calc(100% - 28px) !important;
    justify-self:center !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

}
