/* ================= VARIABLES ================= */
:root {
  --font-family: 'Poppins', sans-serif;
  --container-max: 1400px;

  --color-primary: #ff3f6c;
  --color-secondary: #fd2859;
  --color-dark: #282c3f;
  --color-light: #f5f5f6;
  --color-white: #fff;
  --color-section: #808080;
  --color-slider:#f3eada;
}

/* ================= RESET ================= */
body, h1, h2, h3, h4, h5, h6, p, a, ul, li {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  color: var(--color-text);
}
a { text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; display: block; }
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
body {
  padding-top: 80px; /* adjust to match header height */
}
.site-content .container {
  max-width: 1400px !important;
  margin: 0 auto;
}
/* ================= HEADER ================= */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header-inner .logo{
  max-height: 60px;
  margin-right: 6px;
  width: 100px;
  display: block;
  object-fit: contain;
}
.header-inner .logo img{
  max-height: 60px;
  width: 80px;
}
@media (max-width: 768px) {
  .logo {
    max-height: 60px;
  }

  .logo img {
    max-height: 60px;
  }
}
/* NAVIGATION */
.main-nav .nav-link {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-dark);
  padding: 10px 12px;
}
.main-nav .nav-link:hover {
  color: var(--color-primary);
}
/* ======Mega menu drop down ======*/
.mega-menu {
  position: absolute;
  left: 0;
  min-width: 800px;
  padding: 20px 10px;
  background: #fff;
  z-index: 1000;
  /* display: none; */

  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.nav-item.position-static {
  position: relative; /* keeps dropdown attached */
}
.mega-menu.d-block {
  display: flex !important;
}
.mega-menu > div {
  flex: 1 1 150px; /* flexible width for each category */
  min-width: 150px; /* ensures readable layout */
}
.mega-menu .category-title a {
  color: var(--primary-color, #ff6a9c);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
/* Subcategory Hover Style */
.subcategory-link {
  color: #676e75;
  text-decoration: none;
  transition: all 0.2s ease;
}
.subcategory-link:hover {
  color: var(--color-dark);
  transition: color 0.2s ease;
  font-weight: 600;
  padding-left: 3px;
}
.header-icons .nav-item .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  padding: 5px 8px;
}
.header-icons .nav-item .nav-link:hover {
  color: var(--color-primary);
}
.cart-count {
  position: absolute;
  top: 2px;
  right: -6px;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
}
/* Ensure parent anchors dropdown */
.nav-item.position-relative {
  position: relative;
}

/* Profile Dropdown */
.user-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateX(30px);
  min-width: 280px;
  background: #fff;
  z-index: 1000;
  display: none;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}
.user-menu-dropdown.d-block {
  display: block !important;
}
.user-menu-dropdown h6 {
  border-bottom: 1px solid #eee;
  padding: 6px 10px;
  color: var(--color-dark);
}
.user-menu-dropdown .dropdown-link {
  display: block;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  color: var(--color-dark);
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.user-menu-dropdown .dropdown-link:hover {
  background: #f8f8f8;
  color: var(--color-primary);
  font-weight: 600;
}
.user-guest-dropdown {
  text-align: center;
}
.btn-myntra-login {
  background: var(--color-primary);
  color: #fff;
  border-radius: 4px;
  padding: 8px 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}
.btn-myntra-login:hover {
  background: #e6365f;
}

/* SEARCH BAR */
/* === Search Bar Container === */
.search-bar {
  position: relative;
  max-width: 500px;
}

.search-bar input {
  width: 100%;
  height: 44px;
  padding: 8px 16px 8px 40px;
  border: 1px solid var(--color-light);
  font-size: 14px;
  background: var(--color-light);
  transition: all 0.2s ease;
  border-radius: 3px;
}

.search-bar input:focus {
  background: #fff;
  border: 1px solid #c9c9c9;
  border-radius: 3px;
  outline: none;
}

.search-bar .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 16px;
}

/* === Search Dropdown === */
.main-search-list {
  position: absolute;
  left: 0;
  width: 90%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 1050;
  max-height: 350px;
  overflow-y: auto;
  padding: 5px 0;
  list-style: none;
  margin: 0;
  animation: fadeInDown 0.25s ease;
}
.search-list-main {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  transition: background 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}

/* Scrollbar styling */
.main-search-list::-webkit-scrollbar {
  width: 6px;
}
.main-search-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

/* Each search result item */
.main-search-list li {
  display: block;
}

.main-search-list li a {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s ease;
}

.main-search-list li a:hover {
  background: var(--color-light);
}

.main-search-list li a .icon-s {
  color: #777;
  flex-shrink: 0;
}

.main-search-list li a .categories-text-search .cts {
  font-weight: 500;
}

.main-search-list li a .categories-label-search {
  font-size: 12px;
  color: #777;
}

/* Popular section header */
.popular-label-search {
  padding: 8px 16px;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  color: #999;
}
   /* SEARCH STATE STYLING */
.search-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #7e818c;
  letter-spacing: 0.3px;
}

.whatsapp-chat {
  position: fixed;
  right: 15px;
  bottom: 70px;
  transition: all .3s ease;
  font-size: 50px;
  color: #0dc143;
  width: 50px;
  z-index: 50;
  display: block;
}
.whatsapp-chat img {
  transition: all .3s ease;
}
.whatsapp-chat:hover img {
  transform: scale(1.09);
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 100;
  background: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-primary);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

.spinner-icon {
  font-size: 16px;
  animation: spin 1s linear infinite;
  color: var(--color-primary);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.no_result_sect {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #7e818c;
  font-size: 14px;
  padding: 20px;
  line-height: 1.6;
}
.no_result_sect .font-weight-normal {
  font-weight: 500;
  color: #282c3f;
  margin-bottom: 6px;
}
.no_result_sect .font-weight-lighter {
  font-weight: 400;
  color: #7e818c;
  font-size: 13px;
}
/* 🧭 Maintain height consistency inside dropdown */
.min_height_full {
  min-height: 90px;
}
/* 📦 Consistent list section spacing */
.main-search-list li {
  list-style: none;
}
/* 🔥 Optional: Add smooth fade-in for list items */
.main-search-list li {
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* === Animations === */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}
/* USER ACTIONS */
.header-icons {
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.action-link {
  color: var(--color-dark);
  font-size: 13px;
  text-decoration: none;
  position: relative;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.action-link .label {
  font-size: 11px;
  margin-top: 2px;
}
.action-link:hover {
  color: var(--color-primary);
}
.count-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 50%;
}
.btn-myntra-login {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #ff3f6c; /* pink text */
    background: #fff; /* white background */
    border: 1px solid #ff3f6c; /* pink border */
    border-radius: 4px;
    padding: 6px 18px;
    transition: all 0.3s;
}

.btn-myntra-login:hover {
    background: #ff3f6c; /* pink background on hover */
    color: #fff; /* white text on hover */
    text-decoration: none;
}
/* ================= HERO BANNER ================= */
.hero-banner {
  background: url('../img/hero-banner.jpg') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
}
.hero-banner h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero-banner p {
  font-size: 1.2rem;
  margin: 10px 0 20px;
}
.hero-banner .btn {
  padding: 10px 20px;
  font-weight: 600;
}

/* ================= PRODUCTS ================= */
/* Product Card */
.product-card {
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
.product-card .product-img {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
}
.product-card .product-img img {
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-card .product-img .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  border-radius: 8px;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  z-index: 2;
}

.product-card .product-img .main-img {
  position: relative;
  z-index: 1;
}

.product-card .product-img:hover .hover-img {
  opacity: 1;
  visibility: visible;
}

.product-card .product-img:hover .main-img {
  opacity: 0;
}
/* Product Info */
.product-card .product-info h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 8px 0 5px;
}
.product-card .final-price {
  color: #090808;
  font-weight: 600;
  margin-right: 5px;
}
.product-card .original-price {
  color: #a0a0a0;
  font-size: 13px;
  font-weight: 600;
  text-decoration: line-through;
}
/* Add to Cart Button */
.product-card .btn-myntra {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 7px 15px;
  font-size: 13px;
  width: 100%;
  transition: background 0.3s ease;
}
.product-card .btn-myntra:hover {
  background: var(--color-secondary);
}
/* ================= OFFER / CTA ================= */
.offer-banner {
  background: var(--color-primary);
  color: #fff;
  padding: 50px 20px;
  border-radius: 8px;
}
.offer-banner h2 {
  margin-bottom: 15px;
}
.offer-banner .btn {
  background: #fff;
  color: var(--color-primary);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
}
.offer-banner .btn:hover {
  background: #eee;
}

/* ================= TRENDING ================= */
.trend-card {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}
.trend-card img {
  border-radius: 8px;
}
.trend-card:hover {
  transform: scale(1.05);
}

/* ================= FOOTER ================= */
.site-footer {
  background: #d4c8c8;
  color: #ddd;
  font-size: 14px;
}

.footer-brand {
  text-align: center;
}

.footer-logo img {
  display: inline-block;
  max-width: 160px;       /* adjust as needed */
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.footer-title {
  margin-top: 10px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}


.footer-description {
  line-height: 1.6;
  max-width: 300px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--color-primary);
  font-weight: 600;
}
.social-links a i {
  font-size: 20px;
  color: #333; /* Or white if footer bg is dark */
  margin-right: 12px;
}

/* ================= CART PAGE ================= */
.cart-page { padding: 40px 0; }
.cart-container {
  align-items: stretch;
}
.cart-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding: 15px 0;
}
.cart-item:last-child { border-bottom: none; }
.cart-item img {
  width: 100px;
  border-radius: 8px;
  margin-right: 20px;
}
.cart-item-details { flex: 1; }

.cart-item-details h5 {
  color: var(--color-primary);
  margin-bottom: 5px;
}
.cart-item-details h6 {
  font-size: 1rem;
  margin-bottom: 5px;
}
.cart-item-details p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 5px;
}
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-item-actions input {
  width: 50px;
  text-align: center;
}
.order-summary {
  border-left: 1px solid #e1dfdf;
  /* border-radius: 8px; */
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.btn-checkout {
  background: var(--color-primary);
  color: #fff;
  width: 100%;
  padding: 10px;
  /* border-radius: 50px; */
  margin-top: 15px;
  font-weight: 600;
}
.btn-checkout:hover {
  background: #d8345a;
  color: #fff;
}
.check-out-btn {
  background: var(--color-primary);
  color: #fff;
}
.check-out-btn:hover {
  background: #d8345a;
  color: #fff;
}
/* checkout section */
.checkout-section {
  background-color: #fff;
}

.checkout-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  transition: 0.3s ease;
}
/* .checkout-card:hover {
  border-color: #ff3f6c;
  box-shadow: 0 3px 10px rgba(255, 63, 108, 0.1);
} */
.payment-option .selected-option,
.address-card.selected-option {
  border-color: #ff3f6c !important;
  background-color: #fff5f8;
}

.btn-primary-pink {
  background-color: #ff3f6c;
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-pink:hover {
  background-color: #d8345a;
  color: #fff;
}

.btn-outline-primary-pink {
  border: 1px solid #ff3f6c;
  color: #ff3f6c;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-primary-pink:hover {
  background-color: #ff3f6c;
  color: #fff;
}

.address-card,
.address-selected {
  background: #fff;
  /* border-radius: 8px; */
  transition: border-color 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  width: 100%;
  box-sizing: border-box;
}

.address-card:hover {
  border-color: #ff3f6c;
}

.badge {
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 6px;
}

.dropdown-menu {
  font-size: 0.9rem;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 992px) {
  .search-bar { flex: 0 0 250px; }
  .categories .category-card { margin-bottom: 1rem; }
  .product-card { margin-bottom: 1rem; }
}
@media(max-width: 576px) {
  .hero-banner h1 { font-size: 2rem; }
  .hero-banner { height: 250px; }
  .search-bar { flex: 1 1 100%; margin-top: 10px; }
}
/* ================Categories============== */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
  text-decoration: none;
  display: block;
  background-color: #fff;
  border: 1px solid #f1f1f1;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* Category Image */
.category-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.category-img  img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
/* Section Title */
.section-title {
    font-weight: bold;
    color: var(--color-section);
}

/* ================featured product============== */
.featured-product-card {
  border: 1px solid #f1f1f1;
  background: #fff;
  /* border-radius: 12px; */
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  display: flex;
  flex-direction: column;
  position: relative;
}

.featured-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Product Image */
.featured-product-img {
  position: relative;
  overflow: hidden;
  /* border-radius: 10px; */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.featured-product-card:hover .featured-product-img img {
  transform: scale(1.05);
}
/* Discount Tag - fixed layering */
.discount-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(255,63,108,0.3);
  z-index: 5;
  pointer-events: none;
}

/* Product Info */
.featured-product-info {
  margin-top: 3px;
  margin-bottom: 2px;
  text-align: center;
}

.featured-product-info h6 {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-prices {
  margin-top: 4px;
}

.product-prices span {
  font-size: 0.9rem;
}

/* Product Title */
.product-card h5 {
  font-size: 1rem;
  font-weight: 700;
}
/* ===== BLOG PAGE ===== */
/* Breadcrumb */
.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: var(--color-dark, #282c3f);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--color-primary, #ff3f6c);
}

/* Blog Grid */
.filter_data {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Blog Card */
.card.card-product {
  border: 1px solid #eaeaec;
  border-radius: 8px;
  background: #fff;
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card.card-product:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* Blog Image */
.card-product .card-img-top {
  position: relative;
  overflow: hidden;
}
.card-product img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-product:hover img {
  transform: scale(1.05);
}

/* Blog Title */
.card-body {
  padding: 0.8rem 1rem 1.2rem;
}
.card-body h3 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
.card-body h3 a {
  color: var(--color-dark, #282c3f);
  text-decoration: none;
  transition: color 0.2s ease;
}
.card-body h3 a:hover {
  color: var(--color-primary, #ff3f6c);
}

/* Responsive Tweaks */
@media (max-width: 767px) {
  .filter_data {
    gap: 1rem;
  }
  .card-product img {
    height: 180px;
  }
}

/* Import stylish fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@400;500;600&display=swap');

/* ===== BLOG DETAIL PAGE - STYLISH & COLORFUL ===== */
.blog-container {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* Decorative background */
.blog-container::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #ff3f6c 20%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
}
.blog-container::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #ff9f1c 20%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
}

/* Blog Title */
.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #ff3f6c, #ff9f1c, #ff3f6c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Meta Info */
.blog-meta {
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Poppins', sans-serif;
}
.blog-meta span {
  margin: 0 10px;
  color: #555;
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}
.blog-meta i {
  margin-right: 6px;
  color: #ff3f6c;
}

/* Blog Image */
.blog-content img {
  border-radius: 12px;
  display: block;
  max-width: 100%;
  margin: 2rem 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}
.blog-content img:hover {
  transform: scale(1.05) rotate(1deg);
}
.blog-content .text-center {
  display: flex;
  justify-content: center;
}

/* Blog Description */
.blog-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333;
}
.blog-description p {
  margin-bottom: 1.5rem;
}
.blog-description h2,
.blog-description h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  color: #ff3f6c;
}
.blog-description a {
  color: #ff3f6c;
  font-weight: 600;
  position: relative;
}
.blog-description a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff3f6c, #ff9f1c);
  transition: width 0.3s;
}
.blog-description a:hover::after {
  width: 0;
}

/* Quote Block */
.blog-description blockquote {
  border-left: 5px solid #ff9f1c;
  background: #fff8f2;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #444;
  border-radius: 6px;
  position: relative;
}
.blog-description blockquote::before {
  content: "❝";
  font-size: 2rem;
  position: absolute;
  left: 10px;
  top: -10px;
  color: #ff3f6c;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-title {
    font-size: 1.9rem;
  }
  .blog-description {
    font-size: 1rem;
  }
}
/* ================== CONTACT PAGE ================== */
.contact-section-one {
    padding: 60px 0;
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}
/* Heading */
.contact-section-one h3 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}
/* Breadcrumb */
.brudcrump {
    margin-bottom: 25px;
}
.brudcrump ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.brudcrump ul li {
    font-size: 16px;
    color: #362e2e;
}
.brudcrump ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}
.brudcrump ul li a:hover {
    color: #ff3f6c;
}
.brudcrump ul li i {
    margin: 0 8px;
    font-size: 13px;
    color: #999;
}
/* Contact form area */
.contact-area h4 {
    font-size: 35px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.contact-area p {
    font-size: 20px;
    color: var(  --color-dark);
    margin-bottom: 20px;
}
.contact-form-area {
    padding: 25px;
    margin-bottom: 20px;
}
.contact-form-area .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 14px;
    margin-bottom: 15px;
    transition: border-color 0.3s;
}
.contact-form-area .form-control:focus {
    border-color: #ff3f6c;
    box-shadow: none;
}

/* Checkbox */
.check-box-laifai label {
    font-size: 13px;
    color: #555;
}

/* Submit button */
.spotlight-btn {
    background: #ff3f6c;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
}
.spotlight-btn:hover {
    background: #e6365f;
}

/* Map */
iframe {
    border-radius: 10px;
    margin-top: 15px;
    border: none;
}

/* ================= Contact Details Area ================= */
.contact-details-area {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.contact-details-area:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
/* Headings */
.contact-details-area h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 11px;
    border-left: 3px solid #ff3f6c;
    padding-left: 8px;
}
.contact-details-area h5 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-top: 14px;
    margin-bottom: 6px;
}
.contact-details-area h6 {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-text);
    margin-top: 12px;
    margin-bottom: 8px;
}

/* Paragraphs */
.contact-details-area p {
    font-size: 16px;
    color: #555;
    margin-bottom: 9px;
    line-height: 1.5;
}

/* Links */
.contact-details-area a {
    color:  #555;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}
.contact-details-area a:hover {
    text-decoration: underline;
    color: #d82c56;
}

/* Opening Hours */
.contact-details-area .open-hours p {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-details-area {
        padding: 20px;
        margin-top: 20px;
    }
    .contact-details-area h4 {
        font-size: 16px;
    }
}
.pswd-inp {
  position: relative;         /* Make the container relative for absolute positioning */
}

.pswd-inp input.form-control {
  padding-right: 40px;        /* Add space for the eye icon */
}

.pswd-icon-inp {
  position: absolute;
  top: 50%;
  right: 10px;                /* Distance from the right edge */
  transform: translateY(-50%);
  cursor: pointer;
  color: #555;                /* Optional: icon color */
  font-size: 1.1rem;          /* Adjust icon size if needed */
  z-index: 2;
}

.pswd-icon-inp:hover {
  color: var(--color-primary, #ff3f6c); /* Optional hover color */
}
.original-price {
  color: #353131;
  text-decoration: line-through;
}
/* ================= Product Details ================= */
.product-details-info {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.product-details-info .product-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-details-info .short-desc {
    font-size: 20px;
    color: #666;
    margin-bottom: 15px;
}

/* Rating Section */
.rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.rating-section .stars i {
    color: #ff8c00;
    font-size: 16px;
    margin-right: 2px;
}

.rating-section .review-count {
    color: #999;
}

/* Price Section */
.price-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.price-section .final-price {
    font-size: 24px;
    font-weight: 700;
    color: #ff3f6c;
}

.price-section .original-price {
    font-size: 16px;
    color: #999;
}

/* Variant / Attribute Options */
.attribute-group h6 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
}

.options-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.options-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    padding: 6px 10px;
    border-radius: 4px;
    transition: 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: #333;
}

.options-list a.active-option {
    border-color: #ff3f6c;
    box-shadow: 0 0 5px rgba(255,63,108,0.4);
}

.option-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
}

/* Quantity & Buy Buttons */
.purchase-controls {
    gap: 15px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-control button {
    background: #f8f8f8;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.quantity-control button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.qty-display {
    width: 40px;
    text-align: center;
    font-weight: 500;
}

.buttons-group .btn {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-right: 12px;
    text-align: center;
}

.btn-primary {
    background-color:var(--primary-color, #ff3c7d);
    color: #fff;
    min-width: 300px;
    border: none;
}

.btn-primary:hover {
    background-color:var(--primary-color, #ff4d88);
}

.btn-secondary {
    background-color: #fff;
    color: #333131;
    border: 1px solid #575757;
    min-width: 200px;
    /* border: none; */
}

.btn-secondary:hover {
    background-color: #000;
}

.btn-disabled {
    background-color: #ddd;
    color: #888;
    cursor: not-allowed;
}


/* Meta Info */
.meta-info p {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.meta-info a {
    color: #ff3f6c;
    text-decoration: none;
}

.meta-info a:hover {
    text-decoration: underline;
}
 /* Section header */
#shop-details-sec-two .specifications-header {
  /* background: #f5f5f5; */
  padding: 20px;
  /* border-bottom: 1px solid #ddd; */
  text-align: center;
}

#shop-details-sec-two .specifications-header h3 {
  color: var(--color-primary);
  font-size: 25px;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

/* Tabs */
.custom-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}

.custom-tabs li {
  margin-right: 20px;
}

.custom-tabs .tab-link {
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 0;
  cursor: pointer;
  position: relative;
  color: #535766; /* grayish text */
  transition: color 0.2s;
}

.custom-tabs .tab-link.active {
  color: #ff3f6c; /* pink highlight */
  font-weight: 600;
}

.custom-tabs .tab-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #ff3f6c; /* underline in pink */
}

/* Tab Content */
.tab-content {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Editor content styling (description/details) */
.envc-ck-editor {
  font-size: 14px;
  color: #444;
}

.envc-ck-editor p {
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-tabs {
    flex-wrap: wrap;
  }

  .custom-tabs li {
    margin-right: 10px;
  }

  .custom-tabs .tab-link {
    font-size: 13px;
    padding: 10px 0;
  }
}

/* ================= RELATED PRODUCTS (No Swiper) ================= */
#related-products {
  background: #fff;
  padding: 40px 0;
}

/* Section Header */
.section-header-new {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.section-header-new h2 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: var(--color-primary);
  margin: 0;
}

.section-header-new .all-page-link {
  font-size: 14px;
  color: #ff3f6c;
  text-decoration: none;
  font-weight: 500;
}

.section-header-new .all-page-link:hover {
  text-decoration: underline;
}

/* ================= Product Card ================= */
.related-product-card {
  border-radius: 8px;
  background: #fff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.related-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
/* Offer Tag */
.offer-badge {
  position: absolute;
  background: var(--color-primary);
  color: #fff;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  top: 10px;
  left: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
/* ================= Product Info ================= */
.related-product-card .p-3 {
  padding: 12px !important;
}

.related-product-card h6 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #282c3f;
  line-height: 1.4;
}

.related-product-card h6 a {
  color: inherit;
  text-decoration: none;
}

.related-product-card h6 a:hover {
  color: #ff3f6c;
}

/* Ratings */
.stars {
  font-size: 13px;
  color: #ff8c00;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.stars-review {
  color: #777;
  font-size: 12px;
}

/* Price Section */
.price-sec-product {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #282c3f;
}

.price-sec-product .text-decoration-line-through {
  font-weight: 400;
  font-size: 13px;
  color: #999;
}

/* ================= Add to Cart Buttons ================= */
.related-product-card .btn {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  transition: all 0.3s ease;
}

.related-product-card .btn-dark {
  background: var(--color-primary);
  border: none;
}
.related-product-card .btn-bright{
  background: var(--color-primary);
  border: none;
}
.related-product-card .btn-bright{
  background: var(--color-primary);
}

.related-product-card .btn-outline-dark:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
  .section-header-new h2 {
    font-size: 18px;
  }

  .related-product-card h6 {
    font-size: 13px;
  }

  .price-sec-product {
    font-size: 13px;
  }

  .related-product-card .btn {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 576px) {
  .related-product-card {
    border-radius: 6px;
  }

  .offer-badge {
    font-size: 11px;
    padding: 3px 6px;
  }
}

/* ================= SHARE POPUP ================= */
#share-popup .modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  font-family: 'Poppins', sans-serif;
}

#share-popup .modal-header {
  border-bottom: 1px solid #f0f0f0;
  padding: 16px 20px;
}

#share-popup .modal-header .modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #282c3f;
}

#share-popup .btn-close {
  font-size: 14px;
  color: #535766;
  opacity: 0.8;
}

#share-popup .modal-body {
  padding: 20px;
}

#share-popup .form-group input {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  color: #282c3f;
  width: 100%;
}

#share-popup .form-group input:focus {
  border-color: #ff3f6c;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 63, 108, 0.2);
}

#share-popup .form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #282c3f;
}

/* Social links */
.social-links-cmn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  transition: all 0.2s ease;
}
.social-links-cmn a.twitter { color: #1DA1F2; }
.social-links-cmn a.facebook { color: #1877F2; }
.social-links-cmn a.instagram { color: #E1306C; }
.social-links-cmn a.linkedin { color: #0077B5; }
.social-links-cmn a.youtube { color: #FF0000; }

.social-links-cmn a:hover {
  opacity: 0.85;
  transform: scale(1.05);
  background: var(--color-primary);
  color: #fff !important;
}
/* .social-links-cmn a.twitter {
  background-color: #1da1f2;
}
.social-links-cmn a.facebook {
  background-color: #1877f2;
}
.social-links-cmn a.linkedin {
  background-color: #0077b5;
}
.social-links-cmn a.whatsapp {
  background-color: #25d366;
} */

/* Footer buttons */
#share-popup .modal-footer {
  border-top: 1px solid #f0f0f0;
  padding: 15px 20px;
}

#share-popup .btn-secondary {
  background-color: #f5f5f6;
  color: #282c3f;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 600;
  transition: background 0.2s;
}

#share-popup .btn-secondary:hover {
  background-color: #e0e0e0;
}

#share-popup .btn-primary {
  background-color: #ff3f6c;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 600;
}

#share-popup .btn-primary:hover {
  background-color: #e32f5a;
}

/* ===== DEALS SECTION STYLES ===== */
.home-showcaseSlider {
  width: 100%;
  /* height: 100%; */
  position: relative;
}
.swiper-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  /* height: 400px; */
  display: block;
  position: relative;
  border-radius: 12px;
}
.showcaseSlider-pagination {
  bottom: 10px !important;
}
/* Default bullets */
.home-showcaseSlider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6) !important;
  width: 10px !important;
  height: 10px !important;
  opacity: 0.8 !important;
  margin: 0 5px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}
/* Active bullet */
.home-showcaseSlider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff !important;
  opacity: 1 !important;
  width: 18px !important;
  border-radius: 10px !important;
}
.deal-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
  text-decoration: none;
  display: block;
  background-color: var(--color-slider);
}
.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.deal-image-full {
  /* width: 100%; */
  /* height: 400px; */
  /* object-fit: cover; */
  display: block;
}
.deal-image-slider {
  /* width: 100%; */
  height: 200px;
  /* object-fit: cover; */
  display: block;
  border-radius: 8px;
}
.deal-title {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 1rem;
}
.deal-desc {
  font-size: 1.5rem;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* RATING IN PRODUCT CARD */
.customer-review-section {
  border-top: 1px solid #eee;
  padding-top: 25px;
}
.customer-review-section .section-titlle {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
}
.review-summary {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}
.review-summary .stars {
  color: #ff8c00;
  font-size: 14px;
}

.avg-rating {
  min-width: 120px;
  text-align: center;
}

.avg-rating h2 {
  font-size: 2.5rem;
  line-height: 1;
}

.rating-bars {
  flex: 1;
  min-width: 250px;
}

.rating-bar-item .progress {
  background-color: #eee;
  border-radius: 5px;
}

.rating-bar-item .progress-bar {
  border-radius: 5px;
  transition: width 0.4s ease;
}
.review-list {
  margin-top: 20px;
}

.review-item {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: #f2f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #555;
  font-size: 1rem;
}

.review-content h6 {
  font-size: 1rem;
  color: #222;
}

.stars i {
  font-size: 1rem;
}

.review-media .media-thumb {
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.review-media .media-image,
.review-media .media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  border-radius: 6px;
}

.review-media .media-video i {
  opacity: 0.9;
}

.pagination a {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
}

.pagination a.active {
  background: #ff3f6c;
  color: #fff;
  border-color: #ff3f6c;
}

.pagination a.disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 768px) {
  .review-summary {
    flex-direction: column;
    align-items: flex-start;
  }
  .rating-bars {
    width: 100%;
    margin-top: 10px;
  }
}




