/* Custom Styles - Bootstrap Compatible */

:root {
  --primary: #D4A5E6;
  --primary-dark: #B88AE6;
  --secondary: #A8E6E0;
  --accent: #FFE8A3;
  --dark: #5A7A9A;
  --light: #FFF9F5;
  --white: #FFFFFF;
  --text: #4A5568;
  --text-light: #718096;
  --detail-image-size: 420px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 76px; /* Navbar height */
}

.whatsapp-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  z-index: 1100;
}

.whatsapp-float {
  background: #25D366;
  color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.35);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.whatsapp-float span {
  display: none;
}

.whatsapp-panel {
  width: 340px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-panel .btn-close {
  opacity: 0.65;
}

.whatsapp-panel .btn-close:hover {
  opacity: 1;
}

.whatsapp-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.whatsapp-quick-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: #f5f6fb;
  color: #4A5568;
  transition: all 0.2s ease;
}

.whatsapp-quick-btn:hover {
  background: #edf2ff;
  color: #2d3748;
}

.whatsapp-quick-btn.active {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.4);
  color: #1f8c45;
}

.whatsapp-message {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  resize: vertical;
  min-height: 110px;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.whatsapp-message:focus {
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.whatsapp-status-badge {
  border-radius: 16px;
  padding: 0.6rem 0.85rem;
  font-weight: 600;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  font-size: 0.85rem;
}

.whatsapp-status-badge.online {
  background: rgba(37, 211, 102, 0.18);
  color: #1f8c45;
}

.whatsapp-status-badge.away {
  background: rgba(255, 199, 44, 0.2);
  color: #9c6b00;
}

.whatsapp-status-badge.offline {
  background: rgba(148, 163, 184, 0.25);
  color: #475569;
}

.whatsapp-card {
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
}

.whatsapp-card .whatsapp-status-badge {
  width: 100%;
}

.whatsapp-send-btn {
  border-radius: 999px;
  padding: 0.85rem 1rem;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.25);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Navbar Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1030; /* Bootstrap default z-index for fixed-top */
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  color: var(--dark) !important;
}

.logo-image {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

.logo-text {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  color: #6B5B7A;
  transition: color 0.3s ease;
}

.navbar-brand:hover .logo-text {
  color: var(--primary) !important;
}

.nav-link {
  font-weight: 500;
  color: #4A5568 !important;
  transition: color 0.3s ease;
  display: block !important;
  padding: 0.5rem 1rem !important;
  text-decoration: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.navbar-nav {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 991.98px) {
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.25rem;
    padding: 1rem 0;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.gradient-text {
  background: linear-gradient(135deg, #D4A5E6 0%, #B88AE6 50%, #9B6FD9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #D4A5E6 0%, #B88AE6 100%);
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E0B5F0 0%, #C49AF0 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 138, 230, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #8B6FA8;
  border: 2px solid #D4A5E6;
  backdrop-filter: blur(10px);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #F5E6FF 0%, #E8D4FF 100%);
  color: #6B5B7A;
  border-color: #B88AE6;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 165, 230, 0.3);
}

.btn-outline-primary {
  border-color: #D4A5E6;
  color: #8B6FA8;
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, #F5E6FF 0%, #E8D4FF 100%);
  border-color: #B88AE6;
  color: #6B5B7A;
}

/* Cards */
.card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Product Card Enhancements */
.glass-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(212, 165, 230, 0.2);
  border-radius: 25px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 20px 45px rgba(212, 165, 230, 0.35);
}

.image-square {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff6fd 0%, #f2ecff 100%);
  position: relative;
  padding: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(212, 165, 230, 0.25);
}

.product-image {
  width: 100%;
  height: 100%;
  max-width: 105%;
  max-height: 105%;
  object-fit: contain;
  transition: transform 0.4s ease;
  transform: scale(0.96);
}

.product-card:hover .product-image {
  transform: scale(1.02);
}

/* Product Cards */
.product-card {
  cursor: pointer;
  min-height: 100%;
}

.product-card .card-body {
  padding: 1.75rem 1.75rem 2rem;
}

.product-card .card-title {
  font-size: 1.35rem;
}

.product-card .card-text {
  font-size: 1rem;
}

.product-card .badge {
  background: var(--primary-dark);
  border-radius: 999px;
}

.product-overlay {
  transition: opacity 0.3s ease;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  pointer-events: none;
}

.product-overlay .btn {
  pointer-events: auto;
  border-radius: 100px;
  padding: 0.75rem 1.75rem;
}

.product-overlay::after {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 20px;
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #FFF9F5 0%, #FFE8E0 100%);
  position: relative;
  overflow: hidden;
  margin-top: 5rem;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.footer-doodles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.doodle {
  position: absolute;
  font-size: 2rem;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.doodle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.doodle-2 { top: 30%; right: 15%; animation-delay: 1s; }
.doodle-3 { bottom: 20%; left: 20%; animation-delay: 2s; }
.doodle-4 { bottom: 30%; right: 10%; animation-delay: 3s; }
.doodle-5 { top: 50%; left: 50%; animation-delay: 4s; }
.doodle-6 { top: 15%; right: 20%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Category Filter */
.category-btn {
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-btn.active {
  background: linear-gradient(135deg, #D4A5E6 0%, #B88AE6 100%);
  border-color: #D4A5E6;
}

.filter-toolbar {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  border: 1px solid rgba(107, 91, 122, 0.1);
  box-shadow: 0 20px 45px rgba(107, 91, 122, 0.15);
}

.custom-select-wrapper {
  position: relative;
}

.sort-select {
  border-radius: 18px;
  border: 2px solid rgba(212, 165, 230, 0.7);
  padding: 0.8rem 3rem 0.8rem 1.15rem;
  font-weight: 600;
  color: #6B5B7A;
  background-color: #fff;
  box-shadow: inset 0 2px 6px rgba(107, 91, 122, 0.08), 0 8px 20px rgba(212, 165, 230, 0.2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%236B5B7A' d='M4.646 6.146a.5.5 0 0 1 .708 0L8 8.793l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 18px;
}

.sort-select:focus {
  border-color: #B88AE6;
  box-shadow: 0 0 0 4px rgba(184, 138, 230, 0.25);
}

.sort-select option {
  font-weight: 500;
}

.search-input {
  background: #fff;
  border: 1px solid rgba(107, 91, 122, 0.15);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.05);
}

.search-input input {
  background: transparent;
  outline: none;
  box-shadow: none !important;
}

.price-range-btn {
  border: 1px solid rgba(107, 91, 122, 0.2);
  border-radius: 999px;
  padding: 0.45rem 1.25rem;
  background: transparent;
  font-weight: 600;
  color: #6B5B7A;
  transition: all 0.25s ease;
}

.price-range-btn.active {
  background: linear-gradient(135deg, #D4A5E6 0%, #B88AE6 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(212, 165, 230, 0.35);
}

.active-filters {
  min-height: 40px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(107, 91, 122, 0.2);
  padding: 0.35rem 0.9rem;
  font-size: 0.95rem;
  background: rgba(235, 230, 255, 0.5);
  color: #6B5B7A;
  cursor: pointer;
  margin: 0.25rem 0.3rem 0 0;
  transition: all 0.2s ease;
  outline: none;
  appearance: none;
}

.filter-chip:hover {
  background: rgba(212, 165, 230, 0.25);
}

.filter-chip .chip-close {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

.products-empty {
  border-radius: 30px;
  border: 1px dashed rgba(107, 91, 122, 0.3);
  background: rgba(255, 255, 255, 0.85);
}

.products-page .products-section {
  scroll-margin-top: 140px;
  background: linear-gradient(180deg, rgba(255, 249, 245, 0.6) 0%, rgba(228, 215, 255, 0.4) 100%);
  border-radius: 40px;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

.products-page .products-section::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(107, 91, 122, 0.2);
  border-radius: 32px;
  pointer-events: none;
}

.products-page .products-section .container {
  position: relative;
}

.whatsapp-number {
  letter-spacing: 1px;
  white-space: nowrap;
  font-weight: 700;
}

/* Product Detail */
.thumbnail-btn {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 !important;
  border: 2px solid #dee2e6;
  background: transparent;
}

.thumbnail-btn:hover {
  transform: scale(1.1);
}

.thumbnail-btn.active {
  border-color: #007bff !important;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Product Detail Page - Main Image */
.main-image {
  width: min(100%, var(--detail-image-size));
  height: var(--detail-image-size);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 20px;
  padding: 1.5rem;
  overflow: hidden;
  margin: 0 auto;
}

#main-product-image {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#main-product-image.is-switching {
  opacity: 0.25;
  transform: scale(0.97);
}

.product-detail-hero {
  background: linear-gradient(135deg, #b06ef7 0%, #c87bff 45%, #e6a5ff 100%);
  color: white;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  position: relative;
  overflow: hidden;
}

.product-detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.45), transparent 45%), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.25), transparent 55%);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.product-detail-hero .container {
  position: relative;
  z-index: 1;
}

.detail-media-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.9);
}

.product-gallery-thumbs .thumbnail-btn {
  border-color: rgba(107, 91, 122, 0.2);
  background: white;
}

.detail-badge {
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}

.detail-badge-soft {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.detail-price-display .price-tag {
  color: #fff;
}

.detail-price-display .text-muted {
  color: rgba(255, 255, 255, 0.85) !important;
}

.detail-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.detail-highlight-card {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 1.1rem 1.4rem;
  color: white;
  min-height: 140px;
  box-shadow: 0 18px 40px rgba(146, 105, 255, 0.25);
}

.detail-highlight-card .icon {
  font-size: 1.6rem;
}

.detail-highlight-card .label {
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  opacity: 0.85;
}

.detail-highlight-card .value {
  font-size: 1.1rem;
  font-weight: 700;
}

.detail-cta .btn-outline-light {
  border-width: 2px;
  color: #fff;
}

.product-detail-body {
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.detail-panel {
  border: 1px solid rgba(107, 91, 122, 0.15);
  background: white;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(91, 71, 112, 0.1);
}

.contact-card a {
  color: #6B5B7A;
  font-weight: 600;
}

.detail-back {
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: white !important;
}

.detail-back:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white !important;
}

.achievements-section {
  background: linear-gradient(135deg, #FFF6F0 0%, #F1E8FF 100%);
  border-radius: 32px;
  padding: 3.5rem 3rem;
  margin-top: 3rem;
}

.achievement-card {
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(107, 91, 122, 0.1);
  box-shadow: 0 12px 30px rgba(91, 71, 112, 0.08);
  text-align: left;
  height: 100%;
}

.achievement-year {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6B5B7A;
  opacity: 0.8;
}

.achievement-stats .achievement-stat {
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(107, 91, 122, 0.08);
  box-shadow: 0 10px 25px rgba(91, 71, 112, 0.08);
}

.achievement-stat .stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #6B5B7A;
}
#main-product-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  transition: transform 0.4s ease;
  transform: scale(0.9);
  display: block;
}

.thumbnail-image {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.info-block {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.info-block ul,
.info-block ol {
  padding-left: 1.5rem;
}

.info-block ul li,
.info-block ol li {
  margin-bottom: 0.35rem;
}

@media (max-width: 992px) {
  :root {
    --detail-image-size: 360px;
  }

  body {
    padding-top: 64px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero .display-3 {
    font-size: 2.75rem;
  }

  .hero .lead {
    font-size: 1.1rem;
  }

  .home .btn {
    width: 100%;
    max-width: 260px;
  }

  .products-page .products-section {
    margin-top: 0;
    border-radius: 30px;
    scroll-margin-top: 110px;
  }

  .image-square {
    aspect-ratio: auto;
    padding: 1.5rem;
    max-width: 360px;
  }

  .product-image {
    transform: scale(0.92);
  }

  .thumbnail-image {
    width: 80px;
    height: 80px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --detail-image-size: 300px;
  }

  body {
    padding-top: 56px;
  }
  
  .hero {
    padding: 100px 0 40px;
  }

  .page-hero {
    padding: 2.75rem 0;
  }

  .products-page .page-hero {
    display: none;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .display-3 {
    font-size: 2.5rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .display-5 {
    font-size: 1.75rem;
  }
  
  .home .btn {
    width: 100%;
  }
  
  .products-page .products-section {
    border-radius: 26px;
    scroll-margin-top: 96px;
  }
  .products-page .products-section::before {
    display: none;
  }

  .image-square {
    padding: 1.15rem;
    margin: 0 auto 1rem;
  }

  .whatsapp-widget {
    bottom: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
  }
  
  .category-filter {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .category-btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1rem;
  }

  .product-card .card-body {
    text-align: center;
  }

  .thumbnail-image {
    width: 65px;
    height: 65px;
  }
}

@media (max-width: 576px) {
  :root {
    --detail-image-size: 240px;
  }

  body {
    padding-top: 52px;
  }

  .hero {
    padding: 80px 0 30px;
  }

  .page-hero {
    padding: 2.25rem 0;
  }

  .products-page .page-hero {
    display: none;
  }

  .category-filter {
    gap: 0.5rem;
  }

  .category-btn {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }

  .products-page .products-section {
    scroll-margin-top: 84px;
    border-radius: 22px;
  }

  .image-square {
    padding: 0.9rem;
  }

  .whatsapp-widget {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .thumbnail-image {
    width: 56px;
    height: 56px;
  }
}

/* Continuous Flyers Animation */
.continuous-flyers {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.continuous-flyer {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  animation: continuousFloat 50s linear infinite;
}

@keyframes continuousFloat {
  0% {
    transform: translateX(-100px) translateY(100vh) rotate(0deg);
  }
  100% {
    transform: translateX(calc(100vw + 100px)) translateY(-100px) rotate(360deg);
  }
}

/* Page Hero */
.page-hero {
  padding: 4rem 0;
  color: white;
}

/* Custom Bootstrap Overrides */
.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Certificates Page Styles */
.certificate-card {
  transition: all 0.3s ease;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.certificate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(184, 138, 230, 0.25) !important;
}

.certificate-icon {
  color: #D4A5E6;
}

.certificate-title {
  font-size: 1.1rem;
  line-height: 1.5;
  word-wrap: break-word;
}

.certificates-section {
  background: linear-gradient(135deg, #FFF9F5 0%, #FFE8E0 100%);
  min-height: 60vh;
}

@media (max-width: 768px) {
  .certificate-card {
    margin-bottom: 1rem;
  }
  
  .certificate-title {
    font-size: 1rem;
    min-height: auto;
  }
}

