@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Raleway:wght@100&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --primary: #FFCE32;
  --primary-dark: #D48800;
  --primary-light: #FFFDF0;
  --primary-icon: #000;
  --accent: #FFB800;
  --accent-dark: #E6A500;
  --dark: #18181b;
  --medium: #4A4A6A;
  --light: #8890A0;
  --white: #fff;
  --bg: #F8F9FC;
  --border: #E8ECF0;
  --shadow: 0 4px 20px rgba(255, 206, 50, .15);
  --shadow-md: 0 8px 40px rgba(255, 206, 50, .25);
  --radius: 12px;
  --radius-sm: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

ul {
  list-style: none
}

/* ── Utility ─────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: all .25s
}

.btn-primary {
  background: var(--dark);
  color: #fff;
  border: 2px solid var(--dark);
  font-weight: 700
}

.btn-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 206, 50, 0.4)
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary)
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--dark)
}

.btn-buy-now {
  background: transparent;
  color: #000;
  border: 2px solid #000;
  font-weight: 700;
}

.btn-buy-now:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  transform: scale(1.05);
}

.btn-sm {
  padding: 8px 16px;
  font-size: .82rem
}

.btn-lg {
  padding: 14px 34px;
  font-size: 1.1rem;
  border-radius: 10px
}

.badge {
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 600
}

.section {
  padding: 70px 0
}

.section-light {
  background: var(--bg)
}

.section-title {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 10px
}

.section-sub {
  text-align: center;
  color: var(--light);
  margin-bottom: 40px
}

.alert {
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb
}

.alert-warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba
}

/* ── Navbar ──────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .15)
}

.navbar .container {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 32px
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0
}

.nav-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1
}

.nav-logo .logo-sub {
  font-size: .65rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--dark);
  padding: 1px 6px;
  border-radius: 3px;
  letter-spacing: .5px
}

.nav-logo i {
  font-size: 1.6rem;
  color: var(--primary)
}

.nav-logo .logo-img {
  max-height: 45px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: #a1a1aa;
  transition: color .2s;
  position: relative;
  padding-bottom: 4px
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0
}

.nav-icon {
  position: relative;
  cursor: pointer;
  color: #a1a1aa;
  font-size: 1.1rem;
  transition: color .2s
}

.nav-icon:hover {
  color: #fff
}

button.nav-icon {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon .badge {
  position: absolute;
  top: -8px;
  right: -8px
}

.nav-toggle {
  display: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #a1a1aa
}

.mobile-search {
  display: none
}

/* ── Hero ────────────────────────────────── */
.hero {
  background: url('../images/hero-bg-new.png') center/cover no-repeat;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
  position: relative;
  z-index: 1
}

.hero-content h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 100;
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #18191f;
  letter-spacing: -1.5px
}

.hero-content h1 span {
  font-family: Georgia, serif;
  font-size: 2rem;
  display: block;
  color: #0d7bbf;
  letter-spacing: 2px
}

.hero-content p {
  color: #4a4a6a;
  margin-bottom: 34px;
  font-size: 1.1rem;
  max-width: 440px;
  line-height: 1.6
}

.hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative
}

.hero-img img {
  max-height: 480px;
  width: auto;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.12));
  animation: float 4s ease-in-out infinite
}

/* ── Hero Slider ─────────────────────────── */
/* ── Hero Slider (custom, no Swiper) ────── */
.hero-image-slider {
  width: 100%;
  height: 480px;
  max-height: 480px;
  position: relative;
  overflow: hidden;
}

.hero-image-slider .hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image-slider .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-image-slider .hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-image-slider .hero-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.12));
}

.hero-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero-slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s;
}

.hero-slider-dots span.active {
  background: var(--primary);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-15px)
  }
}

.trust-bar {
  background: #fff;
  border-top: 1px solid var(--border)
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 22px 20px
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--primary-icon)
}

.trust-item strong {
  font-size: .9rem;
  display: block
}

.trust-item span {
  font-size: .78rem;
  color: var(--light)
}

/* ── Categories ──────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px
}

.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all .25s;
  cursor: pointer
}

.cat-card.is-visible:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(255, 206, 50, 0.25);
  transform: translateY(-8px) scale(1.06) !important;
  z-index: 2;
}



.cat-icon {
  width: 64px;
  height: 64px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: all .25s
}

.cat-card:hover .cat-icon {
  background: var(--primary)
}

.cat-icon i {
  font-size: 1.6rem;
  color: var(--primary-icon);
  transition: color .25s
}

.cat-card:hover .cat-icon i {
  color: var(--dark)
}

.cat-card h3 {
  font-size: .95rem;
  font-weight: 500;
  margin-bottom: 6px
}

.cat-card span {
  font-size: .8rem;
  color: var(--primary-icon);
  font-weight: 500
}

/* ── Products ────────────────────────────── */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px
}

.section-head h2 {
  font-size: 1.5rem;
  font-weight: 600
}

.section-head a {
  color: var(--dark);
  font-size: .9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s
}

.product-card.is-visible:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px) scale(1.02) !important;
}


.product-img {
  position: relative;
  padding: 20px;
  background: #f8f9fc;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px
}

.product-img img {
  height: 160px;
  width: 100%;
  object-fit: contain;
  transition: transform .3s
}

.product-card:hover .product-img img {
  transform: scale(1.06)
}

.wish-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .2s;
  color: var(--light)
}

.wish-btn:hover,
.wish-btn.active {
  color: #e74c3c;
  border-color: #e74c3c
}

.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e74c3c;
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px
}

.product-info {
  padding: 16px
}

.product-info .cat-label {
  font-size: .75rem;
  color: var(--light);
  margin-bottom: 4px
}

.product-info h3 {
  font-size: .95rem;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.3
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px
}

.price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark)
}

.old-price {
  font-size: .85rem;
  color: var(--light);
  text-decoration: line-through
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px
}

.stars i {
  font-size: .8rem;
  color: var(--accent)
}

.rating-count {
  font-size: .78rem;
  color: var(--light)
}

.add-to-cart {
  width: 100%;
  padding: 10px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--dark);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .85rem;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
}

.add-to-cart:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  transform: scale(1.05) translate3d(0, 0, 0);
  box-shadow: 0 6px 16px rgba(255, 206, 50, 0.35);
}

/* ── Features bar ────────────────────────── */
.features-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.features-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid var(--border)
}

.feature-item:last-child {
  border-right: none
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.feature-icon i {
  color: var(--primary-icon);
  font-size: 1.1rem
}

.feature-item strong {
  font-size: .9rem;
  display: block
}

.feature-item span {
  font-size: .78rem;
  color: var(--light)
}

/* ── Newsletter ──────────────────────────── */
.newsletter {
  background: var(--bg)
}

.newsletter-inner {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow)
}

.newsletter-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.newsletter-icon i {
  color: var(--dark);
  font-size: 1.4rem
}

.newsletter-text {
  flex: 1
}

.newsletter-text h3 {
  font-size: 1.2rem;
  font-weight: 600
}

.newsletter-text p {
  color: var(--light);
  font-size: .88rem
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0
}

.newsletter-form input {
  padding: 11px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .9rem;
  width: 240px;
  outline: none
}

.newsletter-form input:focus {
  border-color: var(--primary)
}

/* ── Footer ──────────────────────────────── */
footer {
  background: var(--dark);
  color: #c8cde4;
  padding: 60px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.7;
  margin-top: 12px;
  color: #8890a0
}

.footer-logo .logo-text {
  color: #fff
}

.footer-logo .logo-sub {
  color: var(--accent)
}

.footer-col h4 {
  color: #fff;
  font-size: .95rem;
  font-weight: 500;
  margin-bottom: 18px
}

.footer-col ul li {
  margin-bottom: 10px
}

.footer-col ul li a {
  font-size: .85rem;
  color: #8890a0;
  transition: color .2s
}

.footer-col ul li a:hover {
  color: var(--primary)
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 4px
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: all .2s
}

.social-icon.fb {
  background: #1877f2
}

.social-icon.ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888)
}

.social-icon.yt {
  background: #ff0000
}

.social-icon.tt {
  background: #000
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: .85
}

.social-icon i {
  color: #fff
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: #8890a0;
  margin-bottom: 10px
}

.contact-list i {
  color: var(--primary);
  width: 16px
}

.footer-bottom {
  border-top: 1px solid #2a2d45;
  padding: 18px 0;
  text-align: center;
  font-size: .82rem;
  color: #5c6280
}

/* ── Shop page ───────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  padding: 40px 0
}

.sidebar {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  height: fit-content
}

.sidebar h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border)
}

.filter-group {
  margin-bottom: 24px
}

.filter-group h4 {
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--medium)
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: var(--medium);
  cursor: pointer;
  margin-bottom: 8px
}

.filter-group input[type=checkbox] {
  accent-color: var(--primary);
  width: 15px;
  height: 15px
}

.price-range {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.price-range input[type=range] {
  accent-color: var(--primary);
  width: 100%
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 8px
}


.price-inputs input {
  flex: 1;
  width: 0; /* Allow flex to shrink properly */
  padding: 7px 5px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: .82rem;
  text-align: center;
  outline: none
}

/* Hide number spinners */
.price-inputs input::-webkit-outer-spin-button,
.price-inputs input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.price-inputs input[type=number] {
  -moz-appearance: textfield;
}

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px
}

.shop-header select {
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .88rem;
  outline: none;
  background: #fff
}

.products-grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 30px 0
}

.page-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 500;
  transition: all .2s
}

.page-btn:hover,
.page-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary)
}

/* ── Product detail ──────────────────────── */
.product-detail {
  padding: 40px 0
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start
}

.product-gallery .main-img {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  background: #f8f9fc;
  margin-bottom: 14px;
  transition: padding 0.3s;
}

.product-gallery .main-img img {
  max-height: 320px;
  width: 100%;
  object-fit: contain
}

.thumb-row {
  display: flex;
  gap: 10px
}

.thumb {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  transition: border-color .2s;
  flex: 1
}

.thumb:hover,
.thumb.active {
  border-color: var(--primary)
}

.thumb img {
  height: 60px;
  width: 100%;
  object-fit: contain
}

.product-detail-info h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px
}

.detail-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px
}

.detail-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px
}

.detail-old-price {
  font-size: 1rem;
  color: var(--light);
  text-decoration: line-through
}

.detail-desc {
  color: var(--medium);
  font-size: .92rem;
  line-height: 1.75;
  margin: 20px 0
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden
}

.qty-control button {
  width: 36px;
  height: 40px;
  border: none;
  background: #f8f9fc;
  font-size: 1.1rem;
  cursor: pointer
}

.qty-control span {
  width: 48px;
  text-align: center;
  font-weight: 500
}

.detail-btns {
  display: flex;
  gap: 12px
}

.in-stock {
  color: #27ae60;
  font-size: .88rem;
  font-weight: 500
}

.out-stock {
  color: #e74c3c;
  font-size: .88rem;
  font-weight: 500
}

/* New Responsive Classes */
.detail-card-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  line-height: 1.8;
  color: var(--medium);
}

/* Rich-text content (admin WYSIWYG) — restore list/heading/blockquote styling
   inside product description areas (global reset removes bullets). */
.detail-desc ul,
.detail-card-box ul {
  list-style: disc outside;
  padding-left: 1.5em;
  margin: 0.6em 0;
}
.detail-desc ol,
.detail-card-box ol {
  list-style: decimal outside;
  padding-left: 1.6em;
  margin: 0.6em 0;
}
.detail-desc li,
.detail-card-box li {
  margin: 0.25em 0;
  display: list-item;
}
.detail-desc p,
.detail-card-box p {
  margin: 0.6em 0;
}
.detail-desc h1, .detail-card-box h1,
.detail-desc h2, .detail-card-box h2,
.detail-desc h3, .detail-card-box h3,
.detail-desc h4, .detail-card-box h4 {
  margin: 0.8em 0 0.4em;
  line-height: 1.3;
  color: var(--dark, #18181b);
  font-weight: 700;
}
.detail-desc h1, .detail-card-box h1 { font-size: 1.5rem; }
.detail-desc h2, .detail-card-box h2 { font-size: 1.3rem; }
.detail-desc h3, .detail-card-box h3 { font-size: 1.15rem; }
.detail-desc h4, .detail-card-box h4 { font-size: 1rem; }
.detail-desc blockquote,
.detail-card-box blockquote {
  border-left: 3px solid var(--border, #e2e8f0);
  padding: 0.4em 0 0.4em 1em;
  margin: 0.8em 0;
  color: var(--light, #8890a0);
  font-style: italic;
}
.detail-desc pre,
.detail-card-box pre,
.detail-desc code,
.detail-card-box code {
  background: #f4f6fa;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .9em;
}
.detail-desc pre,
.detail-card-box pre { padding: 10px 14px; overflow-x: auto; }
.detail-desc code,
.detail-card-box code { padding: 2px 6px; }
.detail-desc a,
.detail-card-box a { color: var(--primary); text-decoration: underline; }


.review-card-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.product-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ── Cart ────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  padding: 40px 0
}

.cart-table {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden
}

.cart-table table {
  width: 100%;
  border-collapse: collapse
}

.cart-table th {
  background: var(--bg);
  padding: 14px 18px;
  text-align: left;
  font-size: .85rem;
  font-weight: 500;
  color: var(--medium)
}

.cart-table td {
  padding: 16px 18px;
  border-top: 1px solid var(--border);
  vertical-align: middle
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 14px
}

.cart-product img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
  background: #f8f9fc;
  padding: 6px
}

.cart-product-name {
  font-size: .9rem;
  font-weight: 500
}

.cart-product-cat {
  font-size: .78rem;
  color: var(--light)
}

.cart-summary {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  height: fit-content
}

.cart-summary h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  margin-bottom: 12px
}

.summary-row.total {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 4px;
  font-weight: 600;
  font-size: 1.05rem
}

.summary-row .price {
  color: var(--dark)
}

.remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #e74c3c;
  font-size: 1rem
}

/* ── Checkout ────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  padding: 40px 0
}

.checkout-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px
}

.checkout-form h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border)
}

.form-group {
  margin-bottom: 18px
}

.form-group label {
  display: block;
  font-size: .86rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--medium)
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px
}

.payment-option {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  cursor: pointer;
  transition: all .2s
}

.payment-option input {
  display: none
}

.payment-option.selected,
.payment-option:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-light)
}

.payment-option i {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 6px
}

.payment-option i.cod {
  color: #27ae60
}

.payment-option i.bkash {
  color: #e2136e
}

.payment-option i.nagad {
  color: #f7941d
}

.payment-option span {
  font-size: .8rem;
  font-weight: 500
}

/* ── Auth ────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fc 0%, #e2e8f0 100%), 
              radial-gradient(circle at top right, rgba(255, 206, 50, 0.05), transparent 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
}

.auth-page::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('../images/hero-bg-new.png') center/cover no-repeat;
  opacity: 0.03;
  pointer-events: none;
}

.auth-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 40px;
  width: 100%;
  max-width: 460px
}

.auth-logo {
  text-align: center;
  margin-bottom: 28px
}

.auth-logo img {
  background: var(--dark);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.auth-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px
}

.auth-card p {
  color: var(--light);
  font-size: .88rem;
  margin-bottom: 24px
}

.auth-links {
  text-align: center;
  margin-top: 20px;
  font-size: .88rem;
  color: var(--medium)
}

.auth-links a {
  color: var(--primary);
  font-weight: 500
}

/* ── Orders ──────────────────────────────── */
.orders-table {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 24px
}

.orders-table table {
  width: 100%;
  border-collapse: collapse
}

.orders-table th {
  background: var(--bg);
  padding: 14px 18px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--medium);
  text-align: left
}

.orders-table td {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  font-size: .88rem
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 500
}

.status-pending {
  background: #fff3cd;
  color: #856404
}

.status-processing {
  background: #cce5ff;
  color: #004085
}

.status-shipped {
  background: #d4edda;
  color: #155724
}

.status-delivered {
  background: #d1ecf1;
  color: #0c5460
}

.status-cancelled {
  background: #f8d7da;
  color: #721c24
}

/* ── Page header ─────────────────────────── */
.page-header {
  background: #fff;
  padding: 30px 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border)
}

.page-header h1 {
  font-size: 1.6rem;
  font-weight: 700
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--light);
  margin-top: 6px
}

.breadcrumb a {
  color: var(--dark);
  font-weight: 500;
}

.breadcrumb i {
  font-size: .6rem
}

/* ── Toast ───────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.toast {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .15);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  border-left: 4px solid var(--primary);
  animation: slideIn .3s ease
}

.toast.success {
  border-color: #27ae60
}

.toast.error {
  border-color: #e74c3c
}

.toast i {
  font-size: 1.1rem
}

.toast.success i {
  color: #27ae60
}

.toast.error i {
  color: #e74c3c
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* ── Animations ──────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Contact Page ────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  padding: 50px 0;
}

.contact-info-card {
  background: url('../images/contact-card-bg.png') center/cover no-repeat;
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  height: fit-content;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(10, 10, 20, 0.78) 0%, rgba(20, 20, 40, 0.85) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: inherit;
  z-index: 0;
}

.contact-info-card > * {
  position: relative;
  z-index: 1;
}

.contact-info-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info-card p {
  opacity: .8;
  font-size: .95rem;
  margin-bottom: 30px;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.contact-info-list i {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info-list div strong {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  opacity: .7;
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
}

/* ── Account Dashboard ───────────────────── */

.account-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  padding: 40px 0;
}

.account-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: fit-content;
}

.account-user {
  padding: 24px;
  background: var(--bg);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.account-avatar {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 12px;
}

.account-user h3 {
  font-size: 1rem;
  font-weight: 600;
}

.account-user p {
  font-size: .8rem;
  color: var(--light);
}

.account-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--medium);
  border-bottom: 1px solid var(--border);
  transition: all .2s;
}

.account-nav a:last-child {
  border-bottom: none;
}

.account-nav a i {
  width: 20px;
  text-align: center;
  color: var(--light);
}

.account-nav a:hover,
.account-nav a.active {
  background: var(--primary-light);
  color: var(--dark);
}

.account-nav a:hover i,
.account-nav a.active i {
  color: var(--dark);
}

.account-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}

.account-section {
  display: none;
}

.account-section.active {
  display: block;
  animation: fadeIn .3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.account-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.account-stat-card {
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  text-align: center;
}

.account-stat-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.account-stat-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
}

.account-stat-card span {
  font-size: .8rem;
  color: var(--light);
}


/* ── About Page ──────────────────────────── */
.about-pad {
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--medium);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-feature {
  background: var(--bg);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.about-feature i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}

.about-feature strong {
  display: block;
  font-size: 1.1rem;
}

.about-feature span {
  font-size: .85rem;
  color: var(--light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p {
  color: var(--light);
  font-size: .9rem;
}

/* ── Responsive ──────────────────────────── */
@media(max-width:1024px) {
  .container {
    padding: 0 15px;
  }
  .cat-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  .navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
    padding: 0 15px;
  }

  .nav-logo {
    grid-column: 2;
    justify-self: center;
    order: 2;
    margin: 0;
  }

  .nav-icons {
    grid-column: 3;
    justify-self: end;
    order: 3;
    gap: 12px;
  }

  .nav-toggle {
    grid-column: 1;
    justify-self: start;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px; /* Larger hit area */
    height: 70px; /* Full height of navbar */
    cursor: pointer;
    z-index: 1200;
    pointer-events: auto;
    position: relative;
    margin-left: -5px;
  }
  
  .nav-toggle i {
    font-size: 1.4rem;
    color: #fff;
    pointer-events: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #18181b;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    order: 4; /* Behind everything */
  }

  .nav-links {
    display: none
  }

  .hero {
    min-height: auto;
    padding: 30px 0 60px;
    background: radial-gradient(circle at top, #f0f4ff 0%, #ffffff 100%);
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-img {
    display: flex;
    justify-content: center;
    order: -1;
    margin-top: 0;
    margin-bottom: 0;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
  }

  .hero-image-slider {
    height: 320px;
    max-height: 320px;
  }

  .hero-image-slider .hero-slide img {
    max-height: 280px;
  }

  @keyframes float-mobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .hero-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 5px;
  }

  .hero-content h1 span {
    font-family: Georgia, serif;
    font-size: 1.2rem;
    color: #0d7bbf;
    letter-spacing: 1px;
  }

  .hero-content p {
    font-size: 0.95rem;
    color: var(--medium);
    max-width: 320px;
    margin: 0 auto 10px;
    line-height: 1.5;
  }

  .hero-content .btn {
    padding: 14px 32px;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(27, 110, 243, 0.25);
  }

  .trust-bar .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px 20px;
  }

  .trust-item {
    padding: 10px;
  }

  .trust-item i {
    font-size: 1.8rem;
  }

  .trust-item strong {
    font-size: 1rem;
  }

  .trust-item span {
    font-size: 0.85rem;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cat-card:last-child:nth-child(5) {
    grid-column: 1 / span 2;
    width: 100%;
    max-width: calc(50% - 8px);
    margin: 0 auto;
  }

  .products-grid,
  .products-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-info {
    padding: 12px;
  }

  .product-info h3 {
    font-size: 0.85rem;
    max-height: 2.6rem;
    margin-bottom: 4px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .product-img {
    min-height: 160px;
    padding: 10px;
  }

  .price {
    font-size: 0.9rem;
    font-weight: 700;
  }

  .old-price {
    font-size: 0.78rem;
  }

  .price-row {
    margin-bottom: 6px;
  }

  .add-to-cart {
    padding: 8px;
    font-size: 0.8rem;
  }

  .shop-layout {
    grid-template-columns: 1fr
  }

  .sidebar {
    display: none
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-gallery .main-img {
    padding: 15px;
  }

  .detail-card-box {
    padding: 20px;
  }

  .product-section-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .page-header h1,
  .product-detail-info h1 {
    font-size: 1.35rem;
  }

  .detail-price {
    font-size: 1.4rem;
  }

  .cart-layout,
  .checkout-layout,
  .account-layout,
  .contact-layout {
    grid-template-columns: 1fr
  }


  .account-card-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }


  .features-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 20px 10px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .feature-item:nth-child(2n) {
    border-right: none;
  }

  .feature-item:nth-child(3),
  .feature-item:nth-child(4) {
    border-bottom: none;
  }

  .feature-icon {
    margin-bottom: 8px;
    width: 54px;
    height: 54px;
  }

  .feature-icon i {
    font-size: 1.3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-light .container {
    padding: 0 15px;
  }

  .newsletter-inner {
    flex-wrap: wrap;
    padding: 24px;
    gap: 16px;
  }

  .newsletter-form {
    flex-wrap: wrap;
    width: 100%;
    gap: 12px;
  }

  .newsletter-form input {
    width: 100%;
    flex: none;
  }

  .newsletter-form .btn {
    width: 100%;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .products-grid,
  .products-grid-3 {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .trust-bar .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-item {
    background: var(--bg);
    padding: 16px;
    border-radius: var(--radius-sm);
    width: 100%;
  }
}

/* ── Search Overlay ──────────────────────── */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.98);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-form {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.search-overlay.active .search-form {
  transform: translateY(0);
}

.search-form input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding: 15px 50px 15px 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  outline: none;
  transition: border-color 0.3s;
}

.search-form input:focus {
  border-color: var(--primary);
}

.search-form button[type="submit"] {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s;
}

.search-form button[type="submit"]:hover {
  color: var(--primary);
}

.close-search {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s;
}

.close-search:hover {
  color: #fff;
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.1rem;
  font-weight: 400;
}

.search-results {
  max-width: 600px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-result-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.2s;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.search-result-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
}

.search-result-info {
  flex: 1;
}

.search-result-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.search-result-info .price {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
}
/* WhatsApp Floating Button */
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 0 4px 10px rgba(0,0,0,0.15); z-index: 1000; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.whatsapp-float:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 6px 15px rgba(0,0,0,0.2); color: #fff; }
@media (max-width: 768px) { .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 26px; } }
