:root {
  --primary: #8b5cf6;
  --primary-soft: #f3e8ff;
  --secondary: #f59e0b;
  --secondary-soft: #fef3c7;
  --accent: #ec4899;
  --accent-soft: #fce7f3;
  --success: #10b981;
  --success-soft: #d1fae5;
  --bg: #fafafa;
  --text: #111827;
  --muted: #6b7280;
  --radius-xl: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 6px 18px rgba(15,23,42,0.06);
  --max-width: 1200px;
  --bottom-nav-height: 62px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  padding-bottom: var(--bottom-nav-height);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout helpers */
.container-max {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* No scroll-based motion */
.fade-in-up {
  opacity: 1;
  transform: none;
  transition: none;
}

/* NAVBAR */
.navbar {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.navbar-brand {
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
  font-size: 1.5rem;
}
.nav-link {
  font-size: 0.9rem;
  color: var(--muted) !important;
  transition: color 0.2s ease;
  padding: 0.5rem 1rem;
}
.nav-link:hover {
  color: var(--primary) !important;
}
.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: var(--primary-soft);
  font-size: 0.8rem;
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(139,92,246,0.12);
}

/* MOBILE NAV OFFCANVAS */
.offcanvas-start {
  width: 260px;
}
.offcanvas-brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}
.offcanvas .nav-link {
  padding-left: 0;
}

/* STICKY TOP SEARCH (Desktop / Tablet) */
.top-search-sticky {
  position: sticky;
  top: 56px;
  z-index: 1020;
  background: rgba(250,250,250,0.97);
  backdrop-filter: blur(10px);
  padding: 8px 0 10px;
  border-bottom: 1px solid #e5e7eb;
}
.top-search-inner {
  padding: 0 16px;
}
.top-search-form {
  display: flex;
  gap: 8px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(15,23,42,0.06);
  padding: 4px 6px 4px 10px;
  align-items: center;
}
.top-search-form i {
  font-size: 1rem;
  color: var(--muted);
}
.top-search-form input {
  border: none;
  flex: 1;
  padding: 6px 8px 8px;
  font-size: 0.85rem;
  outline: none;
  color: var(--text);
}
.top-search-form button {
  border: none;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  gap: 4px;
}
.top-search-form button:hover {
  background: #7c3aed;
}
@media (max-width: 767.98px) {
  .top-search-sticky {
    display: none;
  }
}

/* PAGE LAYOUT */
.page-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 16px 60px;
}
section {
  margin-bottom: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.section-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}
.section-link {
  font-size: 0.82rem;
  color: var(--accent);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.section-link:hover {
  color: #be185d;
}
.section-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 14px;
}

/* BROWSE BY STYLE */
.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 575.98px) {
  .style-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .style-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.style-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  cursor: pointer;
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.style-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}
.style-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

/* DECORATOR CARDS (Desktop grid) */
.decor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 8px;
}
@media (max-width: 767.98px) {
  .decor-grid {
    display: none;
  }
}
.decor-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  border: 1px solid #f3f4f6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-img-top {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body {
  padding: 12px 12px 8px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-title {
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  color: var(--text);
}
.decor-rating {
  font-size: 0.7rem;
  padding: 3px 7px;
  border-radius: 999px;
  background-color: var(--success-soft);
  color: var(--success);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}
.decor-meta {
  font-size: 0.78rem;
  color: var(--muted);
}
.decor-desc {
  font-size: 0.76rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 2px 0 4px;
  flex-grow: 1;
}
.decor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.decor-tag {
  font-size: 0.68rem;
  padding: 4px 8px;
  border-radius: 999px;
  background-color: var(--primary-soft);
  color: var(--primary);
  font-weight: 500;
}
.card-footer {
  padding: 8px 10px 10px;
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
  margin-top: auto;
}
.decor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.7rem;
}
.decor-actions span {
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ffffff;
}

/* MOBILE CAROUSEL */
.decor-carousel-wrapper {
  display: none;
}
@media (max-width: 767.98px) {
  .decor-carousel-wrapper {
    display: block;
  }
  .decor-carousel .carousel-item {
    padding: 4px 8px 8px;
  }
  .decor-carousel .decor-card {
    max-width: 100%;
    margin: 0 auto;
  }
  .decor-carousel .card-img-top {
    height: 210px;
  }

  /* Hide default arrows */
  .decor-carousel .carousel-control-prev,
  .decor-carousel .carousel-control-next {
    display: none;
  }

  .carousel-controls-bottom {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 4px;
  }
  .carousel-controls-bottom button {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: none;
    background: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .carousel-controls-bottom i {
    font-size: 20px;
    color: #ffffff;
  }
}

/* Slightly smoother carousel transition */
.carousel-inner {
  transition: transform 0.9s ease-in-out;
}

/* AREA LIST */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  margin-bottom: 8px;
}
.area-pill {
  padding: 7px 12px;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

/* ECOMMERCE */
.ecommerce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid #f3f4f6;
}
.product-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.product-body {
  padding: 10px 12px 12px;
}
.product-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.product-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 6px;
}
.product-desc {
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.product-btn {
  background: #31b31b;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  width: 100%;
}

/* FEATURE SECTIONS */
.feature-section {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 16px 18px;
  box-shadow: var(--shadow-soft);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}
.feature-item {
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff, #f9fafb);
  border: 1px solid #f3f4f6;
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background-color: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin: 0 auto 8px;
}
.feature-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.feature-desc {
  font-size: 0.76rem;
  color: var(--muted);
}


/* HOW IT WORKS STEPS */
.steps-section .feature-item {
  text-align: left;
  padding: 14px 14px 14px 40px;
  position: relative;
}
.steps-section .feature-item::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--primary-soft);
}
.steps-section .feature-item:last-child::before {
  bottom: 24px;
}
.step-number {
  background: var(--primary);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  position: absolute;
  left: 8px;
  top: 10px;
}

/* TESTIMONIALS */
.testimonial-section .feature-item {
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  border-left: 4px solid var(--primary);
  text-align: left;
}
.testimonial-name {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  font-size: 0.85rem;
}
.testimonial-quote {
  font-style: italic;
  color: var(--muted);
  font-size: 0.78rem;
  position: relative;
  padding-left: 10px;
}
.testimonial-quote::before {
  content: '"';
  font-size: 1.4rem;
  color: var(--primary);
  position: absolute;
  left: -4px;
  top: -8px;
}

/* TIPS */
.tips-section .feature-item {
  text-align: left;
  position: relative;
  padding-right: 14px;
}
.tips-section .feature-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--primary-soft));
  border-radius: 12px;
}
.tip-title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  font-size: 0.86rem;
}

/* CTA CARD */
.cta-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  border-radius: 18px;
  padding: 18px 16px 16px;
  box-shadow: var(--shadow-soft);
  font-size: 0.86rem;
  text-align: center;
}
.cta-card .btn-light {
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 8px 18px;
  margin-top: 8px;
  background: rgba(255,255,255,0.95);
  border: none;
  color: var(--primary);
  font-weight: 600;
}

/* SMALL TEXT */
.mini-text {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* FOOTER */
footer {
  background: #111827;
  color: #d1d5db;
  padding: 28px 0 18px;
  margin-top: 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.footer-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  opacity: 0.85;
}
.footer-section h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section li {
  margin-bottom: 6px;
}
.footer-section a {
  color: #9ca3af;
  transition: color 0.2s ease;
  font-size: 0.8rem;
}
.footer-section a:hover {
  color: var(--primary);
}
.social-links {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  color: #d1d5db;
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 10px;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.65;
}

/* BOTTOM NAV */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--bottom-nav-height);
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1030;
  box-shadow: 0 -2px 14px rgba(0,0,0,0.06);
}
.bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7rem;
  color: var(--muted);
  padding: 2px;
}
.bottom-item i {
  font-size: 1.1rem;
  margin-bottom: 1px;
}
.bottom-item.active {
  color: var(--primary);
  font-weight: 600;
}
@media (min-width: 992px) {
  .bottom-nav {
    display: none;
  }
  body {
    padding-bottom: 0;
  }
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .page-wrap {
    padding: 20px 12px 56px;
  }
  .feature-section {
    padding: 16px 12px 14px;
  }
}
