:root {
  --darkmaroon: #730030;
  --white: #ffffff;
  --black: #000000;
  --yellow: #d9a70c;
  --goldenyellow: #f4d210;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  --radius: 40px;
}

@font-face {
    font-family: 'Nectarine';
    src: url('Files/nectarine/Nectarine\ DEMO.ttf') format('truetype');
}

@font-face {
    font-family: 'Lilita One';
    src: url('Files/Lilita_One/LilitaOne-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Glacial Indifference(Bold)';
    src: url('Files/glacial-indifference/GlacialIndifference-Bold.otf') format('truetype');
}

@font-face {
    font-family: 'Glacial Indifference(Regular)';
    src: url('Files/glacial-indifference/GlacialIndifference-Regular.otf') format('truetype');
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

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

button,
a.button,
.button-hero,
.button-about,
.featured-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.2s ease;
}

button:hover,
a.button:hover,
.button-hero:hover,
.button-about:hover,
.featured-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}


.site-header {
  background: var(--darkmaroon);
  height: 80px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  width: 60px;
  height: auto;
}

.main-navigation {
  flex: 1;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.nav-list li {
  margin: 0;
}

.nav-list a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: 'Lilita One';
  width: 122px;
  height: 40px;
  padding: 0.8rem 1.25rem;
  background: var(--goldenyellow);
  color: var(--darkmaroon);
  border: 2px solid var(--goldenyellow);
  border-radius: 30px;
  font-size: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.nav-list a:hover {
  background: var(--darkmaroon);
  color: var(--goldenyellow);
  border: 2px solid var(--goldenyellow);
  transform: translateY(-2px);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.cart-link img {
  width: 40px;
  height: auto;
}

.cart-link:hover img {
    filter: brightness(0) invert(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 10px;
  background: var(--darkmaroon);
  cursor: pointer;
  padding: 0;
  gap: 5px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.menu-toggle:hover {
  background: #5a0025;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: var(--goldenyellow);
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
  position: relative;
  flex-shrink: 0;
}

/* X close icon when open — spans animate into × */
.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero-home{
  height: 500px;
    background-image: url(Files/pattern2.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-content {
  max-width: 980px;
  margin: 50px auto 0;
  text-align: center;
}

.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 30px;
}

.button-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 250px;
    font-size: 24px;
    font-family: 'Lilita One';
    background: var(--goldenyellow);
    color: var(--darkmaroon);
    border: 1px solid var(--darkmaroon);
    padding: 0.8rem 1.25rem;
    border-radius: 30px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.5s ease, box-shadow 0.5s ease, background-color 0.5s ease;
    cursor: pointer;
}

.button-hero:hover {
    background: var(--darkmaroon);
    color: var(--goldenyellow);
    border: 1px solid var(--goldenyellow);
}

.about {
    background: var(--darkmaroon);
 }
 
 .about-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    justify-content: space-between;
 }
 
 .about-grid > * {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 280px;
}
 
 .about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.about-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

.about-copy {
  color: var(--goldenyellow);
}

.about-copy {
  align-self: center;
  max-width: 620px;
}

.about-copy h2 {
  color: var(--goldenyellow);
   margin: 0 0 0.8rem;
   font-size: clamp(2rem, 4vw, 3rem);
   line-height: 1.1;
 }
 
 .about-copy p {
   color: rgba(244, 210, 16, 0.95);
   margin: 0 0 1rem;
   max-width: 42rem;
   line-height: 1.6;
 }
 
 .about-highlights {
    font-family: 'Glacial Indifference(Bold)';
    font-size: 18px;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
 }
 
 .about-highlights li {
   display: inline-flex;
   align-items: center;
   gap: 0.75rem;
   font-weight: 800;
   color: var(--goldenyellow);
   padding: 0.85rem 1.2rem;
 }
 
 .about-highlights li::before {
   content: "";
   display: block;
   width: 34px;
   height: 30px;
   background-image: url('Files/heart_icon.png');
   background-size: contain;
   background-repeat: no-repeat;
 }
 
 .button-about {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: 'Lilita One';
    width: 170px;
    height: 50px;
    padding: 0.8rem 1.25rem;
    background: var(--goldenyellow);
    color: var(--darkmaroon);
    border-radius: 30px;
    font-size: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

.button-about:hover {
    background: var(--darkmaroon);
    color: var(--goldenyellow);
    border: 1px solid var(--goldenyellow);
}
 
 .section-label {
   align-items: center;
   font-family: 'Lilita One';
   font-size: 32px;
   color: var(--yellow);
 }

.section-description {
  margin-top: 0.5rem;
  font-family: 'Glacial Indifference(Regular)';
  line-height: 1.6;
  color: var(--yellow);
  font-size: 20px;
  text-align:justify;
}

.product-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: 'Lilita One';
    width: 300px;
    height: 70px;
    padding: 0.8rem 1.25rem;
    background: var(--darkmaroon);
    color: var(--goldenyellow);
    border-radius: 15px;
    font-size: 24px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    cursor: default;
}

.featured-products {
  background: var(--white);
  padding: 3rem 1.5rem 3rem;
}

.featured-products .section-header {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

.featured-products .section-header h2 {
    margin: 1rem 0 0.75rem;
    font-size: 64px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    color: var(--goldenyellow);
    font-family: 'Lilita One';
    -webkit-text-stroke: 1px var(--darkmaroon); 
}

.featured-products .section-header p {
  margin: 0;
  color: var(--darkmaroon);
  font-size: 20px;
  font-family: 'Glacial Indifference(Regular)';
}

.product-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: stretch;
}

.product-card {
  border-radius: 2rem;
  overflow: hidden;
  height: 360px;
  flex: 0 1 calc((100% - 6rem) / 4);
  max-width: 300px;
  display: grid;
  background-image: url('Files/flowerbouquet.png');
  background-size: cover;
  background-position: center;
  place-items: flex-end;
  padding: 1.5rem;
  text-align: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:nth-child(2n) {
  background-image: url('Files/Bracelet1.png');
}

.product-card:nth-child(3n) {
  background-image: url('Files/Bracelet2.png');
}

.product-card:nth-child(4n) {
  background-image: url('Files/keychain.png');
}

.product-name {
  margin: 0;
  font-family: 'Glacial Indifference(Bold)';
  color: var(--white);
  font-size: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.7);
}

.product-card:nth-child(2n) .product-name {
  color: var(--goldenyellow);
}

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

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.section-actions {
  margin-top: 2.5rem;
  text-align: center;
}

.featured-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  font-family: 'Lilita One';
  width: 200px;
  height: 60px;
  background: var(--goldenyellow);
  color: var(--darkmaroon);
  border: 1px solid var(--darkmaroon);
  font-size: 20px;
  border-radius: 30px;
}

.featured-button:hover {
  background: var(--darkmaroon);
  color: var(--goldenyellow);
  border: 1px solid var(--goldenyellow);
}

.feedback {
  background-image: url('Files/pattern1.png');
  background-size: cover;
  height: 328px;
  padding: 3rem 1.5rem;
}

.feedback .section-header {
  max-width: 1240px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.testimonial-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-image: url('Files/feedback1.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 75px;
  width: 380px;
  background-position: center;
  border-radius: 50px;
  padding: 1.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.testimonial-card:nth-child(2n) {
  background-image: url('Files/feedback2.png');
}

.testimonial-card:nth-child(3n) {
  background-image: url('Files/feedback3.png');
}

.testimonial-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 26px 45px rgba(0, 0, 0, 0.25);
  filter: brightness(1.03);
}

.site-footer {
  background: var(--darkmaroon);
  color: var(--goldenyellow);
  height: 280px;
  padding: 1.5rem 0 0;
}

.footer-inner {
  max-width: 1240px;
  height: 190px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 1rem;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Lilita One';
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-links ul {
  font-family: 'Glacial Indifference(Bold)';
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--goldenyellow);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-contact address {
  font-family: 'Glacial Indifference(Bold)';
  line-height: 1.8;
  font-style: normal;
}

.footer-contact .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-contact .contact-list li {
  position: relative;
  padding-left: 2rem;
}

.footer-contact .contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url('Files/location_icon.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-contact .contact-list li:nth-child(2)::before {
  background-image: url('Files/web_icon.png');
}

.footer-contact .contact-list li:nth-child(3)::before {
  background-image: url('Files/email_icon.png');
}

.footer-contact .contact-list li:nth-child(4)::before {
  background-image: url('Files/telephone_icon.png');
}

.footer-contact .contact-list li a {
  color: var(--goldenyellow);
  text-decoration: none;
}

.footer-contact .contact-list li a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-family: 'Glacial Indifference(Regular)';
  border-top: 1px solid var(--goldenyellow);
  padding-top: 1rem;
  width: 100%;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.95rem;
}

/* About Page */
/* ── ABOUT PAGE EXTRAS ── */

    /* Hero */
    .hero-about {
      height: 300px;
      background-image: url('Files/pattern2.png');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 1.5rem;
    }

    .hero-about-content h1 {
      font-family: 'Nectarine';
      font-size: 128px;
      color: var(--goldenyellow);
      -webkit-text-stroke: 1px var(--darkmaroon);
      text-shadow: 10px 10px 8px rgba(0, 0, 0, 0.5);
      margin: 0 0 0.5rem;
    }

    .hero-about-content p {
      font-family: 'Glacial Indifference(Bold)';
      font-size: 24px;
      color: var(--darkmaroon);
      display: inline-block;
      padding: 0.4rem 1.2rem;
      margin: 0;
    }

    /* ── OUR STORY ── */
    .our-story {
      background: var(--white);
      padding: 4rem 1.5rem;
    }

    .our-story-inner {
      max-width: 1240px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      align-items: flex-start;
    }

    .story-text {
      flex: 1 1 400px;
    }

    .story-text h2 {
      font-family: 'Lilita One';
      font-size: 50px;
      text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.2);
      color: var(--darkmaroon);
      margin: 0 0 1rem;
    }

    .story-text p {
      font-family: 'Glacial Indifference(Regular)';
      font-size: 17px;
      line-height: 1.8;
      color: #3a0018;
      margin: 0 0 1rem;
      text-align: justify;
    }

    .story-images {
      flex: 1 1 320px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .story-images img {
      width: 100%;
      height: 190px;
      object-fit: cover;
      border-radius: 18px;
      box-shadow: 0 8px 24px rgba(115,0,48,0.18);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .story-images img:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 14px 32px rgba(115,0,48,0.28);
    }

    /* ── DEMO REEL ── */
    .demo-reel-section {
      background: var(--darkmaroon);
      padding: 4rem 1.5rem;
      text-align: center;
    }

    .demo-reel-section h2 {
      font-family: 'Lilita One';
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      color: var(--goldenyellow);
      margin: 0 0 2rem;
    }

    .demo-reel-wrapper {
      max-width: 820px;
      margin: 0 auto;
      background: var(--darkmaroon);
      border: 5px solid var(--yellow);
      border-radius: 45px;
      height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .demo-reel-video {
      width: 100%;
      height: 100%;
      border-radius: var(--radius);
      object-fit: cover;
    }
    
    /* ── PRODUCTS & SERVICES ── */
    .products-services {
      background: var(--white);
      padding: 4rem 1.5rem;
      text-align: center;
    }

    .products-services .section-pill {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      font-family: 'Lilita One';
      width: 224px;
      height: 52px;
      padding: 0.8rem 1.25rem;
      background: var(--darkmaroon);
      color: var(--goldenyellow);
      border-radius: 15px;
      font-size: 24px;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
      cursor: default;
      margin: 0 auto 1rem;
    }

    .products-services h2 {
      font-family: 'Lilita One';
      font-size: 64px;
      color: var(--goldenyellow);
      -webkit-text-stroke: 1px var(--darkmaroon);
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
      margin: 0 0 2.5rem;
    }

    .service-grid {
      width: 100%;
      margin: 0 auto 3rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
    }

    .service-card {
      background: var(--yellow);
      width: 400px;
      border-radius: 20px;
      padding: 1.8rem 1.5rem;
      text-align: left;
      box-shadow: 0 8px 24px rgba(115,0,48,0.15);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(115,0,48,0.22);
    }

    .service-card-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .service-icon {
      width: 44px;
      height: 44px;
      background-image: url('Files/canvas.png');
      background-size: cover;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 0;
    }

    .service-card:nth-child(2n) .service-icon {
      background-image: url('Files/star.png');
    }

    .service-card:nth-child(3n) .service-icon {
      background-image: url('Files/heart2.png');
    }

    .service-card h2 {
      font-family: 'Glacial Indifference(Bold)';
      font-size: 22px;
      color: var(--white);
      margin: 0;
      line-height: 1.1;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    .service-card-title {
      font-family: 'Lilita One';
      font-size: 22px;
      color: var(--white);
      margin: 0;
      line-height: 1.1;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    .service-card ul {
      font-family: 'Glacial Indifference(Regular)';
      font-size: 18px;
      color: var(--white);
      list-style: disc;
      padding-left: 2rem;
      margin: 0;
      line-height: 2;
    }

    /* ── WHY CHOOSE US ── */
    .why-us {
      background: var(--yellow);
      padding: 4rem 1.5rem;
      text-align: center;
    }

    .why-us h2 {
      font-family: 'Lilita One';
      font-size: 50px;
      color: var(--white);
      -webkit-text-stroke: 1px var(--darkmaroon);
      margin: 0 0 2.5rem;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    }

    .why-grid {
      width: 100%;
      margin: 0 auto 3rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: auto;
    }

    .why-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      width: 300px;
       margin: 0 auto;
    }

    .why-icon-wrap {
      width: 80px;
      height: 80px;
      background-image: url('Files/canvas.png');
      background-size: cover;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      box-shadow: 0 8px 20px rgba(115,0,48,0.3);
      transition: transform 0.25s ease;
    }

    .why-item:nth-child(2n) .why-icon-wrap {
      background-image: url('Files/star.png');
    }

    .why-item:nth-child(3n) .why-icon-wrap {
      background-image: url('Files/heart2.png');
    }

    .why-item:hover .why-icon-wrap {
      transform: scale(1.1) rotate(-5deg);
    }

    .why-item p {
      font-family: 'Glacial Indifference(Bold)';
      font-size: 20px;
      color: var(--white);
      margin: 0;
      line-height: 1.5;
      width: 350px;
    }

    /* Responsive tweaks */
  

    /* Cart Page */
     /* ── CART PAGE EXTRAS ── */

    /* ── CART BODY ── */
    .cart-section {
      background: var(--white);
      padding: 3rem 1.5rem 4rem;
      min-height: 60vh;
    }

    .cart-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 2rem;
      align-items: start;
    }

    /* Left: items */
    .cart-items-col h2 {
      font-family: 'Lilita One';
      font-size: 30px;
      color: var(--darkmaroon);
      margin: 0 0 1.25rem;
    }

    .cart-empty-msg {
      font-family: 'Glacial Indifference(Regular)';
      font-size: 1.1rem;
      color: var(--darkmaroon);
      padding: 2rem 0;
    }

    .cart-item {
      background: var(--goldenyellow);
      border-radius: 18px;
      padding: 1rem 1.25rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
      box-shadow: 0 4px 16px rgba(115,0,48,0.12);
      transition: transform 0.2s ease;
    }

    .cart-item:hover {
      transform: translateY(-3px);
    }

    .cart-item-img {
      width: 90px;
      height: 90px;
      object-fit: cover;
      border-radius: 12px;
      flex-shrink: 0;
      background: rgba(115,0,48,0.08);
    }

    .cart-item-info {
      flex: 1;
    }

    .cart-item-info h3 {
      font-family: 'Glacial Indifference(Bold)';
      font-size: 1.05rem;
      color: var(--darkmaroon);
      margin: 0 0 0.25rem;
    }

    .cart-item-price {
      font-family: 'Glacial Indifference(Regular)';
      font-size: 0.95rem;
      color: var(--darkmaroon);
      margin: 0 0 0.6rem;
    }

    .qty-controls {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .qty-btn {
      width: 30px;
      height: 30px;
      border-radius: 10px;
      background: var(--darkmaroon);
      color: var(--goldenyellow);
      font-size: 18px;
      font-family: 'Lilita One';
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s, transform 0.15s;
      padding: 0;
    }

    .qty-btn:hover {
      background: var(--white);
      color: var(--darkmaroon);
      transform: scale(1.1);
    }

    .qty-value {
      font-family: 'Glacial Indifference(Bold)';
      font-size: 1.1rem;
      color: var(--darkmaroon);
      min-width: 24px;
      text-align: center;
    }

    .cart-item-subtotal {
      font-family: 'Glacial Indifference(Bold)';
      font-size: 1.1rem;
      color: var(--darkmaroon);
      white-space: nowrap;
      margin-left: auto;
      flex-shrink: 0;
    }

    .remove-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 18px;
      color: var(--darkmaroon);
      opacity: 0.5;
      transition: opacity 0.2s, transform 0.2s;
      padding: 0 0.2rem;
      display: flex;
      align-items: center;
    }

    .remove-btn:hover {
      opacity: 1;
      transform: scale(1.2);
    }

    /* Right: order summary */
    .order-summary {
      background: var(--yellow);
      border-radius: 20px;
      padding: 1.75rem;
      box-shadow: 0 8px 28px rgba(115,0,48,0.18);
      position: sticky;
      top: 100px;
    }

    .order-summary h2 {
      font-family: 'Lilita One';
      font-size: 1.6rem;
      color: var(--darkmaroon);
      margin: 0 0 1.25rem;
    }

    .summary-total-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: 'Glacial Indifference(Bold)';
      font-size: 1.1rem;
      color: var(--darkmaroon);
      border-bottom: 2px solid var(--darkmaroon);
      padding-bottom: 0.85rem;
      margin-bottom: 1.25rem;
    }

    /* Form fields */
    .form-group {
      margin-bottom: 0.9rem;
    }

    .form-group label {
      display: block;
      font-family: 'Glacial Indifference(Bold)';
      font-size: 0.9rem;
      color: var(--darkmaroon);
      margin-bottom: 0.3rem;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.65rem 0.9rem;
      border: 2px solid transparent;
      border-radius: 10px;
      font-family: 'Glacial Indifference(Regular)';
      font-size: 0.95rem;
      background: #fff;
      color: var(--darkmaroon);
      outline: none;
      transition: border-color 0.2s ease;
      box-sizing: border-box;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #bbb;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--darkmaroon);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 80px;
    }

    .submit-btn {
      width: 100%;
      height: 54px;
      background: var(--darkmaroon);
      color: var(--goldenyellow);
      font-family: 'Glacial Indifference(Bold)';
      font-size: 1.1rem;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      margin-top: 1rem;
      transition: transform 0.2s ease, background 0.2s ease;
      letter-spacing: 0.03em;
    }

    .submit-btn:hover {
      background: #4a001f;
      transform: translateY(-2px);
    }

    .submit-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
    }

    .submit-note {
      font-family: 'Glacial Indifference(Regular)';
      font-size: 0.82rem;
      color: var(--darkmaroon);
      text-align: center;
      margin: 0.6rem 0 0;
      opacity: 0.8;
    }

    /* Success state */
    .order-success {
      display: none;
      text-align: center;
      padding: 1.5rem 0;
    }

    .order-success .checkmark {
      font-size: 3rem;
      margin-bottom: 0.5rem;
    }

    .order-success h3 {
      font-family: 'Lilita One';
      color: var(--darkmaroon);
      font-size: 1.4rem;
      margin: 0 0 0.5rem;
    }

    .order-success p {
      font-family: 'Glacial Indifference(Regular)';
      color: var(--darkmaroon);
      font-size: 0.95rem;
      margin: 0;
    }

    /*FAQs Page */
    .page-section {
      background: var(--white);
      padding: 4rem 1.5rem;
    }

    .section-center {
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
    }

    .section-pill-dark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 250px;
      height: 60px;
      font-family: 'Lilita One';
      font-size: 28px;
      background: var(--goldenyellow);
      color: var(--darkmaroon);
      padding: 0.5rem 1.8rem;
      border-radius: 20px;
      margin-bottom: 0.8rem;
      box-shadow: 0 4px 14px rgba(115,0,48,0.18);
    }

    .section-sub {
      font-family: 'Glacial Indifference(Bold)';
      font-size: 24px;
      color: var(--yellow);
      margin: 0 0 2.5rem;
    }

    /* ── ORDERING STEPS ── */
    .steps-grid {
      display: flex;
      justify-self: center;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 50px;
      text-align: left;
    }

    .step-card {
      background: var(--white);
      border-radius: 20px;
      padding: 1.5rem 1.4rem 1.6rem;
      height: 250px;
      width: 300px;
      box-shadow: 0 4px 18px rgba(115,0,48,0.08);
      position: relative;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .step-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(115,0,48,0.15);
    }

    .step-number {
      width: 36px;
      height: 36px;
      background: var(--goldenyellow);
      color: var(--darkmaroon);
      font-family: 'Lilita One';
      font-size: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.85rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .step-card h3 {
      font-family: 'Lilita One';
      font-weight: 400;
      font-size: 20px;
      color: var(--darkmaroon);
      margin: 0 0 0.5rem;
    }

    .step-card p {
      font-family: 'Glacial Indifference(Regular)';
      font-size: 16px;
      color: var(--darkmaroon);
      margin: 0;
      line-height: 1.65;
      text-align: justify;
    }

    /* ── FAQ CARDS ── */
    .faq-section {
      background: var(--white);
      padding: 0 1.5rem 4rem;
    }

    .faq-grid { 
      display: flex;
      justify-self: center;
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 50px;
      text-align: left;
    }

    .faq-card {
      background: var(--goldenyellow);
      border-radius: 20px;
      height: 320px;
      width: 320px;
      padding: 1.4rem 1.4rem 1.6rem;
      box-shadow: 0 4px 18px rgba(115,0,48,0.12);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .faq-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(115,0,48,0.2);
    }

    .faq-icon {
      width: 50px;
      height: 50px;
      background-image: url('Files/boxicon.png');
      background-size: cover;
      background-position: center;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 0.85rem;
      flex-shrink: 0;
    }

    .faq-card:nth-child(3n) .faq-icon {
      background-image: url('Files/cardicon.png');
    }

    .faq-card:nth-child(4n) .faq-icon {
      background-image: url('Files/message.png');
    }

    .faq-card:nth-child(5n) .faq-icon {
      background-image: url('Files/cart2.png');
    }

    .faq-card:nth-child(6n) .faq-icon {
      background-image: url('Files/questionmark.png');
    }

    .faq-card h3 {
      font-family: 'Glacial Indifference(Bold)';
      font-size: 20px;
      color: var(--darkmaroon);
      margin: 0 0 0.5rem;
      line-height: 1.4;
    }

    .faq-card p {
      font-family: 'Glacial Indifference(Regular)';
      font-size: 16px;
      color: var(--darkmaroon);
      margin: 0;
      line-height: 1.65;
      text-align: justify;
    }

    /* ── STILL HAVE QUESTIONS ── */
    .second-section-pill{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 430;
      height: 60px;
      font-family: 'Lilita One';
      font-size: 28px;
      background: var(--goldenyellow);
      color: var(--darkmaroon);
      padding: 0.5rem 1.8rem;
      border-radius: 10px;
      margin-top: 2.5rem;
      margin-bottom: 0.8rem;
      box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    }

    .second-section-sub {
      font-family: 'Glacial Indifference(Bold)';
      font-size: 26px;
      color: var(--darkmaroon);
      margin: 10px 50px 2.5rem;
    }
    
    .cta-section {
      background: var(--yellow);
      padding: 1.5rem 1.5rem;
      text-align: center;
    }

    .cta-section h2 {
      font-family: 'Lilita One';
      -webkit-text-stroke: 2px var(--yellow);
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
      font-weight: 500;
      font-size: 48px;
      color: var(--white);
      margin: 0 0 0.75rem;
    }

    .cta-section p {
      font-family: 'Glacial Indifference(Bold)';
      font-size: 24px;
      color: var(--white);
      margin: 20px auto 2rem;
      line-height: 1.6;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Lilita One';
      font-weight: 500;
      font-size: 24px;
      background: var(--darkmaroon);
      color: var(--white);
      padding: 0 1.5rem;
      height: 70px;
      width: 220px;
      border-radius: 30px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 8px 22px rgba(0,0,0,0.4);
      transition: transform 0.2s ease, background 0.2s ease;
      letter-spacing: 0.03em;
      margin-bottom: 1rem;
    }

    .cta-btn:hover {
      background: var(--white);
      color: var(--darkmaroon);
      border: 1px solid var(--darkmaroon);
      transform: translateY(-3px);
    }

    /*Contact Page */
     /* ── CONTACT PAGE EXTRAS ── */
     .contact-section {
      background: var(--white);
      padding: 3.5rem 1.5rem;
    }

    .contact-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: start;
    }

    /* ── CHAT WIDGET ── */
    .chat-widget {
        background: var(--darkmaroon);
        margin: auto 0;
        border-radius: 20px;
        padding: 1.5rem;
        box-shadow: 0 6px 24px rgba(115, 0, 48, 0.1);
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .chat-widget-header {
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }

    .chat-icon {
      width: 40px;
      height: 40px;
      background-image: url('Files/message.png');
      background-size: contain;
      background-repeat: no-repeat;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .chat-widget-header h2 {
      font-family: 'Lilita One';
      font-weight: 400;
      font-size: 32px;
      color: var(--white);
      margin: 0;
      -webkit-text-stroke: 1px var(--darkmaroon);
      text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    }

    .chat-messages {
      background: var(--white);
      border-radius: 14px;
      height: 410px;
      overflow-y: auto;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .chat-bubble {
      max-width: 75%;
      padding: 0.7rem 1rem;
      border-radius: 16px;
      font-family: 'Glacial Indifference(Regular)';
      font-size: 0.88rem;
      line-height: 1.5;
      position: relative;
    }

    .chat-bubble.bot {
      background: var(--goldenyellow);
      color: var(--darkmaroon);
      align-self: flex-start;
      border-bottom-left-radius: 4px;
    }

    .chat-bubble.user {
      background: var(--darkmaroon);
      color: var(--goldenyellow);
      align-self: flex-end;
      border-bottom-right-radius: 4px;
    }

    .chat-bubble .bubble-time {
      display: block;
      font-size: 0.7rem;
      opacity: 0.65;
      margin-top: 0.3rem;
    }

    .chat-typing {
      display: none;
      align-self: flex-start;
      padding: 0.55rem 0.9rem;
      background: var(--goldenyellow);
      border-radius: 16px;
      border-bottom-left-radius: 4px;
      gap: 4px;
      align-items: center;
    }

    .chat-typing span {
      width: 7px;
      height: 7px;
      background: var(--darkmaroon);
      border-radius: 50%;
      display: inline-block;
      animation: bounce 1s infinite;
    }

    .chat-typing span:nth-child(2) { animation-delay: 0.15s; }
    .chat-typing span:nth-child(3) { animation-delay: 0.3s; }

    @keyframes bounce {
      0%, 80%, 100% { transform: translateY(0); }
      40%            { transform: translateY(-5px); }
    }

    .chat-input-row {
      display: flex;
      gap: 0.6rem;
      align-items: center;
    }

    .chat-input {
      flex: 1;
      height: 46px;
      border: 2px solid var(--white);
      border-radius: 10px;
      padding: 0 1.1rem;
      font-family: 'Glacial Indifference(Regular)';
      font-size: 0.9rem;
      color: var(--darkmaroon);
      outline: none;
      transition: border-color 0.2s;
      background: var(--white);
    }

    .chat-input:focus { border-color: var(--darkmaroon); }

    .chat-send-btn {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background-image: url(Files/paperplane.png);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, transform 0.15s;
    }

    .chat-send-btn:hover {
      transform: scale(1.08);
    }

    .chat-send-btn svg {
      width: 20px;
      height: 20px;
      fill: var(--goldenyellow);
    }

    .chat-note {
      font-family: 'Glacial Indifference(Regular)';
      font-size: 0.78rem;
      color: var(--white);
      margin: 0;
    }

    /* ── RIGHT COLUMN ── */
    .contact-right {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      width: 600px;
    }

    /* Contact info card */
    .contact-info-card {
      background: var(--darkmaroon);
      border-radius: 20px;
      height: 425px;
      width: 600px;
      padding: 1.5rem;
      box-shadow: 0 6px 24px rgba(115,0,48,0.18);
    }

    .card-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Lilita One';
      font-weight: 500;
      height: 45px;
      width: 250px;
      font-size: 24px;
      background: var(--goldenyellow);
      color: var(--darkmaroon);
      padding: 0.35rem 1.2rem;
      border-radius: 10px;
      margin-bottom: 1.1rem;
    }

    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .info-block h3 {
      font-family: 'Glacial Indifference(Bold)';
      font-size: 24px;
      color: var(--white);
      margin: 0 0 0.25rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .info-icon {
      width: 40px;
      height: 40px;
      background-size: cover;
      background-position: center;
      border-radius: 10px;
      flex-shrink: 0;
    }

    .info-entry {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 0.5rem 0;
    }

    .info-entry-social {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.5rem 0;
    }

    .info-entry div {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .info-entry h3 {
      margin: 0;
      font-family: 'Glacial Indifference(Bold)';
      font-size: 20px;
      color: var(--white);
    }
    
    .location-map {
      height: 200px;
      width: 100%;
      border-radius: 15px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .info-block p,
    .info-block a {
      font-family: 'Glacial Indifference(Regular)';
      font-size: 16px;
      color: var(--white);
      margin: 0;
      text-decoration: none;
      display: block;
      line-height: 1.5;
    }

    .info-block a:hover { text-decoration: underline; }

    .location-map iframe {
      width: 100%;
      height: 320px;
      border: 0;
      display: block;
    }

    .social-row {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .social-link {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-family: 'Glacial Indifference(Bold)';
      font-size: 0.9rem;
      color: var(--goldenyellow);
      text-decoration: none;
      transition: opacity 0.2s;
    }

    .social-link:hover { opacity: 0.75; }

    .social-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--goldenyellow);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    /* Hours card */
    .hours-card {
      background: var(--darkmaroon);
      border-radius: 20px;
      padding: 1.5rem;
      text-align: center;
      box-shadow: 0 6px 24px rgba(115,0,48,0.18);
    }

    .hours-card p {
      font-family: 'Glacial Indifference(Bold)';
      color: var(--goldenyellow);
      margin: 0.3rem 0 0;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .hours-card .hours-sub {
      font-family: 'Glacial Indifference(Regular)';
      font-size: 0.85rem;
      opacity: 0.8;
    }

    /* ── FEEDBACK SECTION ── */
    .feedback-section {
      background: var(--white);
      padding: 3.5rem 1.5rem;
    }

    .feedback-inner {
      max-width: 1100px;
      margin: 0 auto;
      background: var(--yellow);
      border-radius: 24px;
      padding: 2.5rem 2rem;
      box-shadow: 0 6px 24px rgba(115,0,48,0.12);
    }

    .feedback-inner h2 {
      font-family: 'Lilita One';
      font-size: 40px;
      font-weight: 500;
      -webkit-text-stroke: 1px var(--yellow);
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
      color: var(--darkmaroon);
      margin: 0 0 0.4rem;
    }

    .feedback-inner > p {
      font-family: 'Glacial Indifference(Regular)';
      font-size: 20px;
      color: var(--darkmaroon);
      margin: 0 0 1.75rem;
    }

    .feedback-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem 1.5rem;
      margin-bottom: 1rem;
    }

    .fb-group {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .fb-group.full { grid-column: 1 / -1; }

    .fb-group label {
      font-family: 'Glacial Indifference(Bold)';
      font-size: 0.9rem;
      color: var(--darkmaroon);
    }

    .fb-group input,
    .fb-group textarea {
      width: 100%;
      padding: 0.65rem 0.9rem;
      border: 2px solid transparent;
      border-radius: 10px;
      font-family: 'Glacial Indifference(Regular)';
      font-size: 0.93rem;
      background: #fff;
      color: var(--darkmaroon);
      outline: none;
      transition: border-color 0.2s;
      box-sizing: border-box;
    }

    .fb-group input::placeholder,
    .fb-group textarea::placeholder { color: #bbb; }

    .fb-group input:focus,
    .fb-group textarea:focus { border-color: var(--darkmaroon); }

    .fb-group textarea {
      resize: vertical;
      min-height: 130px;
    }

    .submit-feedback-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Lilita One';
      height: 60px;
      width: 140px;
      font-weight: 500;
      font-size: 24px;
      background: var(--goldenyellow);
      color: var(--darkmaroon);
      padding: 0 2rem;
      border-radius: 15px;
      border: none;
      cursor: pointer;
      margin-top: 0.5rem;
      box-shadow: 0 6px 18px rgba(115,0,48,0.22);
      transition: transform 0.2s, background 0.2s;
    }

    .submit-feedback-btn:hover {
      background: var(--darkmaroon);
      color: var(--goldenyellow);
      border: 1px solid var(--goldenyellow);
      transform: translateY(-2px);
    }

    /*Product Page */
     /* ── PRODUCT PAGE EXTRAS ── */
     .category-section {
      padding: 3.5rem 1.5rem;
    }

    .category-section:nth-child(odd)  { background: var(--darkmaroon); }
    .category-section:nth-child(even) { background: var(--white); }

    .category-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .category-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .cat-pill {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      font-family: 'Lilita One';
      font-size: 36px;
      font-weight: 4  00;
      background: var(--goldenyellow);
      color: var(--darkmaroon);
      padding: 0.45rem 1.8rem;
      height: 64px;
      width: 295px;
      border-radius: 10px;
      margin-bottom: 0.5rem;
      box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    }

    .cat-pill-handmade {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      font-family: 'Lilita One';
      font-size: 36px;
      font-weight: 4  00;
      background: var(--yellow);
      color: var(--darkmaroon);
      padding: 0.45rem 1.8rem;
      height: 80px;
      width: 500px;
      border-radius: 10px;
      margin-bottom: 0.5rem;
      box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    }

    .cat-sub {
      font-family: 'Glacial Indifference(Bold)';
      font-size: 24px;
      color: var(--goldenyellow);
      margin-top: 10px;
    }

    /* dark sections have golden sub text; light sections have maroon */
    .category-section:nth-child(even) .cat-sub {
      color: var(--darkmaroon);
    }

    /* ── PRODUCT GRID ── */
    .product-grid-list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    /* Carousel mode: horizontal scroll with snap */
    .carousel-wrap {
      position: relative;
    }

    .product-grid-list.carousel {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 1rem 1rem 1.5rem 1rem;
    }

    .product-grid-list.carousel::-webkit-scrollbar { display: none; }
    .product-grid-list.carousel { scrollbar-width: none; }

    .product-grid-list.carousel .prod-card {
      flex: 0 0 auto;
      scroll-snap-align: start;
      width: 300px;
      margin: 0;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--goldenyellow);
      border: 2px solid var(--darkmaroon);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 18px rgba(0,0,0,0.18);
      cursor: pointer;
      z-index: 10000;
    }

    .carousel-btn svg { width: 18px; height: 18px; fill: var(--darkmaroon); }

    .carousel-btn.left { left: 12px; }
    .carousel-btn.right { right: 12px; }

    @media (max-width: 768px) {
      .product-grid-list.carousel { gap: 1rem; padding-left: 12px; padding-right: 12px; }
      .product-grid-list.carousel .prod-card { width: min(86vw, 320px); }
    }

    /* ── PRODUCT CARD ── */
    .prod-card {
      background: var(--goldenyellow);
      border-radius: 18px;
      overflow: hidden;
      display: flex;
      height: 350px;
      flex-direction: column;
      box-shadow: 0 6px 20px rgba(0,0,0,0.12);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      position: relative;
    }

    /* fuzzy wires section – dark background cards */
    .category-section:nth-child(odd) .prod-card {
      background: var(--darkmaroon);
      border: 2px solid rgba(244,210,16,0.25);
    }

    .prod-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 32px rgba(0,0,0,0.18);
    }

    .prod-img-wrap {
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: rgba(115,0,48,0.08);
      position: relative;
    }

    /* dark-bg cards get a lighter placeholder */
    .category-section:nth-child(odd) .prod-img-wrap {
      background: rgba(244,210,16,0.08);
    }

    .prod-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s ease;
    }

    .prod-card:hover .prod-img-wrap img {
      transform: scale(1.05);
    }

    .prod-info {
      padding: 0.75rem 0.9rem 0.9rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      flex: 1;
    }

    .prod-text { flex: 1; }

    .prod-name {
      font-family: 'Lilita One';
      font-weight: 400;
      font-size: 16px;
      color: var(--darkmaroon);
      margin: 0 0 0.15rem;
      line-height: 1.3;
    }

    .category-section:nth-child(odd) .prod-name {
      color: var(--goldenyellow);
    }

    .prod-price {
      font-family: 'Glacial Indifference(Bold)';
      font-size: 15px;
      color: var(--darkmaroon);
      margin: 0;
    }

    .category-section:nth-child(odd) .prod-price {
      color: rgba(244,210,16,0.85);
    }

    .add-cart-btn {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--darkmaroon);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, transform 0.15s;
      font-size: 18px;
    }

    .category-section:nth-child(odd) .add-cart-btn {
      background: var(--goldenyellow);
    }

    .add-cart-btn:hover {
      transform: scale(1.12);
    }

    .add-cart-btn svg {
      width: 20px;
      height: 20px;
      fill: var(--goldenyellow);
      pointer-events: none;
    }

    .category-section:nth-child(odd) .add-cart-btn svg {
      fill: var(--darkmaroon);
    }

    /* Added badge */
    .added-badge {
      display: inline-flex;
      position: absolute;
      top: 10px;
      right: 10px;
      background: var(--darkmaroon);
      color: var(--goldenyellow);
      font-family: 'Glacial Indifference(Bold)';
      font-size: 0.7rem;
      padding: 0.2rem 0.55rem;
      border-radius: 20px;
      opacity: 0;
      transform: translateY(-4px);
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
      align-items: center;
      justify-content: center;
    }

    .added-badge:nth-child(1n) {
      background: var(--darkmaroon);
      color: var(--goldenyellow);
    }

    .prod-card.just-added .added-badge {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── CUSTOM ORDER CTA ── */
    .custom-cta {
      background: var(--white);
      padding: 2rem 1.5rem;
      text-align: center;
    }

    .custom-cta-inner {
      width: 1300px;
      height: 220px;
      margin: 0 auto;
      padding: 2rem;
      background-image: url('Files/pattern2.png');
      background-size: cover;
      background-position: center;
      border-radius: 24px;
    }

    .custom-cta h2 {
      font-family: 'Glacial Indifference(Bold)';
      font-size: 32px;
      color: var(--darkmaroon);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      margin: 0 0 0.4rem;
    }

    .custom-cta p {
      font-family: 'Glacial Indifference(Regular)';
      font-size: 24px;
      color: var(--darkmaroon);
      margin: 0 0 1.5rem;
    }

    .custom-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Lilita One';
      font-size: 1rem;
      background: var(--darkmaroon);
      color: var(--goldenyellow);
      height: 50px;
      padding: 0 2rem;
      border-radius: 30px;
      text-decoration: none;
      box-shadow: 0 6px 18px rgba(115,0,48,0.25);
      transition: transform 0.2s, background 0.2s;
    }

    .custom-cta-btn:hover {
      background: var(--goldenyellow);
      color: var(--darkmaroon);
      border: 1px solid var(--darkmaroon);
      transform: translateY(-2px);
    }

    /* ── TOAST ── */
    .cart-toast {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: var(--darkmaroon);
      color: var(--goldenyellow);
      font-family: 'Glacial Indifference(Bold)';
      font-size: 0.9rem;
      padding: 0.75rem 1.3rem;
      border-radius: 30px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
      z-index: 9999;
    }

    .cart-toast.show {
      opacity: 1;
      transform: translateY(0);
    }


/* ═══════════════════════════════════════════════════
   RESPONSIVE — matches mobile mockups exactly
   ═══════════════════════════════════════════════════ */

/* ─── TABLET (≤1024px) ─── */
@media (max-width: 1024px) {
  .nav-list a {
    width: auto;
    padding: 0.6rem 1rem;
    font-size: 14px;
  }

  .product-grid-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 auto 2rem;
  }

  .service-card {
    width: 100%;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 0 auto;
  }

  .why-item {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
  }

  .why-item p {
    width: auto;
    font-size: 18px;
  }

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

  .story-images img {
    height: 150px;
  }

  .custom-cta-inner {
    width: 100%;
    height: auto;
    padding: 2rem 1.5rem;
  }

  .custom-cta h2 {
    font-size: 24px;
  }

  .custom-cta p {
    font-size: 1rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .chat-widget,
  .contact-right,
  .contact-info-card {
    width: 100%;
  }

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

  .steps-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .step-card,
  .faq-card {
    width: 100%;
    height: auto;
  }

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

  .order-summary {
    position: static;
  }

  .about-grid > * {
    flex: 1 1 100%;
  }

  .product-header {
    width: auto;
    height: auto;
    padding: 0.75rem 1.5rem;
  }

  .featured-products .section-header h2 {
    font-size: 48px;
  }

  .our-story-inner {
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    height: auto;
    padding: 0 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    justify-content: flex-start;
    width: 100%;
  }
}

/* ─── MOBILE (≤768px) — matches mockup screenshots ─── */
@media (max-width: 768px) {

  /* ── HEADER ── */
  .hero-home {
    height: auto;
    overflow: visible;
  }

  .site-header {
    height: auto;
    overflow: visible;
  }

  .header-inner {
    padding: 0.6rem 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  /* Logo: left */
  .brand-logo {
    order: 1;
    flex-shrink: 0;
  }

  .logo-image {
    width: 52px;
  }

  /* Cart: center (auto margins push it between logo and toggle) */
  .cart-link {
    order: 2;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: 0.75rem;
  }

  .cart-link img {
    width: 32px;
  }

  /* Hamburger: far right — maroon rounded box with golden bars */
  .menu-toggle {
    display: inline-flex;
    order: 3;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: none;
    background: var(--darkmaroon);
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 22px;
    height: 3px;
  }

  /* Open state: same maroon box, spans animate to × */
  .menu-toggle.open {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: none;
    background: var(--darkmaroon);
    z-index: 10001;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
  }

  .menu-toggle.open span { background: var(--goldenyellow); }
  .main-navigation {
    order: 4;
    width: 100%;
    display: none;
    margin-top: 0.5rem;
    flex: 0 0 100%;
  }

  /* When opened, menu becomes a full-screen overlay like the mockup */
  .main-navigation.open {
    display: block;
    position: fixed;
    inset: 0 0 0 0;
    width: 100%;
    height: 500px;
    z-index: 9999;
    background: var(--darkmaroon);
    padding-top: 18px;
    overflow-y: auto;
  }

  /* small brand mark shown inside overlay (visual only) */
  .main-navigation.open::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 12px;
    width: 48px;
    height: 48px;
    background-image: url('Files/Submark.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
  }

  .main-navigation.open .nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    padding: 78px 20px 40px 20px;
    align-items: flex-start;
    margin: 0;
  }

  .main-navigation.open .nav-list li { justify-content: flex-start; }

  .main-navigation.open .nav-list a {
    width: auto;
    font-size: 26px;
    padding: 0;
    color: var(--goldenyellow);
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: left;
    font-family: 'Glacial Indifference(Bold)';
  }

  .main-navigation.open .nav-list a:hover { color: rgba(244,210,16,0.95); }

  /* lock page scroll when overlay is open */
  body.menu-open { overflow: hidden; }

  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    padding: 0.4rem 0 0.6rem;
  }

  .nav-list li {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-list a {
    width: min(100%, 280px);
    height: 42px;
    font-size: 15px;
    border-radius: 21px;
    padding: 0 1rem;
  }

  /* ── HERO (home) — prevent text overflow ── */
  .hero-home {
    height: 400px;
    padding: 2rem 1rem 2rem;
    align-items: flex-end;
    overflow: hidden;
  }

  .hero-content {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .button-hero {
    width: 140px;
    height: 46px;
    font-size: 16px;
    padding: 0 0.75rem;
  }

  /* ── ABOUT SECTION (home) ── */
  .about {
    padding: 0;
  }

  .about-grid {
    flex-direction: column;
    gap: 0;
  }

  .about-grid > * {
    flex: 1 1 100%;
    min-width: 0;
  }

  .about-visual {
    padding: 1.5rem 1.5rem 0;
    justify-content: center;
  }

  .about-image {
    max-width: 180px;
  }

  .about-copy {
    padding: 1.25rem 1.5rem 2rem;
    max-width: 100%;
  }

  .section-label {
    font-size: 24px;
    display: block;
    margin-bottom: 0.5rem;
  }

  .section-description {
    font-size: 15px;
    line-height: 1.65;
    text-align: left;
  }

  .about-highlights {
    flex-direction: row;
    gap: 0;
    flex-wrap: nowrap;
  }

  .about-highlights li {
    font-size: 15px;
    padding: 0.5rem 0.5rem;
  }

  .button-about {
    width: 140px;
    height: 44px;
    font-size: 16px;
  }

  /* ── FEATURED PRODUCTS (home) ── */
  .featured-products {
    padding: 2rem 1rem;
  }

  .featured-products .section-header {
    margin-bottom: 1.5rem;
  }

  .featured-products .section-header h2 {
    font-size: 2.2rem;
    margin: 0.4rem 0;
  }

  .featured-products .section-header p {
    font-size: 0.95rem;
  }

  .product-header {
    font-size: 18px;
    width: auto;
    height: auto;
    padding: 0.6rem 1.25rem;
  }

  /* 2-column grid matching mockup */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .product-card {
    flex: none;
    width: 100%;
    max-width: 100%;
    height: 220px;
  }

  .section-actions {
    margin-top: 1.5rem;
  }

  .featured-button {
    width: 180px;
    height: 50px;
    font-size: 17px;
  }

  /* ── TESTIMONIALS (home) — full-width stacked cards ── */
  .feedback {
    flex-direction: column;
    height: auto;
    min-height: unset;
    padding: 2rem 0;
  }

  .feedback .section-header {
    margin-bottom: 1.25rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
  }

  .testimonial-card {
    width: 100%;
    height: 130px;
    max-width: 100%;
  }

  /* ── FOOTER — logo above, links + contact side by side ── */
  .site-footer {
    height: auto;
    padding: 2rem 1.25rem 1rem;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
    height: auto;
    padding: 0;
    max-width: 100%;
  }

  /* Logo spans full width, sits above the two columns */
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 0.25rem;
  }

  .footer-brand img,
  .footer-brand .logo-mark {
    width: 72px;
    height: auto;
  }

  .footer-links {
    align-items: flex-start;
    text-align: left;
  }

  .footer-links ul {
    gap: 0.5rem;
  }

  .footer-links h3,
  .footer-contact h3 {
    font-size: 13px;
    margin: 0 0 0.6rem;
  }

  .footer-contact address {
    font-size: 13px;
    line-height: 1.6;
  }

  .footer-contact .contact-list {
    gap: 0.35rem;
  }

  .footer-contact .contact-list li {
    padding-left: 1.6rem;
    font-size: 13px;
  }

  .footer-contact .contact-list li::before {
    width: 18px;
    height: 18px;
  }

  .footer-copy {
    font-size: 0.78rem;
    margin-top: 1.25rem;
    padding-top: 0.75rem;
    grid-column: 1 / -1;
  }

  /* ── ABOUT PAGE HERO ── */
  .hero-about {
    height: auto;
    min-height: 200px;
    padding: 2.5rem 1rem 2rem;
    align-items: center;
    overflow: hidden;
  }

  .hero-about-content h1 {
    font-size: clamp(2.4rem, 10vw, 4rem);
    -webkit-text-stroke: 1px var(--darkmaroon);
    text-shadow: 4px 4px 4px rgba(0,0,0,0.4);
    margin-bottom: 0.5rem;
  }

  .hero-about-content p {
    font-size: 14px;
    padding: 0 0.5rem;
  }

  /* ── OUR STORY ── */
  .our-story {
    padding: 2rem 1rem;
  }

  .our-story-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .story-text {
    flex: none;
    width: 100%;
  }

  .story-text h2 {
    font-size: 2rem;
    text-shadow: 3px 3px 3px rgba(0,0,0,0.15);
  }

  .story-text p {
    font-size: 15px;
    line-height: 1.7;
  }

  .story-images {
    flex: none;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .story-images img {
    height: 130px;
    border-radius: 12px;
  }

  /* ── DEMO REEL ── */
  .demo-reel-section {
    padding: 2rem 1rem;
  }

  .demo-reel-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }

  .demo-reel-wrapper {
    height: 220px;
    border-radius: 24px;
    border-width: 3px;
  }

  .demo-reel-video {
    border-radius: 20px;
  }

  /* ── PRODUCTS & SERVICES (about page) ── */
  .products-services {
    padding: 2rem 1rem;
  }

  .products-services .section-pill {
    width: auto;
    height: auto;
    padding: 0.5rem 1.2rem;
    font-size: 18px;
    border-radius: 12px;
  }

  .products-services h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 0 0 2rem;
  }

  .service-card {
    width: 100%;
    border-radius: 16px;
    padding: 1.25rem;
  }

  .service-card-title {
    font-size: 18px;
  }

  .service-card ul {
    font-size: 15px;
    line-height: 1.9;
  }

  /* ── WHY CHOOSE US ── */
  .why-us {
    padding: 2rem 1rem;
  }

  .why-us h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
  }

  .why-item {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(115,0,48,0.12);
  }

  .why-item:last-child {
    border-bottom: none;
  }

  .why-icon-wrap {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }

  .why-item p {
    font-size: 16px;
    width: auto;
    text-align: left;
  }

  /* ── PRODUCTS PAGE CATEGORY SECTIONS ── */
  .category-section {
    padding: 2rem 1rem;
  }

  .cat-pill {
    font-size: 22px;
    height: auto;
    width: auto;
    padding: 0.5rem 1.4rem;
    border-radius: 10px;
  }

  .cat-pill-handmade {
    font-size: 22px;
    height: auto;
    width: auto;
    padding: 0.5rem 1.4rem;
    border-radius: 10px;
  }

  .cat-sub {
    font-size: 16px;
    margin-top: 6px;
  }

  .product-grid-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .prod-card {
    height: auto;
    min-height: 230px;
    border-radius: 14px;
  }

  .prod-name {
    font-size: 15px;
  }

  .prod-price {
    font-size: 14px;
  }

  .add-cart-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .add-cart-btn svg {
    width: 18px;
    height: 18px;
  }

  /* ── CUSTOM CTA ── */
  .custom-cta {
    padding: 1.5rem 1rem;
  }

  .custom-cta-inner {
    width: 100%;
    height: auto;
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
  }

  .custom-cta h2 {
    font-size: 18px;
    margin-bottom: 0.4rem;
  }

  .custom-cta p {
    font-size: 14px;
    margin-bottom: 1rem;
  }

  .custom-cta-btn {
    height: 44px;
    font-size: 15px;
    padding: 0 1.5rem;
  }

  /* ── FAQs PAGE ── */
  .page-section {
    padding: 2rem 1rem;
  }

  .section-pill-dark {
    width: auto;
    height: auto;
    padding: 0.5rem 1.4rem;
    font-size: 20px;
    border-radius: 12px;
  }

  .section-sub {
    font-size: 17px;
    margin-bottom: 1.5rem;
  }

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

  .step-card {
    width: 100%;
    height: auto;
    padding: 1.25rem;
    border-radius: 14px;
  }

  .step-number {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .step-card h3 {
    font-size: 17px;
  }

  .step-card p {
    font-size: 14px;
  }

  .faq-section {
    padding: 0 1rem 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .faq-card {
    width: 100%;
    height: auto;
    padding: 1.25rem;
    border-radius: 14px;
  }

  .faq-card h3 {
    font-size: 16px;
  }

  .faq-card p {
    font-size: 14px;
  }

  .second-section-pill {
    width: auto;
    height: auto;
    padding: 0.5rem 1.4rem;
    font-size: 20px;
    margin-top: 0;
  }

  .second-section-sub {
    font-size: 17px;
    margin: 0.75rem 0 1.5rem;
  }

  .cta-section {
    padding: 2rem 1rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 17px;
    margin: 0.75rem auto 1.5rem;
  }

  .cta-btn {
    height: 54px;
    width: 180px;
    font-size: 20px;
  }

  /* ── CONTACT PAGE ── */
  .contact-section {
    padding: 2rem 1rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .chat-widget {
    width: 100%;
    height: auto;
    min-height: 420px;
    border-radius: 16px;
  }

  .chat-messages {
    min-height: 220px;
    max-height: 260px;
  }

  .chat-bubble {
    font-size: 0.88rem;
  }

  .contact-right {
    width: 100%;
    gap: 1rem;
  }

  .contact-info-card {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .card-pill {
    width: auto;
    height: auto;
    padding: 0.4rem 1rem;
    font-size: 18px;
  }

  .hours-card {
    border-radius: 16px;
  }

  .feedback-section {
    padding: 2rem 1rem;
  }

  .feedback-inner {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
  }

  .feedback-inner h2 {
    font-size: 1.6rem;
  }

  .feedback-inner > p {
    font-size: 15px;
    margin-bottom: 1.25rem;
  }

  .feedback-form-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .fb-group.full {
    grid-column: auto;
  }

  .submit-feedback-btn {
    width: 130px;
    height: 50px;
    font-size: 20px;
    border-radius: 12px;
  }

  /* ── CART PAGE ── */
  .cart-section {
    padding: 2rem 1rem;
  }

  .cart-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cart-items-col h2 {
    font-size: 1.3rem;
  }

  .cart-item {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0.875rem;
    gap: 0.75rem;
  }

  .cart-item-img {
    width: 72px;
    height: 72px;
  }

  .cart-item-subtotal {
    margin-left: auto;
    width: auto;
  }

  .order-summary {
    position: static;
    padding: 1.25rem;
    border-radius: 16px;
  }

  .order-summary h2 {
    font-size: 1.3rem;
  }
}
/* ─── SMALL MOBILE (≤480px) ─── */
@media (max-width: 480px) {
  .hero-home {
    height: auto;
    min-height: 250px;
    padding: 2.5rem 1rem 2rem;
    align-items: center;
    overflow: hidden;
  }

  .button-hero {
    width: 130px;
    height: 42px;
    font-size: 14px;
  }

  .hero-about-content h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .featured-products .section-header h2 {
    font-size: 1.8rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-card {
    height: 180px;
  }

  .product-grid-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .prod-card {
    min-height: 200px;
  }

  .cat-pill,
  .cat-pill-handmade {
    font-size: 18px;
    padding: 0.4rem 1rem;
  }

  .story-images img {
    height: 110px;
  }

  .why-item {
    gap: 1rem;
  }

  .why-icon-wrap {
    width: 54px;
    height: 54px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
  }

  .footer-links h3,
  .footer-contact h3 {
    font-size: 13px;
  }

  .footer-contact .contact-list li {
    font-size: 12px;
    padding-left: 1.4rem;
  }

  .steps-grid,
  .faq-grid {
    gap: 0.75rem;
  }

  .testimonial-card {
    height: 120px;
  }

  .chat-messages {
    max-height: 220px;
  }

  .submit-feedback-btn,
  .submit-btn {
    font-size: 0.9rem;
  }

  .cart-item {
    gap: 0.6rem;
    padding: 0.75rem;
  }

  .cart-item-img {
    width: 60px;
    height: 60px;
  }
}