:root {
  --bg: #fafaf7;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e8e6e1;
  --accent: #2f6b4f;
  --accent-dark: #1f4a36;
  --sale: #c0392b;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, .06);
  --container: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: white;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px
}

/* Announcement */
.announcement {
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  overflow: hidden;
  padding: 9px 0
}

.announcement-track {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 20px
}

.announcement-track strong {
  color: #f6c453
}

/* Header */
.header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px
}

.logo span {
  color: var(--accent)
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500
}

.nav a {
  position: relative;
  padding: 6px 0
}

.nav a:hover {
  color: var(--accent)
}

.header-actions {
  display: flex;
  gap: 6px;
  align-items: center
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s;
  position: relative
}

.icon-btn:hover {
  background: var(--bg)
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px
}

.menu-toggle {
  display: none
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 18px 20px;
  font-size: 13px;
  color: var(--muted)
}

.breadcrumbs a:hover {
  color: var(--accent)
}

.breadcrumbs span {
  color: var(--text)
}

/* Product layout */
.product-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  padding-bottom: 60px
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: start
}

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

.thumb {
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  padding: 0;
  transition: border-color .2s;
  aspect-ratio: 1
}

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

.thumb.active {
  border-color: var(--accent)
}

.thumb:hover {
  border-color: var(--muted)
}

.main-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
  touch-action: pan-y
}

.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  max-height: 100%;
  object-fit: contain;
  pointer-events: none
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
  transition: all .2s;
  z-index: 2
}

.nav-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05)
}

.nav-arrow.prev {
  left: 14px
}

.nav-arrow.next {
  right: 14px
}

.dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .25);
  transition: all .2s
}

.dot.active {
  background: var(--accent);
  width: 22px;
  border-radius: 4px
}

.badge-sale {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--sale);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 2
}

/* Info */
.info .vendor {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px
}

.info h1 {
  font-size: 34px;
  margin-bottom: 14px
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 14px
}

.stars {
  color: #f5a623;
  letter-spacing: 2px
}

.rating a {
  color: var(--muted);
  text-decoration: underline
}

.price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap
}

.price .current {
  font-size: 30px;
  font-weight: 700
}

.price .compare {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through
}

.price .save {
  background: #fde8e6;
  color: var(--sale);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600
}

.short-desc {
  color: var(--muted);
  margin-bottom: 24px
}

.option {
  margin-bottom: 22px
}

.option label {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500
}

.swatches {
  display: flex;
  gap: 10px
}

.swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c);
  border: 2px solid var(--line);
  position: relative;
  transition: transform .15s
}

.swatch:hover {
  transform: scale(1.08)
}

.swatch.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px #fff inset
}

.qty {
  display: inline-flex;
  align-items: center;
  overflow: hidden
}

.qty button {
  width: 42px;
  height: 44px;
  font-size: 18px;
  background: #fff;
  transition: background .15s
}

.qty button:hover {
  background: var(--bg)
}

.qty input {
  width: 50px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  background: #fff;
  outline: none
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px
}

.btn {
  padding: 15px 22px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: all .2s;
  text-align: center;
  width: 100%
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark)
}

.btn-dark {
  background: #1a1a1a;
  color: #fff;
  animation: popShake 2s linear infinite;
  padding-top: 20px;
  padding-bottom: 20px;
}
@keyframes popShake {

    /* normal */
    0%{
        transform: scale(1) rotate(0deg);
    }

    /* pop out */
    10%{
        transform: scale(1.02) rotate(0deg);
    }

    /* shake while big */
    15%{
        transform: scale(1.02) rotate(-2deg);
    }

    20%{
        transform: scale(1.02) rotate(2deg);
    }

    25%{
        transform: scale(1.02) rotate(-2deg);
    }

    30%{
        transform: scale(1.02) rotate(2deg);
    }

    /* shrink back */
    40%{
        transform: scale(1) rotate(0deg);
    }

    /* rest */
    100%{
        transform: scale(1) rotate(0deg);
    }
}

.btn-dark:hover {
  background: #000
}

.perks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 13px;
  padding: 18px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 24px
}

.acc {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0
}

.acc summary {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-size: 15px
}

.acc summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300
}

.acc[open] summary::after {
  content: '−'
}

.acc p,
.acc ul {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px
}

.acc ul {
  padding-left: 18px
}

/* Features */
.features {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 60px 0
}

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

.feature {
  text-align: center
}

.f-icon {
  font-size: 38px;
  margin-bottom: 12px
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 6px
}

.feature p {
  color: var(--muted);
  font-size: 14px
}

/* Reviews */
.reviews {
  padding: 70px 20px
}

.reviews h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.review {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line)
}

.review .stars {
  font-size: 14px;
  margin-bottom: 10px;
  display: block
}

.review h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px
}

.review p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px
}

.review span {
  font-size: 13px;
  font-weight: 500
}

/* Related */
.related {
  padding: 30px 20px 70px
}

.related h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center
}

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

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
  display: block
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.card img {
  aspect-ratio: 1;
  object-fit: cover;
  background: #f5f4f0
}

.card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 14px 4px
}

.card p {
  padding: 0 14px 14px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px
}

/* Newsletter */
.newsletter {
  background: var(--accent);
  color: #fff;
  padding: 60px 20px;
  text-align: center
}

.newsletter h2 {
  font-size: 30px;
  margin-bottom: 8px;
  color: #fff
}

.newsletter p {
  margin-bottom: 22px;
  opacity: .9
}

.newsletter form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto
}

.newsletter input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: none;
  font-size: 14px;
  outline: none;
  font-family: inherit
}

/* Footer */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
    background: rgb(20, 20, 20);
    padding: 20px 10px;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    line-height: 2.5;
    font-size: 14px;
}
.footer-links > li{
    color: whitesmoke;
}
/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1a1a1a;
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
  opacity: 0;
  transition: all .3s;
  z-index: 100;
  pointer-events: none
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1
}

/* Responsive */
@media(max-width:980px) {
  .product-wrap {
    grid-template-columns: 1fr;
    gap: 30px
  }

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

  .thumbs {
    order: 2;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 4px
  }

  .thumb {
    min-width: 70px;
    width: 70px;
    height: 70px
  }

  .info h1 {
    font-size: 26px
  }

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

  .reviews-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px
  }
}

@media(max-width:640px) {
  .menu-toggle {
    display: flex
  }

  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    gap: 0
  }

  .nav.open {
    display: flex
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line)
  }

  .breadcrumbs {
    padding: 14px 20px;
    font-size: 12px
  }

  .info h1 {
    font-size: 22px
  }

  .price .current {
    font-size: 24px
  }

  .nav-arrow {
    display: none
  }

  .reviews-grid {
    grid-template-columns: 1fr
  }

  .related-grid {
    grid-template-columns: 1fr 1fr
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .newsletter form {
    flex-direction: column
  }

  .perks {
    grid-template-columns: 1fr
  }

  .reviews,
  .related {
    padding: 50px 20px
  }

  .reviews h2,
  .related h2,
  .newsletter h2 {
    font-size: 24px
  }
}

img {
  border-radius: var(--radius);
}

/* Cart Styling */


#cart{
     display: flex;
     flex-direction: column;
    background-color: white;
    position: fixed;
    height: 100vh;
    width: 0px;
    right: 0px;
    z-index:1000;
    overflow-y: auto;
    transition: width 0.3s ease;

}

#cart>h1 {
    margin: 15px 15px 5px 10px;
    border-bottom: 1px solid var(--border);
}
#cart>span {
    align-self: flex-end;
    position: relative;
    bottom: 38px;
    margin-right: 25px;
    font-weight: bolder;
    cursor: pointer;
}
#cart-content{
    display: flex;
}
#cart-content>img{
    width: 100px;
    margin: 10px 10px 0px 10px;
}
#cart-content>h4{
    margin-top: 10px;
   width: 100%;
   margin-bottom: 0px;

}
#cart-details{
  text-align: center;
     margin-top: -28px;
    /* margin-left: 121px; */
}
#cart-details>#qty{
    border: 1px solid black;
    padding: 1px 8px 1px 8px;
}
#cart-details>#plus{
    margin-left: 0px;
    border: 1px solid black;
    padding: 1px 5px 1px 5px;
    margin-right: 25px;
    cursor: pointer;
}
#cart-details>#minus{
    margin-left: 0px;
    border: 1px solid black;
    padding: 1px 5px 1px 5px;
        cursor: pointer;

}
/* #cart-details{
    margin-bottom: 250px;
} */
#cart>#sub{
    display: flex;
    justify-content: space-between;
    height: 50vh;
    align-items: flex-end;
    border-top:1px solid var(--border);
}
#sub>span{
    margin:10px 10px 0px 10px ;
    font-weight: 1000;
}
#cart>p{
    text-align: center;
}
#cart>a{
    background: var(--accent);
    color: white;
    border: none;
    padding: 13px;
    margin: 35px 5px 20px 5px;
    font-weight: bold;
  font-family: "Plus Jakarta Sans", sans-serif;
    text-decoration: none;
   text-align: center;
   border-radius: var(--radius);
}

/* Qty Break Down */
.quantity-breaks {
    max-width: 400px;
    /* margin: auto;
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08); */
}

.title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.bundle-option {
    position: relative;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    background: white;
}

.bundle-option:hover {
    border-color: #222;
}

.bundle-option.active {
    border-color: #111;
    background: #fafafa;
}

.bundle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bundle-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.radio {
    width: 20px;
    height: 20px;
    border: 2px solid #bbb;
    border-radius: 50%;
    position: relative;
}

.bundle-option.active .radio {
    border-color: #111;
}

.bundle-option.active .radio::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #111;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
}

.qty {
    font-weight: 700;
    font-size: 16px;
}

.price {
    font-size: 18px;
    font-weight: 700;
}

.save {
    margin-top: 8px;
    margin-left: 32px;
    color: #666;
    font-size: 14px;
}

.badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: #111;
    color: white;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 30px;
    font-weight: 600;
}

.total-box {
    margin-top: 20px;
    padding: 18px;
    background: #f7f7f7;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 18px;
}

@media (max-width: 600px) {
    .bundle-header {
        align-items: flex-start;
        gap: 8px;
    }

    .price {
        font-size: 16px;
    }

    .title {
        font-size: 20px;
    }
}
#deliver,#delivery-date{
  color: var(--muted);
  font-size: small;
}
#delivery-date{
  margin-bottom: 8px;
}