:root {
  --primary:#7b5cff;
  --secondary:#ffb703;
  --bg:#fafafa;
  --text:#222;
}

body {
  margin:0;
  font-family:Inter,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

header {
  position:sticky; top:20; z-index:10;
  background:white; box-shadow:0 2px 5px rgba(0,0,0,.05);
  padding:12px 40px; display:flex; align-items:center; gap:30px;
}

.page-container {
  width: calc(100% - 80px);
  margin: 0 auto;
  padding:8px 20px;
}

.csection { padding:10px; }

.section { padding:10px; }

.grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:20px;
}

.card {
  background:white; border-radius:16px; overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,.08);
  transition:.2s;
}
.card:hover { transform:translateY(-4px); }

.card img { width:100%; height:220px; object-fit:cover; }

.card .info { padding:14px; }
.price { font-weight:700; color:var(--primary); }

button {
  background:var(--primary); color:white;
  border:none; border-radius:8px;
  padding:10px 14px; cursor:pointer;
}

footer { background:#111; color:#bbb; text-align:center; padding:30px; }

/* Header specific */
.topbar { display:flex; align-items:center; gap:10px; }
.menu-btn { font-size:24px; cursor:pointer; }
.brand { font-size:28px; font-weight:700; color:#7b5cff; }

.delivery-pill {
  background:#cbf0df;
  border:1px solid #00a859;
  padding:6px 12px;
  border-radius:10px;
  font-size:14px;
}

.searchbox { flex:1; display:flex; justify-content:center; }
.searchbox input {
  width:40%; padding:10px 22px;
  border-radius:30px; border:1px solid #ddd;
}

.icons { display:flex; gap:50px; font-size:24px; cursor:pointer; }

.category-strip {
  display:flex; justify-content:space-between;
  padding:16px 40px; border:1px solid #6a3fc7;
  border-radius:8px; margin:20px 40px; background:white;
}

.category-strip div { font-size:13px; color:#555; text-align:center; }

.category-strip a {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  font-size:14px;
  color:#555;
  text-decoration:none;
  padding:6px 10px;
}

.category-strip a span {
  font-size:20px;
}

.category-strip a:hover {
  color:#6a3fc7;
}

/* ===== HERO BANNER UPDATE ===== */
.hero-banner {
  width: calc(100% - 20px); /* Increased width by reducing margin on sides */
  height: 720px;
  background: url("https://ushaaflorals.com/images/heroimage.png") center/cover no-repeat;
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* Changed from flex-start to center */
  margin: 20px auto 0; /* Center with auto margins */
  max-width: none; /* Remove max-width restriction */
}

.hero-btn {
  background: #6a3fc7;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 18px 36px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  margin: 0; /* Remove any previous margins */
  position: absolute; /* Position button absolutely within hero banner */
  bottom: 40px; /* Distance from bottom */
  right: 40px; /* Distance from right */
  text-decoration: none; /* Remove underline from anchor */
  display: inline-block; /* Make anchor behave like button */
  text-align: center;
  font-family: inherit; /* Use same font as button */
}

.hero-btn:hover {
  background: #5a2fb7;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  color: white; /* Ensure text stays white on hover */
  text-decoration: none; /* Ensure no underline on hover */
}

.hero-banner img {
  width:100%;
  height:70vh;
  object-fit:cover;
  border-radius:28px;
}

.hero-content {
  background: rgba(255,255,255,0.85);
  padding: 40px 50px;
  border-radius: 24px;
  max-width: 500px;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 20px;
}

.hero-content button {
  padding: 14px 0px;
  font-size: 18px;
}

/* --- Featured gallery style --- */

.featured-gallery h2 {
  font-size: 28px;
  margin-bottom: 4px;
}

.section-subtitle {
  color: #777;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 26px 22px;
  align-items: start;
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

.gallery-label {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}

/* Remove underline from gallery labels */
.gallery-item,
.gallery-item:visited,
.gallery-item:hover,
.gallery-item:active {
  text-decoration: none;
  color: inherit;
}

.gallery-label {
  text-decoration: none;
}

.flower-gallery-grid {
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 18px;
}

.flower-gallery-grid .gallery-item img {
  height: 190px;
}

@media (min-width: 1280px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .flower-gallery-grid {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .gallery-item img {
    height: 230px;
  }

  .flower-gallery-grid .gallery-item img {
    height: 190px;
  }
}

.section-header h2 { font-size: 28px; margin-bottom: 4px; }
.section-header p { color: #777; margin-bottom: 16px; }

.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.slider::-webkit-scrollbar { 
  display: none; 
}


.product-info {
  padding: 12px;
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-price {
  font-size: 16px;
  font-weight: bold;
}

.product-old {
  text-decoration: line-through;
  color: #999;
  font-size: 13px;
  margin-left: 6px;
}

.product-rating {
  font-size: 13px;
  color: #f5a623;
  margin-top: 4px;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #00a859;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  z-index: 5;
}



.new-slider {
  padding: 40px 20px;
}

.slide-card img {
  width: 100%;
  border-radius: 12px;
}

.slide-info {
  padding: 8px;
}

.slide-btn {
  background: white;
  border: none;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
}

.nav-btn:hover {
  background: #f3f3f3;
}



/* ===============================
   NEW FLOWERS SLIDER (CLEAN)
================================ */

.new-flowers {
  margin-top: 40px;
  margin-bottom: 52px;
}

.new-flowers h2 {
  font-size: 28px;
  margin-bottom: 4px;
}

.new-flowers p {
  color: #777;
  margin-bottom: 16px;
}

.slider-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  gap: 10px;
}

.slider-window {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.product-card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  height: 395px;
  object-fit: cover;
  border-radius: 12px;
}

.product-card .pname {
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}

.product-card .price {
  font-size: 16px;
  font-weight: bold;
  color: var(--primary);
}

.product-card .rating {
  font-size: 13px;
  color: #f5a623;
}

.discount {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #00a859;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
}

.slider-btn {
  background: #fff;
  border: 1px solid #ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 30px;
  color: #6a3fc7;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 5;
}

.slider-btn:hover {
  background: #f3f3f3;
}

.slider-btn.left {
  margin-right: 0;
}

.slider-btn.right {
  margin-left: 0;
}


.vase-section {
  margin: 8px 0 50px;
}

.vase-section h2 {
  margin-top: 4px;
}

.vase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid #e0ddf1;
  border-radius: 10px;
  background: #fbfbff;
  color: #4b4d63;
  text-align: center;
}

.info-page-section {
  max-width: 980px;
  margin: 26px auto 64px;
}

.info-page-section h1 {
  margin: 0 0 10px;
  font-size: 32px;
}

.info-page-section > p {
  margin: 0 0 22px;
  color: rgba(0, 0, 0, .68);
  line-height: 1.7;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.coming-soon-card,
.faq-list details {
  border: 1px solid #e0ddf1;
  border-radius: 12px;
  background: #fbfbff;
  padding: 20px;
  box-shadow: 0 8px 22px rgba(34, 31, 54, .06);
}

.coming-soon-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.coming-soon-card p {
  margin: 0;
  color: rgba(0, 0, 0, .72);
  line-height: 1.65;
}

.contact-info-grid {
  align-items: stretch;
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f3ff 100%);
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(91, 58, 181, .12);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #5b3ab5;
  color: #fff;
  font-size: 18px;
}

.contact-detail-card h2 {
  margin-bottom: 6px;
}

.contact-detail-card a {
  color: #2b1454;
  font-weight: 700;
  text-decoration: none;
}

.contact-detail-card a:hover {
  color: #6c5ce7;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #1b1531;
}

.faq-list details p {
  margin: 12px 0 0;
  color: rgba(0, 0, 0, .74);
  line-height: 1.7;
}

.contact-message-form {
  margin-top: 28px;
  padding: 34px;
  border: 1px solid #dfe3ef;
  border-radius: 14px;
  background: #fbfdff;
  box-shadow: 0 10px 28px rgba(34, 31, 54, .06);
}

.contact-message-form h2 {
  margin: 0 0 24px;
  font-size: 28px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form-grid .full {
  grid-column: 1 / -1;
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  width: 100%;
  border: 1px solid #d8ddea;
  border-radius: 6px;
  padding: 12px 14px;
  background: #fff;
  outline: none;
}

.contact-form-grid textarea {
  min-height: 132px;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 13px 24px;
  border: 0;
  border-radius: 6px;
  background: #168a51;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.contact-submit-btn:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.contact-form-status {
  margin-top: 14px;
  min-height: 20px;
  font-weight: 700;
}

.contact-form-status.success {
  color: #168a51;
}

.contact-form-status.error {
  color: #b42318;
}

.about-page-section {
  max-width: 1120px;
}

.about-hero-panel {
  position: relative;
  overflow: hidden;
  margin: 24px 0 20px;
  padding: 38px 34px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 214, 102, .55), transparent 26%),
    radial-gradient(circle at 88% 15%, rgba(255, 116, 160, .42), transparent 28%),
    linear-gradient(135deg, #fff2f7 0%, #f4edff 48%, #eefaf4 100%);
  border: 1px solid #eadffd;
  box-shadow: 0 18px 48px rgba(91, 58, 181, .14);
}

.about-kicker {
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #5b3ab5;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.about-hero-panel h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 54px);
  color: #2b1454;
}

.about-lead {
  font-size: 18px;
  font-weight: 700;
  color: #5b3ab5 !important;
}

.about-content-card {
  margin: 18px 0;
  padding: 24px;
  border: 1px solid #e0ddf1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(34, 31, 54, .06);
}

.about-highlight-card {
  border-left: 6px solid #ff7ba7;
  background: linear-gradient(135deg, #fff 0%, #fff6fa 100%);
}

.about-story-card {
  border-left: 6px solid #7c4dff;
  background: linear-gradient(135deg, #fff 0%, #f7f2ff 100%);
}

.about-services-card {
  border-left: 6px solid #22b573;
  background: linear-gradient(135deg, #fff 0%, #f2fff8 100%);
}

.about-events-card {
  border-left: 6px solid #f6a800;
  background: linear-gradient(135deg, #fff 0%, #fff9e9 100%);
}

.about-why-card {
  border-left: 6px solid #ff6f61;
  background: linear-gradient(135deg, #fff 0%, #fff4f1 100%);
}

.about-team-card {
  border-left: 6px solid #2fb7d6;
  background: linear-gradient(135deg, #fff 0%, #effbff 100%);
}

.about-promise-card {
  border-left: 6px solid #9b6dff;
  background: linear-gradient(135deg, #fff 0%, #f3efff 100%);
}

.about-mission-card {
  background: linear-gradient(135deg, #5b3ab5 0%, #8c6bff 100%);
  color: #fff;
}

.about-vision-card {
  background: linear-gradient(135deg, #ff7ba7 0%, #ffb36b 100%);
  color: #fff;
}

.about-mission-card h2,
.about-mission-card p,
.about-vision-card h2,
.about-vision-card p {
  color: #fff;
}

.about-content-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.about-content-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #2b1454;
}

.about-content-card p {
  margin: 0 0 14px;
  color: rgba(0, 0, 0, .74);
  line-height: 1.75;
}

.about-content-card p:last-child {
  margin-bottom: 0;
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-service-grid > div {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(91, 58, 181, .12);
}

.about-service-grid ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(0, 0, 0, .74);
  line-height: 1.7;
}

.about-service-grid li {
  margin-bottom: 6px;
}

.about-service-grid li::marker {
  color: #6a3fc7;
}

.about-two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-keywords-card p {
  font-size: 13px;
}

.delivery-filter-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 18px 0 8px;
  padding: 14px 16px;
  border: 1px solid #e0ddf1;
  border-radius: 10px;
  background: #fbfbff;
  color: #222;
}

.delivery-filter-panel strong {
  margin-right: 4px;
}

.delivery-filter-panel label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(0, 0, 0, .85);
  font-size: 14px;
}

.product-seo-tagline {
  margin: -4px 0 12px;
  color: rgba(0, 0, 0, .72);
  font-size: 15px;
}

.vase-card {
  background: #f3eaff;
  padding: 14px;
  border-radius: 18px;
  text-decoration: none;
  color: #222;
  position: relative;
  transition: transform 0.2s ease;
}

.vase-card:hover {
  transform: translateY(-4px);
}

.vase-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 14px;
}

.vase-card .pname {
  font-weight: 600;
  margin-top: 10px;
}

.vase-card .price {
  color: #6c5ce7;
  font-weight: bold;
}

.vase-card .rating {
  font-size: 0.9rem;
  color: #777;
}

.vase-card .discount {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #00a859;
  color: #fff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
}

.vase-card .label {
  padding: 10px;
  font-weight: 500;
}

.breadcrumb {
  margin: 12px 40px 0px; /* top | sides | bottom */
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  text-decoration: none;
  color: #6c5ce7;
}

.product-detail {
  display: flex;
  gap: 40px;
  margin: 40px;
}

.product-detail img {
  width: 350px;
  border-radius: 20px;
}

.product-detail .info {
  max-width: 400px;
}

.add-cart {
  background: #6c5ce7;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}

.whatsapp {
  background: #25d366;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  margin-left: 10px;
}

/* ===== CATEGORY PRODUCT GRID STYLE ===== */

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.category-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 12px;
  text-decoration: none !important;
  color: #222;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.category-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.category-card .pname {
  margin-top: 10px;
  font-weight: 600;
  font-size: 15px;
  color: #666;
}

.category-card .price {
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
  color: #111;
}

.category-card .rating {
  font-size: 13px;
  font-weight: 600;
  color: #666;
  margin-top: 4px;
}

.category-card .discount {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #00a859;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}
.category-strip {
  margin: 20px 40px;
}
.category-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #00a859;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: auto;
  max-width: max-content;
}
.category-card .wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #d9dada;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
}

.category-card .wishlist.active {
  color: #e63946;
}

.wishlist-link {
  position: relative;
  text-decoration: none;
  color: inherit;
}
.wishlist-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #e63946;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  font-weight: 600;
}
/* ======== END OF CSS ======== */

/* ===== CUSTOMER REVIEWS SCROLLER ===== */

.reviews-section {
  padding: 10px 30px;
  background: #f7f3ff;
  text-align: center;
  overflow: hidden;
}

.reviews-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #6a3fc7;
}

.reviews-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}
  
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollReviews 60s linear infinite;
}

.review-card {
  min-width: 320px;
  background: white;
  padding: 18px 22px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

@keyframes scrollReviews {
  from { transform: translateX(100%); }
  to   { transform: translateX(-100%); }
}
/* ===== END OF REVIEWS SCROLLER ===== */
/* ===== FOOTER ===== */

/* ===== STYLISH CENTERED FOOTER ===== */

.site-footer {
  background: linear-gradient(135deg, #2b1454 0%, #472b7b 50%, #5e3ba5 100%);
  padding: 35px 20px 15px;
  color: #fff;
  margin-top: 40px;
  position: relative;
}

.footer-inner {
  max-width: 1420px;
  margin: 0 auto;
  text-align: left;
}

.footer-brand-logo {
  display: block;
  width: min(220px, 100%);
  height: auto;
  margin: 0 0 12px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 16px;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  flex-wrap: nowrap;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-4px) scale(1.1);
  background: rgba(255,255,255,0.2);
  box-shadow: 0 8px 24px rgba(255,255,255,0.16);
}

.footer-social i {
  font-size: 18px;
}

.footer-bottom {
  font-size: 13px;
  color: rgba(255,255,255,.72);
  margin-top: 10px;
}

.premium-footer-inner {
  display: grid;
  grid-template-columns: 1.1fr .75fr 1.1fr 1fr 1fr;
  gap: 22px;
  align-items: flex-start;
}

.footer-column h4 {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.footer-tagline {
  font-weight: 700;
}

.footer-description {
  max-width: 360px;
}

.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 4px;
}

.footer-trust-row span,
.delivery-available {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.footer-link-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link-list a,
.contact-block a {
  color: rgba(255,255,255,.84);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-link-list a:hover,
.contact-block a:hover {
  color: #fff;
  text-decoration: underline;
}

.branch-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.12);
}

.branch-card h5,
.contact-block h5 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 9px;
  color: #fff;
  font-size: 15px;
}

.branch-card p,
.contact-block p {
  margin: 0 0 8px;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  line-height: 1.45;
}

.maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #7c4dff;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
}

.maps-btn:hover {
  background: #9b6dff;
  transform: translateY(-1px);
}

.contact-block {
  margin-bottom: 12px;
}

.contact-block p {
  margin-bottom: 4px;
}

.footer-branches-column {
  max-width: 420px;
}

.footer-ecr-column {
  max-width: 360px;
}

.contact-block span {
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

.whatsapp-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #19b35b;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(25,179,91,.22);
}

.whatsapp-order-btn:hover {
  background: #21c768;
}

.premium-footer-bottom {
  max-width: 1420px;
  margin: 20px auto 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.16);
  text-align: center;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}

.mobile-directions-btn {
  display: none;
}

/* ===== END OF FOOTER ===== */

.product-layout {
  display: grid;
  grid-template-columns: 520px 300px 1fr;
  gap: 40px;
  margin: 40px;
  align-items: start;
}

.product-images {
  width: 520px;
  height: auto;
  overflow: hidden;
  border-radius: 20px;
}

.main-img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
  transform-origin: center center;
}

.img-clip:hover .main-img {
  transform: scale(1.12);
}

.product-images:hover .main-img {
  transform: scale(1.12);
}
.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.thumbs img {
  width: 70px;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbs img:hover {
  border-color: #6c5ce7;
}

.product-info-panel {
  max-width: 500px;
  margin-top: 0;
}

.price-block {
  margin: 10px 0;
  font-size: 28px;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
  margin-left: 10px;
}

.tabs {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #ddd;
  margin: 20px 0 10px;
}

.tab {
  background: none;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
  color: #aaa;
}

.tab.active {
  border-bottom: 3px solid #6c5ce7;
  color: #6c5ce7;
}

.tab-content {
  display: none;
  padding: 10px 0;
  color: #555;
  font-size: 18px;
}

.tab-content.active {
  display: block;
}
.product-info-panel h1 {
  font-size: 38px;
}
.product-tabs {
  padding-top: 0;
}

.product-tabs {
  max-width: 500px;
}
.img-clip {
  overflow: hidden;
  border-radius: 20px;
}


/* ===== COMPLETE MODERN MENU FIX ===== */

/* Reset header styles */
header {
  all: unset;
  display: block;
  position: relative;
  z-index: 1000;
  
}

/* Modern Top Bar */
.modern-top-bar {
  background: linear-gradient(135deg, #6a3fc7, #8c6bff);
  color: white;
  padding: 8px 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 13px;
  min-height: 36px;
  width: 100%;
  box-sizing: border-box;
}

.modern-contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.modern-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 2px 5px;
  border-radius: 4px;
}

.modern-contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.modern-contact-item i {
  font-size: 12px;
  color: #ffeb3b;
}

.modern-contact-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.modern-contact-text strong {
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
}

.modern-contact-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  margin: 0 2px;
}

.modern-social-mini {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: 10px;
}

.modern-social-icon {
  color: white;
  font-size: 13px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.modern-social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #ffeb3b;
}

/* Main Navigation */
.modern-main-nav {
  background: white;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
}

.modern-nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.modern-menu-toggle {
  display: none;
  font-size: 20px;
  color: #6a3fc7;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.modern-brand-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.modern-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.modern-logo-main {
  font-size: 28px;
  font-weight: 800;
  color: #6a3fc7;
  letter-spacing: 1px;
}

.modern-logo-sub {
  font-size: 12px;
  font-weight: 500;
  color: #ff6b8b;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: -2px;
}

.modern-nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}

.modern-nav-menu li {
  position: relative;
}

.modern-nav-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  border-radius: 8px;
  white-space: nowrap;
}

.modern-nav-menu li a i {
  font-size: 14px;
}

.modern-nav-menu li a:hover {
  background: linear-gradient(135deg, #f7f3ff, #e9e3ff);
  color: #6a3fc7;
  transform: translateY(-2px);
}

.modern-nav-menu li a.active {
  background: linear-gradient(135deg, #6a3fc7, #8c6bff);
  color: white;
  box-shadow: 0 4px 12px rgba(106, 63, 199, 0.3);
}

/* Dropdown Menu */
.modern-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 8px 0;
}

.modern-dropdown:hover .modern-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.modern-dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.modern-dropdown-content a:hover {
  background: #f7f3ff;
  color: #6a3fc7;
  padding-left: 24px;
}

.modern-dropdown-content a i {
  width: 16px;
  text-align: center;
}

/* Search Container */
.modern-nav-center {
  flex: 1;
  max-width: 500px;
  margin: 0 30px;
}

.modern-search-container {
  position: relative;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 50px;
  padding: 8px 8px 8px 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.modern-search-container:focus-within {
  border-color: #6a3fc7;
  background: white;
  box-shadow: 0 4px 15px rgba(106, 63, 199, 0.15);
}

.modern-search-icon {
  color: #888;
  font-size: 16px;
}

.modern-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 15px;
  font-size: 15px;
  color: #333;
  outline: none;
  width: 100%;
}

.modern-search-btn {
  background: linear-gradient(135deg, #6a3fc7, #8c6bff);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.modern-search-btn:hover {
  background: linear-gradient(135deg, #5a2fb7, #7c5be8);
  transform: scale(1.05);
}

/* Right Navigation Icons */
.modern-nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.modern-nav-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f3ff;
  border-radius: 50%;
  color: #6a3fc7;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.modern-nav-icon:hover {
  background: #6a3fc7;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(106, 63, 199, 0.3);
}

.modern-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4757;
  color: white;
  font-size: 11px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modern-btn-order {
  background: linear-gradient(135deg, #ff6b8b, #ff8e53);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 139, 0.3);
  white-space: nowrap;
}

.modern-btn-order:hover {
  background: linear-gradient(135deg, #ff5a7a, #ff7d43);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 139, 0.4);
}

/* Mobile Menu */
.modern-mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  height: 100vh;
  background: white;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  transition: left 0.4s ease;
  overflow-y: auto;
}

.modern-mobile-menu.active {
  left: 0;
}

.modern-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #6a3fc7, #8c6bff);
  color: white;
}

.modern-mobile-brand {
  font-size: 22px;
  font-weight: 700;
}

.modern-close-menu {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

.modern-mobile-search {
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.modern-mobile-search input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #eee;
  border-radius: 8px 0 0 8px;
  outline: none;
}

.modern-mobile-search button {
  background: #6a3fc7;
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 0 20px;
  cursor: pointer;
}

.modern-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modern-mobile-nav li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
  font-weight: 500;
  transition: all 0.3s ease;
}

.modern-mobile-nav li a:hover {
  background: #f7f3ff;
  color: #6a3fc7;
  padding-left: 30px;
}

.modern-mobile-nav li a i {
  width: 20px;
  text-align: center;
  color: #6a3fc7;
}

/* Overlay */
.modern-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  display: none;
}

.modern-overlay.active {
  display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .modern-contact-row {
    gap: 15px;
  }
  
  .modern-contact-divider {
    margin: 0 1px;
  }
}

@media (max-width: 1024px) {
  .premium-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modern-top-bar {
    padding: 8px 20px;
  }
  
  .modern-contact-row {
    gap: 12px;
  }
  
  .modern-nav-menu {
    display: none;
  }
  
  .modern-menu-toggle {
    display: block;
  }
  
  .modern-nav-center {
    display: none;
  }
  
  .modern-main-nav {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .modern-contact-row {
    justify-content: center;
    gap: 8px;
  }
  
  .modern-contact-item {
    padding: 2px 3px;
  }
  
  .modern-contact-text strong {
    font-size: 11px;
  }
  
  .modern-contact-divider {
    font-size: 12px;
  }
  
  .modern-social-mini {
    display: none;
  }
  
  .modern-nav-right {
    gap: 10px;
  }
  
  .modern-btn-order span {
    display: none;
  }
  
  .modern-btn-order {
    padding: 12px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .modern-top-bar {
    padding: 8px 15px;
    font-size: 11px;
  }
  
  .modern-contact-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 2px;
    justify-content: flex-start;
  }
  
  .modern-contact-row::-webkit-scrollbar {
    height: 2px;
  }
  
  .modern-contact-row::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .modern-contact-row::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
  }
  
  .modern-contact-item {
    flex-shrink: 0;
  }
  
  .modern-brand-logo .modern-logo-text {
    flex-direction: row;
    align-items: baseline;
    gap: 5px;
  }
  
  .modern-logo-sub {
    font-size: 10px;
    letter-spacing: 1px;
  }
}

/* Logo Image Styling */
.modern-logo-image {
  height: 50px; /* Adjust this based on your logo's aspect ratio */
  width: auto;
  object-fit: contain;
}

/* Remove the old logo text styles if they're not needed anymore */
.modern-logo-text,
.modern-logo-main,
.modern-logo-sub {
  display: none;
}

/* Optional: Add responsive adjustments for the logo */
@media (max-width: 768px) {
  .modern-logo-image {
    height: 40px; /* Smaller logo on mobile */
  }
}

@media (max-width: 480px) {
  .modern-logo-image {
    height: 35px; /* Even smaller logo on very small screens */
  }
}


/* Add styles for user dropdown */
  .user-dropdown {
    position: relative;
    display: inline-block;
  }
  
  .user-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1001;
    padding: 10px 0;
    margin-top: 10px;
    border: 1px solid #eee;
  }
  
  .user-dropdown:hover {
    display: block;
  }
  
  .user-dropdown-content a {
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background 0.3s;
  }
  
  .user-dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #6c5ce7;
  }
  
  .user-dropdown-content .logout-btn {
    color: #e74c3c;
    border-top: 1px solid #eee;
    margin-top: 5px;
  }
  
  .user-dropdown-content .logout-btn:hover {
    background-color: #ffeaea;
  }
  
  .user-greeting {
    display: none !important;
  }

  .empty-wishlist {
  text-align: center;
  padding: 40px;
  font-size: 1.2em;
  color: #666;
  grid-column: 1 / -1;
}

/* ❤️ Wishlist Heart Animation */
.wishlist {
  transition: transform 0.15s ease, background 0.15s ease;
}

.wishlist.active {
  color: #e63946;
  animation: heart-pop 0.35s ease;
}

@keyframes heart-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.35);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

/* Wishlist Loading State */

/* Wishlist page specific fixes */
#wishlist-grid {
  min-height: 300px;
  margin-top: 20px;
}

#wishlist-grid .category-card {
  position: relative;
}

.wishlist-loading {
  text-align: center;
  padding: 40px;
  font-size: 1.2em;
  color: #666;
  grid-column: 1 / -1;
  font-style: italic;
}

.wishlist-loading::after {
  content: "...";
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%, 20% { content: ""; }
  40% { content: "."; }
  60% { content: ".."; }
  80%, 100% { content: "..."; }
}
.payment-toggle {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.pay-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.pay-option input {
  accent-color: #6c5ce7;
}

.upi-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.upi-logos img {
  height: 32px;
}

.upi-text {
  font-size: 13px;
  color: #666;
}

.cod-btn {
  background: #27ae60;
}

/* ===== GLOBAL RESPONSIVE RWD PATCH ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

@media (max-width: 1280px) {
  .slider-window {
    width: 100%;
  }

  .vase-grid,
  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 28px;
  }

  .product-images,
  .product-info-panel {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 1024px) {
  .page-container {
    width: min(100%, calc(100% - 32px));
    padding: 8px 0 16px;
  }

  .hero-banner {
    width: calc(100% - 24px);
    height: 560px;
  }

  .hero-content {
    max-width: 420px;
    padding: 28px 30px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .slider-window {
    width: 100%;
  }

  .product-card {
    min-width: calc(50% - 10px);
  }

  .vase-grid,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .product-layout {
    grid-template-columns: 1fr;
    margin: 28px 20px;
    gap: 28px;
  }

  .product-detail {
    flex-direction: column;
    margin: 24px 20px;
    gap: 24px;
  }

  .product-detail img {
    width: 100%;
    max-width: 480px;
  }

  .thumbs {
    flex-wrap: wrap;
  }

  .order-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-social {
    flex-wrap: nowrap;
  }

  .modern-mobile-menu {
    width: min(88vw, 320px);
  }
}

@media (max-width: 768px) {
  .page-container {
    width: min(100%, calc(100% - 24px));
  }

  .breadcrumb {
    margin: 12px 12px 0;
  }

  .site-footer {
    padding: 30px 18px 74px;
  }

  .premium-footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: left;
  }

  .footer-brand-column {
    text-align: left;
  }

  .footer-brand-logo {
    width: min(210px, 100%);
  }

  .footer-description {
    max-width: none;
  }

  .footer-trust-row,
  .footer-social {
    justify-content: flex-start;
  }

  .branch-card {
    width: 100%;
  }

  .info-card-grid {
    grid-template-columns: 1fr;
  }

  .contact-message-form {
    padding: 22px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .about-service-grid,
  .about-two-column {
    grid-template-columns: 1fr;
  }

  .mobile-directions-btn {
    position: fixed;
    left: 50%;
    bottom: 14px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 220px;
    transform: translateX(-50%);
    padding: 12px 18px;
    border-radius: 999px;
    background: #7c4dff;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(43,20,84,.32);
  }

  .hero-banner {
    height: 420px;
    border-radius: 18px;
    margin-top: 12px;
    background-size: 125% auto;
    background-position: 72% top;
    background-color: #d1bfef;
  }

  .hero-btn {
    right: 16px;
    bottom: 16px;
    padding: 14px 20px;
    font-size: 16px;
    
  }

  .hero-content {
    max-width: calc(100% - 28px);
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .flower-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item img {
    height: 150px;
  }

  .slider-wrapper {
    display: block;
  }

  .slider-window {
    width: 100%;
    overflow: hidden;
  }

  .slider-track {
    gap: 0;
  }

  .product-card {
    min-width: 100%;
    max-width: 100%;
  }

  .product-card img {
    height: 420px;
    object-position: 58% center;
  }

  .slider-btn {
    display: none;
  }

  .vase-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .category-card,
  .vase-card {
    padding: 10px;
  }

  .product-layout {
    margin: 20px 12px;
    gap: 20px;
  }

  .tabs {
    gap: 8px;
    overflow-x: auto;
  }

  .tab {
    font-size: 16px;
    white-space: nowrap;
  }

  .footer-brand-logo {
    width: 190px;
  }

  .footer-social {
    gap: 8px;
  }

  .main-content {
    padding: 20px 12px !important;
  }

  .cart-container,
  .checkout-container,
  .orders-container {
    padding: 20px 16px !important;
  }

  .coupon-section,
  .payment-toggle,
  .upi-logos {
    flex-wrap: wrap;
  }

  .cart-item {
    padding: 16px !important;
  }

  .cart-item-image {
    width: 100px !important;
    height: 100px !important;
  }

  .summary-row {
    font-size: 15px !important;
  }

  .order-card {
    padding: 18px !important;
  }

  .empty-orders {
    padding: 40px 20px !important;
  }

  .profile-layout {
    grid-template-columns: 1fr !important;
  }

  .profile-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .auth-box {
    width: min(100% - 24px, 420px) !important;
    margin: 24px auto !important;
    padding: 24px 18px !important;
  }
}

@media (max-width: 480px) {
  .modern-top-bar {
    display: none;
  }

  .modern-main-nav {
    padding: 0 10px;
    gap: 8px;
  }

  .modern-nav-left {
    flex: 1;
    min-width: 0;
    gap: 8px;
  }

  .modern-brand-logo {
    margin-right: auto;
    min-width: 0;
    max-width: 140px;
    justify-content: flex-start;
  }

  .modern-logo-image {
    height: 32px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .modern-nav-right {
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
  }

  .modern-nav-icon,
  .modern-btn-order {
    width: 36px;
    height: 36px;
    padding: 0;
    margin-right: 0 !important;
  }

  .modern-btn-order {
    font-size: 0;
  }

  .modern-btn-order i {
    font-size: 15px;
  }

  .modern-badge {
    width: 16px;
    height: 16px;
    font-size: 10px;
  }

  .page-container {
    width: min(100%, calc(100% - 16px));
  }

  .hero-banner {
    height: 320px;
    min-height: 320px;
    aspect-ratio: auto;
    background-size: 174% auto;
    background-position: 74% top;
    background-color: #c9b5e6;
  }

  .hero-btn {
    left: 12px;
    right: 12px;
    bottom: 8px;
    width: auto;
    padding: 12px 18px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .flower-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gallery-item img {
    height: auto;
    aspect-ratio: 1 / 1.05;
    object-fit: cover;
    object-position: center;
    background: transparent;
    padding: 0;
  }

  .vase-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-width: 100%;
    max-width: 100%;
  }

  .product-card img {
    height: 430px;
    object-position: 60% center;
  }

  .product-images {
    border-radius: 16px;
  }

  .thumbs img {
    width: 56px;
  }

  .product-detail,
  .product-layout {
    margin: 16px 10px;
  }

  .footer-brand-logo {
    width: 170px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
  }

  .footer-social img {
    width: 22px;
    height: 22px;
  }

  .cart-header h1,
  .checkout-header h1 {
    font-size: 26px !important;
  }

  .summary-row {
    gap: 12px;
  }

  .summary-row.total {
    font-size: 18px !important;
  }

  .coupon-section > *,
  .pay-btn,
  .coupon-btn,
  .checkout-btn {
    width: 100% !important;
  }

  .order-header {
    flex-direction: column;
  }

  .user-dropdown-content {
    right: -10px;
  }

  .profile-container {
    padding: 16px 12px !important;
  }
}

/* ===== FINAL DEVICE COMPATIBILITY OVERRIDES ===== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.modern-mobile-menu.show,
.modern-mobile-menu.active {
  left: 0;
}

.modern-overlay.show,
.modern-overlay.active {
  display: block;
}

body.mobile-menu-open {
  overflow: hidden;
}

.modern-main-nav,
.modern-nav-left,
.modern-nav-right,
.modern-nav-menu,
.modern-search-container {
  min-width: 0;
}

.modern-nav-menu a,
.modern-contact-text,
.product-card,
.gallery-item,
.order-card {
  overflow-wrap: anywhere;
}

.cart-container,
.checkout-container,
.orders-container,
.profile-container,
.product-detail,
.product-layout,
.product-shell {
  max-width: 100%;
}

.product-card img,
.gallery-item img,
.vase-card img,
.category-card img {
  max-width: 100%;
}

@media (min-width: 1281px) {
  .flower-gallery-grid {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
}

@media (max-width: 1280px) {
  .modern-main-nav {
    padding-inline: 24px;
  }

  .modern-nav-menu {
    gap: 6px;
  }

  .modern-search-container {
    max-width: 360px;
  }
}

@media (max-width: 1100px) {
  .modern-main-nav {
    gap: 12px;
  }

  .modern-nav-menu {
    display: none;
  }

  .modern-menu-toggle {
    display: flex;
  }

  .modern-search-container {
    flex: 1 1 280px;
    max-width: none;
  }

  .flower-gallery-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .modern-main-nav {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 18px;
  }

  .modern-nav-left,
  .modern-nav-right {
    flex: 0 0 auto;
  }

  .modern-search-container {
    order: 3;
    flex-basis: 100%;
    margin: 4px 0 0;
  }

  .flower-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .main-content,
  .cart-main,
  .checkout-main {
    padding-inline: 12px !important;
  }

  .cart-container,
  .checkout-container,
  .orders-container {
    width: 100%;
    padding: 18px 14px !important;
    border-radius: 10px;
  }

  .cart-item {
    align-items: center;
    gap: 14px;
  }

  .cart-item-image {
    width: min(140px, 42vw);
    height: min(140px, 42vw);
  }

  .coupon-section {
    flex-direction: column;
  }

  .coupon-section input,
  .coupon-section button {
    width: 100%;
  }

  .order-card {
    padding: 18px;
  }

  .order-header {
    gap: 10px;
    align-items: flex-start;
  }

  .flower-gallery-grid,
  .gallery-grid,
  .vase-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 480px) {
  .modern-main-nav {
    padding-inline: 10px;
  }

  .modern-brand-logo {
    max-width: 132px;
  }

  .modern-search-input {
    font-size: 14px;
  }

  .modern-search-btn {
    min-width: 74px;
    padding-inline: 14px;
  }

  .flower-gallery-grid,
  .gallery-grid,
  .vase-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .gallery-item img,
  .vase-card img,
  .category-card img {
    aspect-ratio: 1 / 1.08;
    height: auto;
  }

  .cart-header h1,
  .checkout-header h1,
  .orders-header h1 {
    font-size: 24px !important;
  }

  .summary-row,
  .order-header {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .flower-gallery-grid,
  .gallery-grid,
  .vase-grid,
  .category-grid {
    grid-template-columns: 1fr !important;
  }
}
