/* src/styles.scss */
:root {
  --primary-color: #667eea;
  --primary-dark: #764ba2;
  --secondary-color: #1A1A1A;
  --accent-color: #764ba2;
  --light-bg: #F9F7F4;
  --text-dark: #2D2D2D;
  --text-light: #6B6B6B;
  --gold: #FFD700;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    "Playfair Display",
    Georgia,
    serif;
  margin: 0;
  line-height: 1.3;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
button {
  font-family: inherit;
}
p {
  margin: 0;
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background:
    linear-gradient(
      135deg,
      var(--primary-color),
      var(--primary-dark));
  color: white !important;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color) !important;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-outline-custom:hover {
  background: var(--primary-color);
  color: white !important;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.section-title .divider {
  width: 60px;
  height: 4px;
  background:
    linear-gradient(
      135deg,
      var(--primary-color),
      var(--primary-dark));
  margin: 0 auto 20px;
  border-radius: 2px;
}
.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.service-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  background: white;
  transition: all 0.4s ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover img {
  transform: scale(1.05);
}
.service-card .card-body {
  padding: 25px;
}
.service-card .card-body h5 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}
.service-card .price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}
.service-card .duration {
  color: var(--text-light);
  font-size: 0.9rem;
}
.product-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  background: white;
  transition: all 0.4s ease;
}
.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.product-card .product-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-image img {
  transform: scale(1.1);
}
.product-card .badge-sale {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff4444;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
}
.product-card .card-body {
  padding: 20px;
}
.product-card .card-body h5 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}
.product-card .price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}
.product-card .original-price {
  color: #999;
  text-decoration: line-through;
  margin-left: 8px;
  font-size: 0.9rem;
}
.toast-top-right {
  top: 80px !important;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
