body {
  font-family: "Stack Sans Headline", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
    background: #f6f2f4;
  }
  
  /* ANNOUNCEMENT */
  .announcement {
    background: #8f3051;
    color: white;
    padding: 8px;
  }
  
  
/* HERO */
.hero {
    padding: 80px 0;
    background: linear-gradient(to right, #fff6f8, #f3d6de);
  }
  
  /* HERO CARD (GLASS + GOLD BORDER) */
  .hero-card {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 25px;
  
    /* GOLD OUTLINE */
    border: 1.5px solid rgba(212, 175, 55, 0.6);
  
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  }
  
  /* CENTERED CARD */
  .center-card {
    max-width: 500px;
    margin: auto;
  }
  
  /* BADGE */
  .badge-text {
    border: 1px solid #d96b8a;
    padding: 6px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
  }
  
  /* BUTTONS */
  .btn-main {
    background: #8f3051;
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
  }
  
  .btn-outline-main {
    border: 1px solid #8f3051;
    color: #8f3051;
    border-radius: 30px;
    padding: 10px 20px;
    margin-left: 10px;
  }
  
  /* IMAGES */
  .hero-img {
    width: 60%;
    border-radius: 20px;
  }
  
  .slide-img {
    width: 280px;
    margin-top: 20px;
    border-radius: 15px;
  }
  
  /* CUSTOM ARROWS */
  .custom-arrow span {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(212,175,55,0.6);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #8f3051;
  }
  
  /* POSITION ARROWS */
  .carousel-control-prev {
    left: -40px;
  }
  
  .carousel-control-next {
    right: -40px;
  }
  
  /* INDICATORS */
  .custom-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8f3051;
    opacity: 0.4;
  }
  
  .custom-indicators .active {
    opacity: 1;
    transform: scale(1.2);
  }

  @media (max-width: 768px) {
    .carousel-control-prev {
      left: 10px;
    }
  
    .carousel-control-next {
      right: 10px;
    }
  }


  /* TEXT */
  .brand-title {
    font-family: 'Playfair Display';
    font-size: 48px;
  }
  
  .script-text {
    color: #d96b8a;
    font-style: italic;
  }
  
  .tagline {
    color: #555;
  }
  
  /* BUTTONS */
  .btn-main {
    background: #8f3051;
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
  }
  
  .btn-main:hover {
    background: #732743;
  }
  
  .btn-outline-main {
    border: 1px solid #8f3051;
    color: #8f3051;
    border-radius: 30px;
  }
  
  .btn-outline-main:hover {
    background: #8f3051;
    color: white;
  }
  
  /* CATEGORY */
  .section-title {
    color: #8f3051;
    letter-spacing: 2px;
  }
  
  .category-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
  }
  
  .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(143,48,81,0.2);
  }
  
  /* ABOUT */
  .about span {
    color: #8f3051;
  }
  
  .about-img {
    width: 100%;
    border-radius: 20px;
  }
  

  .features {
    background: transparent;
  }
  
  /* ITEM */
  .feature-item {
    position: relative;
    padding: 20px;
  }
  
  /* ICON CIRCLE */
  .icon-circle {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: rgba(143, 48, 81, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon-circle i {
    color: #8f3051;
    font-size: 20px;
  }
  
  /* TEXT */
  .feature-item h6 {
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .feature-item p {
    font-size: 13px;
    color: #666;
  }
  
  /* VERTICAL SEPARATORS (DESKTOP ONLY) */
  @media (min-width: 768px) {
    .feature-item:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: linear-gradient(
        to bottom,
        transparent,
        rgba(143,48,81,0.4),
        transparent
      );
    }
  }
  
  /* HOVER EFFECT */
  .feature-item:hover .icon-circle {
    transform: translateY(-4px);
    transition: 0.3s;
  }
  
/* FOOTER */
.footer {
  background: #8f3051;
  color: white;
  padding: 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #f5d0dc; /* soft pink/gold tone */
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-brand {
  font-size: 14px;
  letter-spacing: 0.5px;
}
  .navbar {
    background-color: #fff !important;
    border: solid 2px #8f3051 !important;
  }



  .navbar-toggler {
    border: none;
    font-size: 28px;
    color: #8f3051 !important; /* gold */
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }



  .navbar ul li a{
    color: #8f3051!important;
        margin: 5px;
        font-size: 20px;
  }


  .navbar ul li a:hover{
    color: black !important;
  }

  .navbar-brand {
    color: black !important;

  }


  .navbar .dropdown-item:hover {
  color: black !important;
  background-color: inherit;
  border-color: black !important;
  }


  .navbar-brand img {
    width: 80px;
   height: 84px;
   margin-top: 0px;
  }

   .dropdown-menu {
    background-color: #fff!important;

  }


  .navbar .dropdown-item:hover {
  color: black !important;
  background-color: inherit;
  border-color: black !important;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-image: none; /* remove default */
    width: 40px;
    height: 40px;
    background-color: #8f3051; 
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
  }
  
  .carousel-control-prev-icon {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M11 1 3 8l8 7'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M11 1 3 8l8 7'/%3E%3C/svg%3E") no-repeat center;
  }
  
  .carousel-control-next-icon {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M5 1l8 7-8 7'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M5 1l8 7-8 7'/%3E%3C/svg%3E") no-repeat center;
  }


  .shop-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 500;
    text-decoration: none;
    color: #8f3051; /* gold */
    transition: 0.3s;
  }
  
  .shop-link:hover {
    color: #000;
    transform: translateX(5px);
  }


  .ec-cart-widget {
    cursor: pointer;
    color: #8f3051 !important;
  }
  
  #my-search-63589624 {
    max-width: 200px;
  
  }

  
  /* SOCIAL ICONS */

  .social-icons {
    margin-top: 10px;
  }
  
  .social-icons a {
    color: white;
    font-size: 18px;
    margin: 0 8px;
    transition: 0.3s;
  }
  
  .social-icons a:hover {
    color: #f5d0dc; /* soft highlight */
    transform: translateY(-3px);
  }


  /* searchbar */

  html#ecwid_html body#ecwid_body .ecwid-search-widget__input {
    width: 220px;
    padding: 8px 14px;
    border-radius: 25px;
    border: 1px solid #8f3051 !important; /* gold */
    outline: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  /* focus glow */
  html#ecwid_html body#ecwid_body .ecwid-search-widget__input:focus {
    border-color: #8f3051 !important;
    box-shadow: 0 0 8px rgba(143, 48, 81, 0.3) !important;
  }
  
  /* placeholder */
  html#ecwid_html body#ecwid_body .ecwid-search-widget__input::placeholder {
    color: #8f3051;
  }

  html#ecwid_html body#ecwid_body .ec-minicart--m .ec-minicart__count, html#ecwid_html body#ecwid_body .ec-minicart--m .ec-minicart__subtotal, html#ecwid_html body#ecwid_body .ec-minicart--l .ec-minicart__count, html#ecwid_html body#ecwid_body .ec-minicart--l .ec-minicart__subtotal, html#ecwid_html body#ecwid_body .ec-minicart--xl .ec-minicart__count, html#ecwid_html body#ecwid_body .ec-minicart--xl .ec-minicart__subtotal, html#ecwid_html body#ecwid_body .ec-minicart--xxl .ec-minicart__count, html#ecwid_html body#ecwid_body .ec-minicart--xxl .ec-minicart__subtotal {
    color: #8f3051 !important;
}


/* POPUP BACKGROUND */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 9999;
}

.popup.show {
  visibility: visible;
  opacity: 1;
}

.popup-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* IMAGE POPUP BOX */
.image-popup {
  background: transparent;
  border-radius: 15px;
  position: relative;
  animation: fadeInUp 0.4s ease;
}

/* IMAGE STYLE */
.popup-img {
  width: 320px;
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.popup-img:hover {
  transform: scale(1.03);
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: white;
  border-radius: 50%;
  padding: 5px 10px;
  font-size: 18px;
  cursor: pointer;
}

/* ANIMATION */
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrollbar width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: #f8f5f7; /* soft light tone */
}

/* Scroll thumb (the moving part) */
::-webkit-scrollbar-thumb {
  background: #8f3051; /* your brand color */
  border-radius: 10px;
  border: 2px solid #f8f5f7;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #a84467;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8f3051, #c97a95);
  border-radius: 20px;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #8f3051 #f8f5f7;
}

.blog-section {
  background: #fdf8f9;
}

.blog-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-img {
  width: 100%;
  height: 320px; /* 👈 increase height for that tall look */
  object-fit: cover; /* 👈 crops instead of stretching */
  object-position: center; /* keeps center focus */
  display: block;
}


.blog-body {
  padding: 20px;
}

.blog-title {
  font-weight: 600;
  font-size: 18px;
  color: #333;
}

.blog-excerpt {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}

.blog-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 18px;
  border: 1px solid #8f3051;
  color: #8f3051;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.blog-btn:hover {
  background: #8f3051;
  color: white;
}