/* ─── Variables start ─── */
:root {
  --primary: #dc3545;
  --primary-dark: #b02a37;
  --secondary: #e83e8c;
  --secondary-light: #f8d7e0;
  --cream: #fff8f0;
  --light-pink: #fff0f5;
  --dark: #2d2d2d;
  --gray: #6c757d;
  --light-gray: #f8f9fa;
  --gold: #d4a853;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* ─── Variables end ─── */

/* ─── Base start ─── */
a {
  text-decoration: none;
}

p {
  font-size: 1rem;
}

body {
  font-family: 'League Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  color: var(--dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Belanosima', Georgia, serif;
  font-weight: 600;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-family: 'League Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* ─── Base end ─── */

/* ─── Navigation start ─── */
.navbar {
  padding: 12px 0;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  z-index: 1030;
}

.navbar.scrolled {
  background: #fff !important;
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.navbar-brand img {
  height: 100px;
  width: auto;
  transition: all 0.2s ease;
}

.navbar.scrolled .navbar-brand img {
  height: 80px;
}

.nav-link {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--dark) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin: 0 .5rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 32px);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.navbar .btn-nav-contact {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 12px 40px 8px;
  font-size: 1rem;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.navbar .btn-nav-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  z-index: -1;
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: left;
}

.navbar .btn-nav-contact:hover::before {
  transform: scaleX(1);
}

.navbar .btn-nav-contact:hover {
  color: #fff;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler:active {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  -webkit-tap-highlight-color: transparent;
}

/* ─── Navigation end ─── */

/* ─── Hero Section start ─── */
.hero-section {
  margin-top: 134px;
  padding: 60px 0;
  background: #faf6f0;
  overflow: hidden;
  position: relative;
}

.hero-wrapper {
  display: flex;
  align-items: center;
}

.hero-content {
  flex: 1;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #8b6f5c;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 28px;
  border: 1px solid rgba(139, 111, 92, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-headline {
  font-size: 3.125rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #4a3525;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-headline .text-highlight {
  color: #c17a5e;
}

.hero-sub {
  font-size: 1.1rem;
  color: #7a6657;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-image-wrapper {
  position: relative;
  perspective: 800px;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle at 50% 45%, rgba(193, 122, 94, 0.18) 0%, rgba(232, 62, 140, 0.06) 40%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}

.hero-image-wrapper img {
  position: relative;
  z-index: 1;
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #8b6f5c;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 34px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(139, 111, 92, 0.25);
}

.btn-hero-primary:hover {
  background: #6b4c3b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 76, 59, 0.3);
}

.btn-hero-primary i {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
  transform: translateX(4px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #8b6f5c;
  border: 2px solid rgba(139, 111, 92, 0.25);
  border-radius: 50px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-hero-secondary:hover {
  border-color: #8b6f5c;
  background: rgba(139, 111, 92, 0.06);
  color: #6b4c3b;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0 40px;
    margin-top: 80px;
  }

  .hero-wrapper {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-headline {
    font-size: 2.4rem;
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 480px;
  }

  .hero-image {
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 40px 0 30px;
  }

  .hero-headline {
    font-size: 1.9rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    max-width: 100%;
  }

  .hero-image {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}

/* ─── Hero Section end ─── */

/* ─── Stats Section start ─── */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.stats-section .stat-card {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 24px;
}

.stats-section .stat-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  opacity: 0.9;
}

.stats-section .stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stats-section .stat-label {
  font-size: 1.1rem;
  opacity: 0.85;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-section {
    padding: 40px 0;
  }

  .stats-section .stat-number {
    font-size: 2.4rem;
  }

  .stats-section .stat-label {
    font-size: 0.95rem;
  }
}

/* ─── Stats Section end ─── */

/* ─── Section Styles start ─── */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-title h2 {
  font-size: 2.4rem;
  margin-bottom: 6px;
}

.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-bg {
  background: var(--light-gray);
}

.section-bg-cream {
  background: var(--cream);
}

.section-bg-pink {
  background: var(--light-pink);
}

/* ─── Section Styles end ─── */

/* ─── Category Cards start ─── */
.category-card {
  text-decoration: none;
  color: inherit;
  display: block;
  text-align: center;
  padding: 24px 12px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  height: 100%;
}

.category-card:hover {
  color: inherit;
}

.category-card .icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  margin-top: 0;
  font-size: 2.2rem;
  color: var(--primary);
  transition: var(--transition);
}

.category-card:hover .icon-circle {
  background: var(--primary);
  color: #fff;
}

.category-card h5 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

/* ─── Category Cards end ─── */

/* ─── Product Cards start ─── */
.product-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}



.product-card .badge-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.product-card .img-wrapper {
  height: 260px;
  overflow: hidden;
}

.product-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card .card-body h5 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.product-card .card-body .category-label {
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card .card-body .price {
  font-family: 'Belanosima', serif;
  font-size: 1.3rem;
  color: var(--primary);
  margin: 8px 0;
}

.product-card .card-body .price .price-weight {
  font-size: 0.85rem;
  color: #9ca3af;
  font-family: 'League Spartan', sans-serif;
  font-weight: 400;
}

.product-card .card-body p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.product-card .btn-details {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  margin-top: auto;
  align-self: flex-start;
}

.product-card .btn-details:hover {
  background: var(--primary);
  color: #fff;
}

/* ─── Product Cards end ─── */

/* ─── Featured Slider start ─── */
.featured-slider-wrapper {
  position: relative;
}

.featured-slider {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  cursor: grab;
  user-select: none;
}

.slider-track .product-item {
  flex: 0 0 25%;
  min-width: 0;
  padding: 0 10px;
}

.slider-track .product-item .product-card {
  height: 100%;
}

@media (max-width: 991px) {
  .slider-track .product-item {
    flex: 0 0 50%;
  }
}

@media (max-width: 576px) {
  .slider-track .product-item {
    flex: 0 0 100%;
    padding: 0 6px;
  }
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--primary);
  color: #fff;
}

.btn-outline-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 12px 40px;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  z-index: -1;
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: left;
}

.btn-outline-primary:hover::before {
  transform: scaleX(1);
}

.btn-outline-primary:hover {
  color: #fff;
}

/* ─── Featured Slider end ─── */

/* ─── Why Choose Us start ─── */
.feature-card {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-light);
}

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

.feature-card .icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: #fff;
}

.feature-card h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 1rem;
  color: var(--gray);
  margin: 0;
}

/* ─── Why Choose Us end ─── */

/* ─── Steps / How It Works start ─── */
.steps-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.step-item {
  text-align: center;
  padding: 28px 24px 28px;
  flex: 1 1 180px;
  max-width: 250px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}

.step-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.step-item .step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(220, 53, 69, 0.25);
}

.step-item h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.step-item p {
  font-size: 1rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .steps-row {
    gap: 1.5rem;
  }

  .step-item {
    flex: 1 1 180px;
  }
}

@media (max-width: 480px) {
  .step-item {
    flex: 0 0 100%;
    max-width: 280px;
  }
}

/* ─── Steps / How It Works end ─── */

/* ─── Testimonials start ─── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Belanosima', serif;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 8px;
  right: 20px;
  line-height: 1;
}

.testimonial-card .stars {
  color: #ffc107;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .customer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .customer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .customer strong {
  font-size: 0.9rem;
}

.testimonial-card .customer span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ─── Testimonials end ─── */

.testimonials-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.star-rating .fa-star {
  transition: color 0.15s;
}

/* ─── FAQ start ─── */
.accordion-item {
  border: none;
  margin-bottom: 8px;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  padding: 18px 24px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius-sm) !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--light-pink);
  color: var(--primary);
  border-color: var(--secondary-light);
}

.accordion-button::after {
  background-size: 14px;
}

.accordion-body {
  padding: 16px 24px 20px;
  color: var(--gray);
  font-size: 1.125rem;
}

/* ─── FAQ end ─── */

/* ─── WhatsApp CTA Banner start ─── */
.cta-banner {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 24px;
  font-size: 1.125rem;
}

.cta-banner .btn-whatsapp-cta {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 44px;
  font-size: 1.1rem;
  transition: var(--transition);
}

.cta-banner .btn-whatsapp-cta:hover {
  background: #1da851;
  transform: translateY(-2px);
  color: #fff;
}

/* ─── WhatsApp CTA Banner end ─── */

/* ─── Footer start ─── */
.footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 60px 0 40px;
}

.footer h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
  display: block;
  padding: 4px 0;
}

.footer a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer .social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  padding: 0;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer .social-links a:hover {
  background: var(--primary);
  color: #fff;
  padding-left: 0;
}

.footer .brand-footer {
  max-width: 50%;
  font-family: 'Belanosima', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.footer .footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 32px 0 0;
  padding: 20px 0;
}

.footer .copyright {
  font-size: 0.875rem;
}

.footer .copyright a {
  font-size: inherit;
  display: inline;
  padding: 0;
}

/* ─── Footer end ─── */

/* ─── Floating WhatsApp Button start ─── */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  z-index: 999;
  text-decoration: none;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ─── Floating WhatsApp Button end ─── */

/* ─── Cakes Page start ─── */
.page-header {
  margin-top: 134px;
  padding: 48px 0 48px;
  background: linear-gradient(135deg, var(--light-pink), var(--cream));
  text-align: center;
}

.page-header h1 {
  font-size: 2.6rem;
}

.page-header p {
  color: var(--gray);
  font-size: 1.125rem;
}

.filter-bar {
  background: var(--light-pink);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 36px;
}

.filter-bar .filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-bar .filter-controls {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-bar .filter-count {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray);
  white-space: nowrap;
  margin-top: 5px;
}

.filter-bar .filter-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.filter-bar .filter-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  margin-top: 5px;
}

.filter-bar .filter-group select {
  padding: 8px 32px 8px 12px;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 500;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 10px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 180px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s;
}

.filter-bar .filter-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* ─── Cakes Page end ─── */

/* ─── Product Detail start ─── */
.product-detail {
  padding: 150px 0 60px;
}

.product-gallery .main-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
  cursor: zoom-in;
  border: 1px solid var(--light-gray);
}

.product-gallery .main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.product-gallery .main-image.zoomed img {
  transform: scale(2);
}

.product-gallery .thumbnails {
  display: flex;
  gap: 8px;
}

.product-gallery .thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  opacity: 0.6;
}

.product-gallery .thumbnails img:hover,
.product-gallery .thumbnails img.active {
  border-color: var(--primary);
  opacity: 1;
}

.product-info h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.product-info .category-subtitle {
  display: block;
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.product-info .price-large {
  font-family: 'Belanosima', serif;
  font-size: 2rem;
  color: var(--primary);
  margin: 12px 0;
}

.product-info .weight-options {
  display: flex;
  gap: 8px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.product-info .weight-options .btn-weight {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.product-info .weight-options .btn-weight:hover,
.product-info .weight-options .btn-weight.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--light-pink);
}

.product-info .description {
  color: var(--gray);
  line-height: 1.8;
  margin: 16px 0;
}

.product-info .btn-order-wa {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.product-info .btn-order-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
}

/* ─── Product Detail end ─── */



/* ─── About Page start ─── */
.about-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--light-pink), var(--cream));
}

.about-story img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.about-story h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-story p {
  color: var(--gray);
  line-height: 1.8;
}

.about-mission {
  background: var(--light-pink);
  border-radius: var(--radius-lg);
}

.about-mission img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-mission h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-mission p {
  color: var(--gray);
  line-height: 1.8;
}

.mission-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.mission-pill i {
  color: var(--primary);
  font-size: 1rem;
}

/* ─── About Page end ─── */

/* ─── Contact Page start ─── */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.contact-info-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-3px);
  border-color: var(--secondary-light);
}

.contact-info-card .icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.contact-info-card h6 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 2px;
}

.contact-info-card p {
  font-size: 1.05rem;
  color: var(--dark);
  margin: 0;
  line-height: 1.5;
}

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  height: 100%;
}

.form-floating-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.input-icon-group {
  position: relative;
  margin-bottom: 16px;
}

.input-icon-group i {
  position: absolute;
  left: 14px;
  top: 14px;
  color: #adb5bd;
  font-size: 0.95rem;
  pointer-events: none;
  transition: color 0.2s ease;
}

.input-icon-group:focus-within i {
  color: var(--primary);
}

.input-icon-group .form-control {
  padding: 12px 14px 12px 40px;
  border-radius: var(--radius-sm);
  border: 1px solid #e0e0e0;
  font-size: 0.9rem;
  transition: var(--transition);
  background: #fafafa;
}

.input-icon-group .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
  background: #fff;
}

.input-icon-group textarea.form-control {
  padding-top: 14px;
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn-submit {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.contact-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

/* ─── Contact Page end ─── */

/* ─── Back to Top start ─── */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
  box-shadow: var(--shadow-md);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ─── Back to Top end ─── */

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

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

/* ─── Animations end ─── */

/* ─── Responsive start ─── */
@media (max-width: 991px) {
  .section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  .navbar .offcanvas {
    position: static;
    visibility: visible !important;
    transform: none !important;
    background: transparent !important;
    z-index: auto;
    border: none;
    flex-grow: 1;
  }

  .navbar .offcanvas .offcanvas-header {
    display: none;
  }

  .navbar .offcanvas .offcanvas-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-grow: 0;
  }

  .navbar .offcanvas .btn-nav-contact {
    margin-left: 1rem;
  }
}

@media (max-width: 991px) {
  .navbar {
    min-height: 80px;
    height: auto;
    padding: 0;
    overflow: visible;
    transition: none;
    backdrop-filter: none;
  }

  .navbar.scrolled {
    min-height: 80px;
    height: auto;
    padding: 0;
    overflow: visible;
    transition: none;
  }

  .navbar-brand img {
    height: 56px;
  }

  .navbar.scrolled .navbar-brand img {
    height: 56px;
  }

  .offcanvas {
    background: #fefcfb !important;
  }

  .offcanvas .offcanvas-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
    align-items: center;
  }

  .offcanvas .nav-link {
    text-align: center;
    padding: 10px 24px !important;
    margin: 0;
    font-size: 1rem;
  }

  .offcanvas .nav-link::after {
    display: none;
  }

  .offcanvas .btn-close:focus {
    box-shadow: none;
    outline: none;
  }

  .offcanvas .btn-nav-contact {
    margin: 12px 24px 20px;
    display: flex;
    width: calc(100% - 48px);
    justify-content: center;
  }

  .section-title h2 {
    font-size: 1.7rem;
  }

  .product-gallery .main-image img {
    height: 300px;
  }

  .page-header {
    margin-top: 80px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

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

/* ─── Responsive end ─── */