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

html {
  overflow-x: hidden;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 50%, #e0e7ff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  overflow-x: hidden;
}

/* Glass morphism utility */
.glass-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.header.scrolled {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  color: #374151;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: #a61e22;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background: #a61e22;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 0.375rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.mobile-menu-btn.active {
  background: rgba(166, 30, 34, 0.2);
  border-color: rgba(166, 30, 34, 0.4);
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: #374151;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
}

.mobile-nav-link {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  text-align: center;
  color: #374151;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mobile-nav-link:hover {
  color: #a61e22;
  background: rgba(166, 30, 34, 0.1);
  border-color: rgba(166, 30, 34, 0.3);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  overflow-x: hidden;
  padding-top: 5rem;
}

.bg-animation {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
}

.bg-blob-1 {
  top: 2.5rem;
  left: 0.5rem;
  width: 12rem;
  height: 12rem;
  background: rgba(166, 30, 34, 0.3);
  max-width: calc(100vw - 1rem);
}

.bg-blob-2 {
  bottom: 2.5rem;
  right: 0.5rem;
  width: 16rem;
  height: 16rem;
  background: rgba(147, 197, 253, 0.3);
  max-width: calc(100vw - 1rem);
}

.bg-blob-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14rem;
  height: 14rem;
  background: rgba(166, 30, 34, 0.2);
  max-width: calc(100vw - 2rem);
}

.hero-container {
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1f2937, #a61e22, #8b1a1e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  padding: 0 0.5rem;
}

.hero-title-break {
  display: none;
}

.hero-title-mobile-space {
  display: inline;
}

.hero-description {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 3rem;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  padding: 0 1rem;
}

/* Flip Card Styles */
.flip-card-container {
  position: relative;
  width: 100%;
  max-width: 20rem;
  height: 16rem;
  margin: 0 auto;
  perspective: 1000px;
  animation: scaleIn 1s ease-out 0.3s both;
}

.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
  cursor: pointer;
}

.flip-card:hover {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1rem;
  overflow: hidden;
}

.flip-card-front {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.flip-card-back {
  transform: rotateY(180deg);
}

.flip-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1.5rem;
  text-align: center;
}

.featured-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.current-product-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #a61e22;
  margin-bottom: 0.75rem;
}

.current-product-description {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}

.cta-button {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #a61e22, #8b1a1e);
  color: white;
  border: none;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.2),
    transparent
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
}

.product-overlay-content {
  text-align: center;
}

.back-product-title {
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.back-product-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* Carousel Controls */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 1.125rem;
  color: #374151;
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #a61e22;
  width: 1.5rem;
}

.autoplay-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 0.75rem;
  color: #374151;
}

.autoplay-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #a61e22;
}

/* Sections */
.products-section,
.about-section,
.contact-section {
  padding: 3rem 0 5rem;
  position: relative;
  overflow-x: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1rem;
  color: #4b5563;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
  padding: 0 0.5rem;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-0.625rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.product-image-container {
  position: relative;
  overflow: hidden;
}

.product-card .product-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: #a61e22;
}

.product-description {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.learn-more-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: #a61e22;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.learn-more-btn:hover {
  color: #8b1a1e;
}

.learn-more-btn .arrow {
  transition: transform 0.3s ease;
}

.learn-more-btn:hover .arrow {
  transform: translateX(0.25rem);
}

.shine-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%) skewX(-12deg);
  transition: transform 1s ease-out;
}

.product-card:hover .shine-effect {
  transform: translateX(100%) skewX(-12deg);
}

/* About Section */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.about-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  animation: fadeInLeft 0.8s ease-out;
}

.story-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.about-text {
  width: 100%;
  animation: fadeInRight 0.8s ease-out;
}

.about-text .glass-card {
  padding: 2rem;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.about-paragraph {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-paragraph:last-child {
  margin-bottom: 0;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.contact-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #a61e22, #8b1a1e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.contact-details {
  color: #4b5563;
  line-height: 1.6;
}

.phone-number,
.email {
  cursor: pointer;
  transition: color 0.3s ease;
}

.phone-number:hover,
.email:hover {
  color: #a61e22;
}

.hours {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  background: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer .logo-icon {
  width: 2.5rem;
  height: 2.5rem;
}

.footer .logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.copyright {
  color: #d1d5db;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  font-size: 1.125rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

/* Product Detail */
.product-detail {
  display: none;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 50%, #e0e7ff 100%);
  padding-top: 6rem;
}

.product-detail.active {
  display: block;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a61e22;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #8b1a1e;
}

.back-arrow {
  font-size: 1.25rem;
}

.product-detail-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

.product-detail-image .glass-card {
  padding: 0;
  overflow: hidden;
}

.detail-image {
  width: 100%;
  height: 24rem;
  object-fit: cover;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-header {
  margin-bottom: 1rem;
}

.detail-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.rating-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.star {
  color: #d1d5db;
  font-size: 1.25rem;
}

.star.filled {
  color: #a61e22;
}

.reviews-count {
  color: #4b5563;
  font-size: 0.875rem;
}

.product-detail-info .glass-card {
  padding: 1.5rem;
}

.detail-section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.detail-description {
  color: #374151;
  line-height: 1.6;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
}

.trust-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.trust-text {
  font-size: 0.875rem;
  color: #4b5563;
}

.contact-cta {
  width: 100%;
  background: linear-gradient(135deg, #a61e22, #8b1a1e);
  color: white;
  border: none;
  border-radius: 1rem;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.product-details-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.detail-tab .glass-card {
  padding: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.tab-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.ingredients-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ingredients-list li {
  display: flex;
  align-items: center;
  color: #374151;
}

.ingredients-list li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #a61e22;
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.nutrition-facts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nutrition-item {
  display: flex;
  justify-content: space-between;
  color: #374151;
}

.nutrition-label {
  text-transform: capitalize;
}

.nutrition-value {
  font-weight: 500;
}

.how-to-serve-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 0;
}

.how-to-serve-list li {
  display: flex;
  align-items: flex-start;
  color: #374151;
}

.step-number {
  background: #a61e22;
  color: white;
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }

  .bg-blob-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    max-width: calc(100vw - 5rem);
  }

  .bg-blob-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    max-width: calc(100vw - 5rem);
  }

  .bg-blob-3 {
    width: 20rem;
    height: 20rem;
    max-width: calc(100vw - 4rem);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-title-break {
    display: block;
  }

  .hero-title-mobile-space {
    display: none;
  }

  .hero-description {
    font-size: 1.125rem;
    max-width: 32rem;
    margin-bottom: 3rem;
  }

  .flip-card-container {
    max-width: 36rem;
    height: 18rem;
  }

  .featured-title {
    font-size: 1.5rem;
  }

  .current-product-title {
    font-size: 1.25rem;
  }

  .current-product-description {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-description {
    font-size: 1.125rem;
  }

  .contact-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .detail-image {
    height: 20rem;
  }

  .about-content {
    flex-direction: row;
    gap: 3rem;
  }

  .about-image,
  .about-text {
    flex: 1;
  }

  .story-image {
    height: 20rem;
  }

  .product-details-tabs {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-title {
    font-size: 3rem;
  }

  .flip-card-container {
    height: 20rem;
  }

  .carousel-prev {
    left: 1rem;
  }

  .carousel-next {
    right: 1rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-content .copyright {
    order: 2;
  }

  .footer-content .social-links {
    order: 3;
  }

  .product-detail-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-image {
    height: 31.25rem;
  }

  .product-details-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }

  .flip-card-container {
    max-width: 32rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-section,
  .about-section,
  .contact-section {
    padding: 5rem 0;
  }

  .detail-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 5rem;
  }
}

@media (min-width: 1536px) {
  .hero-title {
    font-size: 6rem;
  }
}
