/* Custom CSS for PuppyCake Website */

@font-face {
  font-family: 'AvenirLTSd-Black';
  src: url('./fonts/AvenirLTSd-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --pink-dark: #f2208e;
  --pink-500: #c22e77;
  --pink-600: #db2777;
  --yellow-400: #fbbf24;
  --yellow-500: #f59e0b;
  --purple-500: #8b5cf6;
  --purple-600: #7c3aed;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-900: #111827;
  --pink-color: #ca2276;
  --light-pink-hover: #ff85c1;
  --dark-pink: #c74d8b;
  --pink-color: #ff6b9a;
  --contact-section-bg: #fff0f5;
  --gray-100: #eaeaea;
  --gray-900: #1f1f1f;
  --card-bg: #ffffff;
  --marquee-speed: 36s;
  --text-gap: 64px;
}

body h1, h2 {
  font-family: 'Cooper Hewitt', 'Avenir', sans-serif;
  line-height: 1.6;
}

h3, h4, h5, h6 {
  font-family: 'Cooper Hewitt', 'Avenir', sans-serif;
}

body, p, a, li, strong, input {
  font-family: 'Cooper Hewitt', 'Avenir', sans-serif;
}



html, body {
  height: 100%;
  margin: 0;
}

main {
  flex: 1;
}

.brand-text {
  font-weight: 700;
  font-size: 2rem;
  font-family: 'Cooper Hewitt', 'Avenir', sans-serif;
}


.xt-gradient {
  background: linear-gradient(135deg, var(--pink-500), var(--yellow-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Promo Banner */
.promo-banner {
  background: linear-gradient(90deg, #87ceeb, #ff69b4);
  height: 2.7rem;
  overflow: hidden;
  position: relative;
}

.light-bg {
  background: linear-gradient(135deg, #fff, var(--pink-light));
}

.slider-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 100%;
}

.promo-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 10s linear infinite;
  color: #ffffff;
  font-weight: bold;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 576px) {
  .promo-banner {
    height: 2.5rem;
  }

  .promo-text {
    font-size: 0.67rem;
  }
}


/* Logo */
.logo-circle {
  /* width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--pink-500), var(--yellow-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.header-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23FFFFFF" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,170.7C384,160,480,160,576,149.3C672,139,768,117,864,138.7C960,160,1056,224,1152,240C1248,256,1344,224,1392,208L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
  background-size: cover;
  z-index: 1;
  opacity: 0.8;
}

.logo-circle img {
  /*  height: 36px;*/
}
/* Navigation */
.nav-icon {
  color: #6b7280;
  font-size: 1.125rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-icon:hover {
  color: var(--pink-500);
}

.cart-badge {
  position: absolute;
  top: 3px;
  right: 0px;
  background: var(--pink-500);
  color: white;
  font-size: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  /* Position the submenu relative to its parent */
  .dropdown-submenu {
    position: relative;
  }

  /* Initially hide nested dropdown menu and position it to the right of its parent */
  .dropdown-submenu > .dropdown-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%; /* Align to the right of parent */
    background-color: white;
    border: 1px solid #ddd;
    min-width: 200px;
    z-index: 1000;
  }

  /* Show nested submenu when hovering over the parent .dropdown-submenu */
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }

  /* Show first-level dropdown when hovering over .nav-item.dropdown */
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .nav-item{
    letter-spacing: 0.04rem;
  }
  .nav-item .dropdown-item{
    letter-spacing: 0.04rem;
  }
  .dropdown-menu.dropdown-menu-end {
    min-width: 31.25rem;
  }
}
/* Base dropdown menu transition (used for fade in/out effect)
.dropdown-menu {
transition: all 0.3s ease-in-out;
opacity: 0;
visibility: hidden;
}

/* Fade in effect for dropdown menu on hover
.nav-item.dropdown:hover .dropdown-menu {
opacity: 1;
visibility: visible;
}
*/

/* Style Adjustments */
.mega-menu {
  min-width: 300px;
  background-color: #ffffff;
  border-radius: 4px;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  border: 1px solid #ced4da;
  border-radius: 25px;
  padding: 8px 15px;
  padding-right: 40px;
  width: 0;
  opacity: 0;
  visibility: hidden;
  transition: width 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.search-input.active {
  width: 200px;
  opacity: 1;
  visibility: visible;
}

.search-icon-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.search-icon-btn i {
  font-size: 1.2rem;
  color: #555;
  transition: color 0.2s ease-in-out;
}

.search-icon-btn i:hover {
  color: var(--pink-color);
}

/* Mobile spacing and full width search */
@media (max-width: 991.98px) {
  .navbar-collapse input.form-control {
    border-radius: 50px;
    width: 100%;
  }

  .cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 50%;
    color: white;
  }

  .nav-icon {
    font-size: 1.2rem;
    cursor: pointer;
  }

  /* NEW: Move icons to new line and center them */
  .nav-icons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
  }

  .search-wrapper {
    margin-bottom: 1rem;
  }
}

/* Hero Section */
.hero-section {
  object-fit: fill;
  background-size: cover;
  background-image: url(https://puppycake.americommerce.com/Shared/images/2675924_backgroundforwebsitebanner_option1_102925.png);
  background-repeat: no-repeat;
  padding-top: 6.2rem;
}

.hero-decorations {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.6;
}

.decoration-1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 5rem;
  height: 5rem;
  background: #fcd34d;
  animation: bounce 2s infinite;
}

.decoration {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  opacity: 0.9;
}

.decoration-1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 6rem;
  height: 6rem;
  background: #fcd34d;
  animation-name: float1;
}

.decoration-2 {
  top: 4rem;
  right: 5rem;
  width: 5rem;
  height: 5rem;
  background: #f472b6;
  animation-name: float2;
}

.decoration-3 {
  bottom: 2rem;
  left: 25%;
  width: 4.5rem;
  height: 4.5rem;
  background: #c084fc;
  animation-name: float3;
}

.icon {
  font-size: 2rem;
  z-index: 2;
  opacity: 1;
  animation: pop 2s infinite;
}

/* Smooth floating animations */
@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Icon bounce/pulse effect */
@keyframes pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}


@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .decoration-1 {
    width: 5rem;
    height: 5rem;
    top: 4px;
    left: 186px;
  }
  .decoration-2 {
    top: 118px;
    width: 4rem;
    height: 4rem;
  }

  .decoration-3 {
    top: 382px;
    left: 14px;
  }
}

.hero-badge {
  background: #fef3c7 !important;
  color: #92400e !important;
  border: 1px solid #f9fafb;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

.hero-description {
  font-size: 1.25rem;
  color: #374151;
  line-height: 1.6;
}

.btn-gradient,
.profMenu-logout .MyAccountLogoutThemeButton
{
  background: linear-gradient(135deg, #ef50a0, #58bbe4);
  border: none;
  color: white;
  font-weight: 100;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-family: 'Cooper Hewitt', 'Avenir', sans-serif;
  letter-spacing: 0.4px;
}

.btn-gradient:hover,
.spinnerBtn:hover,
.profMenu-logout .MyAccountLogoutThemeButton:hover
{
  background: linear-gradient(to right, #ff71b8, #83dbff);
  border: none;
  color: white;
  font-weight: 100;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transform: translateY(-2px) scale(1.02);
  font-family: 'Cooper Hewitt', 'Avenir', sans-serif;
  letter-spacing: 0.4px;
}

.btn-gradient-list {
  background: linear-gradient(135deg, #ef50a0, #58bbe4);
  border: none;
  color: white;
  font-weight: 100;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-family: 'Cooper Hewitt', 'Avenir', sans-serif;
  letter-spacing: 0.3px;
  height: 48px;
  width: 150px;
  border-radius: 8px
}

.btn-gradient-list:hover {
  background: linear-gradient(to right, #ff71b8, #83dbff);
  border: none;
  color: white;
  font-weight: 100;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transform: translateY(-2px) scale(1.02);
  font-family: 'Cooper Hewitt', 'Avenir', sans-serif;
  letter-spacing: 0.3px;
  height: 48px;
  width: 150px;
  border-radius: 8px
}

.btn-outline-pink {
  border: 2px solid #fce7f3;
  color: var(--pink-500);
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-outline-pink:hover {
  background: #fdf2f8;
  border-color: #fce7f3;
  color: var(--pink-500);
}

.hero-image-container {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 1.5rem;
  /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.05);
}

.review-card {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #fbbf24;
}

.celebration-icon {
  position: absolute;
  top: 0rem;
  right: 7rem;
  background: linear-gradient(135deg, var(--pink-500), var(--yellow-400));
  color: white;
  padding: 0.75rem;
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite;
}

@media (max-width: 767px) {
  .celebration-icon {
    right: 47px;
  }
}

/* Trust Badges */
.trust-badge {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 0.5rem;
}

/* Section Styling */
.faq-section {
  background: linear-gradient(145deg, #ffe4ec, #e0eaff);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.faq-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gray-900);
  text-shadow: 2px 2px 4px rgba(235, 85, 85, 0.05);
}

.faq-section .section-title .emoji {
  font-size: 2.5rem;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.section-description {
  font-size: 1.1rem;
  letter-spacing: 0.04rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 300;
}

/* Accordion Item Styling */
.accordion-item {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
}

.accordion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.accordion-header {
  border-bottom: none;
}

.faq-button {
  background-color: transparent;
  color: var(--gray-900);
  font-weight: 600;
  font-size: 1.15rem;
  padding: 1.2rem 1.5rem;
  border: none;
  text-align: left;
  width: 100%;
  border-radius: 1rem;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  position: relative;
}

.faq-button:not(.collapsed) {
  background-color: var(--pink-500);
  color: #ffffff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 4px 10px rgba(var(--pink-500), 0.3);
}

.faq-button::after {
  font-family: 'Cooper Hewitt', 'Avenir', sans-serif;
  font-weight: 900;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease-in-out;
  color: var(--gray-900);
  font-size: 0.9rem;
}

.faq-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg);
  color: #ffffff;
}

/* Ensure no ugly focus outline */
.faq-button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.faq-icon {
  color: var(--pink-600);
  transition: color 0.3s ease-in-out;
}

.faq-button:not(.collapsed) .faq-icon {
  color: var(--pink-500);
}

.accordion-body {
  padding: 1.5rem;
  background-color: #ffffff;
  border-top: 1px solid var(--gray-100);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Custom Animate.css delays */
.animate__delay-1-5s { animation-delay: 1.5s; }
.animate__delay-2-5s { animation-delay: 2.5s; }

.faq-section::before,
.faq-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: rgba(var(--pink-500), 0.1);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.faq-section::before {
  top: 5%;
  left: -10%;
  animation: float-faq1 10s infinite ease-in-out;
}

.faq-section::after {
  bottom: 10%;
  right: -10%;
  animation: float-faq2 12s infinite ease-in-out reverse;
}

@keyframes float-faq1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 40px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes float-faq2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -40px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Product Cards */

/* Features Section */
.features-bg {
  background: linear-gradient(145deg, #ffe4ec, #e0eaff);
}

.feature-card {
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #fce7f3, #fef3c7);
  color: var(--pink-500);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.product-card {
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.product-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 470px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-sale {
  background: #dc2626;
  color: white;
}

.badge-new {
  background: #059669;
  color: white;
}

.badge-bestseller {
  background: #2563eb;
  color: white;
}

.badge-grid{
  background-color: #ef6fa6;
  color: white;
  padding: 3px;
  border-radius: 6px;
  position: relative;
  left: 97px;
  bottom: 267px;
  font-size: 12px;
}

.badge-list{
  background-color: #ef6fa6;
  color: white;
  padding: 3px;
  border-radius: 6px;
  position: relative;
  left: -15px;
  bottom: 50px;
  font-size: 12px;
}

.wishlist-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 0.375rem;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.wishlist-btn:hover {
  background: rgb(138, 94, 94);
  color: var(--pink-500);
}

.product-stars {
  color: #fbbf24;
  font-size: 0.75rem;
}

.product-carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 1rem;
}

.product-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.product-col {
  flex: 0 0 calc(25% - 0.75rem); /* Show 4 items */
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  .product-col {
    min-width: 32.25%;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .product-col {
    min-width: 50%;
  }
}

@media (max-width: 767.98px) {
  .product-col {
    min-width: 100%;
  }
}


/* FAQ Section */
.accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.accordion-button {
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
  color: var(--pink-500);
  background: #fdf2f8;
}

.accordion-button:focus {
  border-color: var(--pink-500);
  box-shadow: 0 0 0 0.25rem rgba(236, 72, 153, 0.25);
  border-radius: 0;
}

.accordion-body {
  padding: 1.5rem;
  color: #6b7280;
}

/* Instagram Section */
.instagram-bg {
  background: linear-gradient(to right, #df5a81, #f8d0ff);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.instagram-carousel {
  overflow: hidden;
  position: relative;
}

.instagram-track {
  display: flex;
  gap: 1rem;
}


.instagram-post {
  flex: 0 0 auto;
  width: 120px;
  background: linear-gradient(135deg, #ffffff, #fff0f5);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 5px;
}

.instagram-post:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.instagram-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.instagram-card:hover {
  box-shadow: 0 20px 25px -5px rgba(182, 10, 10, 0.1);
}

.instagram-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.instagram-caption {
  padding: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.crt-load-more {
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  border: none;
  color: white !important;
  font-weight: 600;
  padding: 0.75rem 2rem !important;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}


/* Responsive Tweaks */

/* Tablets and small desktops */
@media (max-width: 1024px) {
  .instagram-post {
    width: 100px;
  }
}
@media (max-width: 992px) {
  .hero-image-container {
    padding-top: 3rem;
  }
  .hero-section {
    padding-top: 3.1rem;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .instagram-track {
    animation-duration: 10s;
    width: 100%;
  }
  .content-top-margin {
    margin-top: 35px;
  }
  .review-card {
    left: 0rem;
  }
}
@media (min-width: 768px) {
  .content-top-margin {
    margin-top: 70px;
  }
}
/* Extra small screens */
@media (max-width: 480px) {
  .instagram-post {
    width: 80px;
  }
}

/* Newsletter Section */
.newsletter-updated-bg {
  background: linear-gradient(145deg, #ffe4ec, #e0eaff);
  border-radius: 0.75rem;
}

/* Form wrapper */
.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

/* Input style */
.newsletter-input-light {
  background-color: white;
  border: 2px solid #e0b3d7;
  color: #444;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem 0 0 0.5rem;
}

.newsletter-input-light::placeholder {
  color: #aaa;
}

.newsletter-input-light:focus {
  border-color: #d66ba0;
  box-shadow: 0 0 0 0.2rem rgba(214, 107, 160, 0.25);
  outline: none;
}

/* Button */
.btn-subscribe {
  background: linear-gradient(135deg, #ff6fb5, #ffa3cb);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 0 0.5rem 0.5rem 0 !important;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background: linear-gradient(135deg, #f054a7, #ff91c3);
  color: white;
}


/*Blog */
/* Core Styles */
.featured-content-section {
  background: linear-gradient(to bottom, var(--feature-gradient-start, #fff0f5), var(--feature-gradient-end, #ffe6ee));
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.featured-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
}

.featured-title i{
  color: var(--pink-600);
}

.featured-title :hover{
  transition: transform 0.3s ease;
  transform: scale(1.2) rotate(10deg);
}
.text-pink {
  color: var(--pink-500);
}

.featured-description {
  font-size: 1.1rem;
  color: #555;
  max-width: 500px;
  margin-inline: auto;
}

.left-content-wrapper {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  height: 100%;
  border-radius: 1rem;
}

.left-image-container {
  height: 180px;
  background-color: #f8f9fa;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.left-image-container img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* Hover Zoom Effect */
.hover-zoom img {
  transition: transform 0.5s ease;
}
.hover-zoom:hover img {
  transform: scale(1.1);
}

/* Card Scale on Hover */
.featured-content-section .left-content-wrapper,
.featured-content-section .right-image-wrapper {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featured-content-section .left-content-wrapper:hover,
.featured-content-section .right-image-wrapper:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


.right-image-wrapper {
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
}

.right-image-wrapper img {
  object-fit: cover;
  width: 636px;
  height: 570px;
}

/* Floating blobs (optional) */
.featured-content-section::before,
.featured-content-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 105, 180, 0.07);
  border-radius: 50%;
  filter: blur(55px);
  z-index: 0;
  pointer-events: none;
}

.featured-content-section::before {
  top: 20%;
  left: -5%;
  animation: float-feature1 11s infinite ease-in-out;
}

.featured-content-section::after {
  bottom: 15%;
  right: -5%;
  animation: float-feature2 13s infinite ease-in-out reverse;
}

@keyframes float-feature1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, 35px) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes float-feature2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, -35px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Responsive Fixes */
@media (max-width: 991.98px) {
  .left-image-container {
    height: 150px;
  }

  .featured-title {
    font-size: 2rem;
  }

  .featured-description {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .left-image-container {
    height: 120px;
  }
}

/* Footer */
.footer-dark {
  background: linear-gradient(160deg, #181b34, #2e1d33, #1d1124);
  color: white;
}

.footer-link {
  text-decoration: none;
  color: #b3afaf;
  transition: all 0.3s ease;
  letter-spacing: 0.05rem;
}

.footer-link:hover {
  color: var(--pink-500);
  text-decoration: underline;
}



.btn-pink-dark {
  background: var(--pink-dark);
  color: white;
  font-weight: 600;
  border: none;
}
.btn-pink-dark:hover {
  background: var(--pink-dark);
  color: white;
}

.btn-pink {
  background: linear-gradient(135deg, #ff69a6, #ff89bb);
  color: white;
  font-weight: 600;
  border: none;
}

.btn-pink:hover {
  background: linear-gradient(135deg, #ff508e, #ff76aa);
  color: white;
}

/* Toggel button */
.btn.active {
  background-color: #333;
  color: #ffffff;
}

.view-toggle-group .btn-view-toggle {
  background-color: #ffffff;
  border: 1px solid var(--gray-100);
  color: var(--gray-900);
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin: 0.25rem;
}

.view-toggle-group .btn-view-toggle:hover {
  background-color: var(--gray-50);
  border-color: var(--pink-color);
  color: var(--pink-color);
  box-shadow: 0 4px 10px rgba(var(--pink-color), 0.1);
}

.view-toggle-group .btn-view-toggle.active {
  background: linear-gradient(45deg, var(--pink-500), var(--pink-600));
  border-color: var(--pink-600);
  color: white;
  box-shadow: 0 4px 10px rgba(var(--pink-500), 0.2);
}

.view-toggle-group .btn-view-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--pink-color), 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .instagram-post {
    flex: 0 0 100%;
  }

  .carousel-btn {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/* Utility Classes */
.min-vh-75 {
  min-height: 75vh;
}

.bg-gray-50 {
  background-color: var(--gray-50);
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.bg-pink {
  background-color: #b73a78 !important; /* similar to your screenshot */
}

.trust-section .icon-box {
  transition: transform 0.3s ease;
}
.trust-section .icon-box:hover {
  transform: translateY(-5px);
}

.icon-img {
  width: 70px;
  height: auto;
  filter: brightness(0) invert(1);
}

.trust-section h2 {
  font-size: 1.8rem;
  font-weight: 300;
}

.trust-section h6 {
  font-size: 1rem;
  font-weight: 600;
}

.trust-section {
  background-color: white;  
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.trust-section h2 {
  font-weight: 300;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.icon-box {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--gray-900);
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.icon-img {
  max-width: 50px;
  margin-bottom: 1rem;
}

.btn.btn-light {
  background-color: var(--yellow-400);
  border: none;
  color: var(--gray-900);
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn.btn-light:hover {
  background-color: var(--yellow-500);
}

.boop-section {
  background: linear-gradient(135deg, var(--pink-500), var(--purple-600));
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.boop-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.boop-text {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.boop-icon {
  font-size: 4rem;
  transition: transform 0.3s ease;
}

.boop-icon:hover {
  transform: scale(1.2) rotate(10deg);
}

.boop-handle {
  font-size: 1.5rem;
  color: #c80f62;
  font-weight: bold;
}

@media (min-width: 768px) {
  .boop-content {
    flex-direction: row;
    justify-content: center;
    font-size: 2.5rem;
  }

  .boop-text {
    font-size: 2.5rem;
  }

  .boop-handle {
    font-size: 2rem;
  }
}

.clearance-section {
  background: linear-gradient(to right, rgb(223, 90, 129), rgb(248, 208, 255));
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.clearance-section .section-title {
  color: black;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.FeaturedItemsThumbnail {
  transition: transform 0.3s ease;
}
.card:hover .FeaturedItemsThumbnail {
  transform: scale(1.05);
}

.products-header {
  background: linear-gradient(90deg, #c1e0ec, #ee80b7);
  padding: 2rem 0;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.products-page{
  background: linear-gradient(to bottom, var(--feature-gradient-start, #fff0f5), var(--feature-gradient-end, #ffe6ee));
}

/* Sidebar Styles */
#category-filters button {
  text-align: left;
  font-weight: 300;
  letter-spacing: 0.04rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  background-color: #ffffff;
  color: #333;
  padding: 8px 16px;
}

#category-filters button.active {
  background: linear-gradient(135deg, #ff6fb5, #ffa3cb);
  color: #ffffff;
  border-color: transparent;
}

#category-filters button:hover:not(.active) {
  background: linear-gradient(135deg, #ffe0f0, #ffd6ec);
  color: #e83e8c;
  border-color: #f9b8d0;
}
.page-btn,
.pageNav-pagination-next,
.pageNav-pagination-prev {
  background: linear-gradient(135deg, #ff6fb5, #ffa3cb);
  color: white;
  border: none;
  border-radius: 6px;
}
.page-item{
  color: #ff6fb5;
}

.corner-ribbon {
  width: 150px;
  background: #f2208e;
  color: #ffffff;
  text-align: center;
  line-height: 25px;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
  position: absolute;
  top: -25px;
  left: -80px;
  transform: rotate(-45deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
  padding: 4px 0;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  #listViewBtn {
    display: none !important;
  }
}


/* About Page */

.about-us-header img {
  width: 100%;
  height: auto;
  display: block;
}

.about-us-content p {
  letter-spacing: 0.04rem;
  font-weight: 300;
}

.video-wrapper {
  background-color: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.video-wrapper video {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.footer-img{
  width: 100%;
}


/* Header Section */
.contact-header {
  background: linear-gradient(90deg, #c1e0ec, #ee80b7);
  padding: 6rem 0;
  color: white;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  /* position: relative;
  overflow: hidden; */
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.contact-header .container {
  z-index: 2;
  position: relative;
}

.contact-header h1 {
  font-weight: 700;
}

.contact-header .section-description {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Cards */
.contact-page-content {
  background-color: var(--contact-section-bg);
}

.contact-info-card, .contact-form-card {
  background-color: var(--card-bg);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
}

.contact-info-card:hover, .contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.contact-title {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 2px solid var(--gray-100);
  padding-bottom: 0.5rem;
  color: var(--gray-900);
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-icon {
  font-size: 1.8rem;
  color: var(--pink-color);
  min-width: 40px;
  text-align: center;
}

.info-item h6 {
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.info-item p {
  color: #555555;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.04rem;
}

.info-item-a a{
  color: #555555;
  font-weight: 300;
}

.social-links .social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--gray-100);
  color: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: white;
  background-color: #555;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: #000;
}

/* Optional: Brand-specific colors */
.social-icon.pinterest:hover,
.social-icon.facebook:hover,
.social-icon.instagram:hover,
.social-icon.twitter:hover {
  border: 2px solid;
  border-radius: 50%;
  background: white;
  color: #bd081c;
}

/* Contact Form */
.form-label {
  font-weight: 300;
  letter-spacing: 0.04rem;
}

.form-control,
.mobile-search-group .SearchBox2 {
  border-radius: 0.5rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-100);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-control:focus,
.mobile-search-group .SearchBox2:focus {
  border-color: var(--pink-color);
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 154, 0.25);
}

/* Map */
.map-section {
  background-color: var(--contact-section-bg);
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.map-container {
  height: 450px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-image{
  height: 212px;
}

.row.equal-height {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

#btnSearchBox1,
#btnSearchBox2 {
  margin-right: 5px;
  padding: 0px 15px 0px 15px;
  background: linear-gradient(135deg, #ef50a0, #58bbe4);
  border: none;
  color: white !important;
  font-family: 'Cooper Hewitt', 'Avenir', sans-serif;
  font-weight: 100;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  letter-spacing: 0.4px;
  margin-left: 5px;
}

.custom-search {
  border: none;
  box-shadow: none;
  padding: 0;
}
.dropdown-submenu .dropdown-menu {
  padding: 3px 20px;
}
.mt-4-0 {
  margin-top: 4.0rem;
}
a.crt-logo.crt-tag {display: none !important;}

a {
  color: var(--pink-500);
  text-decoration: none;
}
a:hover {
  color: var(--pink-500);
}
.nav-item .dropdown-menu {
  padding: 3px 20px;
}
.navbar .show {
  display: block !important;
}
.mobile-search-group {
  width: 100%;
  /*  max-width: 280px; */
}
p {
  letter-spacing: 0.04rem;
}
.g-recaptcha {
  transform: scale(0.85); /* scale it down */
  transform-origin: 0 0;
}
@media (max-width: 768px) {
  .dropdown-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    max-height: 30vh;
    overflow-y: auto;
    z-index: 1050;
  }
  .dropdown-menu.show {
    position: absolute;
    display: block; /* show when .show class is added by Bootstrap */
  }
  .mt-4-0 {
    margin-top: 3.6rem;
  }
}

body.CMS-230 .ac-content-page, body.CMS-230 .LayoutContentInner {display: flex;flex-wrap: wrap;align-items: stretch;}
.Control_8900 { width: 40%;}
.Control_8898 { width: 100%;}

/* Header Section */
.contact-us-header {
  background: linear-gradient(90deg, #c1e0ec, #ee80b7);
  color: white;
  position: relative;
}

.contact-us-header p,
.contact-us-header h1 {
  color: white;
}

/* Contact Cards */
.contact-info-card, .Control_8899 {
  background-color: var(--card-bg);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-info-card {
  margin: 0rem 0 0rem 4.2rem;
}

/*.Control_8899 {
margin: 3rem 4.875rem 3rem 2.188rem;
width: 51%;
} */

#dvWrapControl8899 {
  width: 60%;
}

.contact-us-custom {
  padding-right: 4.95rem;
  padding-left: 1rem;
  width: 100%;
}

.contact-info-card:hover, .Control_8899:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Base styles remain unchanged above */

/* Medium Devices (Tablets and below) */
@media (max-width: 767.98px) {
  .contact-header {
    padding: 4rem 1rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    text-align: center;
  }

  .contact-header h1 {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .contact-info-card,
  .Control_8899 {
    padding: 1.5rem;
  }

  .contact-title {
    font-size: 1.5rem;
  }

  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .info-item h6 {
    font-size: 1rem;
  }

  .contact-icon {
    font-size: 1.4rem;
    width: 30px;
  }

  .social-icons {
    justify-content: flex-start;
    gap: 10px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .btn-gradient {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .map-container {
    height: 300px;
  }
  #dvWrapControl8899 {
    width: 100%;
  }
}

/* Small Devices (Phones) */
@media (max-width: 576px) {
  .contact-info-card,
  .Control_8899 {
    margin-bottom: 1.5rem;
  }

  .section-description {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .social-icons {
    flex-wrap: wrap;
    gap: 8px;
  }

  .social-icon {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .Control_8900 { width: 100%;}
  .contact-info-card { margin: 0px; }

  .contact-us-custom {
    width: 100%;
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  #mainContent {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

.px-mobile {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

/* Find us page */
.find-us-header {
  background: linear-gradient(90deg, #c1e0ec, #ee80b7);
  color: white;
  position: relative;
}
.location-details-card {
  background: #fff;
  border-radius: 1rem;
  padding: 30px;
}
.map-container img {
  border-radius: 1rem;
  max-height: 100%;
  object-fit: cover;
}

.wholesale-section {
  background: #f2789f;
  color: white;
}

.btn-light-outline-white {
  color: white;
  border: 2px solid white;
  background: transparent;
}

.btn-light-outline-white:hover {
  background: white;
  color: #f2789f;
}
.flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.card-block {
  flex: 1 1 45%;
  min-width: 300px;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.find-us-header .section-description {
  font-size: 1.125rem;
  color: #fff;
}


.product-header {
  background: linear-gradient(90deg, #c1e0ec, #ee80b7);
  color: white;
  position: relative;
}

.quick-view-btn {
  background: linear-gradient(135deg, #f054a7, #ff91c3);
  color: white;
  border: none;
}
.AverageReviewRatings .StarRatings {
  margin:auto;
}
.pageNav-pagination-next a{
  color: white;
}
.pageNav-pagination li:not(:first-child):not(:last-child) a {
  color: #ff6fb5;
}


/*  Login New page css */
.card-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
}

.user-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.user-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: #ff4b91;
}

.user-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255, 75, 145, 0.1), rgba(78, 205, 196, 0.1));
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;

  /* Fix button click issue */
  pointer-events: none;
}

.user-card:hover::before {
  opacity: 1;
}

.card-title {
  font-family: 'Cooper Hewitt', 'Avenir', sans-serif;
  font-size: 2rem;
  color: var(--pink-600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.card-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.action-link {
  color: #ff4b91;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.action-link:hover {
  color: #d43f7b;
}

/* Responsive Layout */
@media (min-width: 768px) {
  .card-container {
    flex-direction: row;
    gap: 3rem;
  }
  .user-card {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .card-title {
    font-size: 1.5rem;
  }
  .card-text {
    font-size: 0.9rem;
  }
  .btn {
    padding: 0.65rem 1.8rem;
  }
  .pageNav-pagination {
    display: flex;
    flex-wrap: nowrap; /* prevent wrapping */
    overflow-x: auto; /* allow horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
    gap: 0.25rem;
    padding: 0.5rem 0;
  }

  .pageNav-pagination li {
    flex: 0 0 auto; /* keep li items from shrinking */
  }

  .pageNav-pagination::-webkit-scrollbar {
    height: 6px;
  }

  .pageNav-pagination::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 3px;
  }
}
.amazonpay-button-inner-image { width: 85%; max-height: unset !important; }

.step-icon {
  font-size: 1.5rem;
  color: #880e4f;
  margin-right: 0.5rem;
}

.form-control-custom::placeholder {
  color: #6c757d;
}
.thumbnail img, .Slideshow img, #imgMfgLogo, img { max-width: 100%; }

.text-gradient {
  background: linear-gradient(135deg, var(--pink-500), var(--yellow-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 992px) {
  .ProductDetails-photosAreaWrapper {
    margin-right: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .mini-cart-toast {
    right: 25% !important;
    width: 50% !important;
  }
}

.mini-cart-toast {
  position: fixed;
  bottom: 25%;
  right: 5%;
  width: 90%;
  max-height: 55%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  padding: 12px;
  z-index: 1055;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.mini-cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}
.mini-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.mini-cart-header strong {
  font-size: 1rem;
}
.mini-cart-body {
  font-size: 13px;
  overflow-y: auto;
}
.mini-cart-footer {
  margin-top: 6px;
  text-align: right;
}
.close-btn {
  background: transparent;
  border: none;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
}

.mt-6-0 {
  margin-top: 6rem !important;
}

.logo-marquee {
  position: relative;
  background: var(--pink-500, #ec4899);
  padding: 25px 0;
  margin-top: 5rem;
}

.featured-title-banner {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink-500, #ec4899);
  clip-path: polygon(0 100%, 20% 0, 80% 0, 100% 100%);
  padding: 9px 40px;
  z-index: 2;
}

.featured-title-banner span {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: white;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollLeft var(--marquee-speed) linear infinite;
}

.logo-set {
  display: flex;
  align-items: center;
  gap: var(--text-gap);
  padding-right: var(--text-gap);
}

.logo-set span {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.logo-set img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1); /* makes logos white on dark bg */
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.logo-set img:hover {
  opacity: 1;
}

/* Responsive */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  :root {
    --text-gap: 32px;
    --marquee-speed: 24s;
  }

  .logo-set span {
    font-size: 1rem;
  }

  .featured-title-banner {
    top: -30px;
    padding: 7px 25px;
  }
  .logo-set img {
    height: 40px;
  }
  .wishlist-item .dvChkSelect input[type="checkbox"],
  .wishlist-item .product-qty input[type="text"] {
    margin: auto;
  }
  .header-icons .dropdown-menu {
    right: -16rem !important;
    left: auto !important;
    min-width: 21rem !important;
  }

  .header-icons .qty-spinner {
    max-width: 7rem;
  }
  .header-icons .spinnerBtn {
    padding: 0.65rem 0.8rem;
  }
  .space-bottom {
    margin-bottom: 2rem;
  }
  .LayoutLeftColumnInner {
    padding: 0px !important;
  }
  .userway_buttons_wrapper {
    display:none !important;
  }
}
.full-shopping-cart-btn:hover,
.full-check-btn:hover {
  transform: none !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .dropdown-menu.dropdown-menu-right {
    min-width: 600px !important;
  }
  .dropdown-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    max-height: 40vh;
    overflow-y: auto;
    z-index: 1050;
  }
}

@media (min-width: 992px) {
  .navbar-nav .nav-item .nav-link {
    white-space: nowrap;
  }

}
@media (min-width: 696px) and (max-width: 992px) {
  .navbar {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .info-item-a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  .info-item-a a {
    word-break: break-all; /* ensures long emails break */
  }
  .find-us-content .flex-wrapper {
    flex-direction: column !important;
  }

  .Control_8900 {
    width: 100%;
  }
  #dvWrapControl8899 {
    width: 100%;
  }
  .contact-info-card {
    margin: 0rem;
  }
  .contact-us-custom {
    padding-right: 1rem;
    padding-top: 0rem !important;
  }
}

.mobile-search-group .SearchGoThemeButton {
  margin-left: 4px !important;
}
.similar-item a {
  font-size: var(--font-size-custom);
  font-weight: bold;
}

@media (max-width: 991px) {
  .mobile-search-group.input-group {
    flex-wrap: unset !important;
  }
}

@media only screen 
  and (min-width: 1024px) 
  and (max-width: 1366px) {

    .custom-lostpassword {
      width: 50% !important;
    }
  }
@media (max-width: 1199px) {
  .signup-card {
    margin: 0 auto;
  }
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--pink-500) !important;
  color: #fff !important;
}

#miniCartToast .qty-spinner {
  max-width: 15rem;
}

/* Spinner css Start*/
.ac-loader {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.75);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.ac-spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 5px solid rgba(227, 27, 109, 0.2);
  border-top-color: var(--pink-600);
  animation: ac-spin 0.8s linear infinite;
}
@keyframes ac-spin {
  to { transform: rotate(360deg); }
}
/* Spinner css End*/



.wholesale-page-container { display: flex; }

.wholesale-sidebar { flex-basis: 34%; color: #e5e4e4; }

.wholesale-sidebar a, .wholesale-sidebar ul li { color: #e5e4e4; font-size: 21px; }

.wholesale-sidebar .wholesale-content-box { padding: 20px; background: #b33575; margin-bottom: 10px; }

.wholesale-sidebar .wholesale-content-box h4 { color: white; text-transform: uppercase; text-align: center; margin: 0; padding: 0; margin-bottom: 10px; }

.wholesale-sidebar .wholesale-content-box h5{
  color: white;
  font-weight:normal;
  font-weight: 100;
  font-size: 21px;
}

.wholesale-sidebar .wholesale-content-box ul { margin-left: 0; padding-left: 20px; }

.wholesale-content { padding: 10px; }

.wholesale-content p { padding: 0 20px; }
.custom-video {
  border-radius: 6px;
  width: 100%;
}

@media (min-width: 768px) {
  .custom-video {
    width: 60%;
  }
}
