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

@font-face {
    font-family: 'Alta_reg';
    src: url('../fonts/alta_regular-webfont.woff2') format('woff2'),
         url('../fonts/alta_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alta_light';
    src: url('../fonts/alta_light-webfont.woff2') format('woff2'),
         url('../fonts/alta_light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alta_caption';
    src: url('../fonts/alta_caption-webfont.woff2') format('woff2'),
         url('../fonts/alta_caption-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
  font-family: 'Alta_caption', sans-serif;
  background-color: #ffffff;
  color: #111;
  font-size: 20px;
  line-height: 1.6;
}

/* Header */
/*.main-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  padding: 0 1rem;
}*/

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

/*.logo{
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}*/


/* Center logo properly */
.logo {
  height: 100%;
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  height: auto;
  display: flex;
  align-items: center;
}

/*.logo-img {
  height: 60px;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}*/

/* Ensure logo never exceeds header height */
.logo-img {
  height: 70px;
  max-height: 70%;
  width: auto;
  object-fit: contain;
}

.nav-icons{
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 1001;
}


.cart-indicator {
  cursor: pointer;
  font-size: 1rem;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh-80px);
  overflow: hidden;
}
.hero img {
  width: 100%;
  top: 0;
  left: 0;
  max-height: 89vh;
  object-fit: cover;
  display: block;
}
.hero-text {
  position: absolute;
  bottom: 10%;
  left: 5%;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.hero-text p {
  font-size: 1.2rem;
}

/* Products */
.product-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
  background-color: #fafafa;
  text-align: center;
}
.product-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
.product-grid {
  gap: 30px;
  justify-content: center;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}
.product-card {
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 1rem;
  border: none;
  transition: transform 0.2s ease;
  width: 100%;
  max-width: 400px;
  margin: auto;
}



.product-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-bottom: 1rem;
}
.product-card h3 {
  font-size: 1.1rem;
  font-weight: 400;
}
.product-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}
.product-card p {
  margin: 0.5rem 0;
}
.product-card .actions {
  margin-top: 1rem;
}
.product-card button, .product-card a {
  background: #111;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border: none;
  margin-right: 0.5rem;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s ease;
}
.product-card button:hover,
.product-card a:hover {
  background: #444;
}
.product-card h3 {
  font-size: 1.2rem;
  margin: 10px 0 5px;
}

.product-card .price {
  font-weight: bold;
  font-size: 1rem;
  color: #222;
  margin-bottom: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  background: #fff;
  border-top: 1px solid #eee;
}

.product-page-buttons-b{
  background: #111;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border: none;
  margin-right: 0.5rem;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s ease;
  flex: 1;
  text-align: center;
}

.product-page-buttons-div{
  display: flex;
  gap: 10px;
}



.product-images{
  display: flex;
}


#preloader {
      position: fixed;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: white;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      opacity: 1;
      transition: opacity 1.2s ease;
    }

    #preloader.fade-out {
      opacity: 0;
      pointer-events: none;
    }

    #preloader img {
      width: 35vh;
      animation: fadeIn 1s ease-in;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }


.toast {
  visibility: hidden;
  min-width: 200px;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(-10px);
}


@keyframes cartBounce {
  0% { transform: scale(1); }
  20% { transform: scale(1.3); }
  50% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.cart-animate {
  animation: cartBounce 0.4s ease-in-out !important;
}

.auth-container {
  width: 350px;
  margin: 60px auto;
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-family: 'Segoe UI', sans-serif;
}

.auth-container h2 {
  text-align: center;
  margin-bottom: 25px;
}

.auth-container form {
  display: flex;
  flex-direction: column;
}

.auth-container label {
  margin-bottom: 5px;
  font-weight: 600;
}

.auth-container input {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.auth-container button {
  padding: 10px;
  background-color: #1c1c1c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.auth-container button:hover {
  background-color: #333;
}

.auth-container p {
  text-align: center;
  margin-top: 15px;
}

.signup-container {
    width: 100%;
    max-width: 400px;
    margin: 40px auto;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 12px;
    background-color: #fefefe;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
}
.signup-container h2 {
    text-align: center;
    margin-bottom: 20px;
}
.info ul {
    margin: 10px 0 20px;
    padding-left: 18px;
    font-size: 0.95rem;
    color: #555;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    font-weight: bold;
    display: block;
}
.form-group input {
    width: 100%;
    padding: 8px;
    font-size: 1rem;
    margin-top: 5px;
}
.error p {
    color: red;
    font-size: 0.9rem;
}

.errorlist,
.errorlist li,
.error p {
    color: red;
    font-size: 0.9rem;
    list-style: none;
    margin: 4px 0;
    padding: 0;
}


.btn {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.btn:hover {
    background-color: #000;
}

.login-container {
    width: 100%;
    max-width: 400px;
    margin: 40px auto;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 12px;
    background-color: #fefefe;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
}
.login-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.redirect-msg {
    text-align: center;
    margin-top: 15px;
    font-size: 0.95rem;
}
.redirect-msg a {
    color: #007BFF;
    text-decoration: none;
}
.redirect-msg a:hover {
    text-decoration: underline;
}

.cart-container {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.cart-container h2 {
  margin-bottom: 20px;
  text-align: center;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

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

.cart-item img {
  width: 100px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.cart-details {
  flex: 1;
  padding-left: 20px;
}

.cart-details h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.cart-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-actions input {
  width: 60px;
  padding: 5px;
  text-align: center;
}

.cart-actions button,
.cart-actions a {
  padding: 6px 12px;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cart-actions button:hover,
.cart-actions a:hover {
  background-color: #444;
}

.cart-total {
  margin-top: 25px;
  text-align: right;
  font-weight: bold;
  font-size: 1.2rem;
}

.product-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.product-card p.price {
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.product-card .actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.product-detail-container {
  max-width: 100%;
  margin: 60px auto;
  margin-top: 0;
  margin-bottom: 0;
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: row;
  gap: 30px;
}


.product-detail-image {
  flex: 1;
}

.product-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.product-detail-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-detail-info h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.product-detail-info p.description {
  color: #555;
  line-height: 1.6;
  margin: 10px 0 20px;
}

.product-detail-info .price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;
}

.product-detail-info form {
  display: flex;
  gap: 12px;
}

.product-detail-info button {
  background-color: #111;
  color: white;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-detail-info button:hover {
  background-color: #333;
}


/* General layout cards */
.page-section {
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.card-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

h2.page-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-align: center;
}

.item-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1rem;
}

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

.cart-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 1rem;
}

/* Buttons */
.button-dark {
  background-color: #111;
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.button-dark:hover {
  background-color: #444;
}

/* Form styling */
.checkout-form input, 
.checkout-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.checkout-form label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}

/* Success page */
.success-message {
  text-align: center;
  padding: 3rem;
}

.success-message h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.success-message p {
  font-size: 1.1rem;
}

/* Order history */
.order-card {
  background: #fefefe;
  border: 1px solid #ddd;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-radius: 10px;
}
.order-card h4 {
  margin-bottom: 0.8rem;
}
.order-card ul {
  padding-left: 1.5rem;
  list-style: disc;
}


.cart-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  max-width: 800px;
  margin: auto;
}

.cart-item {
  display: flex;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  align-items: center;
  gap: 1rem;
}

.cart-img {
  width: 100px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.cart-details {
  flex: 1;
}

.cart-details h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.cart-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cart-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-input {
  width: 60px;
  padding: 5px 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.btn {
  background-color: #000;
  color: white;
  padding: 6px 14px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #333;
}

.checkout-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.checkout-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.checkout-container form p {
  margin-bottom: 1.2rem;
}

.checkout-container label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.checkout-container input,
.checkout-container textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.checkout-container input:focus,
.checkout-container textarea:focus {
  border-color: #000;
  outline: none;
}

.checkout-container .btn {
  margin-top: 1rem;
  display: inline-block;
  background-color: #000;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.checkout-container .btn:hover {
  background-color: #333;
}

.order-preview-container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.order-info {
  margin-bottom: 2rem;
}

.info-table td {
  padding: 8px 16px;
  vertical-align: top;
  font-size: 1rem;
}

.cart-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.cart-table th,
.cart-table td {
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.cart-table th {
  background-color: #f4f4f4;
  font-weight: 600;
}

.order-total {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.cart-actions {
  margin-top: 1.5rem;
  text-align: right;
}

.cart-actions .btn {
  padding: 10px 24px;
  background-color: #000;
  color: #fff;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
}

.cart-actions.center {
  text-align: center;
  margin-top: 1.5rem;
}

.cart-actions.center .btn {
  display: inline-block;
  padding: 10px 24px;
  background-color: #000;
  color: #fff;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  width: auto;  /* Prevent full width */
}



/* CAROUSEL */
.carousel-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* Ensures a square */
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
  background-color: white; /* removes black background */
  padding: 0;
  height: auto;
}

.carousel-container a {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  text-decoration: none;
  color: inherit;
}

.product-page-carousel-container{
  width: 35%;
}

.carousel-inner {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* SLIDES */
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.carousel-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.carousel-slide.active {
  display: block;
  z-index: 1;
}

/* IMAGE */
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  background-color: white;
}

/* BUTTONS */
.carousel-container .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.25);  /* Slightly more subtle */
  color: white;
  backdrop-filter: blur(2px);  /* Optional glassy look */
  border: 1px solid rgba(255, 255, 255, 0.4);
  border: none;
  font-size: 1.2rem;
  padding: 6px 10px;
  cursor: pointer;
  z-index: 2;
  border-radius: 4px;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.5);
}

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

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


.add-to-cart-btn {
  background: black;
  color: white;
  padding: 8px 16px;
  border: none;
  margin-top: 10px;
  cursor: pointer;
}

.hamburger {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  position: relative;
  z-index: 1001;
}


@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: relative;
    left: 0;
    z-index: 1001;
  }

  .main-nav {
    display: block;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    transition: top 0.4s ease-in-out;
    padding: 2rem;
    z-index: 1000;
  }

  .main-nav.active {
    top: 0;
  }

  .main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 100%;
  }

  .main-nav ul li {
    font-size: 2rem;
  }

  .main-nav a {
    color: #111 !important;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.5px;
  }
  
  .main-nav a:hover {
    text-decoration: underline;
  }

  .cart-link {
    order: 1;
    margin-right: 20px;
    font-size: 1.2rem;
    gap: 4px;
  }

  #cart-count {
    font-size: 0.6rem;
    padding: 1.5px 5px;
  }

  body.nav-open .cart-link {
    display: none !important;
  }

  /*.main-header{
    padding: 0 1rem;
    height: 80px;
  }*/

  /*.logo-img{
    height: 72px;
  }*/

  .signup-container,
  .login-container {
    padding: 16px;
    margin: 10px auto;
    box-shadow: none;
    border-width: 1px;
  }

  .signup-container h2,
  .login-container h2 {
    font-size: 1.4rem;
  }

  .form-group input {
    font-size: 0.95rem;
    padding: 8px;
  }
  
  .product-detail-container {
    max-width: 900px;
    margin: 60px auto;
    margin-top: 0;
    margin-bottom: 0;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .product-detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    background-color: white;
  }

  .product-page-carousel-container{
    width: 100%;
  }

}

@media (min-width: 769px) {
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    transition: left 0.4s ease-in-out;
    padding: 2rem;
    z-index: 999;
  }

  .main-nav.active {
    left: 0;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    align-items: center;     /* Center horizontally */
    justify-content: center; /* Center vertically */
    gap: 2rem;
    height: 100%;
    text-align: center;
  }

  .nav-list li a {
    font-size: 2rem;  
    font-weight: bold;      
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .nav-list li a:hover {
    text-decoration: underline;
    color: #333;
  }
}


.cart-link {
  position: relative;
  font-size: 1.6rem;
  color: #111;
  text-decoration: none;
  z-index: 1002;
  display: inline-block;
  padding: 0.5rem;
  margin-right: 28px;
}


#cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #111;
  color: #fff;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.6rem;
  font-weight: bold;
  line-height: 1;
  min-width: 16px;
  text-align: center;
}

.cart-link:hover {
  background-color: #f0f0f0;
}

.signup-container,
.login-container {
  width: 90%;
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  border: 2px solid #ddd;
  border-radius: 12px;
  background-color: #fefefe;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

.item-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.item-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.item-details {
  flex: 1;
}

.cart-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.qty-input {
  width: 60px;
  padding: 5px;
}

.cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.item-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.item-details {
  flex: 1;
}

.order-total {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 20px;
}

.qty-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.qty-btn {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  padding: 5px 12px;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 4px;
}

.qty-display {
  min-width: 24px;
  text-align: center;
  font-weight: bold;
}


.qty-controls {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}

.qty-btn {
  padding: 6px 10px;
  font-size: 18px;
  border: 1px solid #ccc;
  background: #f8f8f8;
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.qty-input {
  width: 50px;
  text-align: center;
  font-size: 16px;
  padding: 4px;
}


/*.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  height: 80px;
  position: relative;
  background-color: white;
  z-index: 1000;
}*/


/* Hamburger Left Always */
.hamburger {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

/* Logo in center */
/*.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}*/

/*.logo-img {
  height: 60px;
}*/

/* Cart on right */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1001;
  margin-left: auto;
}

.cart-link {
  position: relative;
  font-size: 1.6rem;
  color: #111;
  text-decoration: none;
  padding: 0.5rem;
}

#cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #111;
  color: #fff;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.6rem;
  font-weight: bold;
}

@media (max-width: 400px) {
  .qty-controls {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 5px;
  }

  .qty-btn {
    width: 20px;
    height: 24px;
    padding: 0;
    font-size: 14px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .qty-input {
    width: 32px;
    height: 24px;
    font-size: 14px;
    padding: 2px;
    text-align: center;
  }

  .btn {
    font-size: 0.85rem;
    padding: 6px 10px;
  }

  .cart-actions {
    gap: 6px;
  }
}

.carousel-thumbnails {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.carousel-thumbnails .thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 4px;
  transition: border 0.2s;
}

.carousel-thumbnails .thumbnail.active {
  border-color: #333;
}

/* Coming Soon Container */
.coming-soon-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 20px;
  text-align: center;
}

.coming-soon-title {
  font-family: 'Alta_caption',sans-serif;
  font-size: 2.5rem;
  /*font-weight: 600;*/
  margin-bottom: 40px;
  color: #000;
}

/* Countdown Layout */
.countdown-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.flip-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90px;
  perspective: 1000px;
}

.card {
  position: relative;
  width: 100%;
  height: 100px;
  transform-style: preserve-3d;
}

.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: #f5f5f5;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-size: 2.5rem;
  /*font-weight: 700;*/
  color: #111;
  line-height: 100px;
  text-align: center;
  border-radius: 8px;
}

.card-front {
  z-index: 2;
}

.card-back {
  transform: rotateX(-180deg);
  z-index: 1;
}

.flipping {
  animation: middleFlip 0.6s ease-in-out forwards;
}

@keyframes middleFlip {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(180deg);
  }
}

.label {
  font-size: 1.1rem;
  color: #555;
  margin-top: 8px;
}

/* Newsletter Styles */
.newsletter-section {
  margin-top: 40px;
}

.newsletter-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  padding: 12px 16px;
  font-size: 1rem;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fefefe;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.newsletter-form button {
  padding: 12px 24px;
  font-size: 1rem;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #333;
}

.messages {
  margin-top: 16px;
  text-align: center;
}

.alert {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 10px;
  color: white;
}

.alert.success {
  background-color: black;
}

.alert.info {
  background-color: black;
}


#notify_btn{
  font-family: 'Alta_caption', sans-serif;
}

#email_form{
  font-family: 'Alta_caption', sans-serif;
}

