@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");
:root {
  --bs-primary: #E89CA6;
  --bs-primary-rgb: 232, 156, 166;
  --bs-secondary: #E8D5C4;
  --bs-secondary-rgb: 232, 213, 196;
  --bs-light: #FAF7F2;
  --bs-light-rgb: 250, 247, 242;
  --bs-dark: #6B5B5B;
  --bs-dark-rgb: 107, 91, 91;
  --bs-body-bg: #FAF7F2;
  --bs-body-color: #6B5B5B;
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #E89CA6;
  --bs-btn-border-color: #E89CA6;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #e08594;
  --bs-btn-hover-border-color: #e08594;
  --bs-btn-focus-shadow-rgb: 232, 156, 166;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #d97082;
  --bs-btn-active-border-color: #d97082;
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #E89CA6;
  --bs-btn-disabled-border-color: #E89CA6;
}

body {
  background: linear-gradient(to bottom, #FAF7F2 0%, #fef9fa 100%);
  min-height: 100vh;
  font-weight: 400;
}

.navbar {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(20px);
  border: none !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}
.navbar .navbar-brand img {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .navbar-brand img:hover {
  transform: scale(1.05) rotate(-2deg);
}
.navbar .nav-link {
  color: #6B5B5B !important;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .nav-link:hover {
  background: rgba(247, 215, 220, 0.3);
  color: #4f4444 !important;
}
.navbar .nav-link::after {
  display: none;
}

.btn {
  font-weight: 500;
  padding: 0.75rem 2rem;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, #E89CA6 0%, #F4B9C1 100%);
  box-shadow: 0 4px 15px rgba(232, 156, 166, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 156, 166, 0.4);
  background: linear-gradient(135deg, #e38793 0%, #f1a3ad 100%);
}

.btn-outline-primary {
  color: #E89CA6;
  border: 2px solid #E89CA6;
  background: transparent;
}
.btn-outline-primary:hover {
  background: #E89CA6;
  border-color: #E89CA6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 156, 166, 0.3);
}

.card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 213, 196, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.card.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.card.product-card:hover .card-img-top {
  transform: scale(1.1);
}
.card .card-img-top {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 280px;
  object-fit: cover;
}
.card .card-body {
  padding: 1.75rem;
}

.badge {
  font-weight: 500;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.badge.bg-primary {
  background: linear-gradient(135deg, #E89CA6 0%, #F4B9C1 100%) !important;
}
.badge.bg-secondary {
  background: linear-gradient(135deg, #E8D5C4 0%, #F5E6D3 100%) !important;
}

.hero-section {
  background: linear-gradient(135deg, rgba(250, 247, 242, 0.95) 0%, rgba(247, 215, 220, 0.15) 50%, rgba(245, 230, 211, 0.2) 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
.hero-section .container {
  position: relative;
  z-index: 1;
}
.hero-section::before, .hero-section::after {
  content: "";
  position: absolute;
  background: radial-gradient(circle, rgba(247, 215, 220, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  animation: float 25s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hero-section::before {
  top: -150px;
  right: -100px;
  width: 350px;
  height: 350px;
}
.hero-section::after {
  bottom: -200px;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 230, 211, 0.25) 0%, transparent 70%);
  animation: float 30s ease-in-out infinite reverse;
}
.hero-section .hero-content h1 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #4A3838;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}
.hero-section .hero-content p {
  font-size: 1.1rem;
  color: #6B5B5B;
  opacity: 0.9;
}
.hero-section .hero-image-wrapper {
  position: relative;
}
.hero-section .hero-image-wrapper img {
  border-radius: 1.5rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
  border: 8px solid rgba(255, 255, 255, 0.6);
  max-width: 100%;
  height: auto;
}
.hero-section .hero-image-wrapper::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background: #E89CA6;
  border-radius: 50%;
  opacity: 0.8;
  z-index: -1;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(2deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-1deg);
  }
}
.category-badge {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  border-radius: 50rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: #6B5B5B;
}
.category-badge:hover, .category-badge.active {
  background: linear-gradient(135deg, #E89CA6 0%, #F4B9C1 100%);
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(232, 156, 166, 0.3);
}

footer {
  background: linear-gradient(to bottom, rgba(245, 230, 211, 0.3), rgba(247, 215, 220, 0.3)) !important;
  backdrop-filter: blur(10px);
  margin-top: 5rem;
}
footer h5 {
  font-family: "Playfair Display", serif;
  color: #E89CA6;
  font-weight: 600;
}
footer a {
  color: #9B8B8B !important;
  transition: color 0.3s;
}
footer a:hover {
  color: #E89CA6 !important;
}

.product-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(232, 213, 196, 0.15);
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  overflow: hidden;
  position: relative;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(247, 215, 220, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(245, 230, 211, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(232, 156, 166, 0.4);
}
.product-card:hover .product-image img {
  transform: scale(1.1);
}
.product-card:hover .btn-add-to-cart {
  background: linear-gradient(135deg, #e38793 0%, #f1a3ad 100%);
  transform: translateY(-2px);
}
.product-card .product-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #FAF7F2, white);
  height: 280px;
}
.product-card .product-image img {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .product-image .product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #E89CA6;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(232, 156, 166, 0.5);
  z-index: 2;
}
.product-card .product-image .handmade-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  color: #6B5B5B;
  font-weight: 500;
  z-index: 2;
}
.product-card .product-image .handmade-label i {
  color: #E89CA6;
  margin-right: 0.3rem;
}
.product-card .card-body {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}
.product-card .card-body .product-category {
  font-size: 0.8rem;
  color: #9B8B8B;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.product-card .card-body .card-title {
  font-family: "Playfair Display", serif;
  color: #4A3838;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.product-card .card-body .card-text {
  color: #6B5B5B;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  opacity: 0.85;
}
.product-card .card-body .product-options {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.product-card .card-body .product-options .option-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(245, 230, 211, 0.3);
  border: 1px solid rgba(232, 213, 196, 0.2);
  border-radius: 50rem;
  color: #6B5B5B;
}
.product-card .card-body .product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #E89CA6;
  margin-bottom: 1rem;
}

.mobile-cart-button {
  background: linear-gradient(135deg, #E89CA6 0%, #F4B9C1 100%) !important;
  box-shadow: 0 8px 30px rgba(232, 156, 166, 0.4);
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  text-align: center !important;
}
.mobile-cart-button i {
  display: block !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  vertical-align: middle !important;
  font-size: 1.25rem !important;
  width: auto !important;
  height: auto !important;
}
.mobile-cart-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(232, 156, 166, 0.5);
}
.mobile-cart-button.animate-bounce {
  animation: bounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 213, 196, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}

.product-detail-image {
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.thumbnail-image {
  border-radius: 1rem;
  border: 3px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.thumbnail-image:hover, .thumbnail-image.active {
  border-color: #E89CA6;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(232, 156, 166, 0.3);
}

@keyframes bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.animate-bounce {
  animation: bounce 0.5s ease-in-out;
}

.bg-light {
  background-color: rgba(250, 247, 242, 0.8) !important;
}

.shadow-sm {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04) !important;
}

.shadow {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06) !important;
}

.shadow-lg {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08) !important;
}

.form-control {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(232, 213, 196, 0.3);
  padding: 0.875rem 1.25rem;
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-control:focus {
  background: white;
  border-color: #E89CA6;
  box-shadow: 0 0 0 4px rgba(232, 156, 166, 0.1);
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 0;
  }
  .hero-section {
    text-align: center;
  }
  .hero-section .btn-lg {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  .toast-container {
    top: 80px !important;
    left: 1rem !important;
    right: 1rem !important;
  }
  .toast-container .toast {
    width: 100%;
  }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}
.feature-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-icon i {
  color: #4A3838 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-icon:hover {
  transform: scale(1.1) rotate(5deg);
}
.feature-icon:hover i {
  color: #E89CA6 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  color: #6B5B5B;
  font-weight: 600;
}

.display-4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  background: linear-gradient(135deg, #E89CA6 0%, #F4B9C1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  color: #9B8B8B;
  font-weight: 400;
}

.spinner-border {
  color: #E89CA6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 156, 166, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(232, 156, 166, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 156, 166, 0);
  }
}
.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInScale {
  animation: fadeInScale 0.4s ease-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.quantity-control .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  background-color: #E8D5C4;
  border: none;
  transition: all 0.2s ease;
}
.quantity-control .btn:hover {
  background-color: #E89CA6;
  color: white;
  transform: scale(1.1);
}
.quantity-control .btn i {
  font-size: 0.875rem;
}
.quantity-control .fw-bold {
  min-width: 2rem;
  text-align: center;
}

.cart-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.cart-item:last-child {
  border-bottom: none;
}

/*# sourceMappingURL=app.output.css.map */
