@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Waterfall&display=swap");
:root {
  --primary-pink: #dd5e89;
  --secondary-pink: #f5beda;
  --accent-green: #4CAF50;
  --dark-green: #2E7D32;
  --cream: #f9f3f2;
  --soft-white: #FAFAFA;
  --charcoal: #2C2C2C;
  --light-gray: #F5F5F5;
  --medium-gray: #EEEEEE;
  --bs-primary: #dd5e89;
  --bs-primary-rgb: 233, 30, 99;
  --bs-success: #4CAF50;
  --bs-success-rgb: 76, 175, 80;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--soft-white);
}

.navbar-brand,
.footer-logo h4,
h1,
h2,
h3 {
  font-family: "Dancing Script", cursive;
}
.navbar-brand {
  font-size: 2.2rem;
  font-weight: 600;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

.info-bar {
  background: linear-gradient(135deg, #f8387b, #f02b70);
  color: white;
  padding: 10px 0;
  font-size: 1rem;
}
.info-bar .hours {
  text-align: right;
  font-weight: 500;
}
.info-bar .hours i {
  margin-right: 8px;
  color: white;
}

.social-links-top {
  display: flex;
  gap: 15px;
  align-items: center;
}
.social-links-top a {
  color: white;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.social-links-top a:hover {
  background: rgba(236, 18, 102, 0.95);
  transform: translateY(-2px);
  color: white;
}

.custom-navbar {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--medium-gray);
}
.custom-navbar .navbar-brand img {
  transition: all 0.3s ease;
}
.custom-navbar .navbar-brand img:hover {
  transform: scale(1.05);
}
.custom-navbar .nav-link {
  color: var(--charcoal) !important;
  font-weight: 500;
  padding: 8px 16px !important;
  transition: all 0.3s ease;
  border-radius: 6px;
}
.custom-navbar .nav-link:hover {
  color: var(--primary-pink) !important;
  background-color: rgba(233, 30, 99, 0.1);
}
.custom-navbar .nav-link.active {
  color: var(--primary-pink) !important;
  background-color: rgba(233, 30, 99, 0.15);
}
.custom-navbar .dropdown-menu {
  background: white;
  border: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 10px 0;
  margin-top: 8px;
}
.custom-navbar .dropdown-menu .dropdown-item {
  color: var(--charcoal);
  padding: 10px 20px;
  font-weight: 400;
  transition: all 0.3s ease;
}
.custom-navbar .dropdown-menu .dropdown-item:hover {
  background-color: rgba(233, 30, 99, 0.1);
  color: var(--primary-pink);
}

.floating-navbar {
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
  transition: top 0.4s ease-in-out;
}
.floating-navbar.show {
  top: 0;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 90vw;
  height: 100vh;
  background: white;
  z-index: 1050;
  transition: right 0.3s ease-in-out;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}
.mobile-nav-menu.show {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--medium-gray);
  background: var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--charcoal);
  cursor: pointer;
  padding: 0.25rem;
  transition: all 0.3s ease;
}
.mobile-nav-close:hover {
  color: var(--primary-pink);
}

.mobile-nav-content {
  padding: 0;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.mobile-nav-link:hover {
  color: var(--primary-pink);
  text-decoration: none;
}

#banner {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
}
#banner .banner-item {
  position: relative;
  height: 80vh;
  min-height: 500px;
}
#banner .banner-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#banner .banner-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#banner .banner-item .banner-content {
  color: white;
  right: 15%;
  text-align: right;
  text-shadow: 2px 2px 8px rgba(83, 77, 77, 0.2);
}
#banner .banner-item .banner-content .banner-text {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}
#banner .banner-item .banner-content .banner-text .highlight-1 {
  font-size: 4.5rem;
  font-family: "Dancing Script", cursive;
  color: var(--primary-pink);
  display: inline-block;
  animation: glow 2s ease-in-out infinite alternate;
}
#banner .banner-item .banner-content .banner-text .highlight-2 {
  font-size: 4.5rem;
  font-family: "Dancing Script", cursive;
  color: var(--secondary-pink);
  display: inline-block;
  animation: glow 2s ease-in-out infinite alternate;
}
#banner .owl-nav .owl-prev,
#banner .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--primary-pink) !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
#banner .owl-nav .owl-prev:hover,
#banner .owl-nav .owl-next:hover {
  background: white !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%) scale(1.1);
}
#banner .owl-nav .owl-prev {
  left: 30px;
}
#banner .owl-nav .owl-next {
  right: 30px;
}

section {
  padding: 60px 0;
}

.title_back {
  color: var(--charcoal);
  font-size: 20px;
  line-height: 1;
  margin-bottom: 14px;
}

.about-section {
  background: url(../images/bg.jpg) center bottom no-repeat;
  background-size: cover;
}
.about-section .about-content h1 {
  color: var(--primary-pink);
  margin-bottom: 1.5rem;
}
.about-section .about-content p {
  color: #464646;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.about-section .features {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
  counter-reset: step-counter;
}
.about-section .features::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16.66%;
  right: 16.66%;
}
.about-section .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 280px;
}
.about-section .feature-item:hover {
  transform: translateY(-10px) scale(1.05);
}
.about-section .feature-item:nth-child(1) i {
  background: linear-gradient(135deg, var(--primary-pink), #ff4081);
  color: white;
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}
.about-section .feature-item:nth-child(2) i {
  background: linear-gradient(135deg, var(--accent-green), #66bb6a);
  color: white;
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}
.about-section .feature-item:nth-child(3) i {
  background: linear-gradient(135deg, #2196f3, #42a5f5);
  color: white;
  box-shadow: 0 10px 25px rgba(33, 150, 243, 0.3);
}
.about-section .feature-item i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}
.about-section .feature-item:hover i {
  transform: scale(1.1) rotate(5deg);
}
.about-section .feature-item span {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 1.5rem;
  position: relative;
}
.about-section .feature-item span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  transition: width 0.3s ease;
}
.about-section .feature-item:hover span::after {
  width: 80%;
}
.about-section .feature-item::before {
  content: counter(step-counter);
  font-family: "Waterfall", cursive;
  counter-increment: step-counter;
  position: absolute;
  top: -10px;
  left: 30px;
  width: 100px;
  height: 100px;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12rem;
  transition: all 0.3s ease;
}
.about-section .feature-item:hover::before {
  transform: scale(1.2);
}
.about-section .feature-item p {
  color: #595959;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 0;
}

.products-section {
  background: var(--cream);
}
.products-section h1 {
  color: var(--primary-pink);
  margin-bottom: 1rem;
}
.products-section .lead {
  color: var(--charcoal);
  margin-bottom: 3rem;
}

.product-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--medium-gray);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 30, 99, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.product-card .product-image {
  width: 100%;
  height: 350px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
}
.product-card .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}
.product-card:hover .product-image {
  transform: translateY(-5px);
}
.product-card:hover .product-image img {
  transform: scale(1.05);
}
.product-card h4 {
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-family: "Lato", sans-serif;
}
.product-card .product-descr {
  padding: 0 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-card .product-descr p {
  color: #595959;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.product-card .product-descr .btn {
  border-radius: 25px;
  padding: 10px 24px;
  font-weight: 500;
  margin-top: auto;
  align-self: center;
}

footer {
  margin-top: 0;
}

.footer-main {
  background: linear-gradient(135deg, var(--charcoal), #3a3a3a);
  color: white;
  padding: 80px 0 40px;
}

.footer-widget h3,
.footer-widget h4,
.footer-widget h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}
.footer-widget h5 {
  font-size: 1.2rem;
}
.footer-widget h6 {
  color: var(--secondary-pink);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.footer-address p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--secondary-pink);
  padding-left: 5px;
}
.footer-links a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary-pink);
  transition: width 0.3s ease;
}
.footer-links a:hover::before {
  width: 10px;
}

.contact-info {
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  transition: all 0.3s ease;
}
.contact-item:hover {
  transform: translateX(5px);
}
.contact-item i {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-pink), #ed4a81);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}
.contact-item div {
  flex: 1;
}
.contact-item span {
  display: block;
  color: var(--secondary-pink);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  font-weight: 500;
}
.contact-item a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.contact-item a:hover {
  color: var(--secondary-pink);
}

.footer-bottom {
  background: #1a1a1a;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
  text-align: center;
}
.copyright-text p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}
.copyright-text strong {
  color: var(--secondary-pink);
  font-weight: 600;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}
.btn {
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  border-width: 2px;
}
.btn.btn-primary {
  background: linear-gradient(135deg, var(--primary-pink), #e6155a);
  border-color: var(--primary-pink);
}
.btn.btn-primary:hover {
  background: linear-gradient(135deg, #e6155a, #d01151);
  border-color: #e6155a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}
.btn.btn-outline-primary {
  color: var(--primary-pink);
  border-color: var(--primary-pink);
}
.btn.btn-outline-primary:hover {
  color: var(--cream);
  background: var(--primary-pink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}
.btn.btn-success {
  background: linear-gradient(135deg, var(--accent-green), #449948);
  border-color: var(--accent-green);
}
.btn.btn-success:hover {
  background: linear-gradient(135deg, #449948, #3d8b40);
  border-color: #449948;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

@media (max-width: 768px) {
  .info-bar {
    display: none;
    font-size: 0.8rem;
    padding: 12px 0;
  }
  .info-bar .row {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .info-bar .hours {
    text-align: center;
  }
  .social-links-top {
    justify-content: left;
  }
  .navbar-toggler {
    border: none;
    padding: 4px 8px;
  }
  .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E91E63' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  #banner {
    height: 60vh;
    min-height: 400px;
  }
  #banner .banner-item {
    height: 60vh;
    min-height: 400px;
  }
  #banner .banner-item .banner-content {
    top: 50%;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-50%);
    text-align: center !important;
    max-width: 90%;
  }
  #banner .banner-item .banner-content .banner-text {
    font-size: 2.5rem;
  }
  #banner.owl-theme .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 16px !important;
  }
  #banner.owl-theme .owl-nav .owl-prev {
    left: 10px;
  }
  #banner.owl-theme .owl-nav .owl-next {
    right: 10px;
  }
  section {
    padding: 50px 0;
  }
  .about-section .about-content h1 {
    font-size: 2rem;
  }
  .about-section .features {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .about-section .features::before {
    display: none;
  }
  .about-section .features .feature-item {
    max-width: 100%;
    width: 100%;
  }
  .about-section .features .feature-item i {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
  }
  .product-card .product-image {
    height: 450px;
  }

  .footer-main {
    padding: 60px 0 30px;
  }
  .footer-widget {
    margin-bottom: 2rem;
  }
  .contact-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .contact-item i {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .copyright-text {
    text-align: center;
  }
  .footer-bottom .row {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 576px) {
  .info-bar {
    font-size: 0.8rem;
    padding: 8px 0;
  }
  #banner .banner-item .banner-content .banner-text {
    font-size: 1.8rem;
  }
  #banner .banner-item .banner-content .banner-text .highlight-1,
  #banner .banner-item .banner-content .banner-text .highlight-2 {
    font-size: 2.3rem;
  }
  .about-section .about-content h1 {
    font-size: 2rem;
  }
  .about-section .features .feature-item {
    padding: 1.5rem 1rem;
  }
  .about-section .features .feature-item i {
    font-size: 2rem;
    width: 90px;
    height: 90px;
  }
  .product-card .product-descr {
    padding: 1.5rem 1rem 2rem 1rem;
  }
  .product-card .product-image {
    height: 450px;
  }
  .footer-main {
    padding: 50px 0 20px;
  }
  .contact-item {
    padding: 1rem;
  }
  .about-section .feature-item::before {
    content: counter(step-counter);
    font-family: "Waterfall", cursive;
    counter-increment: step-counter;
    position: absolute;
    top: -10px;
    left: 80px;
    width: 100px;
    height: 100px;
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12rem;
    transition: all 0.3s ease;
  }
}
@media (min-width: 992px) {
  .dropdown-submenu {
    position: relative;
  }
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    border-radius: 0 12px 12px 12px;
  }
  .dropdown-submenu > a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
  }
  .dropdown-submenu:hover > a:after {
    border-left-color: var(--primary-pink);
  }
}
body.mobile-nav-open {
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */