/* Layout utilities */
.main-content__section {
  width: 100%;
  height: 100vh;
}
.box {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* Swiper base */
.swiper {
  width: 100%;
  height: 100vh;
}
.swiper-autoheight,.swiper-autoheight, .swiper-slide {
  height: 100vh !important;
}
.sub-til {
  margin-bottom: calc(var(--spacing) * 4);
}
span.polices-update {
  font-size: 1rem;
  font-weight: var(--font-regular);
  color: var(--newblack);
  text-transform: uppercase;
  opacity: .5;
}
span.menu-store {
  font-size: var(--font-size-base);
  font-weight: var(--font-medium);
  color: var(--newblack);
  text-transform: uppercase;
  text-decoration: none;
}
span.menu-store:hover {
  opacity: .5;
}
h1{
  margin-bottom: calc(var(--spacing) * 4);
}
.contact-section {
  z-index: var(--z-dropdown);
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  line-height: 1.5;
}
.contact-title {
  font-size: var(--font-size-base);
  font-weight: var(--font-medium);
  text-transform: uppercase;
}
.contact-note {
  margin-top: var(--spacing-lg);
  line-height: 1.6;
}
p.contact-text, a.contact-text {
  font-size: var(--font-size-lg);
  font-weight: var(--font-regular);
  text-transform: uppercase;
}
.item_name, .item_name span {
    font-size: var(--font-size-lg);
    font-weight: var(--font-medium);
    text-transform: uppercase;
    text-align: center;
}
.item_name span {
    margin-block-start: 1em;
    margin-block-end: 1em;
}
.item_name a {
    font-size: 2rem;
    font-weight: var(--font-regular);
}
.item_name p {
    font-size: 2rem;
    font-weight: var(--font-regular);
    opacity: .5;
}

#product-swiper {
  width: 100%;
  height: 100vh;
}
#product-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.slide-content .img__product {
  max-width: 497px;
}
.slide-content .product-info {
  margin-top: 10px;
}
.slide-content.sold-out {
  opacity: 0.5;
}
.items {
  margin-top: 10px;
}
.item_name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  text-align: center;
  margin: 5px 0;
}
.item_name span {
  display: block;
}
.add-to-cart {
  font-size: 2rem;
  font-weight: var(--font-light);
  background: none;
  border: none;
  cursor: default;
  opacity: 1;
  padding: 0;
  line-height: 1;
}
.add-to-cart.sold-out-btn {
  opacity: 0.5;
  cursor: default;
}
.sold-out-symbol {
  font-size: 2rem;
  color: #ff0000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 2px solid #ff0000;
  border-radius: 50%;
  position: relative;
}
.sold-out-symbol::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 2px;
  background: #ff0000;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.swiper-slide.sold-out {
  opacity: 0.5;
}

/* Cart Panel */
#cart-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 24rem;
  height: 100vh;
  background: var(--newwhite);
  z-index: var(--z-top);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
}
#cart-panel.open {
  right: 0;
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: var(--font-size-lg);
  font-weight: var(--font-medium);
  text-transform: uppercase;
}
#close-cart {
  background: none;
  border: none;
  font-size: var(--font-size-xl2);
  cursor: default;
  padding: 0 10px;
  font-weight: var(--font-light);
}
#close-cart:hover {
  opacity: .5;
}
#cart-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.cart-empty {
  text-align: center;
  padding: 40px 0;
  text-transform: uppercase;
  color: #666;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
}
.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.cart-item-info {
  flex: 1;
}
.cart-item-name {
  font-size: var(--font-size-base);
  font-weight: var(--font-medium);
  text-transform: uppercase;
}
.cart-item-price {
  font-size: var(--font-size-base);
  font-weight: var(--font-regular);
}
.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-btn {
  width: 25px;
  height: 25px;
  background: var(--newwhite);
  color: var(--newblack);
  border: none;
  cursor: default;
  font-size: 1rem;
}
.remove-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: default;
  color: #999;
}
.remove-btn:hover {
  color: var(--newblack);
}
.cart-footer {
  padding: 20px;
}
.cart-total {
  font-size: var(--font-size-lg);
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: right;
}
.checkout-btn {
  width: 100%;
  background: var(--newblack);
  color: var(--newwhite);
  border: none;
  padding: 15px;
  font-size: var(--font-size-base);
  text-transform: uppercase;
  cursor: default;
  transition: opacity 0.2s;
}
.checkout-btn:hover:not(:disabled) {
  opacity: 0.7;
}
.checkout-btn:disabled {
  background: #999;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  #products-container {
    grid-template-columns: 1fr;
    padding: 70px 15px 15px;
  }
  
  #cart-panel {
    max-width: 100%;
  }
}

/* Cart Button */
.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: default;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.cart-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--newblack);
}
#cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--newwhite);
  color: var(--newblack);
  font-size: 10px;
  font-weight: var(--font-medium);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
/* Cart Notification */
.cart-notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--newblack);
  color: var(--newwhite);
  padding: 12px 24px;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  z-index: var(--z-top);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cart-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
/* Policy section */
.main-policy__container {
  width: 100%;
  height: 100%;
  max-width: var(--container-4xl);
  margin: 0 auto;
  padding: 4em 0 0 0;
  line-height: 1.5;
}
.p-5 {
    padding: calc(var(--spacing) * 5);
}
.main-policy__title {
  width: auto;
  height: auto;
  text-align: center;
}
.main-policy__body {
  line-height: 1.5;
}
.p1 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-regular);
  text-transform: uppercase;
  margin-bottom: calc(var(--spacing) * 4);
}
.rte {
   text-align: left;
   font-weight: var(--font-regular);
   text-transform: uppercase;
   --tw-leading: var(--leading-relaxed);
   line-height: var(--leading-relaxed);
}
.rte ul li {
  font-size: var(--font-size-lg);
  font-weight: var(--font-regular);
  text-transform: uppercase;
}