html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  background: #C7B832;
  color: #161616;
  font-family: 'Inter', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

body {
  min-height: 100vh;
  min-width: 100vw;
  position: relative;
  background: #C7B832;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1 0 auto;
  padding-bottom: 2rem;
}

.header-background {
  width: 100vw;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  background: #C7B832;
}
/* Smooth fade from video into the header background at the bottom */
.header-background::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(199, 184, 50, 0) 80%,
    rgba(199, 184, 50, 0.6) 90%,
    rgba(199, 184, 50, 1) 100%
  );
}
/* Removed overlay since video is now semi-transparent */

.background-media {
  object-fit: cover;
  width: 100vw;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  display: block;
  filter: none;
  opacity: 1.0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.content {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 62vh;
  padding-top: 2vh;
  margin-top: 0;
}

.product-count {
  width: 100vw;
  max-width: 100vw;
  margin: 0.5rem 0 0 0;
  padding: 0.8rem 3vw 0 3vw;
  font-size: 1.05rem;
  color: #202020;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  position: relative;
  z-index: 5;
}

@media (max-width: 700px) {
  .product-count {
    font-size: 1rem;
    padding: 0.6rem 2vw 0 2vw;
    margin-top: 0.4rem;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  width: 100vw;
  max-width: 100vw;
  margin: 0 auto 2vw auto;
}

.product-item {
  background: transparent;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  aspect-ratio: 1/1.2;
  width: 100%;
  height: 100%;
  position: relative;
}
.product-item::before { content: ""; position: absolute; inset: 0; background: transparent; pointer-events: none; opacity: 0; }

.product-item img {
  width: 100%;
  height: calc(100% - 38px);
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.2s, filter 0.3s;
  display: block;
  border-bottom: 1px solid transparent;
  filter: grayscale(1);
  position: relative;
  z-index: 0;
}

.product-item:hover img,
.product-item:focus img {
  opacity: 1;
  filter: grayscale(0);
}

.caption { display: none; }

.header-top {
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  padding: 1.5vh 3vw 0 3vw;
  box-sizing: border-box;
}

.header-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Header title image inside header bar */
.header-title-img {
  height: 320px;
  width: auto;
  max-width: 52vw;
  display: block;
  margin: -30px auto 0 auto;
}

.header-labels {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  transform: translateY(-100px);
}
.header-labels img {
  height: 64px;
  width: auto;
}

@media (max-width: 300px) {
  .header-labels img { height: 24px; }
}

.cart-link {
  position: absolute;
  right: 3vw;
  top: 1.5vh;
  color: #181818;
  background: #D59332;
  border-radius: 18px;
  padding: 0.5em 1.2em;
  font-size: 1.1rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  border: 1px solid #D9B650;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.07);
}
.cart-link:hover, .cart-link:focus {
  background: #D9B650;
  color: #111;
}

.main-title {
  width: 100vw;
  text-align: center;
  font-family: 'Helvetica Neue UltraLight', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Liberation Sans', 'Nimbus Sans', sans-serif;
  color: #D4352A;
  font-size: 3.3rem;
  font-weight: 300;
  margin-top: 8rem;
  margin-bottom: 6rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.main-title-img {
  display: block;
  margin: 6rem auto 4rem auto;
  max-width: 90vw;
  height: auto;
}

.logo-home {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
}

.logo-img {
  height: 193.2px;
  width: auto;
  max-width: 552px;
  transition: opacity 0.2s;
  cursor: pointer;
  display: block;
}

.logo-home:hover .logo-img,
.logo-home:focus .logo-img {
  opacity: 0.7;
}

.product-info-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 38px;
  background: transparent;
  padding: 0 1.2em;
  box-sizing: border-box;
  font-size: 1.12rem;
  border-top: none;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.product-desc {
  color: #222;
  font-size: 1.12rem;
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-shrink: 0;
}

.product-price {
  color: #111;
  font-weight: 400;
  font-size: 1.12rem;
  margin-right: 0.2em;
  text-transform: none;
  letter-spacing: 0.01em;
}

.cart-btn {
  background: none;
  color: #111;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 0.94em;
  cursor: pointer;
  transition: color 0.18s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.45em;
  height: 1.45em;
  font-weight: 400;
  box-shadow: none;
  line-height: 1;
}
.cart-btn:hover, .cart-btn:focus {
  color: #D4352A;
  transform: scale(1.15);
}
.cart-btn:active {
  transform: scale(0.95);
}

.cart-btn {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Modal styles */
.product-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.45);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.2s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.product-modal {
  background: #DDBD41;
  color: #171717;
  border-radius: 12px;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
  padding: 2em 2em 2em 2em;
  max-width: calc(100vw - 80px);
  width: calc(100vw - 80px);
  min-width: calc(100vw - 80px);
  min-height: calc(100vh - 200px);
  max-height: calc(100vh - 200px);
  text-align: left;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  animation: popIn 0.18s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: row;
  gap: 2.5em;
  margin: 100px 40px;
}
@keyframes popIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-images-gallery {
  flex: 1.5 1 0;
  min-width: 400px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1em;
  overflow-y: auto;
  scrollbar-width: thin;
  padding-right: 0.5em;
}
.modal-images-gallery img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #D59332;
  background: #D9B650;
  display: block;
  flex-shrink: 0;
}
.modal-content {
  flex: 1.5 1 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  overflow-y: auto;
  max-height: calc(100vh - 200px);
  padding: 0.5em 0.5em 0.5em 0.3em;
  box-sizing: border-box;
}
.modal-content h2 {
  margin: 0 0 0.3em 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.modal-meta-row {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin: 0.2em 0 0.4em 0;
}
/* availability controls are code-only now; selector removed */
.availability-badge {
  display: inline-block;
  padding: 0.2em 0.6em;
  border-radius: 999px;
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1;
}
.availability-badge.available { background: #46a546; color: #fff; }
.availability-badge.soldout { background: #D4352A; color: #fff; }
.modal-ingredients {
  margin: 0.2em 0 0.5em 0;
  font-size: 0.9em;
  line-height: 1.4;
}
.modal-content p { 
  line-height: 1.3; 
  color: #202020; 
  margin: 0.3em 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  text-align: justify;
  max-width: 100%;
  font-size: 0.9rem;
}
.product-modal-close {
  position: absolute;
  top: 0.7em;
  right: 1em;
  background: none;
  border: none;
  font-size: 1.5em;
  color: #D59332;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 2;
}
.product-modal-close:hover {
  color: #D4352A;
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-modal {
    flex-direction: column;
    max-width: calc(100vw - 20px);
    width: calc(100vw - 20px);
    padding: 1.2em 0.5em 1em 0.5em;
    gap: 1.5em;
    min-height: calc(100vh - 100px);
    max-height: calc(100vh - 100px);
    margin: 50px 10px;
  }
  .modal-images-gallery {
    flex-direction: row;
    max-width: 100vw;
    min-width: 0;
    max-height: 105vh;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0.5em;
    padding: 0 0.5em;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    display: flex;
    align-items: flex-start;
  }
  .modal-images-gallery img {
    width: 100%;
    height: auto;
    max-height: 100%;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
  }
  .modal-content {
    min-width: 0;
    max-height: calc(100vh - 100px);
    padding: 0.4em 0.4em 0.4em 0.2em;
    box-sizing: border-box;
    overflow-y: auto;
  }
}
/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 701px) {
  .header-title-img {
    height: 280px;
    max-width: 60vw;
  }
  .header-labels img {
    height: 56px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .whatsapp-order-btn {
    padding: 18px 36px;
    font-size: 17px;
    min-width: 220px;
  }
}

/* Mobile Styles */
@media (max-width: 700px) {
  .header-background {
    height: 60vh;
    min-height: 300px;
    max-height: 450px;
  }
  .product-item img {
    opacity: 1;
    filter: grayscale(0);
  }
  .product-item:hover img,
  .product-item:focus img {
    opacity: 1;
    filter: grayscale(0);
  }
  .header-title-img {
    height: 180px;
    max-width: 90vw;
    margin: -20px auto 0 auto;
  }
  
  .header-labels {
    transform: translateY(20px);
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    width: 100vw;
    max-width: 100vw;
    padding: 0 15px;
  }
  .product-item {
    aspect-ratio: 1/1.2;
    opacity: 1;
    transform: none;
    transition: none;
    margin: 0 auto;
    max-width: 400px;
  }
  .product-item.reveal-visible { 
    opacity: 1; 
    transform: none; 
  }
  .header-top {
    padding: 1vh 3vw 0 3vw;
  }
  .cart-link {
    font-size: 1rem;
    padding: 0.6em 1.2em;
    right: 3vw;
    top: 1vh;
  }
  .main-title {
    font-size: 1.7rem;
    margin: 1vh 0 1vh 0;
  }
  .logo-img {
    height: 120px;
    max-width: 320px;
  }
  .logo-home {
    top: 2%;
  }
  .product-item img {
    height: calc(100% - 40px);
  }
  .product-info-row {
    font-size: 1.1rem;
    min-height: 40px;
    padding: 0 1em;
  }
  .product-desc, .product-price {
    font-size: 1.1rem;
  }
  .cart-btn {
    font-size: 1em;
    width: 1.4em;
    height: 1.4em;
    padding: 0.1em 0.3em 0.1em 0.3em;
  }
  .header-labels {
    gap: 30px;
    transform: translateY(-30px);
  }
  .header-labels img {
    height: 40px;
  }
  .whatsapp-order-section {
    padding: 30px 15px;
  }
  .whatsapp-order-btn {
    padding: 18px 36px;
    font-size: 18px;
    min-width: 220px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .header-background {
    height: 60vh;
    min-height: 300px;
    max-height: 450px;
  }
  .header-title-img {
    height: 140px;
    max-width: 90vw;
    margin: -30px auto 0 auto;
  }
  
  .header-labels {
    transform: translateY(20px);
  }
  .header-labels img {
    height: 36px;
  }
  .product-grid {
    padding: 0 10px;
    gap: 6px;
  }
  .product-item {
    max-width: 350px;
  }
  .product-info-row {
    font-size: 1rem;
    min-height: 36px;
    padding: 0 0.8em;
  }
  .product-desc, .product-price {
    font-size: 1rem;
  }
  .cart-link {
    font-size: 0.9rem;
    padding: 0.5em 1em;
    right: 4vw;
  }
  .whatsapp-order-btn {
    padding: 16px 32px;
    font-size: 17px;
    min-width: 200px;
  }
}

::-webkit-scrollbar { display: none; }

/* WhatsApp Order Button */
.whatsapp-order-section {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: #C7B832;
  margin-top: 40px;
  text-align: center;
}

.whatsapp-order-btn {
  background: #A0522D;
  color: #fff;
  padding: 20px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #A0522D;
  display: inline-block;
  min-width: 250px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(160, 82, 45, 0.15);
}

.whatsapp-order-btn:hover,
.whatsapp-order-btn:focus {
  background: #8B4513;
  color: #fff;
  border-color: #8B4513;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

@media (max-width: 700px) {
  .whatsapp-order-section {
    padding: 30px 15px;
  }
  
  .whatsapp-order-btn {
    padding: 16px 32px;
    font-size: 16px;
    min-width: 200px;
  }
  
  /* Modal responsiveness */
  .modal {
    padding: 10px;
  }
  
  .modal-content {
    width: 95vw;
    max-width: 95vw;
    max-height: 60vh;
    padding: 12px;
    overflow-y: auto;
    box-sizing: border-box;
  }
  
  .modal-header h2 {
    font-size: 1.3rem;
  }
  
  .modal-images-gallery {
    gap: 10px;
    margin-bottom: 25px;
    max-height: 90vh;
    padding: 0 0.5em;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    display: flex;
    align-items: flex-start;
  }
  
  .modal-images-gallery img {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
  }
  
  .modal-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .modal-price {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .modal-order-btn {
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* FAQ Page Styles */
.faq-container {
  width: 100vw;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 30px;
  background: #C7B832;
}

/* FAQ Page specific adjustments */
.faq-page .header-title-img {
  margin-top: 120px; /* 20px + 100px down */
}

.faq-page .header-labels {
  transform: translateY(100px); /* Move labels down 100px */
}

.faq-content {
  margin-bottom: 50px;
}

.faq-section {
  background: #D9B650;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(22, 22, 22, 0.15);
}

.faq-question {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0D0D0D;
  margin-bottom: 20px;
  line-height: 1.3;
}

.faq-answer {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #0D0D0D;
  margin: 0;
}

.faq-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin: 20px auto 30px auto;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 700px) {
  .faq-container {
    padding: 30px 20px;
    max-width: 95vw;
  }
  
  .faq-section {
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  
  .faq-question {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  .faq-image {
    max-width: 100%;
    margin: 15px auto 25px auto;
  }
}

@media (max-width: 480px) {
  .faq-container {
    padding: 25px 15px;
    max-width: 100vw;
  }
  
  .faq-section {
    padding: 25px;
    margin-bottom: 18px;
    border-radius: 8px;
  }
  
  .faq-question {
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  
  .faq-image {
    max-width: 100%;
    margin: 12px auto 20px auto;
  }
}

.site-footer {
  width: 100vw;
  text-align: center;
  padding: 1em 0 1em 0;
  font-size: 1rem;
  color: #1a1a1a;
  background: #D9B650;
  border-top: 1px solid #D59332;
  font-family: Arial, Helvetica, sans-serif;
  flex-shrink: 0;
}

.footer-labels {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 0.6em;
}
.footer-labels img {
  height: 48px;
  width: auto;
}
.footer-contact {
  margin-top: 1em;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-contact p {
  margin: 0.3em 0;
  color: #1a1a1a;
}

.footer-contact strong {
  font-weight: 600;
}

@media (max-width: 700px) {
  .footer-labels img { height: 36px; }
  .footer-contact {
    font-size: 0.85rem;
    margin-top: 0.8em;
  }
  .footer-contact p {
    margin: 0.2em 0;
  }
}

@media (max-width: 700px) {
  .site-footer {
    font-size: 0.9rem;
    padding: 0.8em 0;
    margin-top: auto;
    flex-shrink: 0;
  }
  
  .content {
    flex: 1 0 auto;
    padding-bottom: 2rem;
  }
  
  .footer-labels {
    gap: 20px;
    margin-bottom: 10px;
  }
  
  .footer-labels img {
    height: 30px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    font-size: 0.85rem;
    padding: 0.7em 0;
    margin-top: auto;
    flex-shrink: 0;
  }
  
  .content {
    flex: 1 0 auto;
    padding-bottom: 2rem;
  }
  
  .footer-labels {
    gap: 15px;
    margin-bottom: 8px;
  }
  
  .footer-labels img {
    height: 25px;
  }
}

.modal-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 1em 0 1.2em 0;
}
.modal-images-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #D59332;
  background: #D9B650;
}
.modal-actions {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-top: 1em;
}
#modal-qty {
  width: 3.2em;
  padding: 0.2em 0.4em;
  font-size: 1.1em;
  border: 1px solid #D59332;
  border-radius: 4px;
  background: #D9B650;
  color: #222;
  margin-right: 0.5em;
}
.modal-add-cart {
  background: #A0522D;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.4em 1.1em;
  font-size: 1.08em;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s;
}
.modal-add-cart:hover, .modal-add-cart:focus {
  background: #8B4513;
}

.panel-image-wrapper {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3vh 0 2vh 0;
}
.panel-image {
  width: 90vw;
  max-width: 1200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
  display: block;
}

@media (max-width: 700px) {
  .panel-image {
    width: 98vw;
    max-width: 98vw;
    border-radius: 6px;
  }
  .panel-image-wrapper {
    margin: 2vh 0 1vh 0;
  }
}

.cart-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.45);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.2s;
}
.cart-modal {
  background: #D9B650;
  color: #111;
  border-radius: 14px;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
  padding: 2em 2em 1.5em 2em;
  max-width: 480px;
  width: 95vw;
  min-width: 260px;
  min-height: 220px;
  text-align: left;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  animation: popIn 0.18s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}
.cart-modal-close {
  position: absolute;
  top: 0.7em;
  right: 1em;
  background: none;
  border: none;
  font-size: 1.5em;
  color: #888;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 2;
}
.cart-modal-close:hover {
  color: #111;
}
.cart-title {
  font-size: 1.5em;
  font-weight: 400;
  margin: 0 0 0.5em 0;
  letter-spacing: 0.02em;
}
.cart-items-list {
  max-height: none;
  overflow-y: visible;
  margin: 2em auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 16px;
  max-width: 1000px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 1em;
  border-bottom: 1px solid #D59332;
  padding-bottom: 0.7em;
}
.cart-item-img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
  background: #D9B650;
  border: 1px solid #D59332;
}
.cart-item-info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}
.cart-item-title {
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.cart-item-price {
  color: #111;
  font-size: 1.1em;
  font-weight: 400;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.3em;
  margin-top: 0.2em;
}
.cart-item-qty input {
  width: 2.5em;
  padding: 0.1em 0.3em;
  font-size: 1em;
  border: 1px solid #D59332;
  border-radius: 4px;
  background: #D9B650;
  color: #222;
}
.cart-item-remove {
  background: none;
  border: none;
  color: #D4352A;
  font-size: 1.2em;
  cursor: pointer;
  margin-left: 0.5em;
  transition: color 0.15s;
}
.cart-item-remove:hover {
  color: #D59332;
}
.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  margin: 2em auto 0 auto;
  max-width: 1000px;
}
.cart-subtotal {
  font-size: 1.2em;
  font-weight: 400;
  color: #111;
}
.cart-checkout {
  background: #D4352A;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.6em 1.5em;
  font-size: 1.08em;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
}
.cart-checkout:hover, .cart-checkout:focus {
  background: #D59332;
}
@media (max-width: 700px) {
  .cart-modal {
    padding: 1.2em 0.5em 1em 0.5em;
    max-width: 99vw;
    min-width: 0;
  }
  .cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 92vw;
    margin: 1.2em auto;
  }
  .cart-item-img {
    width: 72px;
    height: 72px;
  }
  .cart-title {
    font-size: 1.1em;
  }
  .cart-subtotal {
    font-size: 1em;
  }
}

.cart-badge {
  display: inline-block;
  min-width: 1.3em;
  height: 1.3em;
  background: #D4352A;
  color: #fff;
  border-radius: 50%;
  font-size: 0.95em;
  font-weight: 600;
  text-align: center;
  line-height: 1.3em;
  margin-left: 0.5em;
  vertical-align: middle;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.10);
}

.bottom-banner-wrapper {
  width: 100vw;
  margin: 0 auto 2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom-banner-video {
  width: 100vw;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

@media (max-width: 700px) {
  .bottom-banner-video {
    width: 100vw;
    border-radius: 0;
  }
  .bottom-banner-wrapper {
    margin: 2vh 0 1vh 0;
  }
}

/* Photoshoot Slideshow */
.photoshoot-slideshow {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: #C7B832;
  margin-top: 20px;
}

.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.slideshow-container .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.slideshow-container .slide.active {
  opacity: 1;
}

@media (max-width: 1024px) {
  .slideshow-container {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 700px) {
  .photoshoot-slideshow {
    padding: 30px 15px;
  }
  
  .slideshow-container {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .slideshow-container {
    aspect-ratio: 1 / 1;
  }
}

/* Bottom Banner Section - Similar to Header */
.bottom-banner {
  width: 100vw;
  height: 45vh;
  min-height: 330px;
  max-height: 450px;
  overflow: hidden;
  position: relative;
  background: #C7B832;
  margin: 0;
  padding: 0;
}

/* Smooth fade from background into the video at the top only */
.bottom-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(199, 184, 50, 1) 0%,
    rgba(199, 184, 50, 0.6) 10%,
    rgba(199, 184, 50, 0) 20%
  );
}

.bottom-banner-media {
  object-fit: cover;
  width: 100vw;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  display: block;
  filter: none;
  opacity: 1.0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

@media (max-width: 700px) {
  .bottom-banner {
    height: 35vh;
    min-height: 200px;
    max-height: 300px;
  }
} 