@font-face {
  font-family: "Salisbury";
  src: url("path/to/Salisbury.woff2") format("woff2"),
    url("path/to/Salisbury.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* ===== BASE STYLES ===== */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  width: 100%;
}

body {
  padding-top: 90px;
  font-family: "Open Sans", sans-serif;
  background-color: #9e6381;
  min-height: 150vh;
}

/* ===== HEADER / NAVIGATION - FIXED FOR ALL SCREENS ===== */
.header {
  background-color: rgba(64, 20, 39, 0.6);
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f3ebd4;
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px); /* Fixed width calculation */
  max-width: 1360px;
  z-index: 1000;
  border-radius: 8px;
  backdrop-filter: blur(30px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header-logo {
  height: 80px;
  width: auto;
  margin-right: 60px;
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 56px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  flex-grow: 1;
  justify-content: flex-end;
}

.nav-menu li a {
  color: #f3ebd4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: white;
}

.nav-menu .cart-icon {
  font-size: 20px;
  margin-left: -10px;
}

.header-order-button {
  background-color: #dc3b71;
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  margin-left: 10px;
  white-space: nowrap;
}

.header-order-button:hover {
  background-color: #b02a5a;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background-color: #9e6381;
  position: relative;
  height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden; /* Changed from visible to hidden */
  color: #fffcf0;
  padding-top: 80px;
  width: 100%;
}

.hero-headline {
  font-size: 80px;
  font-weight: 800;
  color: #fffdfd;
  margin-bottom: -80px;
  word-spacing: -1px;
  font-family: "Salisbury", serif;
  line-height: 1.1;
  text-align: center;
  max-width: 800px;
  z-index: 5;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Wave Background */
.wave-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-color: #5b2b46;
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%235B2B46" fill-opacity="1" d="M0,192L48,181.3C96,171,192,149,288,149.3C384,149,480,171,576,192C672,213,768,235,864,213.3C960,192,1056,128,1152,112C1248,96,1344,128,1392,144L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: bottom;
  z-index: 1;
  pointer-events: none;
}

/* Strawberry Pie Image */
.strawberry-pie-image-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 560px;
  overflow: hidden;
  z-index: 2;
  max-width: 90%; /* Prevent overflow on mobile */
}

.strawberry-pie-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Pie Labels */
.pie-label {
  position: absolute;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 20px;
  padding: 6px 12px;
  color: #000;
  white-space: nowrap;
  z-index: 5;
}

.label-pies-tarts {
  top: 63%;
  left: 25%;
  transform: rotate(-15deg);
}

.label-sweet-nostalgia {
  top: 61%;
  right: 23%;
  transform: rotate(15deg);
}

/* Hero Buttons */
.hero-buttons-wrapper {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: auto;
  text-align: center;
}

.hero-buttons-container {
  display: flex;
  gap: 10px;
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-button {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.button-we-baked {
  background-color: #ffffff;
  color: #db3d72;
}

.button-we-baked:hover {
  background-color: #e0e0e0;
}

.button-order-now {
  background-color: #db3d72;
  color: #ffffff;
  border: none;
}

.button-order-now:hover {
  background-color: #b02a5a;
}

/* ===== ORCHARD SECTION ===== */
.orchard-section {
  background-color: #fffcf0;
  padding: 100px 40px 60px;
  text-align: center;
  color: #1a1517;
  width: 100%;
  box-sizing: border-box;
}

.orchard-heading {
  font-family: "Salisbury", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 800px;
  color: #73274d;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ===== BEST SELLERS SECTION ===== */
.best-sellers-section {
  background-color: #fffcf0;
  padding: 60px 40px 100px;
  text-align: center;
  color: #4a0f1d;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.best-sellers-title {
  font-size: 38px;
  font-weight: 600;
  color: #4a0f1d;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: "Open Sans", sans-serif;
  padding: 0 20px;
}

.best-sellers-subtitle {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 50px;
  color: #4a0f1d;
  padding: 0 20px;
}

.product-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
  box-sizing: border-box;
}

.product-card {
  width: 300px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
  border: 1px solid #e5c17a;
  box-sizing: border-box;
}

.product-image-container {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.product-image {
  max-width: 180px;
  max-height: 180px;
  object-fit: contain;
}

.product-rating {
  font-size: 18px;
  color: #db3d72;
  margin-bottom: 8px;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  color: #4a0f1d;
  margin-bottom: 5px;
}

.product-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: #4a0f1d;
  margin-bottom: 20px;
}

.add-to-cart-button {
  display: inline-block;
  padding: 10px 80px;
  background-color: #db3d72;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.add-to-cart-button:hover {
  background-color: #b02a5a;
}

/* ===== FLAVOURS SECTION ===== */
.flavours-section {
  background-color: #fffcf0;
  padding: 80px 0 0;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}

.content-card {
  position: relative;
  background-color: #4a0f1d;
  border-radius: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  max-width: 900px;
  width: 90%;
  margin: 20px auto;
  z-index: 10;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  box-sizing: border-box;
}

.text-content {
  padding: 15px;
  color: #fffcf0;
  flex: 1;
}

.text-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: left;
}

.text-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  text-align: left;
}

.shop-all-button {
  display: inline-block;
  background-color: #fffcf0;
  color: #4a0f1d;
  padding: 16px 207px;
  border-radius: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  text-transform: uppercase;
}

.shop-all-button:hover {
  background-color: #e54d7f;
  color: #fffcf0;
}

.shop-all-button::after {
  content: " →";
  margin-left: 8px;
}

.image-content {
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
}

.image-content img {
  max-width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
}

/* Pink Section */
.pink-section {
  background-color: #fffcf0;
  height: 85px;
  position: relative;
  z-index: 0;
  width: 100%;
}

/* ===== CTA / INSTAGRAM SECTION ===== */
.cta-section {
  width: 100%;
  background: #db3d72;
  padding: 1px 0 100px;
  text-align: center;
  color: #fffcf0;
  position: relative;
  z-index: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.cta-headline {
  font-family: "Salisbury", serif;
  font-size: 100px;
  font-weight: 700;
  line-height: 1.2;
  color: #fffcf0;
  margin-bottom: 60px;
  margin-top: 150px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.instagram-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
  padding: 0 20px;
  box-sizing: border-box;
}

.instagram-card {
  width: 280px;
  height: 440px;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.instagram-card:nth-child(1) {
  transform: rotate(-15deg);
}

.instagram-card:nth-child(2) {
  transform: rotate(5deg);
}

.instagram-card:nth-child(3) {
  transform: rotate(15deg);
}

.instagram-card:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 3;
}

.instagram-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cta-text-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  color: #fffcf0;
  box-sizing: border-box;
}

.cta-title {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 16px;
  font-family: "Open Sans", sans-serif;
}

.cta-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}

.cta-order-button {
  display: inline-block;
  padding: 12px 24px;
  background: #fffcf0;
  border-radius: 8px;
  color: #4a0f1d;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.cta-order-button:hover {
  background-color: #e5c17a;
  color: #4a0f1d;
}

/* ===== CUSTOMER CRUMBS SECTION ===== */
.customer-crumbs-section {
  background-color: #683147;
  padding: 100px 0 120px;
  text-align: center;
  color: #f3ebd4;
  width: 100%;
  box-sizing: border-box;
}

.customer-crumbs-heading {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
  font-family: "Open Sans", sans-serif;
  padding: 0 20px;
}

.customer-crumbs-subheading {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 60px;
  font-family: "Open Sans", sans-serif;
  padding: 0 20px;
}

.testimonials-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0 20px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.testimonial-card {
  width: 300px;
  background-color: #f3ebd4;
  border-radius: 10px;
  padding: 24px;
  text-align: left;
  color: #1a1517;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: #5b2b46;
}

.testimonial-rating {
  font-size: 13.53px;
  font-weight: 600;
  color: #5b2b46;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.5;
  color: #1a1517;
}

/* ===== OUR ORIGINS SECTION ===== */
.our-origins-section {
  background-color: #5b2b46;
  padding-bottom: 100px;
  text-align: center;
  color: #f3ebd4;
  width: 100%;
  box-sizing: border-box;
}

.origins-heading {
  font-family: "Salisbury", serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 67px;
  color: #f3ebd4;
  margin-bottom: 20px;
  margin-top: 150px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.origins-description {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #f3ebd4;
  max-width: 900px;
  margin: 0 auto 50px;
  padding: 0 20px;
  box-sizing: border-box;
}

.read-our-story-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  border: 1px solid #f3ebd4;
  border-radius: 8px;
  color: #f3ebd4;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 80px;
  transition: background-color 0.3s, color 0.3s;
}

.read-our-story-button:hover {
  background-color: #f3ebd4;
  color: #5b2b46;
}

.store-front-image {
  width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.8));
  max-width: 90%;
}

/* ===== FOOTER ===== */
.footer {
  width: 100%;
  background: #5b2b46;
  padding: 40px 20px;
  color: #e2dbd6;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.footer-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  justify-content: center;
  gap: 265px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  flex-wrap: wrap;
  text-align: center;
}

.footer-nav-menu li a {
  color: #e2dbd6;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.footer-nav-menu li a:hover {
  border-bottom-color: #e2dbd6;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.footer-logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  width: 280px;
  height: auto;
  max-width: 100%;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #e2dbd6;
}

.footer-column p,
.footer-column a {
  color: #e2dbd6;
  font-size: 14px;
  margin-bottom: 5px;
  text-decoration: none;
  display: block;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-start;
  gap: 150px;
  margin-top: 80px;
  font-size: 10px;
  color: #a9a9a9;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #a9a9a9;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  text-decoration: underline;
}

.footer-copyright {
  position: absolute;
  bottom: 40px;
  right: 20px;
  color: #a9a9a9;
  font-size: 12px;
}

/* ===== ANIMATED TAGS ===== */
.tag {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  background: #fff;
  color: #9e6381;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-size: 16px;
  letter-spacing: 1px;
}

.tag-left {
  left: 190px;
  transform: translateY(-50%) rotate(-10deg);
  animation: floatLeft 4s ease-in-out infinite;
}

.tag-right {
  right: 130px;
  transform: translateY(-50%) rotate(10deg);
  animation: floatRight 4s ease-in-out infinite;
}

@keyframes floatLeft {
  0%, 100% {
    transform: translateY(-50%) rotate(-10deg);
  }
  50% {
    transform: translateY(-60%) rotate(-12deg);
  }
}

@keyframes floatRight {
  0%, 100% {
    transform: translateY(-50%) rotate(10deg);
  }
  50% {
    transform: translateY(-60%) rotate(12deg);
  }
}

/* ===== MOBILE NAVIGATION ===== */
.header-hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #f3ebd4;
  background: none;
  border: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: 100vh;
  background-color: rgba(64, 20, 39, 0.98);
  list-style: none;
  padding: 80px 30px 30px;
  margin: 0;
  z-index: 9999;
  flex-direction: column;
  gap: 25px;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  box-sizing: border-box;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav li a {
  color: #f3ebd4;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  padding: 10px 0;
}

.close-mobile-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop (1200px and above) - No changes needed */

/* Medium Desktop (1024px to 1199px) */
@media (max-width: 1199px) {
  .header {
    width: calc(100% - 32px);
  }
  
  .hero-headline {
    font-size: 70px;
  }
  
  .strawberry-pie-image-container {
    width: 550px;
    height: 520px;
  }
  
  .cta-headline {
    font-size: 90px;
  }
  
  .origins-heading {
    font-size: 58px;
    line-height: 62px;
  }
  
  .footer-nav-menu {
    gap: 200px;
  }
}

/* Tablets (768px to 1023px) */
@media (max-width: 1023px) {
  .header {
    padding: 10px 15px;
    width: calc(100% - 30px);
    top: 12px;
  }
  
  .header-logo {
    height: 80px;
    margin-right: 30px;
  }
  
  .nav-menu {
    gap: 30px;
    font-size: 14px;
  }
  
  .header-order-button {
    padding: 10px 14px;
    font-size: 14px;
    margin-left: 5px;
  }
  
  body {
    padding-top: 85px;
  }
  
  .hero-section {
    height: 600px;
    padding-top: 60px;
  }
  
  .hero-headline {
    font-size: 60px;
    margin-bottom: -60px;
    max-width: 700px;
  }
  
  .strawberry-pie-image-container {
    width: 480px;
    height: 450px;
  }
  
  .label-pies-tarts {
    top: 62%;
    left: 20%;
  }
  
  .label-sweet-nostalgia {
    top: 60%;
    right: 18%;
  }
  
  .wave-background {
    height: 250px;
  }
  
  .orchard-section {
    padding: 80px 30px 50px;
  }
  
  .orchard-heading {
    font-size: 48px;
    max-width: 700px;
  }
  
  .best-sellers-section {
    padding: 50px 30px 80px;
  }
  
  .best-sellers-title {
    font-size: 32px;
  }
  
  .product-grid {
    gap: 30px;
  }
  
  .product-card {
    width: 280px;
  }
  
  .content-card {
    max-width: 800px;
    padding: 25px;
  }
  
  .text-content h2 {
    font-size: 2.2rem;
  }
  
  .shop-all-button {
    padding: 14px 180px;
  }
  
  .cta-section {
    padding-bottom: 80px;
  }
  
  .cta-headline {
    font-size: 80px;
    margin-top: 120px;
    margin-bottom: 50px;
  }
  
  .instagram-grid {
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .instagram-card {
    width: 250px;
    height: 400px;
  }
  
  .customer-crumbs-section {
    padding: 80px 0 100px;
  }
  
  .testimonials-grid {
    padding: 0 30px;
    gap: 30px;
  }
  
  .our-origins-section {
    padding-bottom: 80px;
  }
  
  .origins-heading {
    font-size: 52px;
    line-height: 56px;
    margin-top: 120px;
  }
  
  .origins-description {
    font-size: 18px;
    line-height: 28px;
    max-width: 800px;
  }
  
  .store-front-image {
    width: 600px;
  }
  
  .footer {
    padding: 35px 30px;
  }
  
  .footer-nav-menu {
    gap: 120px;
  }
  
  .footer-bottom-links {
    gap: 80px;
    margin-top: 60px;
  }
  
  .tag-left {
    left: 120px;
  }
  
  .tag-right {
    right: 80px;
  }
}

/* Mobile Navigation for Tablets */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  
  .header-hamburger {
    display: block;
  }
  
  .header-order-button {
    display: none;
  }
}

/* Large Mobile (576px to 767px) */
@media (max-width: 767px) {
  .header {
    padding: 8px 15px;
    width: calc(100% - 30px);
    top: 8px;
  }
  
  .header-logo {
    height: 45px;
    margin-right: 0;
  }
  
  body {
    padding-top: 75px;
  }
  
  .hero-section {
    height: 500px;
    padding-top: 40px;
  }
  
  .hero-headline {
    font-size: 48px;
    margin-bottom: -40px;
    max-width: 500px;
  }
  
  .strawberry-pie-image-container {
    width: 380px;
    height: 360px;
  }
  
  .pie-label {
    font-size: 11px;
    padding: 5px 10px;
  }
  
  .label-pies-tarts {
    top: 60%;
    left: 10%;
    transform: rotate(-12deg);
  }
  
  .label-sweet-nostalgia {
    top: 58%;
    right: 8%;
    transform: rotate(12deg);
  }
  
  .hero-buttons-wrapper {
    bottom: 10px;
  }
  
  .hero-buttons-container {
    padding: 6px 10px;
  }
  
  .hero-button {
    padding: 4px 8px;
    font-size: 13px;
  }
  
  .wave-background {
    height: 180px;
  }
  
  .orchard-section {
    padding: 60px 20px 40px;
  }
  
  .orchard-heading {
    font-size: 36px;
    max-width: 500px;
  }
  
  .best-sellers-section {
    padding: 40px 20px 60px;
  }
  
  .best-sellers-title {
    font-size: 28px;
  }
  
  .best-sellers-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }
  
  .product-grid {
    gap: 25px;
  }
  
  .product-card {
    width: 100%;
    max-width: 320px;
  }
  
  .add-to-cart-button {
    padding: 10px 60px;
  }
  
  .content-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
  
  .text-content h2 {
    text-align: center;
    font-size: 2rem;
  }
  
  .text-content p {
    text-align: center;
    font-size: 0.95rem;
  }
  
  .shop-all-button {
    padding: 12px 40px;
    width: 100%;
    max-width: 300px;
  }
  
  .image-content {
    margin-top: 20px;
  }
  
  .image-content img {
    height: 250px;
  }
  
  .cta-section {
    padding-bottom: 60px;
  }
  
  .cta-headline {
    font-size: 60px;
    margin-top: 80px;
    margin-bottom: 40px;
  }
  
  .instagram-grid {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
  }
  
  .instagram-card {
    width: 280px;
    height: 380px;
    transform: rotate(0deg) !important;
  }
  
  .cta-text-content {
    padding: 0 25px;
  }
  
  .cta-title {
    font-size: 28px;
  }
  
  .cta-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
  }
  
  .customer-crumbs-section {
    padding: 60px 0 80px;
  }
  
  .customer-crumbs-heading {
    font-size: 24px;
  }
  
  .customer-crumbs-subheading {
    font-size: 15px;
    margin-bottom: 50px;
  }
  
  .testimonials-grid {
    padding: 0 20px;
    gap: 25px;
  }
  
  .testimonial-card {
    width: 100%;
    max-width: 350px;
  }
  
  .our-origins-section {
    padding-bottom: 60px;
  }
  
  .origins-heading {
    font-size: 40px;
    line-height: 44px;
    margin-top: 80px;
    margin-bottom: 25px;
  }
  
  .origins-description {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 40px;
  }
  
  .read-our-story-button {
    margin-bottom: 60px;
    padding: 10px 20px;
    font-size: 15px;
  }
  
  .store-front-image {
    width: 90%;
    max-width: 450px;
  }
  
  .footer {
    padding: 30px 20px;
  }
  
  .footer-nav-menu {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-column {
    min-width: 100%;
  }
  
  .footer-logo {
    width: 240px;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
    text-align: center;
  }
  
  .footer-copyright {
    position: static;
    margin-top: 20px;
    text-align: center;
  }
  
  .tag {
    font-size: 14px;
    padding: 6px 12px;
  }
  
  .tag-left {
    left: 30px;
    transform: translateY(-50%) rotate(-8deg);
  }
  
  .tag-right {
    right: 20px;
    transform: translateY(-50%) rotate(8deg);
  }
}

/* Small Mobile (480px to 575px) */
@media (max-width: 575px) {
  .header {
    padding: 6px 12px;
    width: calc(100% - 24px);
  }
  
  .header-logo {
    height: 80px;
  }
  
  .hero-headline {
    font-size: 40px;
    margin-bottom: -30px;
  }
  
  .strawberry-pie-image-container {
    width: 320px;
    height: 300px;
  }
  
  .pie-label {
    font-size: 10px;
    padding: 4px 8px;
  }
  
  .label-pies-tarts {
    top: 58%;
    left: 5%;
  }
  
  .label-sweet-nostalgia {
    top: 56%;
    right: 3%;
  }
  
  .cta-headline {
    font-size: 48px;
  }
  
  .origins-heading {
    font-size: 32px;
    line-height: 36px;
  }
  
  .tag-left {
    left: 20px;
  }
  
  .tag-right {
    right: 10px;
  }
}

/* Extra Small Mobile (below 480px) */
@media (max-width: 479px) {
  .header {
    padding: 5px 10px;
    width: calc(100% - 20px);
  }
  
  .header-logo {
    height: 80px;
  }
  
  .hero-section {
    height: 450px;
    padding-top: 30px;
  }
  
  .hero-headline {
    font-size: 32px;
    margin-bottom: -20px;
    max-width: 350px;
  }
  
  .strawberry-pie-image-container {
    width: 280px;
    height: 260px;
  }
  
  .pie-label {
    font-size: 9px;
    padding: 3px 6px;
  }
  
  .label-pies-tarts {
    top: 56%;
    left: 2%;
    transform: rotate(-8deg);
  }
  
  .label-sweet-nostalgia {
    top: 54%;
    right: 0%;
    transform: rotate(8deg);
  }
  
  .hero-buttons-container {
    flex-direction: column;
    gap: 4px;
  }
  
  .hero-button {
    width: 100%;
    text-align: center;
    padding: 6px;
  }
  
  .wave-background {
    height: 120px;
  }
  
  .orchard-heading {
    font-size: 28px;
  }
  
  .best-sellers-title {
    font-size: 24px;
  }
  
  .cta-headline {
    font-size: 40px;
    margin-top: 60px;
  }
  
  .instagram-card {
    width: 260px;
    height: 350px;
  }
  
  .cta-title {
    font-size: 24px;
  }
  
  .origins-heading {
    font-size: 28px;
    line-height: 32px;
  }
  
  .tag {
    display: none; /* Hide tags on very small screens */
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    height: auto;
    min-height: 400px;
    padding-bottom: 80px;
  }
  
  .hero-headline {
    margin-bottom: 10px;
  }
  
  .strawberry-pie-image-container {
    width: 250px;
    height: 230px;
  }
  
  .header {
    top: 8px;
  }
  
  body {
    padding-top: 70px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .tag {
    animation: none;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .nav-menu li a:hover,
  .header-order-button:hover,
  .hero-button:hover,
  .add-to-cart-button:hover,
  .cta-order-button:hover,
  .shop-all-button:hover,
  .read-our-story-button:hover {
    color: inherit;
    background-color: inherit;
    transform: none;
  }
}


.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #db3d72; /* Brand green tone */
  border: none;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  background: #9e6381;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
