/* Compiled CSS from SCSS */
/* Variables */
:root {
  --primary-color: #FF8BA7;
  --secondary-color: #8B5A8B;
  --accent-color: #FFD700;
  --text-dark: #2C1810;
  --text-light: #6B4423;
  --bg-light: #FFF8F0;
  --bg-dark: #2C1810;
  --white: #FFFFFF;
  --shadow: rgba(44, 24, 16, 0.1);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/* Custom Cursor */
html, body {
  cursor: url('images/cooking.png') 16 16, auto;
}

a, button, .clickable {
  cursor: pointer;
}

/* Sprinkle Animation Container */
.sprinkle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.sprinkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: linear-gradient(45deg, #FF8BA7, #FFD700, #8B5A8B, #FFB6C1);
  border-radius: 50%;
  opacity: 0.6;
  animation: sprinkleFloat 8s infinite linear;
}

.sprinkle:nth-child(odd) {
  width: 2px;
  height: 2px;
  animation-duration: 10s;
  animation-delay: -2s;
}

.sprinkle:nth-child(3n) {
  width: 4px;
  height: 4px;
  animation-duration: 12s;
  animation-delay: -4s;
}

.sprinkle:nth-child(4n) {
  width: 2.5px;
  height: 2.5px;
  animation-duration: 9s;
  animation-delay: -6s;
}

/* Sweet Treat Icons */
.sweet-icon {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0.7;
  animation: sweetFloat 10s infinite linear;
  color: #FF8BA7;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sweet-icon.cake {
  color: #FF6B9D;
  font-size: 1.4rem;
  animation-duration: 12s;
}

.sweet-icon.ice-cream {
  color: #FFB6C1;
  font-size: 1.3rem;
  animation-duration: 11s;
}

.sweet-icon.chocolate {
  color: #8B4513;
  font-size: 1.2rem;
  animation-duration: 13s;
}

.sweet-icon.cookie {
  color: #D2691E;
  font-size: 1.1rem;
  animation-duration: 9s;
}

@keyframes sprinkleFloat {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes sweetFloat {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.8);
    opacity: 0;
  }
  15% {
    opacity: 0.7;
    transform: translateY(85vh) translateX(20px) rotate(45deg) scale(1);
  }
  85% {
    opacity: 0.7;
    transform: translateY(15vh) translateX(80px) rotate(315deg) scale(1);
  }
  100% {
    transform: translateY(-100px) translateX(120px) rotate(360deg) scale(0.8);
    opacity: 0;
  }
}

/* Ensure all elements inherit the custom cursor */
* {
  cursor: url('images/cooking.svg') 16 16, auto;
}

/* Interactive elements get pointer cursor */
a, button, .btn, .product-category, .gallery-item, .whatsapp-float, 
input, textarea, select, .nav-link, .hamburger, .slider-btn, .dot,
.instagram-post, .filter-btn, .view-category-btn, .inquiry-btn {
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #2C1810;
  background-color: #FFF8F0;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  color: #2C1810;
  margin-bottom: 15px;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #FF8BA7, #8B5A8B);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: #6B4423;
  font-weight: 300;
}

/* Buttons */
.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn.btn-primary {
  background: linear-gradient(135deg, #FF8BA7, #8B5A8B);
  color: #FFFFFF;
}

.btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 139, 167, 0.4);
}

.btn.btn-secondary {
  background: transparent;
  color: #FF8BA7;
  border: 2px solid #FF8BA7;
}

.btn.btn-secondary:hover {
  background: #FF8BA7;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* WhatsApp Button Styling */
#whatsappBtn {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  color: white !important;
  transition: all 0.3s ease;
}

#whatsappBtn:hover {
  background-color: #128C7E !important;
  border-color: #128C7E !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Force Product Card Responsive Fix - ULTIMATE FIX */
.products .products-layout .products-column .product-card {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.products .products-layout .products-column .product-card p {
  white-space: normal !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

.products .products-layout {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.products .products-layout .products-column {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

/* Force 85% width for all responsive screens */
@media screen and (max-width: 1024px) {
  .products .products-layout .products-column {
    width: 85% !important;
    max-width: 85% !important;
  }
}

@media screen and (max-width: 1200px) {
  .products .products-layout {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  
  .products .products-layout .products-column {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    width: 85% !important;
    max-width: 85% !important;
    overflow: hidden !important;
    gap: 15px !important;
  }
  
  .product-card {
    display: flex !important;
    align-items: center !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding: 10px !important;
    gap: 8px !important;
    margin: 0 !important;
  }
  
  .product-card .product-image {
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0 !important;
  }
  
  .product-card .product-info {
    flex: 1 !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }
  
  .product-card p {
    white-space: normal !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    margin: 3px 0 !important;
    font-size: 0.7rem !important;
  }
  
  .product-card h3 {
    font-size: 0.85rem !important;
    margin: 0 0 3px 0 !important;
  }
}

@media screen and (max-width: 768px) {
  .products .products-layout {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  .products .products-layout .products-column {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .product-card {
    height: 250px;
    padding: 8px !important;
    gap: 6px !important;
  }
  
  .product-card .product-image {
    width: 100% !important;
    height: 100% !important;
  }
  
  .product-card p {
    font-size: 0.65rem !important;
    -webkit-line-clamp: 1 !important;
  }
  
  .product-card h3 {
    font-size: 0.8rem !important;
  }
}

/* Product Listing Mobile Responsive */
@media screen and (max-width: 768px) {
  .products-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    padding: 0 15px !important;
    margin-top: 20px !important;
  }
  
  .product-card {
    width: 100% !important;
    margin-bottom: 15px !important;
    padding: 15px !important;
    box-sizing: border-box !important;
  }
  
  .product-image {
    width: 100% !important;
    height: 200px !important;
    margin-bottom: 15px !important;
  }
  
  .product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  
  .product-info h3 {
    font-size: 1.2rem !important;
    margin-bottom: 10px !important;
  }
  
  .product-info p {
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
  }
  
  .product-price {
    font-size: 1.1rem !important;
    margin-bottom: 15px !important;
  }
  
  .btn {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
  }
  
  .product-listing {
    padding: 100px 0 70px !important;
  }
  
  .breadcrumb {
    margin-bottom: 30px !important;
    padding: 0 20px !important;
  }
  
  .section-header h2 {
    font-size: 2.2rem !important;
    margin-bottom: 15px !important;
  }
  
  .section-header p {
    font-size: 1rem !important;
  }
}

@media screen and (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 0 10px !important;
  }
  
  .product-card {
    padding: 12px !important;
  }
  
  .product-image {
    height: 180px !important;
  }
  
  .product-info h3 {
    font-size: 1.1rem !important;
  }
  
  .product-info p {
    font-size: 0.85rem !important;
  }
  
  .product-listing {
    padding: 80px 0 60px !important;
  }
  
  .breadcrumb {
    margin-bottom: 20px !important;
    padding: 0 15px !important;
  }
  
  .section-header h2 {
    font-size: 1.8rem !important;
    margin-bottom: 10px !important;
  }
  
  .section-header p {
    font-size: 0.9rem !important;
  }
}

/* WhatsApp Float Button */
/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 120px;
  right: 35px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF8BA7 0%, #8B5A8B 100%);
  color: #FFFFFF;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(255, 139, 167, 0.3);
  transition: all 0.3s ease;
}

.scroll-to-top-link:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 139, 167, 0.4);
  background: linear-gradient(135deg, #8B5A8B 0%, #FF8BA7 100%);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float .whatsapp-link {
  display: block;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float .whatsapp-link:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, #F8E8E8 0%, #F0E0E0 100%);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 15px 0;
}

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

.navbar .nav-logo h2 {
  color: #FF8BA7;
  font-size: 1.8rem;
  font-weight: 700;
}

.nav-logo img {
  height: 80px;
  width: auto;
}

.nav-logo a {
  display: inline-block;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.nav-logo a:hover {
  transform: scale(1.05);
}

.navbar .nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navbar .nav-menu .nav-link {
  color: #2C1810;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.navbar .nav-menu .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF8BA7;
  transition: width 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
  color: #FF8BA7;
}

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

/* Download Brochure Button */
.download-brochure-btn {
  background: linear-gradient(135deg, #FF8BA7 0%, #8B5A8B 100%) !important;
  color: #FFFFFF !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.download-brochure-btn:hover {
  background: linear-gradient(135deg, #8B5A8B 0%, #FF8BA7 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(255, 139, 167, 0.3) !important;
}

.download-brochure-btn::after {
  display: none !important;
}

.navbar .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.navbar .hamburger .bar {
  width: 25px;
  height: 3px;
  background: #2C1810;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 0;
  padding-top: 80px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE6F0 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Marquee Section */
.marquee-section {
  background: #f06fa8;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.marquee-container {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
}

.marquee-text {
  display: flex;
  align-items: center;
  gap: 60px;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #FFFFFF;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.marquee-line {
  display: inline-block;
  position: relative;
  padding: 4px 0;
}

.marquee-star {
  color: #FFFFFF;
  font-size: 0.8rem;
  margin: 0 20px;
  opacity: 0.8;
  animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive Marquee */
@media (max-width: 768px) {
  .marquee-text {
    font-size: 1rem;
    gap: 50px;
  }
  
  .marquee-content {
    animation-duration: 20s;
  }
}

@media (max-width: 480px) {
  .marquee-text {
    font-size: 0.9rem;
    gap: 40px;
  }
  
  .marquee-content {
    animation-duration: 18s;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FF8BA7" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FF8BA7" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23FF8BA7" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero .hero-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.hero .hero-content {
  max-width: 800px;
  padding: 0 20px;
  animation: slideInLeft 1s ease-out;
}

.hero .hero-content .hero-title {
  font-size: 1.8rem;
  color: #2C1810;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #FF8BA7, #8B5A8B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero .hero-content .hero-subtitle {
  font-size: 1.2rem;
  color: #FF8BA7;
  margin-bottom: 12px;
  font-weight: 500;
}

.hero .hero-content .hero-description {
  font-size: 0.95rem;
  color: #6B4423;
  margin-bottom: 25px;
  line-height: 1.5;
}

.hero .hero-content .hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 1s ease-out 0.3s both;
}

.hero .hero-image .floating-cake {
  position: relative;
  width: 300px;
  height: 300px;
  animation: float 6s ease-in-out infinite;
}

.hero .hero-image .floating-cake .cake-layer {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF8BA7, #8B5A8B);
}

.hero .hero-image .floating-cake .cake-layer:nth-child(1) {
  width: 200px;
  height: 60px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: layerFloat 4s ease-in-out infinite;
}

.hero .hero-image .floating-cake .cake-layer:nth-child(2) {
  width: 160px;
  height: 50px;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  animation: layerFloat 4s ease-in-out infinite 0.5s;
}

.hero .hero-image .floating-cake .cake-layer:nth-child(3) {
  width: 120px;
  height: 40px;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  animation: layerFloat 4s ease-in-out infinite 1s;
}

.hero .hero-image .floating-cake .frosting {
  position: absolute;
  width: 100px;
  height: 80px;
  background: #FF8BA7;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  animation: frostingSway 3s ease-in-out infinite;
}

.hero .hero-image .floating-cake .sprinkles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero .hero-image .floating-cake .sprinkles::before,
.hero .hero-image .floating-cake .sprinkles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 15px;
  background: #FFD700;
  border-radius: 2px;
  animation: sprinkleFall 2s linear infinite;
}

.hero .hero-image .floating-cake .sprinkles::before {
  left: 30%;
  animation-delay: 0s;
}

.hero .hero-image .floating-cake .sprinkles::after {
  right: 30%;
  animation-delay: 1s;
}

/* Hero Slider Styles */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  max-width: 100vw;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slide.prev {
  transform: translateX(-100%);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 24, 16, 0.4);
  z-index: 1;
}

.slide .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide .hero-content .hero-title {
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  -webkit-text-fill-color: #FFFFFF;
  background: none;
}

.slide .hero-content .hero-subtitle {
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slide .hero-content .hero-description {
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 4rem;
  z-index: 10;
  pointer-events: none;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
}

.slider-btn:hover {
  background: #FF8BA7;
  color: white;
  transform: scale(1.1);
}

.slider-btn i {
  font-size: 1.2rem;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

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

.dot.active {
  background: #FF8BA7;
  transform: scale(1.2);
}

.dot:hover {
  background: #FF8BA7;
}

/* About Section */
.about {
  padding: 120px 0;
  background: #FFFFFF;
}

.about .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about .about-text h3 {
  font-size: 2.5rem;
  color: #2C1810;
  margin-bottom: 20px;
}

.about .about-text p {
  font-size: 1.1rem;
  color: #6B4423;
  margin-bottom: 40px;
  line-height: 1.8;
}

.about .features-grid {
  display: grid;
  gap: 25px;
}

.about .features-grid .feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #FFF8F0;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.about .features-grid .feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(44, 24, 16, 0.15);
  background: #FFFFFF;
}

.about .features-grid .feature i {
  font-size: 1.5rem;
  color: #FF8BA7;
  margin-top: 5px;
}

.about .features-grid .feature h4 {
  color: #2C1810;
  margin-bottom: 8px;
}

.about .features-grid .feature p {
  color: #6B4423;
  font-size: 0.95rem;
  margin: 0;
}

.about .about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-images-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
  max-width: 600px;
}

.about-image-left,
.about-image-right {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image-left:hover,
.about-image-right:hover {
  transform: translateY(-5px);
}

.about-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image-left:hover .about-img,
.about-image-right:hover .about-img {
  transform: scale(1.05);
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.experience-circle {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #8B5A8B 0%, #FF8BA7 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(139, 90, 139, 0.3);
  animation: experiencePulse 3s ease-in-out infinite;
  border: 4px solid #FFFFFF;
  position: relative;
}

.experience-number {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 2px;
}

.experience-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.experience-years,
.experience-experience {
  font-size: 0.7rem;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Rotating Text */
.rotating-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.rotating-svg {
  width: 100%;
  height: 100%;
  animation: rotateText 20s linear infinite;
}

.rotating-text-path {
  font-size: 12px;
  font-weight: 600;
  fill: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes experiencePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(139, 90, 139, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(139, 90, 139, 0.4);
  }
}

@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Products Section */
.products {
  padding: 80px 0;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE6F0 100%);
}

.products .section-title {
  font-size: 3rem;
  color: #2C1810;
  margin-bottom: 50px;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 2;
}

.products-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.products-column {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  width: 100%;
}

.product-card {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
  padding: 25px 30px;
  background: #FFFFFF;
  border: none;
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(44, 24, 16, 0.15);
}

.product-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #FF8BA7;
  flex-shrink: 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 0;
  overflow: hidden;
}

.product-card h3 {
  font-size: 1.2rem;
  color: #2C1810;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.product-card p {
  color: #6B4423;
  margin: 8px 0 15px 0;
  line-height: 1.4;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.view-products-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #8B5A8B;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  margin-top: 0;
  align-self: flex-start;
}

.view-products-link:hover {
  color: #FF8BA7;
}

.view-products-link i {
  font-size: 0.7rem;
}

/* Product Link Styles */
.product-image a {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-image a:hover {
  text-decoration: none;
}

.product-image a:hover img {
  transform: scale(1.05);
}

.product-title-link {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.product-title-link:hover {
  text-decoration: none;
  color: #FF8BA7;
}

.product-title-link h3 {
  margin: 0;
}

/* Best Offers Section */
.best-offers-section {
  background: transparent;
  border-radius: 0;
  text-align: center;
  position: relative;
  overflow: visible;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.best-offers-section::before {
  display: none;
}

.best-offers-section .section-title {
  font-size: 3rem !important;
  color: #2C1810 !important;
  margin-bottom: 20px !important;
  font-weight: 700 !important;
  font-family: 'Playfair Display', serif !important;
  text-align: center !important;
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
}



.offers-content p {
  color: #6B4423;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 400;
}

.view-all-offers {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #8B5A8B;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.view-all-offers:hover {
  color: #FF8BA7;
  transform: translateX(5px);
}

.view-all-offers i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.view-all-offers:hover i {
  transform: translateX(3px);
}

.offers-image-container {
  position: relative;
  z-index: 10;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  margin-top: 0;
}

.chef-vector {
  position: relative;
  z-index: 10;
}

.chef-vector img {
  width: auto;
  height: 280px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: chefFloat 4s ease-in-out infinite;
}

@keyframes chefFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Counter Section */
.counter-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #FF8BA7, #8B5A8B);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.counter-item {
  text-align: center;
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.counter-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.counter-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.counter-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Quicksand', serif;
  margin-bottom: 8px;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.counter-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Counter Section */
@media (max-width: 768px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .counter-item {
    padding: 20px 15px;
  }
  
  .counter-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .counter-number {
    font-size: 2.5rem;
  }
  
  .counter-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .counter-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .counter-item {
    padding: 15px 10px;
  }
  
  .counter-icon {
    font-size: 2rem;
  }
  
  .counter-number {
    font-size: 2rem;
  }
  
  .counter-label {
    font-size: 0.8rem;
  }
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background: #FFF8F0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #8B5A8B;
  font-size: 0.9rem;
  font-weight: 500;
}

.gallery-subtitle i {
  color: #FFD700;
  font-size: 0.8rem;
}

.gallery-header h2 {
  font-size: 2.5rem;
  color: #2C1810;
  font-weight: 700;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
}

.gallery-header h2 em {
  font-style: italic;
  color: #f06ea7;
}

/* Gallery Slider */
.gallery-slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.gallery-slide {
  flex: 0 0 calc(20% - 16px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-slide:hover {
  transform: translateY(-5px);
}

.gallery-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-slide:hover img {
  transform: scale(1.05);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.slider-nav:hover {
  background: #FF8BA7;
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}

.prev-nav {
  left: 20px;
}

.next-nav {
  right: 20px;
}

.slider-nav i {
  font-size: 1.2rem;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #FF8BA7;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: #FF8BA7;
  transform: scale(1.1);
}

.lightbox-prev {
  margin-left: -60px;
}

.lightbox-next {
  margin-right: -60px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #FFE6F0 0%, #FFF8F0 100%);
}

.testimonials-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials .testimonials-slider {
  display: flex;
  overflow: hidden;
  transition: transform 0.5s ease;
  width: 100%;
}

.testimonials .testimonial-slide {
  min-width: 100%;
  flex-shrink: 0;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 0 20px;
}

.testimonials .testimonial-slide.active {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 20px !important;
  width: 100% !important;
}

/* Mobile responsive for testimonials */
@media (max-width: 1024px) {
  .testimonials .testimonial-slide.active {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  .testimonials .testimonial-slide.active {
    grid-template-columns: 1fr !important;
  }
  
  .testimonials .testimonial .testimonial-content {
    padding: 30px 20px;
  }
  
  .testimonials .testimonial .testimonial-content p {
    font-size: 1rem;
  }
}

.testimonials .testimonial {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
  transition: all 0.3s ease;
  width: 100%;
  min-width: 0;
  flex: 0 0 calc(33.333% - 14px);
}

.testimonials .testimonial .testimonial-content {
  padding: 40px 30px;
}

.testimonials .testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(44, 24, 16, 0.15);
}

.testimonials .testimonial .testimonial-content p {
  font-size: 1.1rem;
  color: #6B4423;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
  position: relative;
}

.testimonials .testimonial .testimonial-content .testimonial-author h4 {
  color: #2C1810;
  margin-bottom: 5px;
}

.testimonials .testimonial .testimonial-content .testimonial-author span {
  color: #FF8BA7;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Testimonial Navigation */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #FF8BA7;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonial-nav:hover {
  background: #e67a96;
  transform: translateY(-50%) scale(1.1);
}

.prev-testimonial {
  left: 20px;
}

.next-testimonial {
  right: 20px;
}

/* Testimonial Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
  background: #FF8BA7;
  transform: scale(1.2);
}

.testimonial-dots .dot:hover {
  background: #e67a96;
}

/* Instagram Feed Section */
.instagram-feed {
  padding: 80px 0;
  background: #FFFFFF;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.instagram-post {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 1;
}

.instagram-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(44, 24, 16, 0.15);
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-post:hover img {
  transform: scale(1.1);
}

.instagram-post .post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 139, 167, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.instagram-post:hover .post-overlay {
  opacity: 1;
}

.instagram-post .post-overlay i {
  color: white;
  font-size: 2rem;
}

.instagram-actions {
  text-align: center;
}

.instagram-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #E4405F, #C13584);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(228, 64, 95, 0.3);
}

.instagram-profile-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(228, 64, 95, 0.4);
  color: white;
}

.instagram-profile-btn i {
  font-size: 1.2rem;
}

.instagram-loading {
  text-align: center;
  padding: 40px;
  color: #6B4423;
  font-size: 1.1rem;
  grid-column: 1 / -1;
}

.instagram-post {
  cursor: pointer;
}

.instagram-post .post-overlay {
  background: rgba(228, 64, 95, 0.9);
}

.instagram-post .post-overlay i {
  font-size: 2.5rem;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #FFFFFF;
}

.contact .contact-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}

.contact .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: #FFF8F0;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact .contact-info .contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(44, 24, 16, 0.15);
  background: #FFFFFF;
}

.contact .contact-info .contact-item i {
  font-size: 1.5rem;
  color: #FF8BA7;
  margin-top: 5px;
}

.contact .contact-info .contact-item h4 {
  color: #2C1810;
  margin-bottom: 8px;
}

.contact .contact-info .contact-item p {
  color: #6B4423;
  margin: 0;
}

.contact .contact-form form .form-group {
  margin-bottom: 20px;
}

.contact .contact-form form .form-group input,
.contact .contact-form form .form-group select,
.contact .contact-form form .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #E8E8E8;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.contact .contact-form form .form-group input:focus,
.contact .contact-form form .form-group select:focus,
.contact .contact-form form .form-group textarea:focus {
  outline: none;
  border-color: #FF8BA7;
  box-shadow: 0 0 0 3px rgba(255, 139, 167, 0.1);
}

.contact .contact-form form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact .contact-form form button {
  width: 100%;
  margin-top: 10px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #F8E8E8 0%, #F0E0E0 100%);
  color: #2C1810;
  padding: 3rem 0 1rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF8BA7, #8B5A8B, #FFD700);
}

.footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer .footer-section h3 {
  color: #FF8BA7;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer .footer-section p,
.footer .footer-section a {
  color: #6B4423;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer .footer-section p:hover,
.footer .footer-section a:hover {
  color: #FF8BA7;
}

.footer .footer-section ul {
  list-style: none;
}

.footer .footer-section ul li {
  margin-bottom: 10px;
}

.footer .footer-section ul li a {
  color: #2C1810;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer .footer-section ul li a:hover {
  color: #FF8BA7;
}

.footer .footer-section .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer .footer-section .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #FF8BA7;
  color: #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer .footer-section .social-links a:hover {
  background: #8B5A8B;
  transform: translateY(-3px);
}

.footer .footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 139, 167, 0.2);
  color: #6B4423;
}

.footer .footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }
  
  .footer .footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .footer .footer-section p,
  .footer .footer-section ul li {
    font-size: 0.9rem;
  }
  
  .footer .footer-section .social-links {
    justify-content: flex-start;
  }
  
  .footer .footer-bottom {
    padding-top: 1.5rem;
  }
  
  .footer .footer-bottom p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 0 1rem;
  }
  
  .footer .footer-content {
    padding: 0 15px;
    gap: 1rem;
  }
  
  .footer .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
  
  .footer .footer-section p,
  .footer .footer-section ul li {
    font-size: 0.85rem;
  }
  
  .footer .footer-section .social-links a {
    width: 35px;
    height: 35px;
  }
  
  .footer .footer-bottom {
    padding: 0 15px;
    padding-top: 1rem;
  }
  
  .footer .footer-bottom p {
    font-size: 0.75rem;
  }
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes layerFloat {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes frostingSway {
  0%, 100% { transform: translateX(-50%) rotate(0deg); }
  50% { transform: translateX(-50%) rotate(5deg); }
}

@keyframes sprinkleFall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(200px) rotate(360deg);
    opacity: 0;
  }
}

/* Responsive Design */
/* Large Tablet Responsive */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  
  .hero .hero-title {
    font-size: 1.6rem;
  }
  
  .products-layout {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  
  .gallery-slide {
    flex: 0 0 calc(20% - 16px);
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .hero .hero-title {
    font-size: 1.4rem;
  }
  
  .hero .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .products-layout {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .products-column {
    flex-direction: column !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .product-card {
    min-width: 0 !important;
    width: 100% !important;
    padding: 20px 15px !important;
    gap: 15px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .gallery-slide {
    flex: 0 0 calc(25% - 15px);
  }
  
  .testimonials .testimonial {
    flex: 0 0 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
  }
}

@media (max-width: 768px) {
  .navbar .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #FFFFFF;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }
  
  .navbar .nav-menu.active {
    left: 0;
  }
  
  .navbar .hamburger {
    display: flex;
  }
  
  .download-brochure-btn {
    padding: 6px 12px !important;
    font-size: 0.9rem !important;
  }
  
  .navbar .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .navbar .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .navbar .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero .hero-container {
    text-align: center;
  }
  
  /* Mobile Slider Adjustments */
  .slider-controls {
    padding: 0 1rem;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .slider-btn i {
    font-size: 1rem;
  }
  
  .slider-dots {
    bottom: 1rem;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .hero .hero-title {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  
  .hero .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero .hero-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .hero .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
  
  .about .about-content,
  .contact .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-img {
    object-fit: contain;
  }
  
  .products-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .products-column {
    flex-direction: column !important;
    gap: 20px !important;
    padding-bottom: 10px !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .product-card {
    min-width: 0 !important;
    width: 100% !important;
    flex-shrink: 0 !important;
    padding: 20px 15px !important;
    gap: 15px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .product-card .product-image {
    width: 80px;
    height: 80px;
  }
  
  .product-card h3 {
    font-size: 1.3rem;
  }
  
  .product-card p {
    font-size: 0.9rem;
  }
  
  .best-offers-section {
    order: -1;
  }
  
  .gallery-slide {
    flex: 0 0 calc(50% - 10px);
  }
  
  .gallery-slide img {
    height: 200px;
  }
  
  .gallery-header h2 {
    font-size: 2.2rem;
  }
  
  .gallery-slider {
    gap: 15px;
  }
  
  .testimonial-nav {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .prev-testimonial {
    left: 10px;
  }
  
  .next-testimonial {
    right: 10px;
  }
  
  .testimonials .testimonial-slide {
    flex-direction: column !important;
    gap: 20px !important;
  }
  
  .testimonials .testimonial {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  .testimonial-nav {
    display: none;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding-top: 100px;
  }
  
  .hero .hero-title {
    font-size: 1.2rem;
    line-height: 1.1;
  }
  
  .hero .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero .hero-description {
    font-size: 0.85rem;
  }
  
  .hero .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .hero .hero-buttons .btn {
    width: 100%;
    max-width: 200px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .products-column {
    flex-direction: column;
    min-width: 0;
    width: 100%;
  }
  
  .product-card {
    min-width: 0 !important;
    width: 100% !important;
    padding: 15px 10px !important;
    gap: 12px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .best-offers-section {
    padding: 30px 20px;
  }
  
  .offers-content h2 {
    font-size: 2rem;
  }
  
  .about {
    padding: 80px 0;
  }
  
  .about-images-container {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 350px;
  }
  
  .about-img {
    height: 250px;
    object-fit: contain;
  }
  
  .experience-circle {
    width: 130px;
    height: 130px;
  }
  
  .experience-number {
    font-size: 1.8rem;
  }
  
  .experience-years,
  .experience-experience {
    font-size: 0.65rem;
  }
  
  .rotating-text-path {
    font-size: 10px;
  }
  
  .scroll-to-top {
    bottom: 80px;
    right: 20px;
  }
  
  .scroll-to-top-link {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float .whatsapp-link {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-slide {
    flex: 0 0 calc(50% - 10px);
  }
  
  .gallery-slide img {
    height: 180px;
  }
  
  .gallery-header h2 {
    font-size: 1.8rem;
  }
  
  .gallery-slider {
    gap: 10px;
  }
  
  .contact .contact-form {
    padding: 30px 20px;
  }
  
  .contact .form-group input,
  .contact .form-group textarea,
  .contact .form-group select {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 0.95rem;
  }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }
  
  .hero .hero-title {
    font-size: 1rem;
  }
  
  .hero .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero .hero-description {
    font-size: 0.8rem;
  }
  
  .gallery-slide {
    flex: 0 0 100%;
  }
  
  .gallery-slide img {
    height: 150px;
  }
  
  .product-card {
    padding: 15px 20px !important;
    min-width: 0 !important;
    width: 100% !important;
    gap: 10px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .product-card .product-image {
    width: 60px;
    height: 60px;
  }
  
  .testimonials .testimonial .testimonial-content {
    padding: 20px 15px;
  }
  
  .testimonials .testimonial .testimonial-content p {
    font-size: 0.9rem;
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading animation */
.loading {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Additional animations for JavaScript */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes floatParticle {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
