/* === GLOBAL === */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 700;
  color: #6C08AE; /* Purple */
  text-align: center;
}

p {
  margin-bottom: 1rem;
}

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

/* Buttons */
.btn {
  background: #6C08AE;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  transition: 0.3s;
}
.btn:hover {
  background: #FB5D11; /* Orange */
}

/* Grid Layouts */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.2s;
}
.card:hover {
  transform: translateY(-5px);
}

/* Header */
.header {
  background: #fff;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #6C08AE;
}
.header .logo span {
  color: #FB5D11;
  font-family: 'Cookie', cursive;
}
.header .nav a {
  margin-left: 20px;
  font-weight: 600;
}
.header .nav a.active {
  color: #FB5D11;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px; 
  background: linear-gradient(135deg, #6C08AE, #FB5D11);
  color: #fff;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: hidden;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.hero .tagline {
  font-family: 'Cookie', cursive;
  font-size: 1.8rem;
  margin: 15px 0;
}

/* Sections */
/* What We Do Section */
.what-desc {
  text-align: center;
  font-size: 1.13rem;
  margin: 0 0 28px 0;
  font-weight: 500;
}
/* What We Do Section */
.what {
  background: #f9f9f9;        /* choose your background colour */
  width: 100%;                /* stretch full width */
  max-width: none;            /* override section default */
  margin: 0;                  /* remove auto margin */
  padding: 60px 20px;         /* keep consistent spacing */
  box-sizing: border-box;
}

.what h2 {
  text-align: center;
  font-size: 2.1rem;
  color: #FB5D11;
  margin-bottom: 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.what .grid {
  max-width: 1100px;          /* keep inner grid neat */
  margin: auto;               /* center the cards */
}

/* Grid for What We Do */
.what .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row on desktop */
  gap: 20px;
}

/* On smaller screens: 2 per row */
@media screen and (max-width: 768px) {
  .what .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.what .card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(108,8,174,0.07);
  padding: 32px 18px;
  font-size: 1.08rem;
  color: #6C08AE;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.what .card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 24px rgba(251,93,17,0.13);
  background: linear-gradient(90deg, #ffecd2 0%, #fcb69f 100%);
  color: #333;
}
/* About Us Section */
.about {
  background: #fff;
  max-width: 700px;
  margin: 40px auto;
  padding: 40px 32px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(108,8,174,0.08), 0 1.5px 8px rgba(251,93,17,0.08);
  text-align: center;
}
.about h2 {
  font-size: 2.2rem;
  color: #6C08AE;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.about p {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 600px;
}
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.featured .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media screen and (min-width: 900px) {
  .featured .grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.featured .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(108,8,174,0.07);
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-img {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin-bottom: 14px;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(108,8,174,0.08);
}
.featured .card h3 {
  font-size: 1.1rem;
  color: #6C08AE;
  margin: 10px 0 8px 0;
}
.featured .card p {
  font-size: 0.98rem;
  color: #333;
  margin-bottom: 14px;
}
.featured .btn {
  margin-top: auto;
}
.view-more-row {
  grid-column: 1/-1;
  text-align: center;
  margin-top: 24px;
}
.view-more {
  background: #FB5D11;
  color: #fff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(251,93,17,0.10);
}

/* === CUSTOMER REVIEWS CAROUSEL === */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: auto;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.review-slide {
  flex: 0 0 25%; /* 4 per row desktop */
  padding: 10px;
}

.review-slide img {
  width: 100%;
  height: 280px;           /* square-like display (adjust size for grid) */
  object-fit: cover;       /* crop without stretching */
  object-position: top;    /* crop taller ones from the top */
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
}

.reviews-instructions {
  font-size: 1rem;
  color: #555;
  margin: 10px auto 30px auto;
  font-style: italic;
  text-align: center;
  max-width: 600px;
  line-height: 1.6;
}

/* Mobile: 2 per row */
@media screen and (max-width: 768px) {
  .review-slide {
    flex: 0 0 50%;
  }
}

/* Buttons (desktop only) */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #6C08AE;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  transition: background 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background: #FB5D11;
}

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

@media screen and (max-width: 768px) {
  .carousel-btn { display: none; }
}

/* FAQS */
.faqs {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(108,8,174,0.08);
  padding: 40px 24px;
  max-width: 700px;
  margin: 40px auto;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.08rem;
  color: #FB5D11;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
  outline: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.faq-question[aria-expanded="true"] {
  color: #6C08AE;
}
.faq-answer {
  font-size: 1rem;
  color: #333;
  margin: 0 0 0 0;
  padding-left: 2px;
  padding-bottom: 8px;
  border-left: 2px solid #FB5D11;
  background: #faf7ff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 1px 6px rgba(108,8,174,0.04);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.faq-item {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 24px 18px;
  box-shadow: 0 2px 12px rgba(108,8,174,0.05);
}
.faq-item h3 {
  font-size: 1.08rem;
  color: #FB5D11;
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

/* === SHOP PAGE === */
.shop h1 {
  text-align: center;
  margin-bottom: 30px;
}
.shop .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* === CART PAGE === */
.cart-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}
.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 15px;
}
/* === ADMIN DASHBOARD === */
.login-page {
  max-width: 400px;
  margin: 100px auto;
  text-align: center;
}
.login-page input {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
}
.dashboard.hidden {
  display: none;
}
.dashboard {
  padding: 20px;
}
.dashboard section {
  margin-bottom: 40px;
}
.error {
  color: red;
  font-size: 0.9rem;
}
.products form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.products ul, .orders ul {
  list-style: none;
  padding: 0;
}
.products li, .orders li {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.products button {
  background: red;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
}

/* Hamburger Menu */
#hamburger-icon {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.bar1, .bar2, .bar3 {
    width: 22px;
    height: 2px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
    transform: rotate(45deg) translate(-5px, -5px);
}

.mobile-nav {
    display: none;
    list-style: none;
    padding: 0;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav li {
    text-align: center;
    padding: 15px 0;
}

.mobile-nav li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .nav {
        display: none;
    }

    #hamburger-icon {
        display: block;
    }
}

/* === PRODUCTS / SERVICES / COLLECTIONS / WHY CHOOSE US === */
.products-info {
  background: #f9f9f9;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(108, 8, 174, 0.06), 0 2px 10px rgba(251, 93, 17, 0.05);
  padding: 50px 30px;
  margin: 60px auto;
  max-width: 900px;
  text-align: left;
}

.products-info h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
  text-align: center;
  color: #6C08AE;
  font-weight: 700;
}

.products-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.products-info ul li {
  background: #fff;
  margin-bottom: 12px;
  padding: 14px 18px;
  border-left: 4px solid #FB5D11;
  border-radius: 8px;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
  transition: background 0.3s ease;
}

.products-info ul li:hover {
  background: #fff6f1;
}

.products-info em {
  font-style: normal;
  font-weight: 600;
  color: #6C08AE;
}
.products-info p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-top: 20px;
}

/* === PRODUCT GALLERY === */
.gallery {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.gallery h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #6C08AE;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row desktop */
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;              /* fixed uniform height */
  object-fit: cover;          /* crop neatly without distortion */
  border-radius: 16px;        /* rounded edges */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

@media screen and (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row mobile */
  }
}

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
}

.lightbox .close {
  position: absolute;
  top: 20px; right: 30px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}
.lightbox .close:hover {
  color: #FB5D11;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 95%;
  max-height: 95%;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
}

.lightbox .close {
  position: absolute;
  top: 20px; right: 30px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 2100;
}

/* Nav buttons */
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #6C08AE;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  transition: background 0.3s;
  z-index: 2100;
}
.lightbox-btn:hover { background: #FB5D11; }
.lightbox-btn.left { left: 20px; }
.lightbox-btn.right { right: 20px; }

@media screen and (max-width: 768px) {
  .lightbox-btn { display: none; } /* hide buttons on mobile, swipe instead */
}

/* === CONTACT FORM (premium) === */
.contact {
  padding: 60px 20px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.contact h2 {
  font-size: 2.2rem;
  color: #6C08AE; /* brand purple */
  margin-bottom: 22px;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 34px rgba(108,8,174,0.10);
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Floating label fields */
.field {
  position: relative;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  box-sizing: border-box;   /* keeps inputs inside card */
  padding: 16px 14px;
  border: 1.8px solid #e6e6e6;
  border-radius: 14px;
  font-size: 1rem;
  background: #fafafa;
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { min-height: 120px; resize: vertical; }

.field label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  padding: 0 6px;
  background: #fff;
  color: #777;
  font-size: 1rem;
  pointer-events: none;
  transition: .18s ease;
}

/* activate label when focused or has value */
.field:has(input:focus),
.field:has(select:focus),
.field:has(textarea:focus) label {
  color: #6C08AE;
}
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label,
.field select:valid + label,
.field input:focus + label,
.field textarea:focus + label,
.field select:focus + label {
  top: -10px;
  left: 12px;
  font-size: .82rem;
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fff;
  border-color: #6C08AE;
  box-shadow: 0 0 0 3px rgba(108,8,174,0.12);
}

/* Custom select arrow */
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%236C08AE' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 10l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
}

/* Button */
#contactSubmit.btn {
  background: #6C08AE;
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .25s, box-shadow .25s;
}
#contactSubmit.btn:hover { background: #FB5D11; }
#contactSubmit.btn[disabled] { opacity: .7; cursor: not-allowed; }

/* Inline status fallback */
.form-status {
  margin-top: 6px;
  font-size: .96rem;
  color: #2e7d32; /* green */
}

/* === Success modal === */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.modal.open { display: flex; }

.modal-card {
  width: min(92vw, 520px);
  background: #fff;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 16px 42px rgba(0,0,0,.22);
  text-align: center;
}
.modal-card h3 {
  margin: 0 0 8px 0;
  color: #6C08AE;
}
.modal-card .btn {
  margin-top: 14px;
  background: #6C08AE;
  border-radius: 10px;
  padding: 12px 16px;
}
.modal-card .btn:hover { background: #FB5D11; }
.modal-card .close {
  position: absolute;
  top: 20px; right: 30px;
  color: #333;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* === FOOTER === */
.footer {
  background: #6C08AE;
  color: #fff;
  padding: 40px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-brand h3 {
  margin: 0;
  font-size: 1.6rem;
  color: #fff; /* Marbis = white */
}
.footer-brand span {
  color: #FB5D11; /* Kreations = orange */
  font-family: 'Cookie', cursive;
}
.footer-brand p {
  margin-top: 6px;
  font-size: 1rem;
  opacity: 0.85;
}

.footer-socials {
  display: flex;
  gap: 18px;
}
.footer-socials a {
  width: 42px;              /* slightly bigger container */
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  color: #fff;
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: #FB5D11;
  color: #fff;
}

.footer-socials svg {
  width: 20px;              /* normalize all icons */
  height: 20px;
  display: block;
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 0.9rem;
  opacity: 0.85;
}

@media screen and (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
  }
}

/* === FLOATING ACTION BUTTONS === */
.fab {
  position: fixed;
  right: 18px;             /* keep to the right edge */
  z-index: 1900;           /* above page UI, below lightbox (2000) */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Scroll-to-top: bottom button */
#scrollTop {
  bottom: 18px;
  background: #6C08AE;     /* brand purple */
  display: none;           /* shown via JS on scroll */
}

/* WhatsApp: stacked above scroll-to-top */
#whatsappBtn {
  bottom: 88px;            /* 56 + gap */
  background: #25D366;     /* WhatsApp green */
  text-decoration: none;
}

/* Icon sizes */
#whatsappBtn i, #scrollTop i {
  font-size: 20px;
  line-height: 1;
}

/* Subtle pulse on WhatsApp */
@keyframes pulseWa {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
#whatsappBtn { animation: pulseWa 2.2s infinite; }

/* Nuke any stray horizontal scroll site-wide */
html, body { max-width: 100%; overflow-x: hidden; }

#scrollTop { background: #FB5D11; } /* Orange */
#whatsappBtn { background: #25D366; } /* WhatsApp green */

.footer-socials i {
  font-size: 1.4rem;
  color: #fff;
}

.fab i {
  font-size: 1.6rem;
  color: #fff;
}

.shop-page {
  padding: 20px;
}

.section-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #6C08AE;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s ease;
}
.product-card:hover {
  transform: translateY(-3px);
}
.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.product-card h3 {
  margin: 5px 0;
  font-size: 1.1rem;
  color: #333;
}
.product-card .price {
  color: #6C08AE;
  font-weight: bold;
}
.product-card button {
  margin-top: 10px;
  padding: 8px 14px;
  background: linear-gradient(45deg, #6C08AE, #f15a24);
  border: none;
  border-radius: 6px;
  color: white;
  cursor: pointer;
}
.product-card button:hover {
  opacity: 0.9;
}

/* Shop product cards: force text alignment and button width for perfect row alignment */
.shop-grid .product-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
  min-height: 370px;
  padding: 1.2rem 0.7rem;
}
.shop-grid .product-card img {
  flex-shrink: 0;
  margin-bottom: 0.8rem;
}
.shop-grid .product-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  min-height: 2.5em;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.shop-grid .product-card p.category {
  font-size: 1rem;
  min-height: 1.5em;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.shop-grid .product-card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #6C08AE;
  min-height: 1.5em;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.shop-grid .actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.shop-grid .actions .view-btn,
.shop-grid .actions .add-to-cart {
  width: 80%;
  max-width: 180px;
  margin: 0 auto;
  font-size: 1rem;
  padding: 10px 0;
  border-radius: 8px;
  text-align: center;
}

/* Logo Styling */
.logo {
  font-family: 'Poppins', sans-serif; /* Main brand font */
  font-weight: 700;
  font-size: 1.5rem;
}

.logo span {
  font-family: 'Cookie', cursive; /* Only Kreations in Cookie font */
  font-weight: 400;
  font-size: 1.6rem;
  color: #f15a24; /* keep orange */
}

/* Footer Brand Text */
.footer-brand {
  text-align: center;
  margin-bottom: 15px;
}

.footer-brand h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}

.footer-brand h3 span {
  font-family: 'Cookie', cursive;
  font-weight: 400;
  font-size: 1.6rem;
  color: #f15a24; /* orange brand color */
}

.footer-brand p {
  font-family: 'Cookie', cursive;  /* tagline now in Cookie font */
  font-size: 1.3rem;
  color: #fff;
  margin-top: 5px;
  text-align: center;
}

/* Shop Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 20px;
}

@media (min-width: 768px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Product Image */
.product-card img {
  width: 100%;
  height: auto;        /* auto height = natural proportions */
  object-fit: contain; /* shows full image */
  border-radius: 12px;
  background: #f9f9f9; /* light background for images with transparent/odd sizes */
  padding: 6px;        /* small padding so it doesn’t touch edges */
}

/* Product Name */
.product-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

/* Product Description */
.product-card p {
  font-size: 0.9rem;
  color: #555;
  margin: 3px 0;
}

/* Product Price */
.product-card .price {
  font-size: 1rem;
  font-weight: bold;
  color: #6C08AE; /* brand purple */
  margin: 8px 0;
}

/* Add to Cart Button */
.product-card button {
  margin-top: auto;
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #6C08AE, #f15a24);
  transition: opacity 0.2s ease;
}

.product-card button:hover {
  opacity: 0.9;
}

/* Shop Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* default: 2 per row, even on small phones */
  gap: 16px;
  padding: 20px;
}

/* Tablets */
@media (min-width: 768px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Filters */
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 20px auto;
  padding: 0 15px;
  max-width: 900px;
}

.shop-filters input,
.shop-filters select {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.2s ease;
}

.shop-filters input:focus,
.shop-filters select:focus {
  border-color: #6C08AE; /* brand purple */
}
.shop-filters label {
  font-size: 0.9rem;
  color: #333;
  margin-right: 6px;
}

.product-detail-page {
  padding: 20px;
  max-width: 1100px;
  margin: auto;
}

.back-link {
  display: inline-block;
  margin-bottom: 15px;
  color: #6C08AE;
  font-weight: 600;
  text-decoration: none;
}

.back-link i {
  vertical-align: middle;
}

.product-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.image-gallery img {
  width: 260px;
  height: 260px;
  border-radius: 16px;
  object-fit: cover;
}

.product-info {
  padding: 10px;
}

.product-info h2 {
  color: #3a005f;
  margin-bottom: 5px;
}

.product-info p {
  margin: 6px 0;
}

@media (min-width: 768px) {
  .product-container {
    flex-direction: row;
  }

  .image-gallery {
    flex-direction: column;
    width: 40%;
  }

  .product-info {
    width: 60%;
  }
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.actions .view-btn {
  width: 100%;
  background: #6C08AE;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.actions .view-btn:hover {
  background: #4a057a;
}
.actions .add-to-cart {
  width: 100%;
  background: #FB5D11;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.actions .add-to-cart:hover {
  background: #d94c00;
}
/* Cart & Checkout Enhancements */
.nav-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #6C08AE;
}

.nav-cart-count,
[data-cart-count] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: #FB5D11; /* brand orange */
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.mobile-nav span[data-cart-count] {
  margin-left: 0.4rem;
}

.count-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.add-to-cart.in-cart {
  background: #6c08ae;
  color: #fff;
}

.add-to-cart.in-cart .label {
  color: #fff;
}

.quantity-picker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e6d4f5;
  border-radius: 999px;
}

.quantity-picker .qty-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: none;
  background: #f3e4ff;
  color: #6c08ae;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.quantity-picker .qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.quantity-picker #productQtyValue {
  font-weight: 700;
  min-width: 1.5rem;
  text-align: center;
}

.floating-cart-button {
  position: fixed;
  bottom: 9.5rem;
  right: 1rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: none;
  background: rgba(108, 8, 174, 0.2);
  color: #6c08ae;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(108, 8, 174, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.floating-cart-button.has-items {
  background: #6c08ae;
  color: #fff;
}

.floating-cart-button:hover {
  transform: translateY(-2px);
}

.floating-cart-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.floating-cart-button .cart-count-pill {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  background: #ff6b6b;
  color: #fff;
  min-width: 1.5rem;
  padding: 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-cart-panel {
  position: fixed;
  bottom: 6rem;
  right: 0.8rem;
  width: 90vw;                    /* narrower on mobile */
  max-width: 340px;               /* never too wide */
  max-height: 70vh;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 9999;
}

/* When open */
.floating-cart-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Slight adjustment for larger screens */
@media (min-width: 768px) {
  .floating-cart-panel {
    right: 1.5rem;
    bottom: 6.5rem;
    width: min(360px, calc(100% - 3rem));
  }
}


.floating-cart-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cart-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.floating-cart-panel__header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.floating-cart-panel__close {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #6c08ae;
}

.floating-cart-panel__body {
  overflow-y: auto;
  max-height: 40vh;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-cart-panel__empty {
  padding: 2rem 1rem;
  text-align: center;
  color: #7a6b8b;
  font-weight: 500;
  justify-content: center;
}

.floating-cart-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid #f3e4ff;
  border-radius: 14px;
  padding: 0.75rem;
  transition: box-shadow 0.2s ease;
}

.floating-cart-item.highlight {
  box-shadow: 0 0 0 3px rgba(108, 8, 174, 0.25);
}

.floating-cart-item__thumb {
  justify-self: flex-start;
}

.floating-cart-item__thumb img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 10px;
}

.floating-cart-item__details h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.floating-cart-item__details p {
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: #6c08ae;
}

.floating-cart-item__quantity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-cart-item__quantity .qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #f3e4ff;
  color: #6c08ae;
  font-weight: 700;
  cursor: pointer;
}

.floating-cart-item__remove {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  color: #b02a37;
  cursor: pointer;
  justify-self: flex-end;
  align-self: flex-start;
}

.floating-cart-panel__footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-cart-panel__total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
}

.floating-cart-panel__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #6c08ae;
  background: #fff;
  color: #6c08ae;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
  background: #f3e4ff;
  color: #5a0794;
}

.cart-page {
  padding: 3rem 1rem;
}

.cart-layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid #f3e4ff;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 12, 34, 0.05);
}

.cart-row__media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.cart-row__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.cart-row__remove {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  color: #b02a37;
  cursor: pointer;
}

.cart-row__price {
  font-weight: 600;
  color: #6c08ae;
  margin: 0.35rem 0;
}

.cart-row__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.cart-row .quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #e6d4f5;
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
}

.cart-row .qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #f3e4ff;
  color: #6c08ae;
  font-weight: 700;
  cursor: pointer;
}

.cart-row .qty-value {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.cart-row__line-total {
  font-weight: 700;
  color: #3c2c58;
}

.cart-summary {
  border: 1px solid #f3e4ff;
  border-radius: 18px;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 12, 34, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: fit-content;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
}

.cart-summary__note {
  margin: 0;
  font-size: 0.85rem;
  color: #7a6b8b;
}

.cart-summary .btn {
  width: 100%;
  text-align: center;
}

.cart-empty {
  padding: 3rem 1.5rem;
  text-align: center;
  border: 1px dashed #d6c0ed;
  border-radius: 18px;
  color: #6c08ae;
  font-weight: 600;
  background: rgba(108, 8, 174, 0.05);
}

.checkout-page {
  padding: 3rem 1rem;
}

.checkout-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: stretch;
}

.order-summary,
.checkout-form {
  border: 1px solid #f3e4ff;
  border-radius: 18px;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(17, 12, 34, 0.05);
}

.order-summary h2,
.checkout-form h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.order-summary__items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.order-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  font-weight: 600;
}

.order-item__name {
  font-weight: 600;
}

.order-item__meta {
  color: #7a6b8b;
}

.order-item__amount {
  color: #6c08ae;
  font-weight: 600;
}

.order-summary__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1.25rem;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkout-form input,
.checkout-form select {
  border: 1px solid #e6d4f5;
  border-radius: 10px;
  padding: 0.75rem;
  font-size: 0.95rem;
}

.checkout-form.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.checkout-empty {
  margin-bottom: 1.5rem;
  border: 1px dashed #d6c0ed;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: rgba(108, 8, 174, 0.08);
  color: #6c08ae;
  font-weight: 600;
}

@media (min-width: 480px) {
  .floating-cart-panel {
    width: min(360px, calc(100% - 2.5rem));
  }

  .floating-cart-item {
    grid-template-columns: 64px 1fr auto;
  }

  .floating-cart-item__thumb img {
    width: 64px;
    height: 64px;
  }
}

@media (min-width: 600px) {
  .cart-row {
    display: grid;
    grid-template-columns: 140px 1fr;
  }

  .cart-row__media img {
    height: 140px;
  }

  .cart-row__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 640px) {
  .order-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .floating-cart-button {
    bottom: 3rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
  }

  .floating-cart-panel {
    bottom: 6.5rem;
    right: 1.5rem;
    width: min(360px, calc(100% - 3rem));
    max-height: 70vh;
  }

  .cart-page,
  .checkout-page {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 900px) {
  .cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
  }

  .checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .floating-cart-panel {
    right: 2rem;
  }
}
.cart-summary .btn.disabled,
.cart-summary .btn[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}
.product-features h4 {
  margin: 1rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.product-features .feature-list {
  padding-left: 1.2rem;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #4f048a;
}

.product-features p {
  margin: 0 0 1rem;
  color: #7a6b8b;
}

/* ==== FEATURED PRODUCTS SECTION ==== */
#featured {
  padding: 40px 20px;
  text-align: center;
  background: #fff;
}

#featured h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #6C08AE;
  margin-bottom: 25px;
}

/* Featured grid */
#featuredProducts.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: stretch;
  padding: 10px;
}

/* Product card */
#featuredProducts .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#featuredProducts .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

/* Image */
#featuredProducts .card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

/* Product name */
#featuredProducts .card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  margin: 12px 0 4px;
  min-height: 40px;
}

/* Category */
#featuredProducts .card p {
  font-size: 0.9rem;
  color: #777;
  margin: 0 0 10px;
}

/* Button */
#featuredProducts .card .btn {
  background: linear-gradient(90deg, #6C08AE, #F3731E);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

#featuredProducts .card .btn:hover {
  opacity: 0.9;
}

/* Grid behaviour: 2 per row on mobile, 4 per row on desktop */
@media (max-width: 768px) {
  #featuredProducts.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 769px) {
  #featuredProducts.grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==== PRODUCT DETAIL PAGE (MULTI-IMAGE GALLERY) ==== */
.product-detail-page {
  max-width: 1100px;
  margin: 40px auto;
  padding: 25px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  font-family: "Poppins", sans-serif;
  color: #333;
}

/* back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 600;
  color: #6C08AE;
  margin-bottom: 25px;
  transition: color .2s ease;
}
.back-link:hover { color: #F3731E; }

/* layout */
.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

/* ==== image gallery ==== */
.image-gallery {
  flex: 1 1 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.main-image {
  width: 100%;
  max-width: 480px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform .25s ease;
}
.main-image:hover { transform: scale(1.02); }

/* thumbnails row */
.thumbnail-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.thumbnail-row img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
}
.thumbnail-row img:hover {
  border-color: #F3731E;
  transform: scale(1.05);
}
.thumbnail-row img.active {
  border-color: #6C08AE;
}

/* ==== info ==== */
.product-info {
  flex: 1 1 420px;
}
.product-info h2 {
  font-size: 1.8rem;
  color: #4A007E;
  margin-bottom: 6px;
}
.product-info .category {
  color: #777;
  margin-bottom: 8px;
}
.product-info .price {
  color: #6C08AE;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 10px 0 15px;
}
.product-info p { line-height: 1.6; margin-bottom: 8px; }

/* features */
.product-features ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}
.product-features li { margin-bottom: 5px; }

/* quantity picker */
.quantity-picker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
}
.qty-btn {
  background: #6C08AE;
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s ease;
}
.qty-btn:hover { background: #F3731E; }
#productQtyValue {
  font-weight: 600;
  color: #333;
  min-width: 25px;
  text-align: center;
}

/* add to cart */
.add-to-cart {
  background: linear-gradient(90deg,#6C08AE,#F3731E);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity .2s ease, transform .1s ease;
}
.add-to-cart:hover { opacity:.9; transform:translateY(-2px); }

/* responsive */
@media (max-width: 768px){
  .product-container { flex-direction: column; align-items:center; }
  .image-gallery, .product-info { width:100%; text-align:center; }
  .thumbnail-row { justify-content:center; }
  .add-to-cart { width:100%; }
}

.delivery-info {
  border: 1px solid #f3e4ff;
  border-radius: 18px;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(17, 12, 34, 0.05);
  margin-top: 1.5rem;
  color: #333;
}

.delivery-info h2 {
  color: #6C08AE;
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.delivery-info ul {
  margin: 0.5rem 0 1rem 1.2rem;
  color: #6C08AE;
  list-style: disc;
}

.delivery-info li {
  margin-bottom: 0.3rem;
}
