/* Main Colors */
:root {
  --primary: #d94a8c;
  --primary-light: #f8e1ea;
  --primary-dark: #b13970;
  --text-dark: #333333;
  --text-light: #ffffff;
  --card-bg: #ffffff;
  --border-color: #f0d0dd;
}

/* Global Styles */
body {
  font-family: "Poppins", sans-serif;
  /*background-color: var(--background);*/
  color: var(--text-dark);
  margin: 0;
  padding: 0;
}

/* Header Styles */
.sh-header-main {
  background-color: white;
color:#91006F;
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3) !important;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.sh-header-main .logo img {
  height: 40px;
}

.sh-header-main nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.sh-header-main nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}

/* Announcement Bar */
.sale-extended {
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 5px 0;
  font-size: 12px;
}

/* Hero Banner */
.hero-banner {
  background-color: var(--primary-light);
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hero-banner .content {
  max-width: 50%;
  z-index: 2;
}

.hero-banner h1 {
  font-family: "Playfair Display", serif;
  color: var(--primary-dark);
  font-size: 2.5rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-banner .tagline {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-banner .description {
  margin-bottom: 30px;
  font-size: 14px;
}

.buy-now-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 10px 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-now-btn:hover {
  background-color: var(--primary-dark);
}

/* Decorative Elements */
.decorative-dots {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--primary) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.5;
}

.decorative-line {
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Categories Section */
.sh-categories-container {
  padding: 40px 20px;
  text-align: center;
}

.sh-categories-container > div > h2 {
  display: none !important;
}

.sh-categories-container > div > hr {
  display: none !important;
}

.categories-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.category-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.category-item {
  width: 120px;
  text-align: center;
}

.category-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.category-icon img {
  width: 60%;
  height: auto;
}

.category-name {
  font-size: 14px;
  font-weight: 500;
}

/* Product Cards */
.sh-product-card {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sh-product-card:hover {
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  transform: translateY(-5px);
}

.sh-product-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sh-product-card-content {
  padding: 15px;
}

.sh-product-card-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
}

.sh-product-card-price {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.sh-product-card-discount-tag {
  font-weight: 400 !important;
  border-radius: 0px !important;
  background-color: var(--primary);
  color: white;
  padding: 3px 8px;
  font-size: 12px;
}

.sh-product-discount-tag {
  font-weight: 400 !important;
  border-radius: 0px !important;
  background-color: var(--primary);
  color: white;
  padding: 3px 8px;
  font-size: 12px;
}

.add-to-cart-btn {
  width: 100%;
  background-color: white;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 8px 0;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background-color: var(--primary);
  color: white;
}

.enquire-btn {
  width: 100%;
  background-color: white;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  padding: 8px 0;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enquire-btn:hover {
  background-color: var(--text-dark);
  color: white;
}

/* Product Sections */
.product-section {
  padding: 40px 20px;
}

.section-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 0 auto;
  max-width: 1200px;
}

/* Banner Sections */
.sh-banner-collection-card {
  /*background-color: var(--primary-light);*/
  padding: 10px 10px;
  margin: 10px 0;
  position: relative;
  overflow: hidden;
}

.sh-banner-collection-card > a > div > div > p {
  display: none;
}

.sh-banner-collection-card > a > div > div > p > svg {
  display: none;
}

.banner-content {
  max-width: 50%;
  z-index: 2;
}

.banner-title {
  font-family: "Playfair Display", serif;
  color: var(--primary-dark);
  font-size: 2rem;
  margin-bottom: 10px;
}

.banner-subtitle {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background-color: var(--primary-light);
  padding: 40px 20px;
}

.footer-features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px;
}

.footer-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-feature-text {
  font-size: 14px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: var(--primary);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  margin-top: 20px;
  font-size: 12px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

/* Hide Try Button */
.sh-try {
  display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-banner .content,
  .banner-content {
    max-width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .category-grid {
    gap: 10px;
  }

  .category-item {
    width: 80px;
  }

  .category-icon {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .hero-banner h1,
  .banner-title {
    font-size: 1.5rem;
  }

  .footer-features {
    flex-direction: column;
    align-items: center;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

.section-heading-container {
    margin: 5px 0px;
}
.BannerCollection-component
{
padding:0px 0px !important;

}
/* Main Colors */
:root {
  --primary: #d94a8c;
  --primary-light: #f8e1ea;
  --primary-dark: #b13970;
  --text-dark: #333333;
  --text-light: #ffffff;
  --card-bg: #ffffff;
  --border-color: #f0d0dd;
}

/* Global Styles */
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
}

/* Product Sections */
.product-section {
  padding: 40px 20px;
  background-color: transparent;
}

.section-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 0 auto;
  max-width: 1200px;
}

.payment-options-card-label:first-of-type {
  display: none !important;
}

.wallet-payment-mode-order label:first-child {
  display:none !important;
}