/*
Theme Name: Astra Child - Decor4U
Template: astra
Description: Premium event decoration and experience booking website child theme
Version: 7.0
Author: Decor4U
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Quicksand:wght@700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Poppins', sans-serif; background: #FFFFFF; color: #333; }

.custom-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-bottom: 1px solid #F0F0F0;
}

.header-top {
  width: 100%;
  background: #FFFFFF;
  padding: 18px 60px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 40px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 12px;
  background: #1a1a2e;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.hamburger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

.header-left {
  display: flex;
  align-items: center;
}

.city-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #FFF5F7;
  border: 1.5px solid #FFE5EC;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.city-selector:hover {
  background: #FFFFFF;
  border-color: #E94E77;
  box-shadow: 0 2px 8px rgba(233,78,119,0.15);
}

.city-selector svg {
  width: 18px;
  height: 18px;
  stroke: #E94E77;
  fill: none;
  stroke-width: 2.5;
  transition: all 0.3s;
}

.city-selector span {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.logo a { display: block; text-decoration: none; }

.logo img { height: 38px; width: auto; display: block; }

.logo-placeholder {
  font-family: 'Quicksand', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #E94E77;
  letter-spacing: -0.8px;
}

.search-bar-container {
  position: relative;
  width: 100%;
  height: 45px;
  border: 1px solid #E0E0E0;
  border-radius: 50px;
  background: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.search-bar-container:focus-within {
  border-color: #E94E77;
  box-shadow: 0 4px 16px rgba(233, 78, 119, 0.15);
}

.search-bar-container form {
  width: 100%;
  height: 100%;
  margin-left: 30px;
  padding-right: 20px;
}

.search-bar {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none !important;
  background: transparent;
  outline: none;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #333;
  box-shadow: none !important;
}

.search-bar::placeholder { color: #A0A0A0; font-weight: 400; }

.search-icon {
  position: absolute;
  left: 0;
  top: -1.5px;
  width: 50px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.search-icon svg {
  width: 18px;
  height: 18px;
  stroke: #777777;
  fill: none;
  stroke-width: 2;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}

.icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 25px;
}

.icon-btn:hover {
  color: #E94E77;
  background: #FFF5F7;
}

.icon-btn svg {
  width: 22px;
  height: 22px;
  stroke: #E94E77;
  stroke-width: 2;
  fill: none;
  transition: all 0.3s;
}

.icon-btn:hover svg {
  stroke: #E94E77;
  transform: translateY(-1px);
}



.header-nav {
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid #F0F0F0;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 36px;
  list-style: none;
  padding: 8px 60px;
  margin: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-menu li { margin: 0; }

.nav-menu a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
  display: inline-block;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #E94E77;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #E94E77;
}

.nav-menu a:hover::after { width: 100%; }

.nav-menu a.active {
  color: #F9A03F;
}

.nav-menu a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { 
  transform: rotate(45deg) translate(7px, 7px); 
  background: #E94E77;
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { 
  transform: rotate(-45deg) translate(7px, -7px); 
  background: #E94E77;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
}

.sidebar-overlay.active { display: block; }

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 9999;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-sidebar.active { left: 0; }

.sidebar-header {
  background: #1A2B56;
  padding: 28px 24px 10px 24px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.sidebar-user-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.sidebar-user-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-user-icon svg {
  width: 26px;
  height: 26px;
  stroke: #1A2B56;
  stroke-width: 2;
}

.sidebar-user-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #FFFFFF !important;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-user-text p {
  font-size: 13px;
  opacity: 0.9;
  color: #FFFFFF !important;
}

.sidebar-actions {
  display: flex;
  gap: 0;
  margin-top: 20px;
  padding: 0;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

.sidebar-action-btn {
  padding: 0;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  opacity: 0.9;
  white-space: nowrap;
}

.sidebar-action-btn:hover {
  opacity: 1;
}

.sidebar-action-btn:not(:last-child)::after {
  content: '|';
  margin: 0 8px;
  opacity: 0.5;
}

.sidebar-section-title { display: none; }

.sidebar-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.sidebar-menu li {
  border-bottom: 1px solid #F0F0F0;
}

.sidebar-menu a {
  display: block;
  padding: 18px 24px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: all 0.3s;
}

.sidebar-menu a:hover {
  background: #FFF5F7;
  color: #E94E77;
  padding-left: 32px;
}

.city-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.city-modal.active { display: block; }

.city-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}

.city-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  border-radius: 25px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.city-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.city-modal-close:hover {
  background: #F0F0F0;
  color: #333;
}

.city-modal-content h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #E94E77;
  margin-bottom: 30px;
  text-align: center;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.city-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: #FFFFFF;
  border: 2px solid #F0F0F0;
  border-radius: 25px;
  text-decoration: none;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.city-item:hover {
  border-color: #F9A03F;
  background: #FFF5F7;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(249,160,63,0.2);
}

.city-item svg {
  width: 32px;
  height: 32px;
  stroke: #E94E77;
  fill: none;
  stroke-width: 2;
}

.city-item:hover svg {
  stroke: #F9A03F;
}

@media (max-width: 1200px) {
  .header-top {
    padding: 16px 40px;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .header-top {
    display: flex;
    flex-wrap: wrap;
    padding: 16px 20px;
    gap: 12px;
  }

  .hamburger { display: flex; order: 1; }

  .header-left { order: 2; flex: 1; justify-content: center; }
  .logo-placeholder { font-size: 22px; }

  .search-bar-container {
    order: 4;
    width: 100%;
    max-width: 100%;
    margin-top: 8px;
  }

  .search-bar {
    width: 100%;
    max-width: 100%;
  }

  .city-selector { 
    order: 5; 
    display: flex;
    font-size: 12px;
    padding: 8px 14px;
    width: 100%;
    justify-content: center;
  }
  
  .city-selector svg {
    width: 16px;
    height: 16px;
  }
  
  .city-selector span {
    font-size: 12px;
  }

  .header-actions { order: 3; gap: 0; }

  .icon-btn.support-btn,
  .icon-btn.signup-btn { display: none; }

  .icon-btn span { display: none; }
  .icon-btn svg { width: 26px; height: 26px; }

  .header-nav { display: none; }
  
  .city-modal-content {
    width: 95%;
    max-width: 95%;
    padding: 32px 20px;
    border-radius: 20px 20px 0 0;
    position: fixed;
    bottom: 0;
    top: auto;
    transform: translate(-50%, 0);
    max-height: 85vh;
  }
  
  .city-modal-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    font-size: 28px;
  }
  
  .city-modal-content h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .city-item {
    padding: 16px;
    font-size: 13px;
  }
  
  .city-item svg {
    width: 28px;
    height: 28px;
  }
}

/* Homepage Styles */
.decor4u-homepage { background: #FFFFFF; }

/* Hero Section */
.hero-section {
  padding: 30px 20px;
  text-align: center;
  background: linear-gradient(180deg, #FFF5F7 0%, #FFFFFF 100%);
}

.hero-content { max-width: 800px; margin: 0 auto; }

.hero-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.hero-line {
  width: 80px;
  height: 2px;
  background: #E94E77;
}

.hero-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #1A2B56;
  margin: 0;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #666;
  margin: 0;
}

/* Category Grid Section */
.category-grid-section {
  padding: 30px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  overflow: hidden;
}

.category-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.category-image-wrapper {
  position: relative;
  width: 100%;
  height: 11rem;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  background: #F5F5F5;
  border: 1px solid rgba(233,78,119,0.1);
}

.category-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E94E77 0%, #F9A03F 100%);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.category-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(233, 78, 119, 0.08);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
  z-index: 2;
}

.category-card:hover .category-image-wrapper {
  box-shadow: 0 12px 32px rgba(233,78,119,0.2);
  border-color: rgba(233,78,119,0.3);
}

.category-card:hover .category-image-wrapper img {
  transform: scale(1.1);
}

.category-card:hover .category-overlay {
  opacity: 0.1;
}

.category-card:hover .category-image-wrapper::after {
  opacity: 1;
}

.category-label {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-align: center;
  margin-top: 16px;
  transition: color 0.3s ease;
}

.category-card:hover .category-label {
  color: #E94E77;
}

/* Mobile Optimization */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section { padding: 40px 20px; }
  
  .hero-title {
    font-size: 24px;
    letter-spacing: -0.5px;
  }
  
  .hero-line {
    width: 30px;
  }
  
  .hero-subtitle {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .category-grid-section {
    padding: 40px 20px;
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .category-label {
    font-size: 14px;
    margin-top: 12px;
  }
  
  /* Disable zoom effect on mobile */
  .category-card:hover .category-image-wrapper img {
    transform: none;
  }
  
  .category-card:hover .category-overlay {
    opacity: 0;
  }
  
  .category-card:hover .category-image-wrapper::after {
    opacity: 0;
  }
  
  .product-card:hover .product-image-wrapper img {
    transform: none;
  }
  
  .product-card:hover .product-image-wrapper::after {
    opacity: 0;
  }
}

/* ===== CATERING HOME BANNER ===== */
.catering-home-banner {
    position: relative;
    margin: 0 20px 40px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #1A2B56 0%, #2d4a8a 50%, #E94E77 100%);
    min-height: 200px;
}
.catering-home-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,43,86,0.92) 0%, rgba(26,43,86,0.75) 60%, rgba(233,78,119,0.6) 100%);
    z-index: 1;
}
.catering-home-banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 40px 48px;
}
.catering-home-banner-text {
    flex: 1;
    min-width: 0;
}
.catering-home-banner-tag {
    display: inline-block;
    background: #E94E77;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.catering-home-banner-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.25;
}
.catering-home-banner-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 24px;
}
.catering-home-banner-cta {
    display: inline-block;
    background: #F9A03F;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(249,160,63,0.4);
}
.catering-home-banner-cta:hover {
    background: #e8902e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249,160,63,0.5);
    color: #fff;
}
.catering-home-banner-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px 28px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    flex-shrink: 0;
    min-width: 0;
    overflow: hidden;
}
.catering-home-stat {
    text-align: center;
    padding: 0 24px;
    min-width: 0;
}
.catering-home-stat strong {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #F9A03F;
    line-height: 1;
    margin-bottom: 4px;
}
.catering-home-stat span {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
}
.catering-home-stat-divider {
    width: 1px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
    .catering-home-banner { margin: 0 12px 32px; border-radius: 16px; }
    .catering-home-banner-inner {
        flex-direction: column !important;
        padding: 24px 16px !important;
        gap: 20px;
    }
    .catering-home-banner-title { font-size: 20px; }
    .catering-home-banner-text {
        text-align: center;
        width: 100%;
    }
    .catering-home-banner-cta {
        display: inline-block;
        margin: 0 auto;
    }
    .catering-home-banner-stats {
        flex-shrink: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 16px 8px !important;
        justify-content: center;
        overflow: hidden;
    }
    .catering-home-stat {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        padding: 0 6px !important;
    }
    .catering-home-stat strong {
        font-size: 16px !important;
    }
    .catering-home-stat span {
        white-space: normal !important;
        word-break: break-word !important;
        font-size: 10px !important;
        line-height: 1.3;
        display: block;
    }
    .catering-home-stat-divider { height: 28px; }
}

/* Promo Banner Section */
.promo-banner-section {
  padding: 50px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.promo-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.promo-banner-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border: 1px solid #F7E3CC;
  transition: all 0.4s ease;
  cursor: pointer;
  height: 400px;
}

.promo-banner-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.promo-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.promo-banner-card:hover .promo-banner-image {
  transform: scale(1.1);
}

.promo-banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
  color: #FFFFFF;
  z-index: 2;
}

.promo-banner-content h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.promo-banner-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.95;
}

.promo-banner-btn {
  display: inline-block;
  padding: 12px 32px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(233,78,119,0.3);
}

.promo-banner-btn:hover {
  background: rgba(233,78,119,0.9);
  border-color: #E94E77;
  box-shadow: 0 6px 20px rgba(233,78,119,0.5);
  transform: translateY(-2px);
}

/* Mobile Optimization */
@media (max-width: 1024px) {
  .promo-banner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .promo-banner-section {
    padding: 40px 20px;
  }
  
  .promo-banner-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  
  .promo-banner-grid::-webkit-scrollbar {
    height: 4px;
  }
  
  .promo-banner-grid::-webkit-scrollbar-track {
    background: #F0F0F0;
    border-radius: 10px;
  }
  
  .promo-banner-grid::-webkit-scrollbar-thumb {
    background: #E94E77;
    border-radius: 10px;
  }
  
  .promo-banner-card {
    min-width: 280px;
    scroll-snap-align: start;
    height: 350px;
  }
  
  .promo-banner-card:hover {
    transform: none;
  }
  
  .promo-banner-content {
    padding: 20px;
  }
  
  .promo-banner-content h3 {
    font-size: 22px;
  }
  
  .promo-banner-text {
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .promo-banner-btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}

/* Products Section */
.products-section {
  padding: 50px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1A2B56;
  margin: 0;
}

.view-all-link {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #E94E77;
  text-decoration: none;
  border-bottom: 1px solid #E94E77;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  color: #F9A03F;
  border-bottom-color: #F9A03F;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.product-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #F5F5F5;
  border-radius: 20px 20px 0 0;
  margin: 0;
}

.product-image-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 30%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-25deg);
  z-index: 4;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-image-wrapper::before {
  opacity: 1;
  animation: flash 1.2s ease-out;
}

@keyframes flash {
  0% { left: -30%; }
  100% { left: 130%; }
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.product-card:hover .product-image-wrapper img {
  transform: none;
}

.product-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.product-card:hover .product-image-wrapper::after {
  opacity: 0;
}

.product-badge {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 18px;
  border-radius: 0 0 8px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
}

.product-badge.best_seller {
  background: linear-gradient(135deg, #1A2B56 0%, #2A3B66 100%);
  border: 1px solid rgba(255,255,255,0.1);
}

.product-badge.exclusive {
  background: linear-gradient(135deg, #E94E77 0%, #F9A03F 100%);
  border: 1px solid rgba(255,255,255,0.2);
}

.product-rating {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 50px 0 0 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #333333;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-rating span {
  font-weight: 600;
  color: #333333;
}

.product-rating .star {
  color: #FFD700;
  font-size: 14px;
}

.product-rating .count {
  font-weight: 400;
  color: #333333;
  font-size: 12px;
}

.product-info {
  padding: 16px 20px 20px 20px;
}

.product-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 6px;
  line-height: 1.4;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 8px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.current-price {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

.original-price {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  text-decoration: line-through;
}

.discount-tag {
  padding: 4px 10px;
  background: #E8F5E9;
  color: #2E7D32;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.add-to-cart-btn {
  width: 100%;
  padding: 13px 24px;
  background: linear-gradient(90deg, #E94E77 0%, #F9A03F 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(233,78,119,0.25);
  position: relative;
  overflow: hidden;
}

.add-to-cart-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.add-to-cart-btn:hover::before {
  left: 100%;
}

.add-to-cart-btn:hover {
  box-shadow: 0 8px 24px rgba(233,78,119,0.35);
  transform: translateY(-1px);
}

.add-to-cart-btn svg {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF;
  stroke-width: 2;
  fill: none;
}

/* Mobile Optimization */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .products-section {
    padding: 40px 20px;
  }
  
  .section-header {
    margin-bottom: 20px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .view-all-link {
    font-size: 13px;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .product-image-wrapper {
    height: 180px;
  }
  
  .product-info {
    padding: 16px;
  }
  
  .product-title {
    font-size: 14px;
    min-height: 40px;
  }
  
  .current-price {
    font-size: 18px;
  }
  
  .original-price {
    font-size: 14px;
  }
  
  .add-to-cart-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Single Product Page */
.single-product-page {
  background: #FFFFFF;
  padding: 40px 20px 40px;
  overflow-x: hidden;
}

.product-breadcrumb {
  max-width: 1200px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #666;
}

.product-breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-breadcrumb a:hover {
  color: #E94E77;
}

.product-breadcrumb .separator {
  color: #999;
  font-size: 12px;
}

.product-breadcrumb .current {
  color: #E94E77;
  font-weight: 500;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 100%;
}

/* Left Column */
.product-gallery {
  display: flex;
  gap: 16px;
}

.thumbnail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thumbnail-item {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  border: 2px solid #E0E0E0;
  cursor: pointer;
  object-fit: cover;
  transition: all 0.3s ease;
}

.thumbnail-item.active,
.thumbnail-item:hover {
  border-color: #E94E77;
}

.main-image-wrapper {
  position: relative;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  background: #F5F5F5;
  width: 100%;
  max-width: 100%;
}

.product-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #E94E77 0%, #F9A03F 100%);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.main-product-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.trust-card {
  margin-top: 30px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 20px;
}

.trust-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.trust-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #666;
}

.trust-icon {
  width: 32px;
  height: 32px;
  background: #FFF5F7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD700;
  font-size: 16px;
}

/* Right Column */
.product-badge-top {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #FFFFFF;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-main-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1A2B56;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.pricing-note {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  margin-bottom: 10px;
}

.product-current-price {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #E94E77;
  letter-spacing: -0.5px;
}

.product-original-price {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
}

.product-discount-badge {
  padding: 6px 12px;
  background: #E8F5E9;
  color: #2E7D32;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.view-category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #F5F5F5;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.view-category-link:hover {
  background: #FFF5F7;
  color: #E94E77;
}

.view-category-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.rating-value {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.rating-star {
  color: #FFD700;
  font-size: 18px;
}

.rating-link {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #666;
  text-decoration: none;
}

.rating-link:hover {
  color: #E94E77;
}

.city-selection-box {
  padding: 18px 20px;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 100%);
  border: 1px solid #FFE5EC;
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(233, 78, 119, 0.08);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.city-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 12px;
}

.city-selection-box label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.city-info-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(233, 78, 119, 0.1);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #E94E77;
  white-space: nowrap;
}

.city-info-badge svg {
  width: 14px;
  height: 14px;
  fill: #E94E77;
  flex-shrink: 0;
}

.city-select {
  width: 100%;
  padding: 0 45px 0 50px;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23E94E77" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>'), url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat, no-repeat;
  background-position: left 15px center, right 15px center;
  background-size: 20px, 20px;
  line-height: normal;
  font-weight: 500;
}

.city-select:focus {
  outline: none;
  border-color: #E94E77;
  box-shadow: 0 0 0 3px rgba(233, 78, 119, 0.1);
}

.customization-box {
  padding: 18px 20px;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 100%);
  border: 1px solid #FFE5EC;
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(233, 78, 119, 0.08);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.customization-box label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.custom-select {
  width: 100%;
  padding: 0 45px 0 20px;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
  line-height: normal;
}

.custom-select:focus {
  outline: none;
  border-color: #E94E77;
  box-shadow: 0 0 0 3px rgba(233, 78, 119, 0.1);
}

.promo-bar {
  padding: 14px 20px;
  background: #FFF9E6;
  border: 1px solid #FFD700;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-align: center;
  margin-bottom: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.action-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  width: 100%;
  max-width: 100%;
}

.whatsapp-btn-inline {
  padding: 14px 28px;
  background: #FFFFFF;
  border: 2px solid #25D366;
  border-radius: 12px;
  color: #25D366;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  height: 50px;
}

.whatsapp-btn-inline svg {
  width: 20px;
  height: 20px;
  fill: #25D366;
}

.whatsapp-btn-inline:hover {
  background: #25D366;
  color: #FFFFFF;
}

.whatsapp-btn-inline:hover svg {
  fill: #FFFFFF;
}

.book-now-btn-inline {
  flex: 1;
  padding: 14px 28px;
  background: linear-gradient(90deg, #E94E77 0%, #F9A03F 100%);
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(233,78,119,0.3);
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-now-btn-inline:hover {
  box-shadow: 0 6px 20px rgba(233,78,119,0.4);
  transform: translateY(-2px);
}

.product-description {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

/* Similar Products Section */
.similar-products-section {
  max-width: 1200px;
  margin: 50px auto 0;
  padding: 40px 0;
  border-top: 1px solid #F0F0F0;
}

/* Sticky Action Bar */
.sticky-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1px solid #E0E0E0;
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}

.whatsapp-btn {
  padding: 14px 28px;
  background: #FFFFFF;
  border: 2px solid #25D366;
  border-radius: 12px;
  color: #25D366;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
  fill: #25D366;
}

.whatsapp-btn:hover {
  background: #25D366;
  color: #FFFFFF;
}

.whatsapp-btn:hover svg {
  fill: #FFFFFF;
}

.book-now-btn {
  flex: 1;
  padding: 14px 28px;
  background: linear-gradient(90deg, #E94E77 0%, #F9A03F 100%);
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(233,78,119,0.3);
}

.book-now-btn:hover {
  box-shadow: 0 6px 20px rgba(233,78,119,0.4);
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .single-product-page {
    padding: 20px 16px;
  }
  
  .similar-products-section {
    padding: 30px 0;
  }
  
  .product-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }
  
  .product-left,
  .product-right {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  .product-breadcrumb {
    font-size: 11px;
    margin-bottom: 16px;
  }
  
  .product-breadcrumb .separator {
    font-size: 10px;
  }
  
  .product-gallery {
    flex-direction: column-reverse;
    width: 100%;
  }
  
  .thumbnail-list {
    flex-direction: row;
    overflow-x: auto;
    width: 100%;
  }
  
  .thumbnail-item {
    min-width: 60px;
    height: 60px;
  }
  
  .main-image-wrapper {
    width: 100%;
  }
  
  .main-product-image {
    height: 300px;
    width: 100%;
  }
  
  .trust-card {
    margin-top: 20px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .product-badge-top {
    font-size: 11px;
    padding: 5px 12px;
  }
  
  .product-main-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  .product-current-price {
    font-size: 24px;
  }
  
  .product-original-price {
    font-size: 14px;
  }
  
  .product-discount-badge {
    font-size: 11px;
    padding: 4px 8px;
  }
  
  .pricing-note {
    font-size: 11px;
    margin-bottom: 8px;
  }
  
  .rating-value {
    font-size: 14px;
  }
  
  .rating-star {
    font-size: 16px;
  }
  
  .rating-link {
    font-size: 11px;
  }
  
  .view-category-link {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 12px;
  }
  
  .city-selection-box,
  .customization-box {
    padding: 14px 16px;
    margin-bottom: 12px;
    width: 100%;
    max-width: 100%;
  }
  
  .city-label-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  .city-info-badge {
    font-size: 10px;
    padding: 4px 10px;
  }
  
  .city-select,
  .custom-select {
    height: 44px;
    font-size: 13px;
    width: 100%;
    max-width: 100%;
  }
  
  .customization-box label,
  .city-selection-box label {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .product-tabs-section {
    margin-top: 12px;
    width: 100%;
  }
  
  .tabs-nav {
    gap: 16px;
    padding: 0;
    width: 100%;
  }
  
  .tab-btn {
    font-size: 12px;
    padding: 0 2px 12px 2px;
  }
  
  .tabs-content {
    padding: 14px 0;
  }
  
  .inclusion-list li,
  .delivery-list li,
  .care-list li,
  .faq-list li {
    font-size: 12px;
  }
  
  .promo-bar {
    padding: 10px 14px;
    font-size: 11px;
    margin-bottom: 12px;
    width: 100%;
  }
  
  .action-buttons {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
    width: 100%;
  }
  
  .whatsapp-btn-inline,
  .book-now-btn-inline {
    width: 100%;
    min-height: 48px;
    padding: 14px 20px;
    font-size: 14px;
  }
  
  .product-description {
    font-size: 13px;
    width: 100%;
  }
}

/* Premium Footer */
.decor4u-footer {
  background: #F8F8F8;
  color: #333;
  margin-top: 60px;
  border-top: 1px solid #E0E0E0;
}

.footer-main {
  padding: 60px 20px 40px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

/* Brand Column */
.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-img {
  max-height: 50px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #E94E77;
  letter-spacing: -0.8px;
}

.footer-about {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* Footer Titles */
.footer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A2B56;
  margin: 0 0 24px 0;
}

/* Footer Menus */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-menu a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-menu a:hover {
  color: #E94E77;
}

/* Contact Column */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: #E94E77;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #E0E0E0;
  padding: 24px 20px;
  background: #FFFFFF;
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.footer-copyright {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F0F0F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #E94E77;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Footer Mobile Responsive */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 20px 30px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .logo-text {
    font-size: 28px;
  }
  
  .footer-title {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .footer-about,
  .footer-menu a,
  .contact-item,
  .footer-copyright {
    font-size: 13px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* Simple Page Template */
.simple-page-wrapper {
  background: #FFFFFF;
}

.simple-hero {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
}

.simple-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #1A2B56;
  margin: 0;
}

.simple-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.simple-content {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}

.simple-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #E94E77;
  margin: 40px 0 20px;
}

.simple-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #1A2B56;
  margin: 30px 0 15px;
}

.simple-content p {
  margin-bottom: 20px;
}

.simple-content ul,
.simple-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.simple-content li {
  margin-bottom: 10px;
}

.simple-content a {
  color: #E94E77;
  text-decoration: none;
  border-bottom: 1px solid #E94E77;
}

.simple-content a:hover {
  color: #F9A03F;
  border-bottom-color: #F9A03F;
}

@media (max-width: 768px) {
  .simple-hero {
    padding: 40px 20px;
  }
  
  .simple-title {
    font-size: 32px;
  }
  
  .simple-container {
    padding: 40px 20px;
  }
  
  .simple-content {
    font-size: 14px;
  }
  
  .simple-content h2 {
    font-size: 22px;
  }
  
  .simple-content h3 {
    font-size: 18px;
  }
}

/* Privacy Policy Page */
.privacy-page {
  background: #FFFFFF;
}

.privacy-hero {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
}

.privacy-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #1A2B56;
  margin: 0;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.privacy-content {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}

.privacy-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #E94E77;
  margin: 40px 0 20px;
}

.privacy-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #1A2B56;
  margin: 30px 0 15px;
}

.privacy-content p {
  margin-bottom: 20px;
}

/* Terms & Conditions Page */
.terms-page {
  background: #FFFFFF;
}

.terms-hero {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
}

.terms-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #1A2B56;
  margin: 0;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.terms-content {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}

.terms-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #E94E77;
  margin: 40px 0 20px;
}

.terms-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #1A2B56;
  margin: 30px 0 15px;
}

.terms-content p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .privacy-hero,
  .terms-hero {
    padding: 40px 20px;
  }
  
  .privacy-title,
  .terms-title {
    font-size: 32px;
  }
  
  .privacy-container,
  .terms-container {
    padding: 40px 20px;
  }
  
  .privacy-content,
  .terms-content {
    font-size: 14px;
  }
  
  .privacy-content h2,
  .terms-content h2 {
    font-size: 22px;
  }
  
  .privacy-content h3,
  .terms-content h3 {
    font-size: 18px;
  }
}

/* Contact Page */
.contact-page {
  background: #FFFFFF;
}

.contact-hero {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
}

.contact-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #1A2B56;
  margin-bottom: 16px;
}

.contact-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #666;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #E94E77;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 14px 20px;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E94E77;
  box-shadow: 0 0 0 3px rgba(233, 78, 119, 0.1);
}

.submit-btn {
  padding: 16px 32px;
  background: linear-gradient(90deg, #E94E77 0%, #F9A03F 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(233,78,119,0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233,78,119,0.4);
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  padding: 24px;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 100%);
  border: 1px solid #FFE5EC;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: #E94E77;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A2B56;
  margin: 0 0 8px 0;
}

.info-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Track Order Page */
.track-order-page {
  background: #FFFFFF;
  min-height: 70vh;
}

.track-hero {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
}

.track-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #1A2B56;
  margin-bottom: 16px;
}

.track-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #666;
}

.track-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 20px;
}

.track-form-wrapper {
  padding: 40px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  margin-bottom: 40px;
}

.track-order-form {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.track-order-form .form-input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  height: 50px;
}

.track-order-form .form-input:focus {
  outline: none;
  border-color: #E94E77;
  box-shadow: 0 0 0 3px rgba(233, 78, 119, 0.1);
}

.track-btn {
  padding: 0 32px;
  background: linear-gradient(90deg, #E94E77 0%, #F9A03F 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(233,78,119,0.3);
  height: 50px;
  white-space: nowrap;
}

.track-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233,78,119,0.4);
}

.track-info {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 100%);
  border-radius: 20px;
}

.track-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1A2B56;
  margin-bottom: 12px;
}

.track-info p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.whatsapp-link:hover {
  background: #1DA851;
  transform: translateY(-2px);
}

.whatsapp-link svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-hero,
  .track-hero {
    padding: 40px 20px;
  }
  
  .contact-title,
  .track-title {
    font-size: 32px;
  }
  
  .contact-subtitle,
  .track-subtitle {
    font-size: 16px;
  }
  
  .contact-container {
    padding: 40px 20px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-heading {
    font-size: 22px;
  }
  
  .track-form-wrapper {
    padding: 24px;
  }
  
  .track-order-form {
    flex-direction: column;
  }
  
  .track-order-form .form-input,
  .track-btn {
    width: 100%;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* FAQs Page */
.faqs-page {
  background: #FFFFFF;
}

.faqs-hero {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
}

.faqs-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #1A2B56;
  margin-bottom: 16px;
}

.faqs-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #666;
}

.faqs-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.faqs-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #E94E77;
  box-shadow: 0 4px 12px rgba(233, 78, 119, 0.1);
}

.faq-question {
  padding: 20px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1A2B56;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: #E94E77;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  color: #E94E77;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .faqs-hero {
    padding: 40px 20px;
  }
  
  .faqs-title {
    font-size: 32px;
  }
  
  .faqs-subtitle {
    font-size: 16px;
  }
  
  .faqs-container {
    padding: 40px 20px;
  }
  
  .faq-question {
    font-size: 15px;
    padding: 16px 20px;
  }
  
  .faq-answer p {
    padding: 0 20px 16px;
    font-size: 13px;
  }
}

/* Product Card Link */
.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card-link .product-info {
  padding: 16px 20px 12px 20px;
}

.product-card .add-to-cart-btn {
  margin: 0 20px 20px 20px;
  width: calc(100% - 40px);
}

/* Search Results Page */
.search-results-page {
  background: #FFFFFF;
  min-height: 70vh;
}

.search-hero {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #F0F0F0;
}

.search-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.search-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1A2B56;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.search-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin: 0;
}

.search-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Search Filters */
.search-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.filter-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-section label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}

.sort-dropdown,
.category-dropdown {
  padding: 10px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 160px;
}

.sort-dropdown:focus,
.category-dropdown:focus {
  outline: none;
  border-color: #E94E77;
  box-shadow: 0 0 0 3px rgba(233, 78, 119, 0.1);
}

/* Search Results Grid */
.search-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Search Result Item (for non-product results) */
.search-result-item {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.search-result-item:hover {
  border-color: #E94E77;
  box-shadow: 0 4px 12px rgba(233, 78, 119, 0.1);
}

.search-result-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A2B56;
  margin: 0 0 12px 0;
}

.search-result-item h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.search-result-item h3 a:hover {
  color: #E94E77;
}

.result-excerpt {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #E94E77;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: #F9A03F;
}

/* No Results Section */
.no-results {
  text-align: center;
  padding: 60px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.no-results-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: #FFF5F7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-results-icon svg {
  width: 40px;
  height: 40px;
  stroke: #E94E77;
  stroke-width: 2;
  fill: none;
}

.no-results h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1A2B56;
  margin: 0 0 12px 0;
}

.no-results p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #666;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

/* Search Suggestions */
.search-suggestions {
  margin-bottom: 40px;
}

.search-suggestions h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A2B56;
  margin: 0 0 20px 0;
}

.category-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.category-suggestion {
  display: inline-block;
  padding: 10px 20px;
  background: #FFF5F7;
  border: 1px solid #FFE5EC;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #E94E77;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-suggestion:hover {
  background: #E94E77;
  color: #FFFFFF;
  border-color: #E94E77;
  transform: translateY(-2px);
}

/* Search Again Form */
.search-again h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A2B56;
  margin: 0 0 20px 0;
}

.search-form-large {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid #E0E0E0;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.search-input-large {
  flex: 1;
  padding: 16px 24px;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #333;
}

.search-input-large::placeholder {
  color: #999;
}

.search-btn-large {
  padding: 16px 24px;
  background: linear-gradient(90deg, #E94E77 0%, #F9A03F 100%);
  border: none;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.search-btn-large:hover {
  transform: translateX(-2px);
}

.search-btn-large svg {
  width: 20px;
  height: 20px;
  stroke: #FFFFFF;
  stroke-width: 2;
  fill: none;
}

/* Search Pagination */
.search-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 20px 0;
}

.search-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.search-pagination .page-numbers:hover,
.search-pagination .page-numbers.current {
  background: #E94E77;
  color: #FFFFFF;
  border-color: #E94E77;
}

.search-pagination .prev,
.search-pagination .next {
  width: auto;
  padding: 0 16px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .search-results-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .search-hero {
    padding: 40px 20px;
  }
  
  .search-title {
    font-size: 20px;
  }
  
  .search-subtitle {
    font-size: 13px;
  }
  
  .search-container {
    padding: 20px 16px;
  }
  
  .search-filters {
    flex-direction: row;
    gap: 8px;
    align-items: center;
    padding: 12px;
    margin-bottom: 16px;
  }
  
  .filter-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .filter-section label {
    font-size: 11px;
    color: #666;
  }
  
  .sort-dropdown,
  .category-dropdown {
    width: 100%;
    min-width: auto;
    font-size: 12px;
    padding: 8px 12px;
    height: 36px;
  }
  
  .search-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .product-card {
    border-radius: 12px;
  }
  
  .product-image-wrapper {
    height: 160px;
    border-radius: 12px 12px 0 0;
  }
  
  .product-badge {
    font-size: 9px;
    padding: 4px 8px;
  }
  
  .product-rating {
    font-size: 11px;
    padding: 3px 8px;
  }
  
  .product-rating .star {
    font-size: 12px;
  }
  
  .product-rating .count {
    font-size: 10px;
  }
  
  .product-info {
    padding: 12px;
  }
  
  .product-title {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 8px;
    min-height: 34px;
  }
  
  .product-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 10px;
  }
  
  .current-price {
    font-size: 16px;
  }
  
  .original-price {
    font-size: 12px;
  }
  
  .discount-tag {
    font-size: 10px;
    padding: 3px 8px;
  }
  
  .add-to-cart-btn {
    margin: 0 12px 12px 12px;
    width: calc(100% - 24px);
    padding: 10px 16px;
    font-size: 12px;
  }
  
  .add-to-cart-btn svg {
    width: 14px;
    height: 14px;
  }
  
  .quantity-controls {
    bottom: 10px;
    right: 10px;
    width: 80px;
    height: 32px;
  }
  
  .quantity-controls .qty-value {
    font-size: 13px;
  }
  
  .search-result-item {
    padding: 16px;
  }
  
  .search-result-item h3 {
    font-size: 15px;
  }
  
  .result-excerpt {
    font-size: 12px;
  }
  
  .no-results {
    padding: 40px 16px;
  }
  
  .no-results-icon {
    width: 60px;
    height: 60px;
  }
  
  .no-results-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .no-results h2 {
    font-size: 18px;
  }
  
  .no-results p {
    font-size: 13px;
  }
  
  .search-suggestions h3,
  .search-again h3 {
    font-size: 15px;
  }
  
  .category-suggestion {
    font-size: 12px;
    padding: 8px 14px;
  }
  
  .search-form-large {
    flex-direction: column;
    border-radius: 12px;
  }
  
  .search-input-large {
    padding: 12px 16px;
    font-size: 13px;
  }
  
  .search-btn-large {
    padding: 12px 16px;
    font-size: 13px;
    justify-content: center;
  }
  
  .search-pagination {
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .search-pagination .page-numbers {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  
  .search-pagination .prev,
  .search-pagination .next {
    width: auto;
    padding: 0 10px;
    font-size: 11px;
    white-space: nowrap;
  }
}

/* Search Suggestions Dropdown */
.search-suggestions-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-top: none;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  display: none;
}

.suggestion-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #F0F0F0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.suggestion-item:hover,
.suggestion-item.selected {
  background: #FFF5F7;
  border-left: 3px solid #E94E77;
  padding-left: 17px;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.suggestion-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.suggestion-price {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #E94E77;
}

.suggestion-type {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  background: #F5F5F5;
  border-radius: 8px;
}

/* Search Loading & Error States */
.search-loading,
.search-error,
.no-products-found {
  text-align: center;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #666;
}

.search-loading {
  position: relative;
}

.search-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 2px solid #E0E0E0;
  border-top: 2px solid #E94E77;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-top: 20px;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.search-error {
  color: #E94E77;
}

/* Search Notifications */
.search-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 20px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  z-index: 10000;
  animation: slideIn 0.3s ease;
}

.search-notification.success {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #C8E6C9;
}

.search-notification.error {
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #FFCDD2;
}

.search-notification.info {
  background: #E3F2FD;
  color: #1565C0;
  border: 1px solid #BBDEFB;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Mobile Responsive for Search Suggestions */
@media (max-width: 768px) {
  .search-suggestions-dropdown {
    border-radius: 0 0 16px 16px;
    max-height: 250px;
  }
  
  .suggestion-item {
    padding: 10px 16px;
  }
  
  .suggestion-item:hover,
  .suggestion-item.selected {
    padding-left: 13px;
  }
  
  .suggestion-label {
    font-size: 13px;
  }
  
  .suggestion-price {
    font-size: 11px;
  }
  
  .suggestion-type {
    font-size: 10px;
    padding: 3px 6px;
  }
  
  .search-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    font-size: 13px;
  }
}

/* Product Tabs Section */
.product-tabs-section {
  margin-top: 16px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.tabs-nav {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid #E0E0E0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 0 0;
  margin-bottom: 0;
  align-items: flex-end;
  min-height: 50px;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 8px 4px 16px 4px;
  background: none !important;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0 !important;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: none;
  white-space: nowrap;
  line-height: normal;
  overflow: visible;
  height: auto;
  display: inline-block;
  vertical-align: bottom;
}

.tab-btn:hover {
  background: none !important;
  color: #666;
  border-radius: 0 !important;
}

.tab-btn.active {
  color: #E94E77;
  border-bottom-color: #E94E77;
  background: none !important;
  border-radius: 0 !important;
}

.tab-btn.active:hover {
  color: #E94E77;
  background: none !important;
  border-radius: 0 !important;
}

.tabs-content {
  padding: 20px 0;
}

.tab-panel {
  display: none;
}

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

.inclusion-list,
.faq-list,
.delivery-list,
.care-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inclusion-list li,
.delivery-list li,
.care-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.inclusion-list li::before,
.delivery-list li::before,
.care-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
}

.faq-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
}

.faq-list li strong {
  color: #333;
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .tabs-nav {
    gap: 24px;
  }
  
  .tab-btn {
    font-size: 13px;
    padding-bottom: 10px;
  }
  
  .tabs-content {
    padding: 16px 0;
  }
  
  .inclusion-list li,
  .delivery-list li,
  .care-list li,
  .faq-list li {
    font-size: 13px;
  }
}

/* cart count badge - display above cart icon like typical e‑commerce sites */
.cart-btn {
  position: relative; /* allow absolute positioning of badge */
}
.cart-count {
  background: #E94E77;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 12px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  min-width: 20px;
  text-align: center;
  vertical-align: middle;
  margin: 0; /* reset previous inline spacing */
}

/* apply same positional styling when search.js updates header-cart-count */
.header-cart-count {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  background: #E94E77;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 12px;
  min-width: 20px;
  text-align: center;
  vertical-align: middle;
  display: none;
}

/* quantity controls shown when product already in cart */
.quantity-controls {
  /* minimalist selector container - compact at bottom-right */
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 90px;
  height: 36px;
  padding: 0 8px;
  background: #F8F9FA;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 10;
}
.quantity-controls .qty-decrease,
.quantity-controls .qty-increase {
  width: 22px;
  height: 22px;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: #E94E77;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
.quantity-controls .qty-decrease:hover,
.quantity-controls .qty-increase:hover {
  color: #c13363;
}
.quantity-controls .qty-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #333333;
  text-align: center;
  min-width: 18px;
}

/* container used on single product page for add/qty */
.purchase-box {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.purchase-box .add-to-cart-btn {
  flex-shrink: 0;
  width: auto;
  padding: 13px 24px;
}

/* ===== CUSTOM CART PAGE STYLES ===== */

.decor4u-cart-page {
  background: #FAFAFA;
  padding: 24px 16px;
  min-height: 80vh;
}

.cart-page-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
}

/* Left Column: Cart Items */
.cart-items-column {
  min-height: 400px;
}

.cart-title {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #1A2B56;
  margin-bottom: 16px;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: 100px 1fr 28px;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  background: #F5F5F5;
}

.item-prod-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #999;
}

.cart-item-details {
  flex: 1;
}

.item-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1A2B56;
  margin-bottom: 8px;
}

.item-price-section {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 8px;
}

.item-price {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #E94E77;
}

.item-quantity {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #999;
  background: #F5F5F5;
  padding: 4px 8px;
  border-radius: 6px;
}

.item-total {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.cart-quantity-controls {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 90px;
  height: 36px;
  padding: 0 8px;
  background: #F8F9FA;
  border-radius: 8px;
  margin-bottom: 12px;
  margin-right: 12px;
}

.cart-quantity-controls .qty-decrease,
.cart-quantity-controls .qty-increase {
  width: 22px;
  height: 22px;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: #E94E77;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.cart-quantity-controls .qty-decrease:hover,
.cart-quantity-controls .qty-increase:hover {
  color: #c13363;
}

.cart-quantity-controls .qty-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #333333;
  text-align: center;
  min-width: 18px;
}

.btn-date-time {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #1B6FA0;
  background: #E3F2FD;
  border: 1px solid #90CAF9;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-date-time:hover {
  background: #BBDEFB;
}

/* Addons Section */
.addons-section {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #EEEEEE;
}

.addons-title {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #666;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.addons-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  padding: 6px;
  background: #FAFAFA;
  border-radius: 5px;
}

.addon-name {
  color: #333;
  font-weight: 500;
}

.addon-price {
  color: #E94E77;
  font-weight: 600;
}

.addon-delete {
  background: transparent;
  border: none;
  color: #999;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.addon-delete:hover {
  color: #E94E77;
}

.btn-remove-item {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #E94E77;
  font-size: 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.btn-remove-item:hover {
  background: #E94E77;
  color: #fff;
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 80px 40px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.empty-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.empty-text {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #666;
  margin-bottom: 24px;
}

.btn-continue-shopping {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(90deg, #E94E77 0%, #F9A03F 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-continue-shopping:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233,78,119,0.25);
}

/* Right Column: Bill Summary */
.cart-summary-column {
  position: sticky;
  top: 20px;
}

.bill-summary-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.summary-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A2B56;
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid #F0F0F0;
}

.summary-label {
  color: #666;
  font-weight: 500;
}

.summary-value {
  color: #1A2B56;
  font-weight: 600;
}

.total-amount-bar {
  margin: 16px 0;
  padding: 14px;
  background: linear-gradient(90deg, #F9A03F 0%, #FDB653 100%);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.total-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.total-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.total-price {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.btn-login-proceed {
  display: block;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  background: #28A745;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  margin: 16px 0;
}

.btn-login-proceed:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40,167,69,0.25);
}

/* Trust Bar */
.trust-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E0E0E0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: #666;
}

.trust-icon {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
}

.trust-text {
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cart-page-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .cart-summary-column {
    position: static;
  }
  
  .cart-item-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .cart-item-image {
    width: 100%;
    height: 200px;
  }
  
  .btn-remove-item {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    font-size: 24px;
    line-height: 1;
  }
  
  .cart-title {
    font-size: 24px;
  }
  
  .track-order-form {
    flex-direction: column;
  }
  
  .track-order-form .btn-primary,
  .track-btn {
    width: 100%;
  }
}

/* Date & Time Picker Modal */
.date-time-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.date-time-modal.active {
  display: flex;
}

.modal-content {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-width: 450px;
  width: 90%;
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #E0E0E0;
}

.modal-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1A2B56;
  margin: 0;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #E94E77;
}

.modal-body {
  padding: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1A2B56;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  transition: border-color 0.2s;
  line-height: 1.2;
}

.form-input:focus {
  outline: none;
  border-color: #E94E77;
  box-shadow: 0 0 0 3px rgba(233,78,119,0.1);
}

.modal-footer {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid #E0E0E0;
  background: #FAFAFA;
}

.btn-cancel,
.btn-confirm {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-cancel {
  background: #F0F0F0;
  color: #666;
}

.btn-cancel:hover {
  background: #E0E0E0;
}

.btn-confirm {
  background: #28A745;
  color: #fff;
}

.btn-confirm:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40,167,69,0.2);
}



/* Profile Page - My Bookings */
.booking-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.booking-card:hover {
  border-color: #E94E77;
  box-shadow: 0 4px 16px rgba(233, 78, 119, 0.12);
  transform: translateY(-2px);
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F0F0F0;
}

.booking-header h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1A2B56;
  margin: 0 0 4px 0;
}

.booking-date {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #999;
  margin: 0;
}

.booking-status {
  padding: 4px 12px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-status.status-pending {
  background: #FFF3CD;
  color: #856404;
}

.booking-status.status-confirmed {
  background: #D1ECF1;
  color: #0C5460;
}

.booking-status.status-processing {
  background: #CCE5FF;
  color: #004085;
}

.booking-status.status-dispatched {
  background: #D4EDDA;
  color: #155724;
}

.booking-status.status-out_for_delivery {
  background: #D1ECF1;
  color: #0C5460;
}

.booking-status.status-delivered {
  background: #D4EDDA;
  color: #155724;
}

.booking-status.status-cancelled {
  background: #F8D7DA;
  color: #721C24;
}

.booking-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.booking-item {
  display: flex;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #666;
}

.booking-item span:last-child {
  font-weight: 600;
  color: #333;
}

.booking-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #F0F0F0;
}

.booking-total {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #E94E77;
}

.booking-footer .btn-secondary {
  padding: 8px 16px;
  background: #FFFFFF;
  border: 1px solid #E94E77;
  border-radius: 8px;
  color: #E94E77;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.booking-footer .btn-secondary:hover {
  background: #E94E77;
  color: #FFFFFF;
}


/* Track Order Styles */
.track-order-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin-bottom: 24px;
}

.track-order-form .form-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  height: 48px;
}

.track-order-form .btn-primary {
  padding: 0 24px;
  background: linear-gradient(90deg, #E94E77 0%, #F9A03F 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  height: 48px;
  white-space: nowrap;
}

.tracking-result {
  margin-top: 24px;
  max-width: 600px;
}

.track-loading,
.track-error {
  padding: 16px;
  text-align: center;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
}

.track-loading {
  background: #F5F5F5;
  color: #666;
}

.track-error {
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #FFCDD2;
}

.track-success {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.track-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F0F0F0;
}

.track-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1A2B56;
  margin: 0;
}

.track-status {
  padding: 4px 12px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.track-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.timeline-step {
  display: flex;
  gap: 12px;
  position: relative;
  padding-left: 32px;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 24px;
  width: 2px;
  height: calc(100% + 12px);
  background: #E0E0E0;
}

.timeline-step:last-child::before {
  display: none;
}

.step-icon {
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F5F5F5;
  border: 2px solid #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #999;
}

.timeline-step.completed .step-icon {
  background: #28A745;
  border-color: #28A745;
  color: #fff;
}

.timeline-step.active .step-icon {
  background: #2874F0;
  border-color: #2874F0;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(40, 116, 240, 0.2);
}

.step-content {
  flex: 1;
}

.step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #999;
  margin-bottom: 2px;
}

.timeline-step.completed .step-title {
  color: #28A745;
}

.timeline-step.active .step-title {
  color: #2874F0;
}

.step-date {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: #999;
}

.track-details {
  padding-top: 12px;
  border-top: 1px solid #F0F0F0;
  display: flex;
  gap: 24px;
}

.track-details p {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #666;
  margin: 0;
}

.track-details strong {
  color: #333;
  font-weight: 600;
}
