/* --- SMARTSERVE COMBINED STYLES --- */

/* === CSS VARIABLES === */
:root {
  --blue-primary: #0984e3;
  --blue-light: #00cec9;
  --blue-soft: #f0f7ff;
  --dark-throne: #0a3d62;
  --orange-accent: #f97316;
  --royal-gradient: linear-gradient(135deg, #0a3d62 0%, #0984e3 100%);
}

/* === GLOBAL STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
  width: 100%;
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
}

/* === HEADER (Simple - for shop page) === */
.header {
  background: var(--royal-gradient);
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--blue-light);
}

.logo {
  font-family: "Montserrat", sans-serif;
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
}

.icon-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  position: relative;
}

#cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--orange-accent);
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
}

/* === NAVBAR (Full - for index page) === */
.navbar {
  width: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: var(--royal-gradient);
  box-shadow: 0 4px 15px rgba(10, 61, 98, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  grid-template-columns: 1fr auto 1fr;
  border-bottom: 3px solid var(--blue-light);
}

.nav-center {
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 2rem;
  height: 2rem;
  justify-self: end;
}

.logo-image {
  object-fit: fill;
  margin-right: 10px;
  justify-content: center;
  align-self: center;
  justify-self: center;
  position: relative;
  height: auto;
  max-height: 60px;
  width: auto;
  display: block;
  margin: 0.7rem auto 0 auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

.logo-name {
  font-size: 1.7rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: white;
  margin: 0 5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  width: auto;
  list-style: none;
  align-items: center;
  gap: 1.5rem;
  margin: 0 3rem;
}

.nav-links a {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  padding: 10px 0;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--blue-light);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-light);
  font-weight: 600;
}

.cart {
  height: 2rem;
  width: 3rem;
  font-size: 1.3rem;
  cursor: pointer;
  position: relative;
  color: white;
  transition: transform 0.3s ease;
}

.cart:hover {
  transform: scale(1.1);
}

.cart span {
  position: relative;
  top: -48px;
  right: -12px;
  background: var(--orange-accent);
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.menu-toggle {
  margin: 0 10px;
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: white;
}

/* === HERO SECTIONS === */
/* Hero - Index page version (with gradient) */
.hero {
  background: var(--royal-gradient);
  text-align: center;
  padding: 3rem 2rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(0, 206, 201, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(9, 132, 227, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-text p {
  margin: 1rem 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
}

/* Hero - Shop page version (simpler) */
.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.hero p {
  color: #fff;
}

/* === BUTTONS === */
.btn {
  background-color: white;
  color: var(--dark-throne);
  margin: 10px 15px;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background-color: var(--orange-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.order-now {
  background: var(--royal-gradient);
  color: white;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.order-now:hover {
  background: white;
  color: black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* === CATEGORY DIVIDER === */
.category-divider {
  margin: 3rem 0 1.5rem;
  padding: 0 1.5rem;
  text-align: left;
}

.category-divider h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--blue-primary);
  background: #f1f5f9;
  display: inline-block;
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
}

@media (max-width: 600px) {
  .category-divider {
    margin: 2rem 0 1rem;
    padding: 0 1rem;
  }
  
  .category-divider h3 {
    font-size: 1rem;
    padding: 6px 20px;
  }
}

/* === PRODUCTS SECTION === */
.products,
.shop-page {
  padding: 3rem 0.5rem;
  text-align: center;
  background-color: #ffffff;
}

.products h2,
.shop-page h1 {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  color: var(--dark-throne);
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.products h2::after,
.shop-page h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: var(--royal-gradient);
  border-radius: 2px;
}

/* === PRODUCT GRIDS === */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 1.5rem;
}

@media (max-width: 600px) {
  .container {
    padding: 1rem;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .container {
    padding: 1rem 1.5rem;
  }
}

.product-grid {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 2rem;
  width: 100%;
}

.home-grid {
  display: grid;
  gap: 2rem;
  width: 100%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Responsive grid adjustments */
@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (min-width: 200px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 901px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === PRODUCT CARDS === */
/* Product card - Index page version */
.product-card {
  flex: 0 0 20%;
  width: 100%;
  min-width: 300px;
  background: white;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--royal-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  box-shadow: 0 10px 30px rgba(10, 61, 98, 0.15);
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.5s ease;
  object-fit: cover;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  margin: 1rem 0 0.5rem;
  color: var(--dark-throne);
  text-align: left;
  font-size: 18px;
  font-weight: 700;
}

.product-card p {
  color: var(--dark-throne);
  font-weight: bold;
  text-align: left;
  font-size: 18px;
}

.product-card hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 0.5rem 0;
}

h6 {
  margin-bottom: auto;
  text-align: left;
  font-size: 13px;
  margin-top: 10px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  color: #777;
  line-height: 1.5;
}

.product-card button {
  margin-top: 0.5rem;
  background: var(--royal-gradient);
  color: white;
  border: none;
  padding: 0.7rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.product-card button:hover {
  background: white;
  color: var(--dark-throne);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.product-card .order-now {
  background: var(--orange-accent);
  background: linear-gradient(135deg, var(--orange-accent) 0%, #fb923c 100%);
}

.product-card .order-now:hover {
  background: white;
  color: var(--orange-accent);
  border: 2px solid var(--orange-accent);
}

/* Product card - Shop page version (with zoom effect) */
.product-item.card {
 background: white;
  border-radius: 15px;
  border: 1px solid #eee;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Stack children vertically */
  transition: transform 0.3s ease;
  height: 100%;
}

.product-item.card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card__image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}

.product-item__image-figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 5px;
  transition: transform 0.5s ease;
}

.product-item__image-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive adjustments for product cards */
@media (max-width: 600px) {
  .product-item.card {
    margin: 0 auto;
    max-width: 100%;
  }
}

.price-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--dark-throne);
  color: var(--blue-light);
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.8rem;
  z-index: 2;
}

.product-item__text {

  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;/* Change from space-between to flex-start */
}

.h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-throne);
  margin-bottom: 5px;
}

.product-desc {
  
  font-size: 0.75rem;
  color: #777;
  margin-bottom: 15px;
  min-height: 40px;
  flex-grow: 1; 
}

.button--solid {
  background: var(--royal-gradient);
  color: white;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.7rem;
  transition: all 0.3s ease;
}

.button--solid:hover {
  background: white;
  color: black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* === SHOP SECTION (Horizontal scroll) === */
.shop-section {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 20px;
  padding: 1em;
  border: none;
  height: 100%;
  margin: auto;
  width: 100%;
  justify-content: space-evenly;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.shop-section::-webkit-scrollbar {
  display: none;
}

/* === SIDEBAR === */
#sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: white;
  z-index: 9999;
  transition: 0.3s;
  padding: 25px;
}

#sidebar.active {
  left: 0;
}

#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9998;
}

#menu-overlay.active {
  display: block;
}

/* === POP-UP NOTIFICATION === */
#mini-notif {
  position: fixed;
  top: 80px;
  right: -350px;
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: right 0.4s ease-in-out;
  z-index: 10000;
  border-left: 4px solid var(--blue-primary);
  min-width: 220px;
}

#mini-notif.show {
  right: 20px;
}

/* === CART DRAWER === */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -350px;
  width: 90%;
  max-width: 350px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 20px rgba(10, 61, 98, 0.3);
  transition: right 0.4s ease;
  padding: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--blue-primary);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
}

.cart-header h2 {
  font-family: "Montserrat", sans-serif;
  color: var(--dark-throne);
  font-weight: 900;
}

.close-cart {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark-throne);
  transition: transform 0.3s ease;
}

.close-cart:hover {
  transform: rotate(90deg);
  color: var(--orange-accent);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  margin-top: 15px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
}

.cart-item:hover {
  background: #f9f9f9;
}

.item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.item-controls button {
  background: var(--blue-soft);
  border: 1px solid var(--blue-primary);
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--dark-throne);
  transition: all 0.3s ease;
}

.item-controls button:hover {
  background: var(--blue-primary);
  color: white;
}

.remove-btn {
  color: var(--orange-accent);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.remove-btn:hover {
  color: #dc2626;
  text-decoration: underline;
}

.cart-footer {
  margin-top: auto;
  padding-top: 15px;
  border-top: 2px solid #ddd;
  font-size: 18px;
  font-weight: bold;
  color: var(--dark-throne);
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background: var(--royal-gradient);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(10, 61, 98, 0.2);
}

.checkout-btn:hover {
  background: var(--orange-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* === CART MODAL === */
.modal {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 61, 98, 0.8);
}

.modal-content {
  background: white;
  margin: 2vh auto;
  padding: 25px;
  border-radius: 20px;
  max-width: 500px;
  width: 95%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#cart-list {
  overflow-y: auto;
  flex-grow: 1;
  margin-top: 10px;
  padding-right: 5px;
}

#cart-list::-webkit-scrollbar {
  width: 6px;
}

#cart-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.qty-btn {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === CHECKOUT PAGE === */
.checkout {
  padding: 4rem 2rem;
  max-width: 1150px;
  margin: auto;
  background: #f8fafc;
}

.checkout h1 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: var(--dark-throne);
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.checkout-container {
  height: 100%;
  width: 100%;
  margin: auto;
}

.form-section {
  margin: 1rem 0;
  width: 100%;
}

.checkout-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid #e6e6e6;
  justify-self: center;
  margin: 1rem auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.checkout-form h2 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: var(--dark-throne);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.checkout-form label {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 0.95rem;
  border: 1px solid var(--blue-primary);
  border-radius: 12px;
  font-size: 0.95rem;
  background: #fafafa;
  transition: all 0.25s ease;
  margin-bottom: 1rem;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border: solid 2px var(--dark-throne);
  background: #fff;
  outline: none;
  box-shadow: 0 0 10px rgba(10, 61, 98, 0.1);
}

.order-summary {
  background: #ffffff;
  padding: 2rem;
  border-radius: 18px;
  border: 2px solid var(--blue-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.order-summary h2 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  color: var(--dark-throne);
  font-family: "Montserrat", sans-serif;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  font-size: 0.95rem;
  color: #444;
}

.summary-line,
.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 1rem;
  color: #333;
}

.summary-total {
  font-weight: 700;
  border-top: 2px solid #ddd;
  padding-top: 1rem;
  font-size: 1.3rem;
  color: var(--blue-primary);
}

.order-btn {
  width: 100%;
  padding: 1rem;
  margin-top: 2rem;
  background: var(--royal-gradient);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(10, 61, 98, 0.2);
}

.order-btn:hover {
  background: var(--orange-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.shop-now-btn {
   margin-top: auto;       /* This is the "magic" that pushes it to the bottom */
  background: var(--royal-gradient);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(10, 61, 98, 0.2);
  text-decoration: none;
  padding: 10px;
  display: block;
  width: 100%;
}


.shop-now-btn:hover {
    background-color:var(--royal-gradient);
    color: #ffffff;
  
}

/* === FOOTER === */
footer {
  text-align: center;
  padding: 2.5rem;
  background: var(--royal-gradient);
  color: white;
  margin-top: 4rem;
  border-top: 3px solid var(--blue-light);
  font-weight: 500;
}

footer p {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* === RESPONSIVE MEDIA QUERIES === */

/* Small devices (phones) */
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 10px;
  }

  .grid {
    gap: 10px;
  }

  .product-card,
  .product-item.card {
    margin: 0;
    width: 100%;
    height: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: var(--dark-throne);
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 1rem;
    font-size: 0.8rem;
    justify-content: center;
    align-content: center;
  }

  .nav-menu.active .nav-links {
    display: flex;
    border: solid 3px var(--blue-light);
    height: 10rem;
    padding: 0;
    width: 7rem;
    margin: 0 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .cart,
  .cart-count {
    display: list-item;
  }

  .hero {
    width: 100vw;
    padding: 4rem 1.5rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .product-grid {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 2rem;
    width: 100%;
    height: 100%;
  }

  .home-grid {
    display: grid;
    gap: 2rem;
    height: 70%;
    width: 100%;
  }
}

/* Tablets */
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }

  .grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .shop-section {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 1em;
    height: 100%;
    align-items: stretch;
  }

  .product-card {
    flex: 0 0 50%;
    scroll-snap-align: start;
    margin-right: 0.5em;
    padding: 1rem;
    height: auto;
    overflow: hidden;
  }

  .shop-page {
    padding: 2rem 0.5rem;
    width: 100%;
    height: 100;
  }

  .shop-section::-webkit-scrollbar {
    height: 6px;
  }

  .shop-section::-webkit-scrollbar-thumb {
    background: var(--blue-primary);
    border-radius: 10px;
  }
}

/* Laptops and larger */
@media (min-width: 992px) {
  body {
    font-size: 18px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 900px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }
}

.store {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 20px;
  padding: 20px;
}

.Store_description {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Responsive styles for .store */
@media (max-width: 768px) {
  .store {
    flex-direction: column;
    text-align: center;
  }
  
  .Store_description {
    padding: 20px 0 0 0;
  }
}

/* Combo container styling */
.combo-container {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
  gap: 20px;
}

@media (min-width: 768px) {
  .combo-container {
    max-width: 700px;
  }
}