:root {
    --ink: #242424;
    --muted: #5d605f;
    --paper: #f8f6f1;
    --cream: #fbf8f2;
    --line: #e2ded6;
    --accent: #dd8f68;
    --teal: #00eaff;
    --dark: #413f3f;
    --shadow: 0 16px 40px rgba(29, 26, 24, 0.12);
    --light-cream: #fff9f970;
    --light-cream-hover: #ffffffc5;
    --primary-btn-drk:#dfb49e;
    --muted-brown: #a19489;
    --muted-light-brn:#b5a89e;
    --muted-grey: #fbfbfb;
    --lighter-grey: #e2e2e2;
    --cart-badge:#efc96f;
    --hero-h1-size: clamp(4.1rem, 8vw, 7rem);
    --hero-p-size: clamp(1.1rem, 2vw, 1.45rem);
    --story-h2-size: calc(var(--hero-h1-size) * 0.618);
    --story-p-size: calc(var(--hero-p-size) * 0.618);
    font-family: "Montserrat", Arial, sans-serif;
    --transition: all 0.2s ease-in-out;
}

@font-face {
  font-family: "H1-TitlesOrtica";
    font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("../fonts/Forum-Regular.woff") format("woff"),
    url("../fonts/Forum-Regular.woff2") format("woff2");
}


* {
    box-sizing: border-box;
}

/* 
 * Generated by clampgenerator.com 
 * Font size: 16px to 20px
 * Viewport: 320vw to 1200vw
 */

html { font-size: 16px; }

/* Font Family Setup */
body {
font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
   line-height: 1.2em; 
 }

h1, h2, h3, h4, h5, h6 {
  font-family: 'H1-TitlesOrtica', sans-serif;
  font-weight: 400;
}

code {
  font-family: 'Roboto Mono', monospace;
  font-weight: 400;
}

/* Typography Sizes */
h1, .cg-h1 {
  font-size: clamp(1.80rem, calc(1.636rem + 0.818vw), 2.25rem);
}

h2, .cg-h2 {
  font-size: clamp(1.25rem, calc(1.10rem + 0.45vw), 1.60rem);
}

h3, .cg-h3 {
  font-size: clamp(1.40rem, calc(1.273rem + 0.636vw), 1.75rem);
}

h4, .cg-h4 {
  font-size: clamp(1.30rem, calc(1.182rem + 0.591vw), 1.63rem);
}

h5, .cg-h5 {
  font-size: clamp(1.20rem, calc(1.091rem + 0.545vw), 1.50rem);
}

h6, .cg-h6 {
  font-size: clamp(1.10rem, calc(1.000rem + 0.500vw), 1.38rem);
}


p, body, .cg-base {
  font-size: clamp(0.88rem, calc(0.759rem + 0.581vw), 1.13rem);
}

small, .cg-small {
  font-size: clamp(0.77rem, calc(0.664rem + 0.509vw), 0.98rem);
}

.tiny, .cg-tiny {
  font-size: clamp(0.66rem, calc(0.569rem + 0.436vw), 0.84rem);
}

code, .cg-code {
  font-size: clamp(0.77rem, calc(0.664rem + 0.509vw), 0.98rem);
}

.button, .cg-medium {
 font-size: clamp(0.75rem, calc(0.663rem + 0.436vw), 0.94rem);
}

html {
    scroll-behavior: smooth;
}



body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(248, 246, 241, 0.98), rgba(248, 246, 241, 0.8));
}

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

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

.main-container {
    max-width: 1440px;
    margin: 0 auto;
    background-color: #f7f7f7;
}

.sub-page-container {
  width: 100%;          /* Occupies 90% of screen on mobile */
  max-width: 1200px;   /* Prevents getting too wide on ultrawide monitors */
  margin: 35px auto 35px 0;      /* Centers the container */
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 98px;
    padding: 18px 38px;
    display: grid;
    grid-template-columns: 230px 1fr 120px;
    align-items: center;
    justify-items: center;
    gap: 28px;
    color: #fff;
    background: var(--dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: padding 240ms ease, min-height 240ms ease, background 240ms ease, border-color 240ms ease;
    backdrop-filter: saturate(180%) blur(4px);
}

.site-header.shrink {
    min-height: 88px;
    padding: 10px 38px;
    border-bottom-color: rgba(255, 255, 255, 0.06);
    background: rgba(65, 63, 63, 0.98);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18);
}

#cart-icon {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 35px;
    padding:1px;
    transform: scaleX(1);
    transition: transform .3s;
    color:#48c6d4
}

.site-header .header-logo-div,
.site-header .main-nav,
.site-header .cart-icons {
    transition: transform 240ms ease, opacity 240ms ease;
}

.site-header.shrink .header-logo-div {
    transform: scale(0.88);
}

.site-header.shrink .main-nav {
    transform: scale(0.95);
}

.site-header.shrink .cart-icons {
    transform: scale(0.95);
}

.header-logo-div {
display:grid;
text-align: end;
}

.header-logo-div h1 {
    font-family: 'Delius Swash Caps', cursive;
    color: var(--secondary-color);
    font-weight:normal;
}

.logo-sup h1{
font-size: 1.3rem;
font-weight:normal;
padding-bottom: .1rem;

}

.logo-sub h1{
line-height: 1.2rem;
padding-right: .7rem;
font-size: 1.5rem;
font-weight:normal;
  sup {
    font-size:1.1rem;
    font-weight:normal;
  }
}

.brand {
    width: max-content;
    color: #f0b5c0;
    font-family: "Delius Swash Caps", "Trebuchet MS", cursive;
    line-height: 0.65;
    text-align: center;
    transform: rotate(-2deg);
}

.brand span {
    display: block;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.brand strong {
    display: block;
    margin-top: -2px;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 400;
}

.menu-links {
font-family:"H1-TitlesOrtica", Georgia, serif;
font-size: clamp(1.00rem, calc(0.931rem + 0.348vw), 1.19rem);
color:#b0d0d3;
font-weight: 600;

}

.main-nav {
    display: flex;
    justify-content: center;
    gap: clamp(24px, 4vw, 52px);
}

.layer,
.layer:after {
  display:block;
  color: Var(--primary-btn-drk);
  white-space: pre;
  position: relative;
  & .button{
    color: #262627;
  }
}

.layer:after {
  content: attr(data-text);
  color: Var(--muted-grey);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  overflow: hidden;
  transition: .2s linear width;
  -webkit-transition: .2s linear width;
  -moz-transition: .2s linear width;
  -o-transition: .2s linear width;
  -ms-transition: .2s linear width;
}

.layer:hover:after {
  width: 100%;
  cursor: pointer;
}

.text-link-layer,
.text-link-layer:after {
  font-size: 1rem;
  color:var(--muted-grey);
  font-weight: 800;
  white-space: pre;
  position: relative;
}

.text-link-layer:after {
  content: attr(data-text);
  color: var(--dark);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  overflow: hidden;
  transition: .2s linear width;
  -webkit-transition: .2s linear width;
  -moz-transition: .2s linear width;
  -o-transition: .2s linear width;
  -ms-transition: .2s linear width;
}

.text-link-layer:hover:after {
  width: 100%;
  cursor: pointer;
}
/**/

/* <<<<<<<<<<<<< PRODUCT CARD CSS >>>>>>>>>>>>>>>>>>> */

    .product-grid {
      display: grid;
      max-width: 1200px;
      grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
      gap: 39px;
      margin: 25px auto 30px;
    }
    .product-card {
      background-color: rgb(0, 0, 0);
      border-radius: var(--border-radius);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
      position: relative;
      height: 350px;
      display: flex;
      flex-direction: column;
    }

    .product-card::after {
      content: attr(data-word);
        font-family: 'Delius Swash Caps', sans-serif;
        color:#00eaff;
        position: absolute;
        bottom: 5px;
        left: 50%;
        opacity: 0;
        transform: translateX(-50%); 
      transition: var(--transition);
      pointer-events: none;
    }

  .product-card::before {
  opacity: 0;
  content: " ";
  position: absolute;
  display: block;
  width: 120px;
  height: 360px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff2288,
    #387ef0,
    transparent
    );
  transition: opacity 300ms;
  animation: rotation_9018 3000ms infinite linear;
  animation-play-state: paused;
    }


    .product-image {
      height: 450px;
      width: 100%;
     background-image: url('images/b-ring002.webp');
      background-size: cover;
      background-position-y: 0;
      background-position-x: center;
      background-repeat: no-repeat;
      position: relative;
      overflow: hidden;
      backdrop-filter:brightness(1);
    }ans

    .product-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.1) 100%);
      opacity: 0;
      transition: var(--transition);
      backdrop-filter:brightness(1.1);
    }

    .product-card:hover .product-image::after {
      opacity: 1;
      filter:brightness(1.2);
    }

/* HTML: <div class="ribbon">Your text content</div> */
.product-label {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  z-index: 100;
  letter-spacing: 0.05em;
}
.product-label {
  --f: .5em; /* control the folded part */
  
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.8;
  padding-inline: 1lh;
  padding-bottom: var(--f);
  border-image: conic-gradient(#0008 0 0) 51%/var(--f);
  clip-path: polygon(
    100% calc(100% - var(--f)),100% 100%,calc(100% - var(--f)) calc(100% - var(--f)),var(--f) calc(100% - var(--f)), 0 100%,0 calc(100% - var(--f)),999px calc(100% - var(--f) - 999px),calc(100% - 999px) calc(100% - var(--f) - 999px));
  transform: translate(calc((cos(45deg) - 1)*100%), -100%) rotate(-45deg);
  transform-origin: 100% 100%;
  background-color: #F07818; /* the main color  */
}
    /* .product-label {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 4px 10px;
      background-color: var(--dark);
      color: white;
      font-size: 11px;
      font-weight: 600;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: .5px;
      box-shadow: var(--shadow);
    } */

    .product-wishlist {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 30px;
      height: 30px;
      background-color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 1;
      transform: translateY(5px);
      transition: var(--transition);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      z-index: 99;
    }

    .product-card:hover .product-wishlist {
      opacity: 1;
      transform: translateY(0);
    }

    .wishheart {
        fill: var(--cream);
        stroke: var(--ink);
        stroke-width: 2px;
        z-index: 100;
    }
   .wishheart.active{
      fill: #e74c3c;
      stroke: #e74c3c;
        
    }

    .product-info {
        background-color: #ffffff;
      padding: 16px 16px 16px 16px;
      flex-grow: 1;
      display: grid;
      margin-bottom: 40px;
      transition: padding 0.3s ease;
      position:relative
    }

    /* .product-info:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        padding: 16px 16px 45px 16px;
    }
   */

   .add-to-cart-circle > svg {
        pointer-events: none; 
      }

    .product-category {
      font-size: 13px;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 4px;
    }

    .product-name {
      font-size: 18px;
      font-weight: 600;
      color: var(--secondary);
      margin-bottom: 6px;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }

    .rating {
      display: flex;
      align-items: center;
      margin-bottom: 8px;
    }

    .stars {
      display: flex;
      margin-right: 6px;
    }

    .star {
      color: #ffd700;
      font-size: 12px;
    }

    .review-count {
      font-size: 12px;
      color: var(--gray-400);
    }

    .price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
    }

    .price {
      font-weight: 700;
      font-size: 18px;
      color: var(--secondary);
      letter-spacing: -0.02em;
    }

    .original-price {
      font-size: 14px;
      color: var(--gray-400);
      text-decoration: line-through;
      margin-left: 6px;
    }

    .add-to-cart-circle {
      background-color: #efc96f;
      color: var(--secondary);
      border: none;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    transform: scaleX(1);
    transition: transform 1s;
      transition: var(--transition);
      position:absolute;
      top:-43px;
      right: 8px;
    }

    .add-to-cart-circle:hover {
     background-color:var(--teal);
      color: var(--ink);
    }

  .product-card:has(.add-to-cart-circle:hover).product-card::after {    
    opacity: 1; 
   
  }

  .product-card:has(.add-to-cart-circle:hover) .add-to-cart-rectangle { 
    color: var(--ink); 
    background-color:var(--teal);
    transform: scaleY(-.5);
  }
  
    .add-to-cart-circle:active {
      transform: scale(0.95);
    }

    .cart-tooltip {
      position: absolute;
      bottom: 100%;
      right: 0;
      background-color: var(--secondary);
      color: white;
      font-size: 12px;
      padding: 6px 12px;
      border-radius: 4px;
      white-space: nowrap;
      opacity: 0;
      transform: translateY(5px);
      transition: var(--transition);
      pointer-events: none;
      margin-bottom: 8px;
    }

    .cart-tooltip::after {
      content: '';
      position: absolute;
      top: 100%;
      right: 14px;
      border-width: 5px;
      border-style: solid;
      border-color: var(--secondary) transparent transparent transparent;
    }

    .add-to-cart-rectangle {
      position: absolute;
      bottom: 41px;
      left: 0;
      right: 0;
      /* background-color: rgba(49, 48, 44, 0.9); */
      background-color: #efc96f;
      color: var(--dark);
      text-align: center;
      padding: 10px;
      font-weight: 500;
      font-size: 16px;
      transform: translateY(100%) scaleY(1);
      transition: var(--transition);
      cursor: pointer;
    }

    .add-to-cart-rectangle:hover {
      background-color: var(--teal);
      color: var(--ink);
    }

    .product-card:has(.add-to-cart-rectangle:hover) .add-to-cart-circle { 
        color: var(--ink); 
        background-color:var(--teal);
        transform: scaleX(-1);
    }


    .cart-notification {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--secondary);
      color: white;
      padding: 12px 16px;
      border-radius: var(--border-radius);
      display: flex;
      align-items: center;
      gap: 10px;
      transform: translateY(100px);
      opacity: 0;
      transition: var(--transition);
      z-index: 10;
      max-width: 300px;
    }

    .cart-notification.active {
      transform: translateY(0);
      opacity: 1;
    }

    .notification-check {
      width: 18px;
      height: 18px;
      background-color: var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .notification-text {
      font-size: 14px;
      line-height: 1.4;
      flex: 1;
    }

/* <<<<<<<< PRODUCT CARD CSS END >>>>>>>>>>>> */


    /* @keyframes cart-full {
        0% {
            transform: translateY(-72%);
        }
        100% {
         transform: translateY(0%);
        }  
        } */



.st1, .st2, .st0 { 
        fill:#48c6d4;
        stroke: #48c6d4;
        stroke-width: 3px; 
        stroke-miterlimit: 10;
}   

.cart-icons a:hover,
.cart-icons a:focus {
    color: #fff;
    #cart-icon{
    transform: scaleX(-1);
    .st0 {
        fill:#fff;
      }
    .st1, .st2 {
        fill: #fff;
        stroke: #fff;
        stroke-miterlimit: 10;
      }
}
}

.hero {
    min-height: 510px;
    display: grid;
    align-items: center;
    padding: 64px min(8vw, 100px);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(115deg, rgba(255, 252, 247, 0.98) 0%, rgba(255, 252, 247, 0.9) 35%, rgba(255, 252, 247, 0.08) 61%),
        url("../images/hero-bg-image-002.webp") right top / cover no-repeat;
        filter: saturate(2) contrast(1.1);
}

.hero-copy {
    max-width: 520px;
}

.collections h2 {
    margin: 0;
    line-height: 0.94;
    letter-spacing: .5px;
    font-size: clamp(4.1rem, 8vw, 7rem);
}

.hero h1 {
    margin: 0;
    line-height: 0.94;
    letter-spacing: .5px;
    max-width: 520px;
    font-size: var(--hero-h1-size);
}

.hero p {
    max-width: 430px;
    margin: 34px 0 0;
    color: var(--muted);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.45;
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 8px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.button:hover {
    transform: translate(1px, 1px);
    & .layer:after {
        width: 100%;
        cursor: pointer;
        }
}

.button-dark-layer{
    font-family: "H1-TitlesOrtica", Georgia, serif;
    font-weight: 600;
    color: var(--dark);
    background: var(--primary-btn-drk);
    box-shadow: inset 0 0 0 1px var(--muted-grey), 0 2px 4px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, background 160ms ease;

}

.button-dark-layer:hover{
background: #b0ccd3;

  box-shadow: inset 0 0 0 .0px var(--muted-grey), 0 0px 0px rgba(0, 0, 0, 0.00);
}

.button-light {
    min-height: auto;
    font-weight: bold;
    padding: 0;
     color: var(--dark);
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
}

.button-light:hover {
    color: var(--accent);
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
}

.checkout-page {
    padding: 56px min(8vw, 100px);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 416px minmax(360px, 3fr) 307px;
    gap: 32px;
    align-items: start;
    margin:0 auto;
}

.checkout-left {
    display: grid;
    gap: 24px;
}

.thumb-gallery {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .thumb-nav {
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        border: 0;
        border-radius: 50%;
        background: #fff;
        color: var(--dark);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }

    .thumb-nav:hover {
        background: #f4efe7;
    }

    .checkout-thumbs {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding-bottom: 6px;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
        flex: 1;
    }

    .checkout-thumbs::-webkit-scrollbar {
        display: none;
    }

    .thumb-item {
        border: 1px solid rgba(34, 30, 26, 0.12);
        border-radius: 14px;
        background: #fff;
        padding: 0;
        width: 72px;
        height: 72px;
        min-width: 72px;
        cursor: pointer;
        overflow: hidden;
        scroll-snap-align: start;
        transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .thumb-item:hover,
    .thumb-item.is-active {
        border-color: var(--accent);
        box-shadow: 0 8px 20px rgba(34, 30, 26, 0.1);
        transform: translateY(-2px);
    }

    .thumb-item img {
        width: 100%;
        height: 100%;
        display: block;
    object-fit: cover;
}

.checkout-main-photo {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
}

.checkout-main-photo img {
    width: 40%;
    display: block;
}

.checkout-details {
    display: grid;
    gap: 24px;
}

.product-category {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.82rem;
}

.product-title {
    margin: 0;
    font-size: clamp(2.35rem, 4vw, 3.3rem);
    line-height: 1.05;
}

.product-description {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    max-width: 620px;
}

.product-info-summary {
    display: grid;
    gap: 10px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.95);
}

.product-info-summary p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.product-info-summary strong {
    color: var(--ink);
}

.product-features {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.95);
}

.product-features h3 {
    margin: 0 0 18px;
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    color: var(--dark);
}

.product-features ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--muted);
    line-height: 1.7;
}

.product-features li {
    margin-bottom: 0.9rem;
}

.checkout-summary {
    position: sticky;
    top: 30px;
}

.order-card {
    display: grid;
    gap: 20px;
    padding: 26px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.order-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.order-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.order-label {
    color: var(--muted);
    font-size: 0.95rem;
}

.order-price strong {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--dark);
}

.order-savings {
    color: var(--accent);
    font-weight: 700;
}

.order-status p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.order-delivery {
    color: var(--dark);
    font-weight: 600;
}

.order-stock {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    background: #eff8f5;
    color: #1f6b42;
    font-weight: 700;
    width: fit-content;
}

.order-controls {
    display: grid;
    gap: 10px;
}

.order-controls label {
    color: var(--muted);
    font-weight: 700;
}

.order-controls select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fbfbfb;
    color: var(--ink);
    font-size: 1rem;
}

.checkout-actions {
    display: grid;
    gap: 14px;
}

.order-meta {
    display: grid;
    gap: 12px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.order-meta strong {
    color: var(--ink);
}

.gift-option {
    display: grid;
    gap: 12px;
    color: var(--muted);
    font-size: 0.95rem;
}

.gift-option input {
    accent-color: var(--accent);
}

@media (max-width: 1100px) {
    .checkout-layout {
        grid-template-columns: 1fr 2fr;
    }

    .checkout-summary {
        position: static;
    }
}

@media (max-width: 820px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-thumbs {
        grid-auto-flow: column;
        grid-auto-columns: minmax(90px, 1fr);
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .product-title {
        font-size: 2rem;
    }

    .checkout-page {
        padding: 32px 18px;
    }

}
    


.checkout-visual {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
}

.checkout-thumbs {
        display: flex;
        gap: 12px;
        overflow-x: auto;
}

.checkout-thumb {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(34, 30, 26, 0.07);
    background: #fff;
}

.checkout-thumb img,
.checkout-main-image img {
    width: 100%;
    display: block;
}

.checkout-main-image {
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
}

.checkout-product-info {
    display: grid;
    gap: 26px;
}

.product-category {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0;
}

.product-title {
    margin: 0;
    font-size: clamp(2.3rem, 4vw, 3.2rem);
    line-height: 1.02;
}

.product-tagline {
    margin: 0;
    max-width: 620px;
    color: var(--muted);
    line-height: 1.6;
}

.product-summary {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
    display: grid;
    gap: 14px;
}

.price-strip {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
}

.price-strip span {
    color: var(--muted);
    font-size: 0.95rem;
}

.price-strip strong {
    color: var(--dark);
    font-size: clamp(2rem, 3vw, 2.6rem);
    letter-spacing: -0.03em;
}

.product-delivery,
.product-color {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.product-details {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px;
}

.product-details h2 {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.product-details ul {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--muted);
    line-height: 1.75;
}

.product-details li {
    margin-bottom: 0.9rem;
}

.checkout-action-panel {
    display: grid;
}

.order-card {
    position: sticky;
    top: 30px;
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
    display: grid;
    gap: 22px;
}

.order-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.order-price {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.order-label {
    color: var(--muted);
    font-size: 0.95rem;
}

.order-price strong {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    color: var(--dark);
}

.order-savings {
    color: var(--accent);
    font-weight: 700;
}

.order-status {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    display: grid;
    gap: 10px;
}

.order-delivery {
    margin: 0;
    color: var(--dark);
    font-weight: 600;
}

.order-arrives {
    margin: 0;
}

.order-stock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: #eff8f5;
    color: #2c6f4b;
    font-weight: 700;
    letter-spacing: 0.02em;
    width: fit-content;
}

.order-controls {
    display: grid;
    gap: 10px;
}

.order-controls label {
    color: var(--muted);
    font-weight: 700;
}

.order-controls select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fbfbfb;
    font-size: 1rem;
    color: var(--ink);
}

.checkout-actions {
    display: grid;
    gap: 14px;
}

.order-meta {
    display: grid;
    gap: 12px;
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

.order-meta strong {
    color: var(--ink);
    font-weight: 700;
}

.gift-option {
    display: grid;
    gap: 12px;
    margin-top: 6px;
    font-size: 0.95rem;
    color: var(--muted);
}

.gift-option input {
    width: auto;
    accent-color: var(--accent);
}

.button-dark-layer,
.button-light {
    width: 100%;
}

@media (max-width: 1180px) {
    .checkout-layout {
        grid-template-columns: 1.1fr 320px;
    }

    .checkout-visual {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .order-card {
        position: static;
        top: auto;
    }

    .checkout-page {
        padding: 34px 18px;
    }

    .checkout-thumbs {
        grid-auto-flow: column;
        grid-auto-columns: 1fr;
        overflow-x: auto;
        padding-bottom: 4px;
    }
}

.button-light::after,
.section-heading a::after,
.collection-card a::after {
    content: " ->";
}

/*
section.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  
  grid-template-rows: auto auto 1fr; 
}


article.feature {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3; 
  gap: 0; 
}


article.feature h2, 
article.feature p {
  margin: 0;
}

*/

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto 1fr; 
    padding: 28px min(8vw, 90px);
    background: rgba(250, 249, 244, 0.96);
    border-bottom: 1px solid var(--line);
}

.feature {
    min-height: 116px;
    padding: 0 30px;
    text-align: center;
    border-right: 1px solid var(--line);
    display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3; /* Matches the 3 children: span, h2, p */
  gap: 0; /* Control spacing via grid gap rather than margins */
}

.feature:last-child {
    border-right: 0;
}

.feature h2 {
    margin: 14px 0 8px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2em;
}

.feature p {
    font-size: smaller;
    margin: 0 auto;
    max-width: 240px;
    color: var(--muted);
    line-height: 1.2em;
}

.feature-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    color: var(--accent);

    opacity: 0.88;
    margin: 0 auto;
}

.leaf  {
aspect-ratio: 0.941;
	border-shape: shape(from 0% 98.23%,smooth by 17.65% -21.08% with 20.36% -19.45%,smooth by -5.96% -15.83% with -6.03% -11.21%,curve by 12.37% -32.79% with 0.15% -6.17%/-0.15% -20.09%,smooth by 37.25% -13.91% with 22.7% -11.07%,curve by 38.69% -14.62% with 19.15% -3.69%/38.69% -14.62%,curve by -1.96% 41.8% with 0% 0%/0.15% 24.91%,smooth by -43.97% 44.71% with -22.17% 41.45%,curve by -33.03% -6.03% with -17.57% 2.63%/-33.03% -6.03%,line by -19.38% 19.52%,line by -1.58% -1.7%,close,move to 15.99% 85.02%,line by 53.84% -49.33%,move to 35.9% 49.54%,vline by 16.39%,move to 57.16% 65.93%,line by -21.27% 0.85%);
    border: 3px solid #b56f5b;
}

.diamond {
    	aspect-ratio: 1.076;
	border-shape: shape(from 100% 35.73%,line by -49.23% 64.27%,line by -49.51% -64.27%,line by 19.52% -35.73%,hline by 57.37%,line by 21.84% 35.73%,close,move to 23.03% 3.7%,line by 27.81% 96.22%,move to 78.16% 0%,line by -27.32% 99.92%,move to 0% 35.35%,hline by 100%,move to 69.52% 31.57%,line by -18.89% -20.02%,line by -19.38% 20.54%);
    border: 3px solid #b56f5b;
}

.heart {
	aspect-ratio: 1.112;
	border-shape: shape(from 99.96% 29.21%,curve by -51.31% 70.79% with -1.98% 39.97%/-51.31% 70.79%,curve by -48.61% -70.79% with 0% 0%/-45.71% -29.94%,curve by 26.48% -29.21% with -0.72% -10.32%/6.19% -29.21%,curve by 23.51% 14.35% with 16.27% 0%/23.51% 14.35%,curve by 25.29% -14.35% with 0% 0%/9.09% -14.35%,curve by 24.63% 29.21% with 20.29% 0%/25.16% 18.89%,close);
    border: 3px solid #b56f5b;
}

.gift{
	aspect-ratio: 0.958;
	border-shape: shape(from 46.36% 16.97%,curve by -17% 5.54% with 0% 6.16%/-9.21% 5.54%,smooth by -14% -11.16% with -14% -5%,smooth by 14% -11.16% with 6.29% -11.16%,smooth by 17% 16.77% with 17% 10.61%,close,move to 29.36% 0.21%,curve by -14% 11.16% with -7.71% 0%/-14% 5%,smooth by 14% 11.16% with 6.29% 11.16%,smooth by 17% -5.54% with 17% 0.62%,smooth by -17% -16.77% with -9.21% -16.77%,close,move to 56.5% 16.77%,curve by 17% 5.54% with 0% 6.16%/9.21% 5.54%,smooth by 14% -11.16% with 14% -5%,smooth by -14% -11.16% with -6.29% -11.16%,smooth by -17% 16.77% with -17% 10.61%,close,move to 94.86% 24.44%,hline by -89.36%,vline by 74.47%,hline by 89.36%,vline to 24.44%,close,move to 100% 21.42%,hline by -100%,vline by 20.74%,hline by 100%,vline by -20.74%,close,move to 43.14% 24.44%,vline by 75.56%,move to 58.43% 24.44%,vline by 74.47%);
    border: 3px solid #b56f5b;
}

.collections {
    padding: 54px min(8vw, 100px) 62px;

}

.section-heading {
    display: flex;
    align-items: baseline;
    gap: 48px;
    margin-bottom: 32px;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.7rem);
    margin-bottom: 1rem;
    font-family: "H1-TitlesOrtica", Georgia, serif;
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: .5px;
    
}

.section-heading h3 {
    font-size: clamp(1.2rem, 1.5vw, 3rem);
    margin: 0;
    font-family: "H1-TitlesOrtica", Georgia, serif;
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: .5px;
    color: var(--accent);
    padding-top: 35px;
}

.section-heading a,
.collection-card a {
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    &:hover {
        color: #656565;
    }
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.jewelry-card {
  display:grid;
  grid-row-gap: 20px;
    width: 300px;
    background: #f4f4f4;
    border: 1px solid #d2d2d2;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    font-family: 'Playfair Display', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;

    & .title {
    font-size: 20px;
    color: var(--dark);
    margin: 10px 0;
    }
  }

  .jewelry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--dk-ornge);
    color: white;
    padding: 4px 12px;
    text-transform: uppercase;
    border-radius: 20px;
    z-index: 1;
  }

  
  /* .product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #0f0f0f;
    filter: contrast(1.2);
  } */

  .product-image img {
    max-width: 100%;
    transition: transform 0.5s ease;
  }

  .jewelry-card:hover .product-image img {
    transform: scale(1.1);
  }

  .category {
    font-size: 12px;
    font-family: 'Times New Roman', Times, serif;
    color: darkgoldenrod;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
  }

  .price-container {
    margin: 15px 0;
  }

  .sale-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--gold);
  }

  .original-price {
    text-decoration: line-through;
    color: #bbb;
    font-size: 14px;
    margin-left: 10px;
  }

  .buy-btn {
    background: var(--dk-ornge);
    color: rgb(255, 255, 255);
    border-radius: 5px;
    border: none;
    padding: 10px 25px;
    width: 100%;
    cursor: pointer;
    font-family:'FontAwesome';
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    transition: background, color 0.3s;
  }

  .buy-btn:hover {
    background: #ddd;
    color:#222;
  }
  

.collection-card {
    position:relative;
    overflow: hidden;
    border: 1px solid rgba(214, 210, 201, 0.9);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 18px rgba(34, 30, 26, 0.08);
    transition: 0.5s ease;
    & .button {
        transition: 0.3s ease;
        text-shadow: 0 0px 3px #fcfcfc;
    }
}

.collection-card img {
    width: 100%;
    aspect-ratio: 1.18;
    object-fit: cover;
    background: #0f0f0f;
    transition: transform 0.5s ease;
}

.collection-card div {
    padding: 18px 20px 22px;
}

.collection-card h3 {
    margin: 0 0 6px;
    font-family: "H1-TitlesOrtica", Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
    transition: 0.5s ease;
    color: var(--muted);
}

.collection-card:hover {
    & .button {
        text-shadow: 0 4px 3px #a1a1a1;
        transform: translateY(-2px);
        font-size: 0.83rem;
        color: #a46849;
    }
    }

.story {
    position: relative;
    margin: 0 min(3vw, 30px) 26px;
    min-height: 330px;
    display: grid;
    align-items: center;
    padding: 44px 72px;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow:hidden;
    box-shadow: var(--shadow);
}

.faded-filter-overlay {
  position: absolute;
  inset: 0;
  
  /* Apply your desired background filter effect */
  backdrop-filter: blur(12px) brightness(58%); 
  
  /* Mask it so the effect fades out toward the right side */
  mask-image: linear-gradient(to right, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 60%, transparent 100%);
}

.story::before {
   content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
   background-image: url("../images/karen-pic.webp");
  background-size: cover;
  background-position: center;
  /* Apply your chosen filters here */
  filter: blur(1px) brightness(1.3); 
     
}

.story-copy {
    color:#fdfdfd;
    max-width: 460px;
    z-index: 0;
}

.story h2 {
    font-size: var(--story-h2-size);
    color:#fdfdfd;
}

.story h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 2px;
    margin: 24px 0;
    background: var(--accent);
}

.story p {
    margin: 0 0 28px;
    line-height: 1.65;
    color:#fdfdfd;
}

.testimonial {
    position: relative;
    max-width: 1110px;
    margin: 0 auto 34px;
    padding: 30px 68px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 245, 0.88);
}

.testimonial::before {
    content: "\"";
    color: var(--accent);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 5rem;
    line-height: 0;
}

.testimonial blockquote {
    max-width: 640px;
    margin: -18px auto 16px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    line-height: 1.45;
}

.testimonial p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.testimonial span {
    color: #f5b82f;
    letter-spacing: 0.12em;
}

.footer-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 28px min(8vw, 100px);
    background: rgba(250, 249, 244, 0.96);
    border-top: 1px solid var(--line);
}

.badge {
    position: relative;
    min-height: 56px;
    padding-left: 68px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.badge:last-child {
    border-right: 0;
}

.badge::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8f8a82;
    font-size: clamp(2.2rem, 3.8vw, 3rem);
    transform: translateY(-50%);
}

.truck::before {
    content: "\1F69A";
}

.lock::before {
    content: "\1F512";
}

.plant::before {
    font-size: 2rem;
    content: "\1F64F";
}

.badge strong {
    font-size: small;
    color:#242424;
    font-weight: 600;
    text-transform: uppercase;
     line-height: 1.2em;
}

.badge span {
    font-size:smaller;
    margin-top: 4px;
    color: var(--muted);
     line-height: 1.2em;
}

/* --- Footer Styles --- */
.site-footer {
    background: #222;
    color: #fff;
    padding: 17px 0 33px 0;
    text-align: center;
    font-size: 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.site-footer h1 {
  font-family: "Delius Swash Caps", cursive;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer-logo h1 .by {
    font-size: 62%;
    vertical-align: bottom;
    font-weight: normal;
    letter-spacing: 0;
}

.footer-menu-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
     font-size: clamp(0.48rem, calc(0.242rem + 1.382vw), 0.88rem);
}

.footer-links a {
    color:var(--menu-top-hover);
    text-decoration: none;
    letter-spacing: .2rem;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus {
    color:#fff;
}

.footer-social {
    display: flex;
    column-gap: 18px;
    justify-content: center;
}

.footer-social a {
    color: #b0d0d3;
    font-size: 1.3rem;
    transition: color 0.2s;
}

.footer-social a:hover,
.footer-social a:focus {
    color: #fff;
}

.footer-copy {
    font-size: 0.6rem;
    color: #aaa;
    margin-top: 8px;
}



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

    .main-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero {
        min-height: 620px;
        align-items: start;
        background:
            linear-gradient(146deg, rgba(255, 252, 247, 0.98) 0%, rgba(255, 252, 247, 0.88) 44%, rgba(255, 252, 247, 0.1) 74%),
            url("../images/hero-bg-image-002.webp") center bottom / cover no-repeat;
    }

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

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

    .footer-links {
        justify-content: flex-end;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .feature:nth-child(2) {
        border-right: 0;
    }

    .feature:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
        padding-bottom: 24px;
    }

    .feature:nth-child(n+3) {
        padding-top: 24px;
    }
    .story {
        padding: 42px;
        background:
            linear-gradient(90deg, rgba(255, 252, 248, 0.98) 0%, rgba(255, 252, 248, 0.92) 100%),
            url("../../KarensJewellryBox/Karens-jewelry-box/images/pendant002.webp") left center / cover no-repeat;
    }

    .badge:nth-child(2) {
        border-right: 0;
    }

    .footer-signature {
        justify-self: end;
    }
}

@media (max-width: 680px) {
.hero {
           background:
            linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(255, 252, 247, 0.88) 44%, rgba(255, 252, 247, 0.1) 74%),
            url("../images/hero-bg-image-002.webp") -500px 100px / cover no-repeat;
            filter: saturate(1.5) contrast(1.1);
    }

.story::before {
  
  background-position: 420px 20px;
 
}
    .site-header {
        padding: 16px 22px;
    }

    .brand span {
        font-size: 1.35rem;
    }

    .main-nav {
        gap: 20px;
    }

    .hero,
    .collections {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero h1 {
        font-size: 3.65rem;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .features,
    .collection-grid,
    .footer-badges {
        grid-template-columns: 1fr;
        row-gap:12px;
        padding: 10px min(8vw, 100px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .feature,
    .feature:nth-child(2),
    .feature:last-child,
    .badge,
    .badge:nth-child(2),
    .badge:last-child {
        border-right: 0;
    }

    .feature,
    .feature:nth-child(n+3) {
        padding: 22px 0;
        border-bottom: 1px solid var(--line);
    }

    .feature:last-child {
        border-bottom: 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading a {
        display: inline-block;
        margin-top: 14px;
    }

    .story {
        margin-left: 16px;
        margin-right: 16px;
        padding: 34px 28px;
    }

    .testimonial {
        margin-left: 16px;
        margin-right: 16px;
        padding: 28px 24px;
    }

    .badge {
        border-bottom: 1px solid var(--line);
    }

    .badge:last-child {
        border-bottom: 0;
    }

    .footer-links,
    .footer-social {
        justify-content: center;
    }

    .footer-signature {
        justify-self: center;
        text-align: center;
    }
}
