:root {
  /* Brand Core */
  --primary: #9a52ff;
  --primary-dark: #8447ff;

  /* Soft Accents */
  --soft-pink: #ffb2e6;
  --soft-purple: #f7aef8;
  --soft-lavender: #e382f9;
  --lavender: #b388eb;

  /* Cool Accent */
  --accent-blue: #72ddf7;

  /* Neutrals */
  --white: #ffffff;
  --dark-text: #222222;
  --muted-text: #666666;
  --light-bg: #f8f9fa;
}

/* ================= GLOBAL IMAGE RESPONSIVENESS ================= */
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dark-text);
  background-color: var(--light-bg);
  line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(154, 82, 255, 0.15);
  z-index: 10000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  width: 100%;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

/* ================= HAMBURGER ICON ================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.35rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #2c5f2d;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ================= NAV MENU ================= */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.order-btn {
  background-color: var(--primary);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.nav-link.order-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ================= MOBILE NAVBAR ================= */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 10002;
    position: relative;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 10001 !important;
    visibility: hidden;
  }

  .nav-menu.active {
    max-height: 500px;
    padding: 1rem 0;
    visibility: visible;
    z-index: 10002;
  }

  .nav-menu li {
    width: 100%;
    padding: 0 1.5rem;
  }

  .nav-link {
    color: var(--dark-text);
    padding: 0.9rem 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }

  .nav-link:hover {
    color: var(--primary);
  }

  .nav-link.order-btn {
    background-color: var(--primary);
    color: white;
    padding: 0.9rem 1.5rem;
    display: block;
    text-align: center;
    margin: 1rem auto 0;
    border-radius: 6px;
    width: 80%;
    max-width: 250px;
    font-weight: 600;
    border: none;
  }

  .nav-link.order-btn:hover {
    background-color: var(--primary-dark);
    color: white;
  }

  .nav-menu li:last-child .nav-link {
    border-bottom: none;
  }
}

/* ================= HERO SECTION ================= */
.hero {
  margin-top: 65px;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  position: relative;
  z-index: 1;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-text p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--white);
  color: var(--primary);
}

.btn-primary:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.hero-slider {
  flex: 1;
  max-width: 500px;
}

.slider-container {
  max-width: 100%;
  overflow: hidden;
  border-radius: 15px;
  width: 100%;
  max-height: 400px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
}

.slider {
  display: flex;
  animation: slide 12s infinite;
  width: 300%; /* 3 slides * 100% width */
  height: auto;
}

.slide {
  width: calc(100% / 3); /* Each slide takes 1/3 of the slider width */
  flex: 0 0 auto; /* Prevent flex shrinking */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes slide {
  0%, 30% { transform: translateX(0); }
  33%, 63% { transform: translateX(calc(-100% / 3)); }
  66%, 96% { transform: translateX(calc(-200% / 3)); }
  100% { transform: translateX(0); }
}

/* ================= SECTIONS GENERAL ================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  width: 100%;
}

section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 7vw, 2.5rem);
  margin-bottom: 2rem;
  color: var(--primary);
  position: relative;
}

section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-blue);
  margin: 12px auto 0;
  border-radius: 10px;
}

/* ================= PRODUCTS ================= */
.products-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 4rem 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.product-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.2rem;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(154, 82, 255, 0.15);
  border-color: rgba(154, 82, 255, 0.2);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.03);
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--dark-text);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.1px;
}

.product-card p {
  color: #666;
  margin-bottom: 1.2rem;
  line-height: 1.5;
  font-size: 0.9rem;
  flex-grow: 1;
  margin-top: 0.2rem;
}

.order-button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  width: 100%;
  margin-top: auto;
}

.order-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(154, 82, 255, 0.3);
}

.product-footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.price-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.old-price {
  color: #999;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: line-through;
}

.new-price {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
}

.discount-badge {
  background: #ffebee;
  color: #e53935;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.2rem;
}

.small-price {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.2rem;
}

/* Responsive adjustments for product cards */
@media (max-width: 768px) {
  .products-grid {
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .product-card {
    padding: 1.2rem;
  }

  .product-card img {
    height: 200px;
  }

  .product-card h3 {
    font-size: 1.2rem;
  }

  .new-price {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr; /* Single column on small screens */
    gap: 1.8rem;
  }

  .product-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .product-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .price-container {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .order-button {
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .product-card img {
    height: 180px;
  }

  .product-card h3 {
    font-size: 1.1rem;
  }

  .new-price {
    font-size: 1rem;
  }

  .product-card {
    padding: 1rem;
  }

  .product-card p {
    font-size: 0.85rem;
  }

  .discount-badge {
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
  }
}

/* Modal overlay */
#imageModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

/* Modal content box */
.modal-content {
  position: relative;
  margin-top: 80px; /* FIX navbar overlap */
  max-width: 900px;
  width: 100%;
  padding: 20px;
  text-align: center;
}

/* Image wrapper */
.image-wrapper {
  max-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image */
#modalImage {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain; /* FIX stretching */
  border-radius: 12px;
  animation: slideIn 0.4s ease;
}

/* Close button */
#closeModal {
  position: absolute;
  top: -50px;
  right: 20px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* Navigation buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  background: rgba(154, 82, 255, 0.35);
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
}

.nav-btn:hover {
  background: rgba(154, 82, 255, 0.6);
}

#prevBtn { left: -10px; }
#nextBtn { right: -10px; }

/* Dots */
#dotsContainer {
  margin-top: 15px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background: var(--lavender);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: var(--accent-blue);
}

/* Make product image clickable */
.product-image {
  cursor: pointer;
}

/* Slider system */
.image-wrapper {
  overflow: hidden;
  max-height: 70vh;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slider-track img {
  min-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Mobile fix */
@media (max-width: 600px) {
  .nav-btn {
    top: auto;
    bottom: 80px;
  }

  #prevBtn { left: 20px; }
  #nextBtn { right: 20px; }

  .modal-content {
    margin-top: 100px;
  }
}


/* ================= REVIEWS ================= */
.reviews-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 4rem 1.5rem;
}

.review-form {
  background: white;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border: 1px solid #eaeaea;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.review-form h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--dark-text);
  text-align: center;
  font-weight: 600;
}

.review-form input,
.review-form textarea,
.review-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1.2rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  outline: none;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fafafa;
}

.review-form input:focus,
.review-form textarea:focus,
.review-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(154, 82, 255, 0.1);
  background-color: white;
}

.review-form textarea {
  height: 130px;
  resize: vertical;
  min-height: 100px;
}

.review-form .review-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.review-form label {
  font-weight: 500;
  color: #555;
  white-space: nowrap;
  margin-bottom: 0.3rem;
}

.review-form select {
  width: 100%;
  padding: 0.8rem;
}

.review-form button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

.review-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(154, 82, 255, 0.3);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: """;
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: Georgia, serif;
  font-size: 3rem;
  color: rgba(154, 82, 255, 0.1);
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0, 0.08);
  border-color: rgba(154, 82, 255, 0.2);
}

.review-card .stars {
  color: #ffc107;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.review-card .review-text {
  font-style: normal;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
  padding-top: 1.2rem;
  position: relative;
  font-size: 0.95rem;
}

.review-card .reviewer-name {
  color: var(--primary);
  font-weight: 600;
  text-align: left;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  padding-top: 0.6rem;
  border-top: 1px dashed #eee;
}

.review-card .review-date {
  color: #888;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  font-style: italic;
}

/* ================= CONTACT ================= */
.contact-section {
  background-color: #fff;
  padding: 3rem 1.5rem 2rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
  padding: 1.5rem;
  flex: 1;
  min-width: 200px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s ease;
  border: 1px solid #f0f0f0;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.contact-item h3 {
  font-size: clamp(1.1rem, 4vw, 1.2rem);
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-item p {
  font-size: clamp(0.9rem, 3vw, 1rem);
  color: #666;
  word-break: break-word;
}

/* ================= FOOTER ================= */
.footer {
  background-color: var(--primary-dark);
  color: #fff;
  padding: 2.5rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  margin-bottom: 1.8rem;
}

.footer-section h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.footer-section p {
  margin-bottom: 0.4rem;
  opacity: 0.9;
  font-size: clamp(0.8rem, 3vw, 0.9rem);
}

.social-icons {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
  background-color: var(--accent-blue);
  color: var(--dark-text);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.8;
  font-size: clamp(0.75rem, 2.5vw, 0.85rem);
}

/* ================= MEDIA QUERIES ================= */

/* Large tablets and small laptops */
@media (max-width: 1100px) {
  .hero-text h1 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .hero-text p {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}

/* Tablets and large mobile devices */
@media (max-width: 992px) {
  .hero {
    min-height: 65vh;
    padding: 2rem 1rem;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn {
    margin: 0.3rem;
  }

  .hero-slider {
    max-width: 100%;
    width: 100%;
    order: -1; /* Move slider above text on mobile */
  }

  .slider-container {
    max-height: 280px;
    width: 100%;
  }

  .slide {
    height: 280px;
    overflow: hidden;
  }

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

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 3rem 1rem 2rem;
  }

  .hero-text h1 {
    font-size: clamp(1.5rem, 8vw, 2rem);
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .hero-text p {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    margin-bottom: 1.5rem;
  }

  .btn {
    padding: 0.85rem 1.6rem;
    font-size: 1rem;
    margin: 0.3rem;
  }

  .slider-container {
    max-height: 250px;
  }

  .slide {
    height: 250px;
    overflow: hidden;
  }

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

  .container {
    padding: 2.5rem 1rem;
  }

  .contact-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-info {
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    min-width: 280px;
    text-align: center;
    width: 100%;
    max-width: 300px;
  }

  .contact-item p {
    font-size: 1.05rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 0.8rem 1.5rem;
    margin-top: 60px;
  }

  .hero-text h1 {
    font-size: clamp(1.3rem, 10vw, 1.8rem);
    margin-bottom: 0.6rem;
  }

  .hero-text p {
    font-size: clamp(0.85rem, 5vw, 1rem);
    margin-bottom: 1.2rem;
  }

  .btn {
    padding: 0.75rem 1.3rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 220px;
    margin: 0.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }

  .slider-container {
    max-height: 200px;
  }

  .slide {
    height: 200px;
    overflow: hidden;
  }

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

  .nav-container {
    padding: 0 1rem;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .product-card {
    padding: 1rem;
  }

  .product-card img {
    height: 180px;
  }

  .order-button {
    padding: 0.65rem 1.2rem;
    font-size: 0.9rem;
  }

  .contact-section .container {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .contact-item {
    min-width: 100%;
    padding: 1rem 1.2rem;
    width: 100%;
  }

  .contact-item i {
    font-size: 1.8rem;
  }

  .social-icons a {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
  .hero {
    padding: 2rem 0.6rem 1.2rem;
    margin-top: 60px;
  }

  .hero-text h1 {
    font-size: clamp(1.2rem, 10vw, 1.6rem);
  }

  .hero-text p {
    font-size: clamp(0.8rem, 5vw, 0.95rem);
  }

  .btn {
    padding: 0.7rem 1.1rem;
    font-size: 0.9rem;
    max-width: 180px;
  }

  .review-form {
    padding: 1.5rem;
  }

  .review-form h3 {
    font-size: 1.3rem;
  }

  .product-card {
    padding: 0.8rem;
  }

  .contact-item {
    padding: 0.8rem 1rem;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }
}
