@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,600&family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

* {
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: #0c0c0c;
  background-color: #F9F0F2;
  overflow-x: hidden;
  line-height: 1.6;
}

.layout_padding {
  padding: 70px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
    position: relative;
    margin-bottom: 0;
    font-size: 3.5rem;
    font-weight: bold;
}

.heading_container h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 5px;
    background: #C491A0;
    margin: 10px auto 10px;
}

.heading_container h2 span {
  color: #C491A0;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

:root {
  --brand-primary: #C491A0;
  --brand-dark: #8B686F;
  --text-muted: #A08C95;
  --surface-soft: #F5E6E8;
  --shadow-soft: 0 10px 30px rgba(196, 145, 160, 0.1);
  --radius-lg: 14px;
  --font-shop: 'Plus Jakarta Sans', 'Montserrat', system-ui, sans-serif;
}

a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.btn {
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* padding-top: 90px; */
}

.sub_page .hero_area {
  min-height: auto;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  padding-top: 120px;
}

.header_section {\n    padding: 0;\n    margin: 0;\n    background: transparent;\n    position: relative;\n    z-index: 1030;\n}

/* ===== STICKY NAVBAR ===== */
/* ==========================================
   NAVBAR - FIXED STICKY HEADER
   ========================================== */

.navbar-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 15px 0;
  background: linear-gradient(135deg, #B0647A 0%, #A8586F 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-sticky.navbar-scrolled {
  padding: 10px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   NAVBAR CONTAINER
   ========================================== */

.navbar-container-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
  padding: 0 50px;
  position: relative;
  flex-wrap: nowrap;
}

/* Left Navigation Section */
.navbar-left-section {
  order: 1;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

/* Center Logo Section */
.navbar-center-section {
  order: 2;
  z-index: 50;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/* Right Navigation Section */
.navbar-right-section {
  order: 3;
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 0 0 auto;
  pointer-events: auto;
}

/* Removed old duplicate navbar groups - no longer needed */

/* ==========================================
   NAVBAR BRAND - LOGO
   ========================================== */

.navbar-brand {
  font-family: 'Playfair Display', serif;
  margin: 0;
  padding: 0;
  display: inline-block;
  z-index: 5;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 32px;
  color: #ffffff;
}

.navbar-brand .site-logo {
  width: 180px;
  max-width: 100%;
  height: auto;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.navbar-brand .site-logo:hover {
  transform: scale(1.08) translateY(-2px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

/* ==========================================
   NAVBAR CONTAINER & NAVIGATION
   ========================================== */

.custom_nav-container {
  padding: 0;
  width: 100%;
  margin: 0;
  background: transparent;
}

.custom_nav-container .navbar-nav {
  margin: 0;
  gap: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.custom_nav-container .navbar-nav.navbar-left {
  gap: 8px;
}

.custom_nav-container .navbar-nav.navbar-right {
  gap: 6px;
}

/* Nav Items */
.custom_nav-container .navbar-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 100;
  flex: 0 0 auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 12px 18px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 7px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.2px;
  position: relative;
  white-space: nowrap;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 100;
  pointer-events: auto !important;
  opacity: 1;
  visibility: visible;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.custom_nav-container .navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 0;
  height: 3px;
  background: #FFF5F7;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.custom_nav-container .navbar-nav .nav-item .nav-link:hover::after,
.custom_nav-container .navbar-nav .nav-item.active .nav-link::after {
  width: 60%;
}

.custom_nav-container .navbar-nav .nav-item .nav-link svg {
  width: 16px;
  height: auto;
  fill: #ffffff;
  margin-bottom: 2px;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link svg,
.custom_nav-container .navbar-nav .nav-item.active .nav-link svg {
  fill: #FFF5F7;
}

/* ==========================================
   NAVBAR ICONS & SPECIAL ITEMS
   ========================================== */

.custom_nav-container .nav-icon-item .nav-link,
.custom_nav-container .nav-search-item .nav-link {
  padding: 8px 12px;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
}

/* Content Padding - Prevent overlap with fixed navbar */
.hero_area {
  /* padding-top: 90px; */
  margin-top: 0;
}

.sub_page .hero_area {
  padding-top: 110px;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #B0647A, #A8586F);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.back-to-top.show {
  display: flex;
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

.custom_nav-container .nav_search-btn:hover {
  color: #FFF5F7;
}

/* Navbar Toggler (Mobile) */
.custom_nav-container .navbar-toggler {
  outline: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: none;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #B0647A 0%, #9D5870 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(176, 100, 122, 0.3);
  border: none;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(176, 100, 122, 0.4);
}

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

/* Mobile Menu Toggle - Active State */
.navbar-toggler.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggler.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop: Always Show Left Menu (Horizontal) */
.navbar-nav.navbar-left {
  display: flex !important;
  flex-direction: row;
  width: auto;
  gap: 15px;
  align-items: center;
  position: relative;
  z-index: 100;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Desktop: Show Right Menu (Horizontal) */
.navbar-nav.navbar-right {
  display: flex !important;
  flex-direction: row;
  width: auto;
  gap: 15px;
  align-items: center;
  position: relative;
  z-index: 100;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Mobile: Hide menus by default (will show on toggle) */
@media (max-width: 992px) {
  .navbar-nav.navbar-left,
  .navbar-nav.navbar-right {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .navbar-nav.navbar-left.show,
  .navbar-nav.navbar-right.show {
    display: flex;
  }
}

/*end header section*/

.custom_nav-container .navbar-nav .nav-item .nav-link svg {
  width: 17px;
  height: auto;
  fill: #ffffff;
  margin-bottom: 2px;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #FFF5F7;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link svg, .custom_nav-container .navbar-nav .nav-item.active .nav-link svg {
  fill: #FFF5F7;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #ffffff;
}

.custom_nav-container .nav_search-btn:hover {
  color: #FFF5F7;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 90px 0 75px 0;
}

/* Hero: online store look — readable overlay + display font */
.slider_section.hero-shop-slider {
  padding: 100px 0 85px 0;
}

.slider_section.hero-shop-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    115deg,
    rgba(196, 145, 160, 0.85) 0%,
    rgba(196, 145, 160, 0.6) 42%,
    rgba(212, 165, 176, 0.3) 100%
  );
  pointer-events: none;
}

.slider_section.hero-shop-slider .slider_bg_box {
  z-index: -1;
}

.slider_section.hero-shop-slider #customCarousel1 {
  position: relative;
  z-index: 1;
}

.slider_section.hero-shop-slider .detail-box {
  max-width: 640px;
}

.slider_section.hero-shop-slider .hero-kicker {
  font-family: var(--font-shop);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}

.slider_section.hero-shop-slider .hero-kicker span {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(212, 165, 176, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.slider_section.hero-shop-slider .hero-title {
  font-family: var(--font-shop);
  font-size: clamp(2.1rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  color: #ffffff;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.slider_section.hero-shop-slider .hero-title .hero-title-accent {
  color: #FFD9E1;
  font-weight: 800;
}

.slider_section.hero-shop-slider .hero-price-row {
  font-family: var(--font-shop);
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.slider_section.hero-shop-slider .hero-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.slider_section.hero-shop-slider .hero-price-note {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.slider_section.hero-shop-slider .hero-tagline {
  font-family: var(--font-shop);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 18px 0 0;
  max-width: 480px;
}

.slider_section.hero-shop-slider .detail-box .btn-shop-hero {
  font-family: var(--font-shop);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  margin-top: 28px;
  background: linear-gradient(135deg, #C491A0 0%, #A87A8E 100%);
  border: none;
  color: #fff !important;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(196, 145, 160, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slider_section.hero-shop-slider .detail-box .btn-shop-hero:hover {
  background: #ffffff;
  color: #C491A0 !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.slider_section.hero-shop-slider .detail-box .btn-shop-hero i {
  font-size: 0.85em;
}

.slider_section.hero-shop-slider .carousel-indicators {
  margin-top: 48px;
  z-index: 2;
}

.slider_section.hero-shop-slider .carousel-indicators li {
  background-color: rgba(255, 255, 255, 0.45);
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.slider_section.hero-shop-slider .carousel-indicators li.active {
  width: 28px;
  height: 10px;
  border-radius: 999px;
  background-color: #C491A0;
  border-color: #C491A0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box h1 {
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #8B686F;
    line-height: 70px;
}

.slider_section .detail-box h1 span {
  color: #C491A0;
}

.slider_section .detail-box p {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 1.5rem;
}

.slider_section .detail-box a {
    display: inline-block;
    padding: 12px 45px;
    background-color: #C491A0;
    border: 1px solid #C491A0;
    color: #ffffff;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-top: 10px;
    font-weight: 700;
}

.slider_section .detail-box a:hover {
  background-color: transparent;
  color: #C491A0;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  margin-top: 45px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #C491A0;
}

.slider_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slider_bg_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top right;
     object-position: top right;
}

.product_section .heading_container {
  margin-bottom: 20px;
}

/* Our Products — storefront-style section header */
.product_section .shop-catalog-head {
  margin-bottom: 2.5rem;
}

.product_section .shop-catalog-head .catalog-kicker {
  font-family: var(--font-shop);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 10px;
}

.product_section .shop-catalog-head h2 {
  font-family: var(--font-shop);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-dark);
  line-height: 1.15;
}

.product_section .shop-catalog-head h2 span {
  color: var(--brand-primary);
  font-weight: 800;
}

.product_section .shop-catalog-head h2::after {
  width: 56px;
  height: 4px;
  border-radius: 4px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--brand-primary), #ff8a90);
}

.product_section .shop-catalog-head .catalog-subtitle {
  font-family: var(--font-shop);
  max-width: 540px;
  margin: 16px auto 0;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-muted);
}

.product_section .box .detail-box h5 {
  font-family: var(--font-shop);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--brand-dark);
  line-height: 1.35;
  margin-top: 10px;
}

.product_section .box .detail-box h6 {
  font-family: var(--font-shop);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-primary);
  margin-top: 10px;
}

.product_section .box {
    position: relative;
    margin-top: 25px;
    padding: 35px 35px;
    background-color: var(--surface-soft);
    -webkit-transition: all .3s;
    transition: all .3s;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-lg);
}

.product_section .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 215px;
}

.product_section .box .img-box img {
  max-width: 100%;
  max-height: 160px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.product_section .box .detail-box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product_section .box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.product_section .box:hover .option_container {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.arrival_section {
    background-color: #d4ced0;
}
.product_section .option_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.product_section .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product_section .options a {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 30px;
  width: 165px;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: 5px 0;
}

.product_section .options .option1 {
  background-color: #C491A0;
  border: 1px solid #C491A0;
  color: #ffffff;
}

.product_section .options .option1:hover {
  background-color: transparent;
  color: #C491A0;
}

.product_section .options .option2 {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}

.product_section .options .option2:hover {
  background-color: transparent;
  color: #000000;
}

.product_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.product_section .btn-box a {
  display: inline-block;
  padding: 10px 40px;
  background-color: #C491A0;
  border: 1px solid #C491A0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.product_section .btn-box a:hover {
  background-color: transparent;
  color: #C491A0;
}

.arrival_section .heading_container {
  color: #8B686F;
  margin-bottom: 10px;
}

.arrival_section .box {
  padding: 120px 45px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.arrival_section .arrival_bg_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.arrival_section .arrival_bg_box img {
    width: 50%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top left;
    object-position: top left;
}

.arrival_section a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #C491A0;
  border: 1px solid #C491A0;
  color: #ffffff;
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.arrival_section a:hover {
  background-color: transparent;
  color: #C491A0;
}

.why_section .box {
    text-align: center;
    margin-top: 45px;
    background-color: #C491A0;
    padding: 45px 50px;
    border-radius: var(--radius-lg);
    color: #ffffff;
}

.detail-box h5 {
    font-size: 21px;
    font-weight: 700;
}

.remove_line_bt h2::after {
    display: none;
}

.why_section .box .img-box {
  margin-bottom: 15px;
}

.why_section .box .img-box svg {
  width: 55px;
  height: auto;
  fill: #ffffff;
}

.subscribe_section {
  text-align: center;
}

.subscribe_section .box {
  background-color: #d4ced0;
  padding: 75px 45px;
  border-radius: var(--radius-lg);
}

.subscribe_section .subscribe_form .heading_container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #8B686F;
}

.subscribe_section .subscribe_form .heading_container h2 {
  padding: 0 25px;
}

.subscribe_section .subscribe_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subscribe_section .subscribe_form form input {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 90px;
    outline: none;
    padding: 5px 25px;
    background-color: #ffffff;
    margin-top: 15px;
    text-align: left;
}

.subscribe_section .subscribe_form form input::-webkit-input-placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form input:-ms-input-placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form input::-ms-input-placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form input::placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form button {
  display: inline-block;
  padding: 10px 45px;
  background-color: #C491A0;
  border: 1px solid #C491A0;
  color: #ffffff;
  border-radius: 35px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
  margin-top: 35px;
  font-weight: 600;
  width: 100%;
  max-width: 285px;
}

.subscribe_section .subscribe_form form button:hover {
  background-color: transparent;
  color: #C491A0;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 55px;
}

.client_section .box .img_container {
    width: auto;
    height: auto;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
}

.client_section .box .img_container .img-box {
    width: auto;
    height: auto;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ffffff;
    margin-right: -1px;
}

.client_section .box .img_container .img-box .img_box-inner {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.client_section .box .img_container .img-box .img_box-inner img {
  width: 100%;
}

.client_section .box .detail-box {
  margin-top: 25px;
}

.client_section .box .detail-box h5 {
  font-size: 20px;
  font-weight: 600;
}

.client_section .box .detail-box h6 {
  font-size: 15px;
  color: #999998;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  top: 43%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  width: auto;
  margin: 0 5px;
  width: 50px;
  height: 50px;
  opacity: 1;
  color: #ffffff;
  background-color: #C491A0;
  border-radius: 100%;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: #212121;
}

.client_section .carousel-control-prev {
  left: 25%;
}

.client_section .carousel-control-next {
  right: 25%;
}

/* footer section*/
.footer_section {
  background-color: #8B686F;
  color: #ffffff;
  padding-top: 70px;
}

.footer_section {
    color: #ffffff;
    text-align: left;
}

.footer_section h4 {
  font-size: 28px;
}

.footer_section h4,
.footer_section .footer-logo {
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  text-align: left;
}

.footer_section .footer-col {
  margin-bottom: 30px;
}

.footer_section .footer_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer_section .footer_contact .contact_link_box a {
    margin: 10px 0;
    color: #ffffff;
}

.footer_section .footer_contact .contact_link_box a i {
  margin-right: 5px;
}

.footer_section .footer_contact .contact_link_box a:hover {
  color: #C491A0;
}

.footer_section .footer-logo {
  display: block;
  font-weight: bold;
  font-size: 32px;
  color: #ffffff;
}

.footer_section .footer_social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -ms-flex-pack: center;
    justify-content: left;
    margin-top: 25px;
    margin-bottom: 10px;
}

.footer_section .footer_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #C491A0;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #ffffff;
  border-radius: 100%;
  margin: 0 2.5px;
  font-size: 18px;
}

.footer_section .footer_social a:hover {
  color: #ffffff;
  background-color: #C491A0;
}

.footer_section .map_container {
  width: 100%;
  height: 175px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.footer_section .map_container .map {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.footer_section .map_container .map #googleMap {
  height: 100%;
}

.footer_section .footer-info {
  text-align: center;
  margin-top: 25px;
}

.footer_section .footer-info p {
    color: #ffffff;
    margin: 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer_section .footer-info p a {
  color: inherit;
}
/*# sourceMappingURL=style.css.map */

.heading_container.heading_center h3 {
    position: relative;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}

li.nav-item ul {
    background: #fff;
    border: solid #000 2px;
    border-radius: 0;
    padding: 10px 20px;
    margin-left: 10px;
    margin-top: 10px;
    box-shadow: 4px 4px 0px 0 #000;
    width: 190px;
}

li.nav-item ul li {
    float: left;
    width: 100%;
    margin: 6px 0;
}

li.nav-item ul li a {
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-top: 10px;
    transition: ease all 0.5s;
}

li.nav-item ul li a:hover, li.nav-item ul li a:focus {
    color: #C491A0;
}

.inner_page_head {
    background: linear-gradient(135deg, #C491A0, #D4A5B0);
    text-align: center;
    color: #fff;
    padding-top: 27px;
    padding-bottom: 21px;
}

.inner_page_head h3 {
  font-size: 42px;
  font-weight: 800;
}

.inner_page_head .inner_page_sub {
  font-family: var(--font-shop);
  font-size: 1.05rem;
  font-weight: 500;
  opacity: 0.95;
  margin: 0.5rem auto 0;
  max-width: 520px;
  line-height: 1.5;
}

/** Catalog + product detail (storefront polish) **/
.catalog-products-section {
  background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 55%);
}

.catalog-products-section .product-card {
  border: 1px solid rgba(0, 44, 62, 0.08);
  box-shadow: 0 8px 28px rgba(0, 44, 62, 0.07) !important;
}

.catalog-products-section .product-img-box {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, #ffffff 0%, #f0f2f5 100%) !important;
}

.catalog-products-section .product-card .fw-bold.text-success {
  font-family: var(--font-shop);
  font-size: 1.2rem;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  color: var(--brand-primary) !important;
}

.catalog-products-section .product-card .card-title {
  font-family: var(--font-shop);
  font-weight: 600;
}

.catalog-products-section .catalog-card-actions .btn {
  font-family: var(--font-shop);
  font-weight: 600;
  border-radius: 8px;
}

.catalog-products-section .badge.bg-primary {
  background: linear-gradient(135deg, #0d6efd, #4f46e5) !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Home — Our Products (no hover overlay; clean cards) */
.home-product-section {
  background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 45%);
}

.home-product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 44, 62, 0.08);
  box-shadow: 0 8px 28px rgba(0, 44, 62, 0.07);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.home-product-card:hover {
  box-shadow: 0 16px 42px rgba(0, 44, 62, 0.12);
  transform: translateY(-4px);
}

.home-product-card-media {
  color: inherit;
  display: block;
}

.home-product-card-media:hover {
  color: inherit;
}

.home-product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #ffffff 0%, #eef0f3 100%);
  overflow: hidden;
}

.home-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.home-product-card:hover .home-product-img {
  transform: scale(1.05);
}

.home-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  font-family: var(--font-shop);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, #C491A0, #D4A5B0);
  color: #fff;
  box-shadow: 0 4px 12px rgba(196, 145, 160, 0.35);
}

.home-product-info {
  padding: 14px 14px 8px;
}

.home-product-name {
  font-family: var(--font-shop);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 6px;
  color: var(--brand-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-product-price {
  font-family: var(--font-shop);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin: 0;
  letter-spacing: -0.02em;
}

.home-product-actions {
  display: flex;
  gap: 8px;
  padding: 0 14px 14px;
}

.home-product-btn {
  flex: 1;
  font-family: var(--font-shop);
  font-weight: 600;
  border-radius: 8px;
  font-size: 0.8125rem;
}

.home-product-btn.primary {
  background: linear-gradient(135deg, #C491A0, #A87A8E) !important;
  border: none !important;
  color: #fff !important;
}

.home-product-btn.primary:hover {
  color: #fff !important;
  filter: brightness(1.05);
}

.home-product-btn.secondary {
  border: 2px solid #dee2e6;
  color: var(--brand-dark);
}

.home-product-btn.secondary:hover {
  border-color: var(--brand-dark);
  background: #f8f9fa;
  color: var(--brand-dark);
}

.home-products-pagination .pagination {
  margin-bottom: 0;
}

/* Product detail */
.product-detail-page .pd-gallery {
  border: 1px solid rgba(0, 44, 62, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 44, 62, 0.08);
}

.product-detail-page .pd-gallery-main {
  background: linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
}

.product-detail-page .pd-main-img {
  max-height: 480px;
  object-fit: contain;
}

.product-detail-page .pd-thumbs {
  background: #fafbfc;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  gap: 10px;
  padding: 12px 14px 14px !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.product-detail-page .pd-thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid #e8e8e8;
  transition: border-color 0.2s, transform 0.2s;
}

.product-detail-page .pd-thumb:hover,
.product-detail-page .pd-thumb:focus {
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  outline: none;
}

.product-detail-page .pd-info {
  font-family: var(--font-shop);
}

.product-detail-page .pd-title {
  font-family: var(--font-shop);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-dark);
  line-height: 1.2;
}

.product-detail-page .pd-price {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--brand-primary);
  letter-spacing: -0.03em;
}

.product-detail-page .pd-lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-detail-page .pd-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}

.product-detail-page .pd-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--surface-soft);
  color: var(--brand-dark);
  border: 1px solid rgba(0, 44, 62, 0.1);
}

.product-detail-page .pd-chip.pd-chip-accent {
  background: rgba(247, 68, 78, 0.1);
  color: var(--brand-primary);
  border-color: rgba(247, 68, 78, 0.25);
}

.product-detail-page .pd-buy-card {
  background: var(--surface-soft);
  border: 1px solid rgba(0, 44, 62, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.5rem;
}

.product-detail-page .pd-buy-card .form-control {
  border-radius: 10px;
  border: 1px solid #d0d5dd;
  font-weight: 600;
}

.product-detail-page .pd-btn-cart {
  font-family: var(--font-shop);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.875rem;
  border-radius: 10px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #C491A0 0%, #A87A8E 100%);
  border: none;
  color: #fff;
  box-shadow: 0 10px 24px rgba(196, 145, 160, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-detail-page .pd-btn-cart:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(247, 68, 78, 0.45);
}

.product-detail-page .pd-desc {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 44, 62, 0.08);
  padding: 1.25rem 1.35rem;
  background: #fff;
}

.product-detail-page .pd-desc h2,
.product-detail-page .pd-desc .h5 {
  font-family: var(--font-shop);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
}

.product-detail-page .pd-related-title {
  font-family: var(--font-shop);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.product-detail-page .pd-related-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 44, 62, 0.08);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.product-detail-page .pd-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.product-detail-page .pd-related-card .card-img-top {
  height: 160px;
  object-fit: cover;
}

.product-detail-page .pd-related-card .card-body {
  padding: 1rem;
}

/** footer **/

footer {
    background: #f8f8f8;
    padding: 90px 0 70px;
}

.logo_footer {
    margin-bottom: 30px;
}

.information_f p {
    margin-bottom: 1.2rem;
    line-height: 25px;
    font-size: 15px;
}

.widget_menu h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin-bottom: 25px;
}

.widget_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_menu ul li {
    float: left;
    width: 100%;
}

.widget_menu ul li a {
    font-size: 15px;
    color: #000;
    margin-bottom: 0;
    float: left;
    width: 100%;
    margin-top: 5px;
}

.field {
    display: flex;
}

.widget_menu {
    float: left;
    width: 100%;
}

div.form_sub .field input[type="email"], div.form_sub .field input[type="email"]:hover, div.form_sub .field input[type="email"]:focus {
    padding: 10px 110px 10px 15px;
    border-radius: 0;
    border: solid #ccc 1px;
    font-size: 14px;
    position: relative;
    box-shadow: none;
    width: 100%;
    height: 48px;
}

.form_sub {
    position: relative;
}

.form_sub input[type="email"] + input[type="submit"] {
    position: absolute;
    right: 0;
    background: #C491A0;
    color: #fff;
    border: none;
    top: 0px;
    font-size: 14px;
    height: 48px;
    font-weight: 600;
    padding: 0 15px;
}

form input {
    background: #fff;
    border: solid #d9d9d9 1px;
    padding: 15px 15px;
    width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: normal;
}

form textarea {
    background: #fff;
    border: solid #d9d9d9 1px;
    padding: 15px 15px;
    width: 100%;
    min-height: 150px;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: normal;
}

form input[type="submit"] {
    border: none;
    padding: 15px 45px;
    width: auto;
    font-size: 16px;
    text-transform: capitalize;
    line-height: normal;
    margin: 0 auto;
    display: flex;
    background: #222;
    color: #fff;
    font-weight: 600;
    transition: ease all 0.1s;
}

form input[type="submit"]:hover,
form input[type="submit"]:focus {
    background: #C491A0;
    color: #fff;
}

.card,
.product-card,
.service-card {
  border-radius: var(--radius-lg) !important;
}

.card:hover,
.product-card:hover,
.service-card:hover {
  box-shadow: var(--shadow-soft);
}

/** cpy **/

.cpy_ {
    background: #222;
    text-align: center;
    padding: 20px 0;
}

.cpy_ p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.cpy_ p a {
  margin: 0;
  color: #C491A0;
  font-size: 15px;
  font-weight: 400;
}


