:root {
  --forest-deep: #0d1f17;
  --forest-dark: #1a3c2e;
  --forest-medium: #2d5a47;
  --forest-light: #4a7c5f;
  --cream: #f8f5f0;
  --cream-dark: #ebe6dc;
  --gold: #c9a962;
  --gold-light: #dfc88a;
  --bark: #3d2c1f;
  --bark-light: #5c4a3d;
  --text-dark: #1a1a1a;
  --text-light: #f8f5f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--forest-medium);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--forest-dark);
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  background-color: rgba(13, 31, 23, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 5%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 0;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 30px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 38, 29, 0.75) 0%,
    rgba(35, 52, 39, 0.85) 50%,
    rgba(45, 72, 55, 0.75) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  color: var(--text-light);
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--cream);
}

.hero-title span {
  color: var(--gold);
  display: block;
  font-style: italic;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  gap: 1.5rem;
}

.cta-btn {
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.cta-primary {
  background: var(--gold);
  color: var(--forest-deep);
  border: 2px solid var(--gold);
}

.cta-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.cta-secondary {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}

.cta-secondary:hover {
  background: var(--cream);
  color: var(--forest-deep);
  transform: translateY(-2px);
}

/* Section Styling */
.section {
  padding: 6rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.intro-section {
  background: linear-gradient(135deg, #f8f5f0 0%, #ebe6dc 100%);
  padding: 6rem 5%;
}

.intro-container {
  max-width: 900px;
  margin: 0 auto;
}

.intro-text {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

/* Delivery Section */
.delivery-section {
  background: var(--forest-deep);
  padding: 6rem 5%;
  position: relative;
}

.delivery-container {
  max-width: 900px;
  margin: 0 auto;
}

.delivery-section .section-title {
  color: var(--cream);
}

.delivery-text {
  background: rgba(248, 245, 240, 0.1);
  padding: 3rem;
  border-radius: 12px;
  border: 2px solid rgba(201, 169, 98, 0.3);
  margin-top: 2rem;
}

.delivery-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.delivery-text p:last-child {
  margin-bottom: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--forest-deep);
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--bark-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Products Section */
.products-section {
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image-container {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}

.product-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8e4dc 0%, #d4cfc4 100%);
  color: var(--bark-light);
}

.product-placeholder svg {
  width: 100px;
  height: 100px;
  stroke: var(--forest-medium);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.product-placeholder-text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--forest-deep);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
}

.product-content {
  padding: 2.5rem;
}

.product-category {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.product-title {
  font-size: 2rem;
  color: var(--forest-deep);
  margin-bottom: 1rem;
}

.product-description {
  color: var(--bark-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.product-features {
  list-style: none;
  margin-bottom: 2rem;
}

.product-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-dark);
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features svg {
  width: 16px;
  height: 16px;
  stroke: var(--forest-medium);
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest-deep);
  font-family: "Cormorant Garamond", serif;
}

.price-label {
  font-size: 0.85rem;
  color: var(--bark-light);
}

.product-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-top: 1.5rem;
  background: var(--forest-dark);
  color: var(--cream);
  text-align: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-cta:hover {
  background: var(--gold);
  color: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Order Now Button */
.order-now {
  width: 100%;
  padding: 1.2rem;
  background: var(--forest-dark);
  color: var(--cream);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  font-family: "Montserrat", sans-serif;
}

.order-now:hover {
  background: var(--gold);
  color: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact-section {
  background: var(--cream);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 2rem;
  color: var(--forest-deep);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--bark-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--forest-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--cream);
}

.contact-item-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.contact-item-text {
  font-size: 1.1rem;
  color: var(--forest-deep);
  font-weight: 500;
}

.contact-item-text a {
  color: var(--forest-deep);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-text a:hover {
  color: var(--gold);
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--forest-deep);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid var(--cream-dark);
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: var(--cream);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230d1f17' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 12px;
  padding-right: 3rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest-medium);
  background-color: white;
}

.form-group select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230d1f17' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  max-width: 400px;
  padding: 1rem 2rem;
  background: var(--forest-dark);
  color: var(--cream);
  border: none;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}

.submit-btn:hover {
  background: var(--gold);
  color: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 3rem 5% 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(248, 245, 240, 0.1);
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  overflow: visible;
  height: 80px;
  display: flex;
  align-items: flex-end;
}

.footer-logo-img {
  height: 225px;
  transform: translateY(30%) translateX(-30%);
  width: auto;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.footer-logo span {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(248, 245, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  stroke: var(--cream);
}

.social-link:hover svg {
  stroke: var(--forest-deep);
}

/* Footer Details */
.footer-details {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(248, 245, 240, 0.1);
}

.footer-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-detail-item h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-detail-item p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.6;
  color: inherit !important;
  text-decoration: none !important;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}

.footer-copyright {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* Toast Notification Styles */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, #2d5a27 0%, #1e3d1a 100%);
  color: white;
  padding: 16px 28px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 10000;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  max-width: 90%;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}
.toast.success {
  background: linear-gradient(135deg, #2d5a27 0%, #1e3d1a 100%);
}
.toast.error {
  background: linear-gradient(135deg, #c0392b 0%, #962d22 100%);
}
.toast-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  display: none;
}
.toast-icon svg {
  width: 14px;
  height: 14px;
  stroke: white;
}
.toast.success .success-icon {
  display: flex;
}
.toast.error .error-icon {
  display: flex;
}
.toast-message {
  line-height: 1.4;
}
@media (max-width: 600px) {
  .toast {
    bottom: 20px;
    left: 1rem;
    right: 1rem;
    transform: translateY(100px);
    padding: 14px 20px;
    font-size: 14px;
  }
  .toast.show {
    transform: translateY(0);
  }
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Logo Image */
.logo-img {
  max-height: 225px;
  width: auto;
  display: block;
}

.nav.scrolled .logo-img {
  height: 225px;
}

/* Why Choose Us Section */
.why-choose-section {
  background: linear-gradient(135deg, #f8f5f0 0%, #ebe6dc 100%);
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(201, 169, 98, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(74, 124, 95, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.why-choose-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.why-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--gold);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.why-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--forest-deep);
}

.why-title {
  font-size: 1.3rem;
  color: var(--forest-deep);
  margin-bottom: 1rem;
  font-weight: 600;
}

.why-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
}

/* Delivery Section */
.why-delivery {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-top: 3rem;
}

.why-delivery h3 {
  font-size: 1.8rem;
  color: var(--forest-deep);
  margin-bottom: 2rem;
  text-align: center;
}

.delivery-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.delivery-item {
  text-align: center;
}

.delivery-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--forest-deep);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.delivery-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

/* Contact Section */
.why-contact {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 98, 0.1) 0%,
    rgba(74, 124, 95, 0.1) 100%
  );
  border-radius: 16px;
}

.contact-tagline {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin: 0 0 2rem 0;
}

.contact-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--forest-deep);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
}

.contact-phone-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 169, 98, 0.5);
}

.contact-phone-btn svg {
  width: 28px;
  height: 28px;
  stroke: var(--forest-deep);
}

/* Product Pricing System */
.product-pricing {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 98, 0.05) 0%,
    rgba(74, 124, 95, 0.05) 100%
  );
  border-radius: 12px;
  border: 2px solid rgba(201, 169, 98, 0.2);
}

.price-tiers {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.tier-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  background: white;
  border-radius: 8px;
  border: 2px solid var(--cream-dark);
  transition: all 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.tier-item:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.05);
  transform: translateX(3px);
}

.tier-item.active {
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.1);
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(201, 169, 98, 0.2);
}

.tier-qty {
  font-weight: 600;
  color: var(--forest-medium);
  font-size: 0.95rem;
}

.tier-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
}

.quantity-section {
  margin-bottom: 1.5rem;
}

.quantity-section label {
  display: block;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: var(--forest-dark);
  color: var(--cream);
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--forest-deep);
  transform: scale(1.05);
}

.qty-input {
  flex: 1;
  height: 40px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  padding: 0 1rem;
  color: var(--forest-deep);
  transition: all 0.3s ease;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-input {
  -moz-appearance: textfield;
}

.qty-input:focus {
  outline: none;
  border-color: var(--gold);
}

.calculated-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 2px solid var(--gold);
}

.total-label {
  font-weight: 600;
  color: var(--forest-deep);
  font-size: 1rem;
}

.total-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

/* Order Summary Panel */
.order-summary-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--forest-deep);
  color: var(--cream);
  padding: 1.5rem 5%;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.order-summary-panel.active {
  transform: translateY(0);
}

.order-summary-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.order-items-list {
  flex: 1;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.order-item-badge {
  background: rgba(201, 169, 98, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.order-item-badge strong {
  color: var(--gold);
}

.order-summary-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.order-total-display {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.proceed-order-btn {
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--forest-deep);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.proceed-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 169, 98, 0.5);
}

.clear-order-btn {
  padding: 0.8rem 1.5rem;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.clear-order-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* =====================================================
   RESPONSIVE DESIGN - Mobile First Approach
   ===================================================== */

/* ----- LARGE DESKTOP (1400px+) ----- */
@media (min-width: 1400px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
  }

  .section {
    padding: 7rem 8%;
  }

  .hero-content {
    max-width: 900px;
  }
}

/* ----- LAPTOP / SMALL DESKTOP (1024px - 1399px) ----- */
@media (max-width: 1399px) {
  .section {
    padding: 5rem 5%;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .contact-container {
    gap: 3rem;
  }
}

/* ----- TABLET LANDSCAPE (968px - 1023px) ----- */
@media (max-width: 1023px) {
  .nav {
    height: 80px;
    padding: 0 4%;
  }

  .nav-links {
    gap: 2rem;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .logo-img {
    max-height: 225px;
    transform: translateX(-30%);
  }

  .nav.scrolled .logo-img {
    height: 225px;
    transform: translateX(-30%);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .product-image-container {
    height: auto;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .delivery-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----- TABLET PORTRAIT (768px - 967px) ----- */
@media (max-width: 967px) {
  /* Navigation - Mobile Menu */
  .nav {
    height: 75px;
    padding: 0 4%;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--forest-deep);
    flex-direction: column;
    padding: 7rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
    gap: 0;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(248, 245, 240, 0.1);
  }

  .nav-links a {
    display: block;
    padding: 1.2rem 0;
    font-size: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  /* Logo */
  .logo-img {
    max-height: 225px;
    transform: translateX(-30%);
  }

  .nav.scrolled .logo-img {
    height: 200px;
    transform: translateX(-30%);
  }

  /* Hero */
  .hero-content {
    padding: 1.5rem;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
  }

  /* Sections */
  .section {
    padding: 4rem 4%;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .section-description {
    font-size: 1rem;
  }

  /* Intro Section */
  .intro-section {
    padding: 4rem 4%;
  }

  .intro-text {
    padding: 2rem;
  }

  .intro-text p {
    font-size: 1rem;
  }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
    margin: 2rem auto 0;
  }

  .product-card {
    max-width: 100%;
  }

  .product-image-container {
    height: auto;
  }

  .product-content {
    padding: 2rem;
  }

  .product-title {
    font-size: 1.8rem;
  }

  /* Delivery */
  .delivery-section {
    padding: 4rem 4%;
  }

  .delivery-text {
    padding: 2rem;
  }

  .delivery-text p {
    font-size: 1rem;
  }

  .delivery-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Why Choose */
  .why-choose-section {
    padding: 4rem 4%;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .why-icon {
    margin: 0 auto 1.5rem;
  }

  .why-delivery {
    padding: 2rem;
  }

  /* Contact */
  .contact-container {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .contact-info {
    order: 2;
  }

  .contact-form {
    order: 1;
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info h3 {
    font-size: 1.6rem;
    text-align: center;
  }

  .contact-info > p {
    text-align: center;
  }

  .contact-details {
    align-items: center;
  }

  .contact-item {
    justify-content: flex-start;
    width: 100%;
    max-width: 300px;
  }

  .contact-phone-btn {
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }

  /* Footer */
  .footer {
    padding: 2.5rem 4% 1.5rem;
  }

  .footer-content,
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-logo {
    height: 60px;
    margin: 0 auto;
    justify-content: center;
  }

  .footer-logo-img {
    height: 220px;
    left: 50%;
    transform: translateY(30%) translateX(-49%);
  }

  .footer-details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  /* Order Summary Panel */
  .order-summary-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .order-items-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .order-summary-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .proceed-order-btn {
    flex: 1;
    min-width: 150px;
  }

  .clear-order-btn {
    flex-shrink: 0;
  }
}

/* ----- MOBILE LARGE (576px - 767px) ----- */
@media (max-width: 767px) {
  /* Navigation */
  .nav {
    height: 70px;
    padding: 0 3%;
  }

  .logo-img {
    max-height: 225px;
  }

  .nav.scrolled .logo-img {
    height: 225px;
  }

  .nav-links {
    width: 100%;
    right: -100%;
    padding: 6rem 1.5rem 2rem;
  }

  /* Hero */
  .hero-content {
    padding: 1rem;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Sections */
  .section {
    padding: 3.5rem 4%;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  /* Products */
  .products-grid {
    max-width: 100%;
    gap: 1.5rem;
  }

  .product-image-container {
    height: auto;
  }

  .product-content {
    padding: 1.5rem;
  }

  .product-title {
    font-size: 1.6rem;
  }

  .product-description {
    font-size: 0.95rem;
  }

  /* Pricing */
  .product-pricing {
    padding: 1.2rem;
  }

  .tier-item {
    padding: 0.7rem 0.8rem;
  }

  .tier-qty {
    font-size: 0.9rem;
  }

  .tier-price {
    font-size: 1rem;
  }

  .quantity-controls {
    width: 100%;
  }

  .qty-btn {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    flex-shrink: 0;
  }

  .qty-input {
    font-size: 1.2rem;
    height: 48px;
    min-width: 70px;
  }

  .calculated-total {
    padding: 1rem;
  }

  .total-amount {
    font-size: 1.5rem;
  }

  .order-now {
    padding: 1rem;
    font-size: 0.9rem;
  }

  /* Contact Form */
  .contact-form {
    padding: 1.5rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .submit-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    max-width: 100%;
  }

  /* Contact Info */
  .contact-icon {
    width: 45px;
    height: 45px;
  }

  .contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-item-text {
    font-size: 1rem;
  }

  /* Footer */
  .footer-details-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .footer-detail-item h4 {
    font-size: 0.7rem;
  }

  .footer-detail-item p {
    font-size: 0.9rem;
    color: #ffffff !important;
    text-decoration: none !important;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.8rem;
  }

  /* Toast */
  .toast {
    right: 1rem;
    left: 1rem;
    transform: translateY(100px);
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .toast.show {
    transform: translateY(0);
  }
}

/* ----- MOBILE SMALL (up to 575px) ----- */
@media (max-width: 575px) {
  /* Navigation */
  .nav {
    height: 70px;
    padding: 0 3%;
  }

  .logo-img {
    max-height: 190px;
  }

  .nav.scrolled {
    padding: 0.5rem 3%;
  }

  .nav.scrolled .logo-img {
    height: 190px;
  }

  .menu-toggle span {
    width: 26px;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 0.8rem;
  }

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }

  .hero-title {
    font-size: clamp(1.8rem, 12vw, 2.5rem);
    margin-bottom: 0.8rem;
  }

  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .hero-cta {
    max-width: 100%;
    gap: 0.8rem;
  }

  .cta-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.8rem;
  }

  /* Sections */
  .section {
    padding: 3rem 3%;
  }

  .intro-section,
  .delivery-section,
  .why-choose-section {
    padding: 3rem 3%;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 0.7rem;
    margin-bottom: 0.8rem;
  }

  .section-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Intro & Delivery Text */
  .intro-text,
  .delivery-text {
    padding: 1.5rem;
    border-radius: 8px;
  }

  .intro-text p,
  .delivery-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  /* Products */
  .products-grid {
    gap: 1.2rem;
    margin-top: 1.5rem;
  }

  .product-card {
    border-radius: 6px;
  }

  .product-image-container {
    height: auto;
  }

  .product-badge {
    top: 12px;
    right: 12px;
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
  }

  .product-content {
    padding: 1.2rem;
  }

  .product-category {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }

  .product-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }

  .product-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .product-features {
    margin-bottom: 1.5rem;
  }

  .product-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    gap: 0.6rem;
  }

  .product-features svg {
    width: 14px;
    height: 14px;
  }

  /* Pricing */
  .product-pricing {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
  }

  .price-tiers {
    gap: 0.6rem;
    margin-bottom: 1.2rem;
  }

  .tier-item {
    padding: 0.6rem 0.7rem;
    border-radius: 6px;
  }

  .tier-qty {
    font-size: 0.85rem;
  }

  .tier-price {
    font-size: 0.95rem;
  }

  .quantity-section label {
    font-size: 0.9rem;
  }

  .qty-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    border-radius: 6px;
  }

  .qty-input {
    height: 44px;
    font-size: 1.1rem;
    border-radius: 6px;
  }

  .calculated-total {
    padding: 0.8rem;
    border-radius: 6px;
  }

  .total-label {
    font-size: 0.9rem;
  }

  .total-amount {
    font-size: 1.3rem;
  }

  .order-now {
    padding: 0.9rem;
    font-size: 0.85rem;
    margin-top: 1rem;
    border-radius: 6px;
  }

  /* Why Cards */
  .why-card {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .why-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-bottom: 1rem;
  }

  .why-icon svg {
    width: 26px;
    height: 26px;
  }

  .why-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .why-description {
    font-size: 0.9rem;
  }

  .why-delivery {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .why-delivery h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .delivery-badge {
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
  }

  .delivery-item p {
    font-size: 0.9rem;
  }

  /* Contact */
  .contact-container {
    gap: 2rem;
  }

  .contact-form {
    padding: 1.2rem;
    border-radius: 6px;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-group label {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem 0.9rem;
    font-size: 0.85rem;
    border-radius: 4px;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .submit-btn {
    padding: 0.85rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .contact-info h3 {
    font-size: 1.4rem;
  }

  .contact-info > p {
    font-size: 0.9rem;
  }

  .contact-details {
    gap: 1.5rem;
  }

  .contact-item {
    gap: 1rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-item-label {
    font-size: 0.7rem;
  }

  .contact-item-text {
    font-size: 0.95rem;
  }

  .contact-phone-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    gap: 0.8rem;
  }

  .contact-phone-btn svg {
    width: 22px;
    height: 22px;
  }

  /* Footer */
  .footer {
    padding: 2rem 3% 1.2rem;
  }

  .footer-content {
    padding-bottom: 1.5rem;
  }

  .footer-logo {
    height: 50px;
  }

  .footer-logo-img {
    height: 225px;
    margin-bottom: -10px;
  }

  .footer-social {
    gap: 1rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }

  .footer-details {
    padding: 1.5rem 0;
  }

  .footer-detail-item h4 {
    font-size: 0.65rem;
    margin-bottom: 0.3rem;
  }

  .footer-detail-item p {
    font-size: 0.85rem;
    color: #ffffff !important;
    text-decoration: none !important;
  }

  .footer-bottom {
    padding-top: 1.5rem;
  }

  .footer-copyright {
    font-size: 0.75rem;
  }

  .footer-links a {
    font-size: 0.75rem;
  }

  /* Order Summary Panel */
  .order-summary-panel {
    padding: 1rem 3%;
  }

  .order-item-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .order-total-display {
    font-size: 1.2rem;
  }

  .proceed-order-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .clear-order-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  /* Toast */
  .toast {
    right: 0.8rem;
    left: 0.8rem;
    transform: translateY(100px);
    padding: 0.9rem 1.2rem;
    border-radius: 5px;
  }

  .toast.show {
    transform: translateY(0);
  }

  .toast-icon {
    width: 26px;
    height: 26px;
  }

  .toast-icon svg {
    width: 14px;
    height: 14px;
  }

  .toast span {
    font-size: 0.85rem;
  }

  /* Why Contact Section */
  .why-contact {
    padding: 2rem 1.5rem;
    margin-top: 2.5rem;
    border-radius: 12px;
  }

  .contact-tagline {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
}

/* ----- EXTRA SMALL MOBILE (up to 360px) ----- */
@media (max-width: 360px) {
  .nav {
    padding: 0 2%;
  }

  .logo-img {
    max-height: 190px;
  }

  .nav.scrolled .logo-img {
    height: 190px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .cta-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.75rem;
  }

  .section {
    padding: 2.5rem 2.5%;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .product-title {
    font-size: 1.3rem;
  }

  .qty-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .qty-input {
    height: 40px;
    font-size: 1rem;
    min-width: 60px;
  }

  .total-amount {
    font-size: 1.2rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .footer {
    padding: 1.5rem 2.5% 1rem;
  }
}
