/* ===== CSS VARIABLES ===== */
:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --primary-light: #a78bfa;
  --pink: #ec4899;
  --pink-light: #f9a8d4;
  --gradient: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --gradient-soft: linear-gradient(135deg, #ede9fe 0%, #fce7f3 100%);
  --bg: #faf8ff;
  --bg-card: #ffffff;
  --text: #1e1b4b;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(124,58,237,0.10);
  --shadow-hover: 0 8px 32px rgba(124,58,237,0.22);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-pill: 50px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Nunito', 'Segoe UI', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; font-weight: 700; }
.section-title { font-size: 2rem; color: var(--text); margin-bottom: 0.3rem; }
.section-sub { color: var(--text-muted); margin-bottom: 2rem; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); color: #fff; }
.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.btn-outline-custom:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: translateY(-2px); }

/* ===== BADGES ===== */
.badge-cart {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--pink);
  color: #fff;
  font-size: 0.65rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* ===================================================================
   DESKTOP / TABLET NAVBAR
   =================================================================== */
.desktop-navbar {
  background: #fff;
  box-shadow: 0 2px 16px rgba(124,58,237,0.08);
  padding: 0.8rem 0;
  position: sticky; top: 0; z-index: 1000;
}
.desktop-navbar .navbar-brand img { height: 44px; }
.desktop-navbar .navbar-brand span { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.desktop-navbar .nav-link { font-weight: 600; font-size: 0.95rem; color: var(--text); padding: 0.4rem 0.85rem !important; border-radius: var(--radius-pill); transition: all 0.2s; }
.desktop-navbar .nav-link:hover, .desktop-navbar .nav-link.active { background: var(--gradient-soft); color: var(--primary) !important; }
.desktop-navbar .nav-search { position: relative; }
.desktop-navbar .nav-search input { border: 2px solid var(--border); border-radius: var(--radius-pill); padding: 0.4rem 1rem 0.4rem 1rem; font-size: 0.9rem; width: 200px; transition: all 0.3s; }
.desktop-navbar .nav-search input:focus { outline: none; border-color: var(--primary); width: 250px; }
.desktop-navbar .cart-icon { position: relative; font-size: 1.4rem; color: var(--text); padding: 0.3rem; cursor: pointer; transition: color 0.2s; }
.desktop-navbar .cart-icon:hover { color: var(--primary); }

/* ===================================================================
   MOBILE NAVBAR (APP STYLE) - hidden on tablet/desktop
   =================================================================== */
.mobile-header {
  display: none;
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(124,58,237,0.10);
  padding: 0.75rem 1rem;
  flex-direction: column;
  gap: 0.7rem;
}
.mobile-header-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-header .hamburger { background: var(--gradient-soft); border: none; border-radius: 10px; padding: 0.4rem 0.6rem; font-size: 1.3rem; color: var(--primary); cursor: pointer; }
.mobile-header .logo-center { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mobile-header .cart-btn { position: relative; background: var(--gradient-soft); border: none; border-radius: 10px; padding: 0.4rem 0.6rem; font-size: 1.3rem; color: var(--primary); cursor: pointer; }
.mobile-search-bar { display: flex; align-items: center; gap: 0.5rem; background: var(--gradient-soft); border-radius: var(--radius-pill); padding: 0.4rem 0.7rem; }
.city-select { background: transparent; border: none; font-size: 0.82rem; color: var(--primary); font-weight: 700; cursor: pointer; outline: none; max-width: 110px; }
.search-divider { width: 1px; height: 22px; background: var(--primary-light); opacity: 0.5; }
.mobile-search-bar input { flex: 1; background: transparent; border: none; font-size: 0.88rem; color: var(--text); outline: none; }
.search-arrow-btn { background: var(--gradient); border: none; border-radius: 50%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; flex-shrink: 0; }

/* Mobile Drawer */
.mobile-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100vh; background: #fff; z-index: 2000; transition: left 0.35s cubic-bezier(.4,0,.2,1); box-shadow: 4px 0 24px rgba(124,58,237,0.15); overflow-y: auto; }
.mobile-drawer.open { left: 0; }
.mobile-drawer-header { background: var(--gradient); padding: 2rem 1.5rem 1.5rem; color: #fff; }
.mobile-drawer-header h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; }
.mobile-drawer-header p { font-size: 0.85rem; opacity: 0.85; }
.mobile-drawer-close { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,0.2); border: none; border-radius: 8px; padding: 0.3rem 0.6rem; color: #fff; font-size: 1.1rem; cursor: pointer; }
.drawer-nav a { display: flex; align-items: center; gap: 0.8rem; padding: 0.9rem 1.5rem; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); transition: all 0.2s; font-size: 0.95rem; }
.drawer-nav a:hover, .drawer-nav a.active { background: var(--gradient-soft); color: var(--primary); }
.drawer-nav a i { width: 22px; text-align: center; color: var(--primary); font-size: 1.1rem; }
.drawer-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1999; }
.drawer-overlay.show { display: block; }

/* ===================================================================
   BOTTOM NAV (Mobile Only)
   =================================================================== */
.bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  z-index: 999;
  padding: 0.4rem 0;
  box-shadow: 0 -4px 20px rgba(124,58,237,0.10);
}
.bottom-nav .nav-items { display: flex; justify-content: space-around; align-items: center; }
.bottom-nav .nav-item { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; padding: 0.3rem 0.5rem; cursor: pointer; border-radius: 12px; transition: all 0.2s; flex: 1; }
.bottom-nav .nav-item i { font-size: 1.25rem; color: var(--text-muted); }
.bottom-nav .nav-item span { font-size: 0.6rem; color: var(--text-muted); font-weight: 600; }
.bottom-nav .nav-item.active i, .bottom-nav .nav-item.active span { color: var(--primary); }
.bottom-nav .nav-item.active { background: var(--gradient-soft); }
.bottom-nav .nav-item:nth-child(5) i { color: #25D366; }
.bottom-nav .nav-item:nth-child(5).active i { color: #25D366; }

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
  background: var(--gradient);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -200px; right: -200px;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -150px; left: -100px;
}
.hero-badge { background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); padding: 0.3rem 1rem; border-radius: var(--radius-pill); display: inline-block; font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; backdrop-filter: blur(8px); }
.hero h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 1.2rem; }
.hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; max-width: 500px; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; }
.hero-stats .stat { text-align: center; }
.hero-stats .stat .num { font-size: 1.6rem; font-weight: 800; font-family: 'Playfair Display', serif; }
.hero-stats .stat .lbl { font-size: 0.78rem; opacity: 0.85; }
.hero-img-wrap { position: relative; text-align: center; }
.hero-img-wrap img { border-radius: var(--radius); box-shadow: 0 16px 48px rgba(0,0,0,0.25); max-height: 420px; object-fit: cover; }
.hero-float-badge { position: absolute; background: #fff; border-radius: var(--radius); padding: 0.8rem 1.2rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.6rem; }
.hero-float-badge.badge1 { top: 20px; left: -20px; }
.hero-float-badge.badge2 { bottom: 30px; right: -20px; }
.hero-float-badge i { font-size: 1.4rem; }
.hero-float-badge .ftxt strong { display: block; font-size: 0.95rem; color: var(--text); }
.hero-float-badge .ftxt span { font-size: 0.75rem; color: var(--text-muted); }

/* ===================================================================
   CATEGORY CIRCLES
   =================================================================== */
.categories-section { padding: 4rem 0; }
.cat-scroll { display: flex; gap: 1.2rem; overflow-x: auto; padding-bottom: 0.5rem; scrollbar-width: none; }
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-item { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; cursor: pointer; flex-shrink: 0; min-width: 90px; }
.cat-circle { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; border: 3px solid transparent; background: var(--gradient) border-box; padding: 3px; transition: all 0.3s; box-shadow: var(--shadow); }
.cat-circle img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.cat-item:hover .cat-circle { transform: scale(1.08); box-shadow: var(--shadow-hover); }
.cat-item span { font-size: 0.8rem; font-weight: 700; color: var(--text); text-align: center; }
.cat-item.active .cat-circle { box-shadow: 0 0 0 3px var(--primary); }
.cat-item.active span { color: var(--primary); }

/* ===================================================================
   DECORATION CARDS
   =================================================================== */
.decorations-section { padding: 4rem 0; background: var(--gradient-soft); }
.deco-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.35s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.deco-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.deco-card-img { position: relative; overflow: hidden; height: 200px; }
.deco-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.deco-card:hover .deco-card-img img { transform: scale(1.08); }
.deco-card-badge { position: absolute; top: 12px; left: 12px; background: var(--gradient); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.7rem; border-radius: var(--radius-pill); }
.deco-card-fav { position: absolute; top: 12px; right: 12px; background: #fff; border: none; border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; color: #ccc; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: all 0.2s; }
.deco-card-fav:hover, .deco-card-fav.active { color: var(--pink); }
.deco-card-body { padding: 1rem 1.1rem; flex: 1; display: flex; flex-direction: column; }
.deco-card-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; }
.deco-card-loc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.deco-rating { display: flex; align-items: center; gap: 0.3rem; font-size: 0.82rem; color: #f59e0b; margin-bottom: 0.7rem; }
.deco-rating span { color: var(--text-muted); }
.deco-price { font-size: 1.15rem; font-weight: 800; color: var(--primary); margin-top: auto; }
.deco-price small { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; }
.btn-add-cart { background: var(--gradient); color: #fff; border: none; border-radius: var(--radius-pill); padding: 0.5rem 1.1rem; font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 0.4rem; }
.btn-add-cart:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(236,72,153,0.3); }
.btn-add-cart.added { background: linear-gradient(135deg, #10b981, #059669); }

/* ===================================================================
   WHY CHOOSE US
   =================================================================== */
.why-section { padding: 4rem 0; }
.why-card { text-align: center; padding: 2rem 1.5rem; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); transition: all 0.3s; height: 100%; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.why-icon { width: 70px; height: 70px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-size: 1.8rem; color: #fff; box-shadow: 0 8px 24px rgba(124,58,237,0.25); }
.why-card h5 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.reviews-section { padding: 4rem 0; background: var(--gradient-soft); }
.review-card { background: #fff; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); height: 100%; transition: all 0.3s; }
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.review-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-light); }
.review-name { font-weight: 700; font-size: 0.95rem; }
.review-loc { font-size: 0.78rem; color: var(--text-muted); }
.review-stars { color: #f59e0b; font-size: 0.85rem; margin: 0.7rem 0 0.5rem; }
.review-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.quote-icon { font-size: 2.5rem; color: var(--primary-light); opacity: 0.5; float: right; line-height: 1; }

/* ===================================================================
   CART PAGE
   =================================================================== */
.cart-section { padding: 3rem 0; min-height: 70vh; }
.cart-item-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.2rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; }
.cart-item-img { width: 90px; height: 80px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.cart-item-title { font-weight: 700; font-size: 0.95rem; }
.cart-item-price { color: var(--primary); font-weight: 800; font-size: 1rem; }
.qty-control { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn { background: var(--gradient-soft); border: none; border-radius: 8px; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-weight: 700; color: var(--primary); font-size: 1rem; transition: all 0.2s; }
.qty-btn:hover { background: var(--gradient); color: #fff; }
.qty-val { font-weight: 700; width: 24px; text-align: center; }
.remove-btn { background: #fff0f3; border: none; border-radius: 8px; padding: 0.3rem 0.6rem; color: #ef4444; cursor: pointer; font-size: 0.85rem; transition: all 0.2s; }
.remove-btn:hover { background: #fee2e2; }
.cart-summary { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; position: sticky; top: 100px; }
.cart-summary h4 { font-size: 1.2rem; margin-bottom: 1.2rem; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 0.7rem; font-size: 0.92rem; }
.summary-total { border-top: 2px solid var(--border); padding-top: 0.8rem; font-weight: 800; font-size: 1.05rem; color: var(--primary); }
.btn-checkout { background: var(--gradient); color: #fff; border: none; border-radius: var(--radius-pill); padding: 0.9rem; font-weight: 700; font-size: 1rem; width: 100%; cursor: pointer; transition: all 0.3s; margin-top: 1rem; }
.btn-checkout:hover { box-shadow: 0 6px 24px rgba(124,58,237,0.3); transform: translateY(-2px); }
.empty-cart { text-align: center; padding: 4rem 1rem; }
.empty-cart i { font-size: 5rem; color: var(--primary-light); margin-bottom: 1.5rem; }
.empty-cart h3 { margin-bottom: 0.8rem; }
.empty-cart p { color: var(--text-muted); margin-bottom: 2rem; }

/* ===================================================================
   AUTH PAGES
   =================================================================== */
.auth-section { min-height: 90vh; display: flex; align-items: center; padding: 3rem 0; }
.auth-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; max-width: 480px; margin: 0 auto; }
.auth-header { background: var(--gradient); color: #fff; padding: 2.5rem 2rem 2rem; text-align: center; }
.auth-header h2 { font-size: 1.8rem; margin-bottom: 0.3rem; }
.auth-header p { opacity: 0.85; font-size: 0.9rem; }
.auth-body { padding: 2rem; }
.form-label { font-weight: 700; font-size: 0.88rem; color: var(--text); margin-bottom: 0.3rem; }
.form-control-custom { border: 2px solid var(--border); border-radius: var(--radius-sm); padding: 0.7rem 1rem; font-size: 0.95rem; width: 100%; transition: all 0.3s; outline: none; background: #faf8ff; }
.form-control-custom:focus { border-color: var(--primary); background: #fff; }
.input-group-custom { position: relative; }
.input-group-custom i { position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%); color: var(--primary-light); font-size: 1rem; }
.input-group-custom .form-control-custom { padding-left: 2.5rem; }
.btn-auth { background: var(--gradient); color: #fff; border: none; border-radius: var(--radius-pill); padding: 0.85rem; font-weight: 700; font-size: 1rem; width: 100%; cursor: pointer; transition: all 0.3s; margin-top: 0.5rem; }
.btn-auth:hover { box-shadow: 0 6px 24px rgba(124,58,237,0.3); transform: translateY(-2px); }
.auth-switch { text-align: center; margin-top: 1.2rem; font-size: 0.9rem; color: var(--text-muted); }
.auth-switch a { color: var(--primary); font-weight: 700; }
.divider-or { display: flex; align-items: center; gap: 1rem; margin: 1.2rem 0; color: var(--text-muted); font-size: 0.85rem; }
.divider-or::before, .divider-or::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ===================================================================
   PROFILE PAGE
   =================================================================== */
.profile-section { padding: 3rem 0; min-height: 80vh; }
.profile-header-card { background: var(--gradient); border-radius: var(--radius); padding: 2.5rem 2rem; color: #fff; text-align: center; margin-bottom: 2rem; }
.profile-avatar { width: 100px; height: 100px; border-radius: 50%; border: 4px solid rgba(255,255,255,0.5); object-fit: cover; margin-bottom: 1rem; }
.profile-name { font-size: 1.5rem; font-family: 'Playfair Display', serif; }
.profile-email { opacity: 0.85; font-size: 0.9rem; }
.profile-stat-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.2rem; text-align: center; }
.profile-stat-card .num { font-size: 2rem; font-weight: 800; color: var(--primary); font-family: 'Playfair Display', serif; }
.profile-stat-card .lbl { font-size: 0.8rem; color: var(--text-muted); }
.profile-menu-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.profile-menu-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.3rem; border-bottom: 1px solid var(--border); cursor: pointer; transition: all 0.2s; }
.profile-menu-item:last-child { border-bottom: none; }
.profile-menu-item:hover { background: var(--gradient-soft); }
.profile-menu-item i { width: 36px; height: 36px; background: var(--gradient-soft); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1rem; }
.profile-menu-item .menu-text strong { display: block; font-size: 0.92rem; }
.profile-menu-item .menu-text span { font-size: 0.78rem; color: var(--text-muted); }
.profile-menu-item .chevron { margin-left: auto; color: var(--text-muted); }
.profile-menu-item.danger i { background: #fee2e2; color: #ef4444; }
.profile-menu-item.danger strong { color: #ef4444; }

/* ===================================================================
   ABOUT PAGE
   =================================================================== */
.about-hero { background: var(--gradient); color: #fff; padding: 5rem 0 4rem; text-align: center; }
.about-hero h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.about-hero p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.about-content { padding: 4rem 0; }
.about-img { border-radius: var(--radius); box-shadow: var(--shadow); }
.team-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; text-align: center; transition: all 0.3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.team-card img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-light); margin-bottom: 1rem; }
.team-card h5 { font-size: 1rem; margin-bottom: 0.2rem; }
.team-card span { font-size: 0.82rem; color: var(--primary); font-weight: 600; }

/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-section { padding: 4rem 0; }
.contact-hero { background: var(--gradient); color: #fff; padding: 4rem 0 3rem; text-align: center; }
.contact-info-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.contact-icon { width: 50px; height: 50px; background: var(--gradient); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.3rem; flex-shrink: 0; }
.contact-form-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem; }

/* ===================================================================
   PAGE HERO (Generic)
   =================================================================== */
.page-hero { background: var(--gradient); color: #fff; padding: 3.5rem 0 2.5rem; text-align: center; margin-bottom: 0; }
.page-hero h1 { font-size: 2.5rem; }
.page-hero p { opacity: 0.9; margin-top: 0.5rem; }
.breadcrumb-custom { display: flex; align-items: center; gap: 0.5rem; justify-content: center; margin-top: 0.8rem; font-size: 0.85rem; opacity: 0.85; }
.breadcrumb-custom a { color: rgba(255,255,255,0.8); }
.breadcrumb-custom a:hover { color: #fff; }

/* ===================================================================
   DETAIL PAGE
   =================================================================== */
.detail-section { padding: 3rem 0; }
.detail-main-img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 400px; object-fit: cover; }
.detail-thumb { border-radius: 10px; cursor: pointer; border: 3px solid transparent; transition: all 0.2s; height: 80px; object-fit: cover; }
.detail-thumb.active, .detail-thumb:hover { border-color: var(--primary); }
.detail-price-box { background: var(--gradient); color: #fff; border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.2rem; }
.detail-price-box .price { font-size: 2rem; font-weight: 800; font-family: 'Playfair Display', serif; }
.detail-price-box small { font-size: 0.85rem; opacity: 0.85; }
.detail-features { list-style: none; padding: 0; }
.detail-features li { display: flex; align-items: center; gap: 0.6rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.detail-features li:last-child { border-bottom: none; }
.detail-features li i { color: var(--primary); font-size: 1rem; width: 20px; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: #1e1b4b; color: #c4b5fd; padding: 3.5rem 0 1.5rem; }
.footer h5 { color: #fff; font-family: 'Playfair Display', serif; margin-bottom: 1.2rem; }
.footer a { color: #c4b5fd; font-size: 0.88rem; display: block; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer a:hover { color: var(--pink-light); }
.footer .social-icons { display: flex; gap: 0.8rem; margin-top: 1rem; }
.footer .social-icons a { background: rgba(255,255,255,0.1); border-radius: 10px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; font-size: 1rem; margin: 0; transition: all 0.2s; }
.footer .social-icons a:hover { background: var(--gradient); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.2rem; margin-top: 2.5rem; text-align: center; font-size: 0.82rem; color: rgba(196,181,253,0.7); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; font-weight: 700; }

/* ===================================================================
   TOAST / NOTIFICATION
   =================================================================== */
.toast-container-custom { position: fixed; bottom: 80px; right: 1rem; z-index: 9999; display: flex; flex-direction: column; gap: 0.6rem; }
.toast-custom { background: #fff; border-radius: var(--radius-sm); box-shadow: 0 8px 32px rgba(0,0,0,0.15); padding: 0.8rem 1.2rem; display: flex; align-items: center; gap: 0.8rem; min-width: 260px; animation: slideInRight 0.3s ease; font-size: 0.9rem; font-weight: 600; border-left: 4px solid var(--primary); }
.toast-custom.success { border-left-color: #10b981; }
.toast-custom.error { border-left-color: #ef4444; }
.toast-custom i { font-size: 1.2rem; color: var(--primary); }
.toast-custom.success i { color: #10b981; }
.toast-custom.error i { color: #ef4444; }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ===================================================================
   FILTER BAR
   =================================================================== */
.filter-bar { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1rem 1.5rem; margin-bottom: 2rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.filter-btn { background: var(--gradient-soft); border: none; border-radius: var(--radius-pill); padding: 0.4rem 1rem; font-size: 0.85rem; font-weight: 600; color: var(--primary); cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--gradient); color: #fff; }

/* ===================================================================
   MISC
   =================================================================== */
.section-badge { background: var(--gradient); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.9rem; border-radius: var(--radius-pill); display: inline-block; margin-bottom: 0.7rem; }
.rating-stars { color: #f59e0b; }

.page-body { padding-bottom: 0; }
@media (max-width: 767px) { .page-body { padding-bottom: 70px; } }

/* Transitions */
.fade-in { animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* Scroll to top */
.scroll-top-btn { position: fixed; bottom: 90px; right: 1.2rem; background: var(--gradient); color: #fff; border: none; border-radius: 50%; width: 44px; height: 44px; display: none; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; box-shadow: var(--shadow); z-index: 999; transition: all 0.3s; }
.scroll-top-btn:hover { transform: scale(1.1); }
.scroll-top-btn.visible { display: flex; }


