/* =========================================
   LEATHER HUB — Premium CSS Design System
   Portfolio / Showcase Mode (No Cart)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;1,400;1,600&display=swap');

/* --- CSS Variables --- */
:root {
  --clr-bg:       #FAF7F2;
  --clr-bg2:      #F2EDE3;
  --clr-surface:  #FFFDF9;
  --clr-surface2: #EDE5D4;
  --clr-border:   #D9CEBC;
  --clr-gold:     #B8893A;
  --clr-gold-lt:  #C9A84C;
  --clr-brown:    #8B4513;
  --clr-cream:    #F5F0E8;
  --clr-cream2:   #EDE5D4;
  --clr-text:     #3D2B1A;
  --clr-text2:    #7A6248;
  --clr-white:    #FFFDF9;

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;
  --ff-italic:  'Cormorant Garamond', Georgia, serif;

  --shadow-gold: 0 4px 24px rgba(184,137,58,0.18);
  --shadow-deep: 0 8px 40px rgba(61,43,26,0.12);

  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --radius: 6px;
  --radius-lg: 12px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--ff-body); cursor: pointer; border: none; outline: none; }
input, textarea, select { font-family: var(--ff-body); }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg2); }
::-webkit-scrollbar-thumb { background: var(--clr-gold); border-radius: 3px; }

/* =========================================
   UTILITY CLASSES
   ========================================= */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 15px;
  color: var(--clr-text2);
  max-width: 540px;
  margin-bottom: 48px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--clr-gold);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-gold:hover { background: var(--clr-gold-lt); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: transparent;
  color: var(--clr-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid var(--clr-gold);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--clr-gold); color: var(--clr-bg); transform: translateY(-2px); }

.divider {
  width: 60px;
  height: 2px;
  background: var(--clr-gold);
  margin-bottom: 24px;
}

/* =========================================
   NAVBAR
   ========================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  padding: 14px 0;
  box-shadow: var(--shadow-deep);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--clr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.nav-logo .logo-text {
  font-family: var(--ff-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: 1px;
}
.nav-logo .logo-text span { color: var(--clr-gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-text2);
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--clr-gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--clr-gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 20px; }

.nav-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text);
  font-size: 17px;
  transition: var(--transition);
  cursor: pointer;
}
.nav-icon-btn:hover { background: var(--clr-gold); color: var(--clr-bg); border-color: var(--clr-gold); }

.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  width: 18px; height: 18px;
  background: var(--clr-gold);
  color: var(--clr-bg);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.cart-count.show { display: flex; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(250,247,242,0.99);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-20px);
  opacity: 0;
  transition: var(--transition);
}
.mobile-nav.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 16px;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--clr-gold); }

/* =========================================
   HERO SECTION
   ========================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_banner.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.zoomed { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,10,0,0.82) 0%,
    rgba(20,10,0,0.55) 50%,
    rgba(20,10,0,0.20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease forwards;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--clr-gold);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.2s forwards;
}
.hero-title .gold { color: var(--clr-gold); }
.hero-title .italic { font-style: italic; }

.hero-sub {
  font-size: 16px;
  color: var(--clr-text);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.4s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.6s forwards;
}

.hero-stats {
  position: absolute;
  bottom: 48px;
  left: 0; right: 0;
  z-index: 2;
}
.hero-stats .container {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px 32px;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  width: fit-content;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-brown);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-text2);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--clr-border);
}

/* =========================================
   CATEGORIES SECTION
   ========================================= */
#categories { background: var(--clr-bg2); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: var(--clr-gold); }

.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover .cat-img { transform: scale(1.08); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(30,15,5,0.90) 100%);
}

.cat-icon-wrap {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  backdrop-filter: blur(8px);
}

.cat-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
}

.cat-name {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cat-count {
  font-size: 12px;
  color: var(--clr-gold);
  letter-spacing: 1px;
}

.cat-arrow {
  position: absolute;
  bottom: 24px; right: 20px;
  width: 36px; height: 36px;
  background: var(--clr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transform: translateX(50px);
  opacity: 0;
  transition: var(--transition);
}
.category-card:hover .cat-arrow { transform: translateX(0); opacity: 1; }

/* =========================================
   FEATURED PRODUCTS
   ========================================= */
#featured { background: var(--clr-bg); }

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

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

.product-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: rgba(201,168,76,0.4); }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(90deg, var(--clr-surface2) 25%, var(--clr-cream2) 50%, var(--clr-surface2) 75%);
  background-size: 200% 100%;
  animation: shimmerLoad 1.4s infinite;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}
.product-img-wrap img.loaded,
.product-img-wrap img[src] { opacity: 1; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

/* Category card img shimmer */
.cat-img {
  transition: transform 0.6s ease, opacity 0.4s ease;
  opacity: 0;
}
.cat-img.loaded, .cat-img[src] { opacity: 1; }

@keyframes shimmerLoad {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}


.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-new { background: var(--clr-gold); color: var(--clr-bg); }
.badge-sale { background: #C0392B; color: #fff; }
.badge-hot { background: var(--clr-brown); color: #fff; }

.product-actions {
  position: absolute;
  top: 12px; right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(50px);
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-actions { transform: translateX(0); opacity: 1; }

.action-btn {
  width: 36px; height: 36px;
  background: rgba(250,247,242,0.92);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text);
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.action-btn:hover { background: var(--clr-gold); color: var(--clr-bg); border-color: var(--clr-gold); }

.product-info { padding: 20px; }

.product-category {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-text2);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.3;
  margin-bottom: 8px;
}

.product-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}
.star { color: var(--clr-gold); font-size: 12px; }
.review-count { font-size: 11px; color: var(--clr-text2); margin-left: 4px; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-gold);
}
.product-price .old-price {
  font-size: 0.85rem;
  color: var(--clr-text2);
  text-decoration: line-through;
  font-family: var(--ff-body);
  font-weight: 400;
  margin-left: 6px;
}

.product-desc {
  font-size: 12px;
  color: var(--clr-text2);
  line-height: 1.6;
  margin-bottom: 14px;
}

.enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #25D366;
  border: none;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.enquire-btn:hover { background: #1EB855; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,211,102,0.3); }

/* =========================================
   CRAFTSMANSHIP / ABOUT STRIP
   ========================================= */
#craftsmanship { background: var(--clr-bg2); }

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.craft-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.craft-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.craft-img-wrap::before {
  content: '';
  position: absolute;
  inset: -8px -8px auto auto;
  width: 100px; height: 100px;
  border-top: 3px solid var(--clr-gold);
  border-right: 3px solid var(--clr-gold);
  border-radius: 0 var(--radius-lg) 0 0;
  z-index: 2;
}
.craft-img-wrap::after {
  content: '';
  position: absolute;
  inset: auto auto -8px -8px;
  width: 100px; height: 100px;
  border-bottom: 3px solid var(--clr-gold);
  border-left: 3px solid var(--clr-gold);
  border-radius: 0 0 0 var(--radius-lg);
  z-index: 2;
}

.craft-years-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--clr-gold);
  color: var(--clr-bg);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  z-index: 3;
}
.craft-years-badge .num {
  display: block;
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.craft-years-badge .label { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

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

.craft-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--clr-border);
}
.craft-feature:last-of-type { border-bottom: none; }

.craft-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.craft-feat-title {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 4px;
}
.craft-feat-text { font-size: 13px; color: var(--clr-text2); line-height: 1.6; }

/* =========================================
   TESTIMONIALS
   ========================================= */
#testimonials { background: var(--clr-bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }

.quote-icon {
  font-family: var(--ff-heading);
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,168,76,0.15);
  position: absolute;
  top: 16px; right: 24px;
}

.testimonial-text {
  font-family: var(--ff-italic);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--clr-surface2);
  border: 2px solid var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-gold);
}

.author-name {
  font-weight: 600;
  color: var(--clr-text);
  font-size: 14px;
}
.author-location { font-size: 12px; color: var(--clr-text2); }

/* =========================================
   NEWSLETTER
   ========================================= */
#newsletter {
  background: linear-gradient(135deg, var(--clr-surface2) 0%, var(--clr-bg2) 100%);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}
.newsletter-text { flex: 1; min-width: 280px; }

.newsletter-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  gap: 12px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--clr-text);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: var(--clr-text2); }
.newsletter-form input:focus { border-color: var(--clr-gold); }

/* =========================================
   FOOTER
   ========================================= */
#footer {
  background: #2C1A0E;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--clr-border);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 24px;
}

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.social-link:hover { background: var(--clr-gold); color: #fff; border-color: var(--clr-gold); }

.footer-col h4 {
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--clr-gold-lt); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item .ico { color: var(--clr-gold-lt); font-size: 14px; margin-top: 2px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 0;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: var(--clr-gold-lt); }

/* Rizq Technologies Branding */
.rizq-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-decoration: none;
  transition: var(--transition);
}
.rizq-brand:hover { opacity: 0.85; transform: translateY(-1px); }

.rizq-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(1);
  transition: var(--transition);
}
.rizq-brand:hover .rizq-logo { filter: brightness(1.15); }

.payment-icons { display: flex; gap: 8px; align-items: center; }
.payment-icon {
  padding: 4px 10px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  font-size: 11px;
  color: var(--clr-text2);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* =========================================
   WHATSAPP FLOAT BUTTON
   ========================================= */
.wa-float {
  position: fixed;
  bottom: 104px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition);
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.7); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.85); }
}

/* CartOverlay — kept empty for no-cart mode */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 400px;
  height: 100vh;
  background: var(--clr-bg2);
  border-left: 1px solid var(--clr-border);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--clr-border);
}
.cart-header h3 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  color: var(--clr-text);
}
.cart-close {
  width: 36px; height: 36px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--clr-text);
  transition: var(--transition);
  cursor: pointer;
}
.cart-close:hover { background: var(--clr-gold); color: var(--clr-bg); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px; }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--clr-text2);
}
.cart-empty .empty-icon { font-size: 3rem; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.cart-item-img {
  width: 72px; height: 72px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 500; color: var(--clr-text); margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--clr-gold); font-weight: 600; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.qty-btn {
  width: 26px; height: 26px;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--clr-text);
  cursor: pointer;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--clr-gold); color: #fff; }
.qty-num { font-size: 14px; color: var(--clr-text); min-width: 20px; text-align: center; }
.cart-item-remove { color: var(--clr-text2); font-size: 16px; cursor: pointer; transition: var(--transition); align-self: flex-start; }
.cart-item-remove:hover { color: #E74C3C; }

.cart-footer { padding: 20px 24px; border-top: 1px solid var(--clr-border); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total span { color: var(--clr-text2); font-size: 14px; }
.cart-total strong { font-family: var(--ff-heading); font-size: 1.4rem; color: var(--clr-brown); }
.checkout-btn {
  width: 100%;
  padding: 16px;
  background: var(--clr-gold);
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}
.checkout-btn:hover { background: var(--clr-gold-lt); }

/* =========================================
   TOAST NOTIFICATION
   ========================================= */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: #2C1A0E;
  border: 1px solid var(--clr-gold);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  min-width: 260px;
}
.toast.show { transform: translateX(0); }
.toast-icon { font-size: 18px; }
.toast-msg { font-size: 13px; color: #fff; }

/* =========================================
   SHOP PAGE
   ========================================= */
.page-hero {
  padding: 140px 0 64px;
  background: var(--clr-bg2);
  border-bottom: 1px solid var(--clr-border);
}
.page-hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--clr-text);
  margin-bottom: 8px;
}
.breadcrumb { display: flex; gap: 8px; font-size: 13px; color: var(--clr-text2); }
.breadcrumb a { color: var(--clr-text2); transition: var(--transition); }
.breadcrumb a:hover { color: var(--clr-gold); }
.breadcrumb .sep { color: var(--clr-border); }

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 48px 0 80px;
}

.filter-sidebar { position: sticky; top: 100px; height: fit-content; }

.filter-group {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
}

.filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  border-bottom: 1px solid var(--clr-border);
}
.filter-head h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-text);
}
.filter-head .toggle-icon { color: var(--clr-gold); transition: var(--transition); }
.filter-head.collapsed .toggle-icon { transform: rotate(-90deg); }

.filter-body { padding: 16px 20px; }

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
}
.filter-option input[type="checkbox"] { accent-color: var(--clr-gold); width: 15px; height: 15px; cursor: pointer; }
.filter-option label { font-size: 13px; color: var(--clr-text); cursor: pointer; transition: var(--transition); }
.filter-option:hover label { color: var(--clr-gold); }
.filter-count { margin-left: auto; font-size: 11px; color: var(--clr-text2); }

.price-range { display: flex; flex-direction: column; gap: 12px; }
.price-range input[type="range"] {
  accent-color: var(--clr-gold);
  width: 100%;
  cursor: pointer;
}
.price-labels { display: flex; justify-content: space-between; font-size: 13px; color: var(--clr-text2); }

.shop-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-top p { font-size: 13px; color: var(--clr-text2); }
.sort-select {
  padding: 10px 16px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--clr-text);
  font-size: 13px;
  outline: none;
  cursor: pointer;
  appearance: auto;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-story { background: var(--clr-bg2); }
.about-values { background: var(--clr-bg); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-title {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  color: var(--clr-text);
  margin-bottom: 10px;
}
.value-text { font-size: 13px; color: var(--clr-text2); line-height: 1.7; }

.team-section { background: var(--clr-bg2); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: var(--clr-surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 3rem;
  color: var(--clr-gold);
}
.team-info { padding: 20px; }
.team-name { font-family: var(--ff-heading); font-size: 1rem; color: var(--clr-text); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--clr-gold); letter-spacing: 1px; text-transform: uppercase; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--clr-border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-ico {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--clr-text2); margin-bottom: 4px; }
.contact-info-value { font-size: 14px; color: var(--clr-text); }

.contact-form-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-text2);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 13px 16px;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--clr-text);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--clr-gold);
  background: var(--clr-surface);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}
.whatsapp-btn:hover { background: #1EB855; transform: translateY(-2px); }

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   RESPONSIVE — Tablet & Mobile
   ========================================= */

/* ── Large Tablet / Small Desktop (≤1024px) ── */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }

  /* Craft / About split → single column */
  .craft-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer → 2 columns */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Shop → hide sidebar, full-width grid */
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .filter-sidebar { position: static; }

  /* Contact → stack */
  .contact-grid { grid-template-columns: 1fr; }

  /* Products grid → 3 columns max */
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Tablet (≤768px) ── */
@media (max-width: 768px) {
  /* Sections */
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 40px 0; }

  /* Navbar */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { gap: 16px; }
  .nav-logo .logo-text { font-size: 18px; }

  /* "Order Now" button in nav on tablet — keep but smaller */
  .nav-actions .btn-gold {
    padding: 8px 14px !important;
    font-size: 11px !important;
  }

  /* Hero */
  .hero-content { padding-top: 120px; padding-bottom: 160px; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-sub { font-size: 14px; }
  .hero-btns { gap: 12px; }
  .hero-btns .btn-gold,
  .hero-btns .btn-outline { padding: 12px 22px; font-size: 12px; }

  /* Hero Stats bar */
  .hero-stats { bottom: 20px; }
  .hero-stats .container {
    flex-wrap: wrap;
    gap: 20px;
    padding: 16px 20px;
    justify-content: center;
  }
  .stat-divider { display: none; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 10px; }
  .stat-item { min-width: 80px; text-align: center; }

  /* Categories → 2 columns */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .cat-name { font-size: 1.1rem; }

  /* Products → 2 columns */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .product-name { font-size: 1rem; }
  .product-price { font-size: 1.1rem; }

  /* Products header → stack */
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }

  /* Section titles */
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .section-sub { font-size: 14px; margin-bottom: 32px; }

  /* Craft section */
  .craft-grid { gap: 28px; }
  .craft-img-wrap::before,
  .craft-img-wrap::after { display: none; }
  .craft-years-badge { padding: 14px; }
  .craft-years-badge .num { font-size: 1.8rem; }

  /* Testimonials → 1 column */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 24px; }

  /* Newsletter */
  .newsletter-inner { flex-direction: column; gap: 28px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  #footer { padding-top: 48px; }

  /* Shop page — filters become horizontal chips row */
  .shop-layout { padding: 28px 0 60px; gap: 20px; }
  .filter-sidebar { display: none; } /* hidden on mobile, toggle via JS later */
  .shop-top { margin-bottom: 16px; }

  /* Contact page */
  .contact-info-card,
  .contact-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* About page */
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .value-card { padding: 24px 16px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* WhatsApp float button */
  .wa-float {
    width: 52px; height: 52px;
    font-size: 22px;
    bottom: 84px; right: 16px;
  }

  /* Toast */
  .toast {
    right: 12px;
    left: 12px;
    min-width: unset;
    bottom: 80px;
  }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 48px 0; }

  /* Navbar — hide "Order Now" text, show icon only */
  .nav-actions .btn-gold {
    padding: 8px 10px !important;
    font-size: 0 !important;       /* hide text */
    gap: 0 !important;
    width: 38px;
    justify-content: center;
  }
  .nav-actions .btn-gold i {
    font-size: 15px !important;
    margin: 0 !important;
  }

  /* Hero */
  .hero-content { padding-top: 100px; padding-bottom: 200px; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); line-height: 1.2; }
  .hero-badge { font-size: 10px; letter-spacing: 1.5px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns a { width: 100%; justify-content: center; text-align: center; }

  /* Hero stats */
  .hero-stats .container {
    gap: 12px;
    padding: 12px 16px;
  }
  .stat-num { font-size: 1.3rem; }

  /* Categories → 2 columns tight */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .category-card { aspect-ratio: 3/3.5; }
  .cat-name { font-size: 1rem; }
  .cat-count { font-size: 10px; }

  /* Products → single column */
  .products-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Product card full width */
  .product-img-wrap { aspect-ratio: 16/9; }

  /* Section */
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .tag { font-size: 10px; letter-spacing: 2px; }
  .divider { margin-bottom: 16px; }

  /* Craft */
  .craft-feature { gap: 12px; }
  .craft-icon { width: 36px; height: 36px; font-size: 16px; }
  .craft-feat-title { font-size: 0.95rem; }
  .craft-content .btn-gold { width: 100%; justify-content: center; }

  /* Footer → 1 column */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Values → 1 column */
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact cards */
  .contact-info-card,
  .contact-form-card { padding: 20px 16px; }

  /* Page hero */
  .page-hero { padding: 110px 0 40px; }
  .page-hero-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Shop top bar */
  .shop-top { flex-direction: column; align-items: flex-start; }
  .sort-select { width: 100%; }

  /* Newsletter */
  .newsletter-form .btn-gold { width: 100%; justify-content: center; }

  /* WhatsApp float button */
  .wa-float {
    bottom: 76px; right: 12px;
    width: 48px; height: 48px;
    font-size: 20px;
  }
}

/* ── Very small phones (≤360px) ── */
@media (max-width: 360px) {
  .hero-title { font-size: 1.6rem; }
  .categories-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats .container { gap: 8px; }
}

/* =========================================
   CHATBOT WIDGET
   ========================================= */
.chatbot-launcher {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: var(--clr-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(139,69,19,0.40);
  z-index: 998;
  transition: var(--transition);
  border: none;
  animation: chatPulse 3s infinite;
}
.chatbot-launcher:hover { transform: scale(1.1); }
@keyframes chatPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(139,69,19,0.40); }
  50%      { box-shadow: 0 4px 32px rgba(139,69,19,0.70); }
}

.chatbot-panel {
  position: fixed;
  bottom: 104px; right: 28px;
  width: 360px;
  max-height: 520px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(61,43,26,0.18);
  display: flex;
  flex-direction: column;
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
.chatbot-panel.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--clr-brown);
  color: #fff;
}
.chatbot-header-left { display: flex; align-items: center; gap: 12px; }
.chatbot-avatar {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.chatbot-header-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.chatbot-header-info span { font-size: 11px; opacity: 0.8; }
.chatbot-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  padding: 0;
  line-height: 1;
}
.chatbot-close-btn:hover { opacity: 1; }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 340px;
  background: var(--clr-bg2);
}
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 2px; }

.chat-msg { display: flex; gap: 8px; align-items: flex-end; }
.chat-msg.bot { flex-direction: row; }
.chat-msg.user { flex-direction: row-reverse; }

.chat-msg-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--clr-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.chat-bubble {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.55;
}
.chat-msg.bot .chat-bubble {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: var(--clr-brown);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 10px;
  background: var(--clr-bg2);
}
.chat-chip {
  padding: 6px 12px;
  border: 1px solid var(--clr-gold);
  border-radius: 999px;
  font-size: 12px;
  color: var(--clr-brown);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--ff-body);
}
.chat-chip:hover { background: var(--clr-gold); color: #fff; border-color: var(--clr-gold); }

.chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}
.chat-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--clr-text2);
  animation: typingBounce 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%,60%,100% { transform: translateY(0); }
  30%          { transform: translateY(-6px); }
}

.chatbot-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--clr-border);
  background: var(--clr-surface);
}
.chatbot-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  border-radius: 999px;
  font-size: 13px;
  font-family: var(--ff-body);
  background: var(--clr-bg2);
  color: var(--clr-text);
  outline: none;
  transition: var(--transition);
}
.chatbot-input::placeholder { color: var(--clr-text2); }
.chatbot-input:focus { border-color: var(--clr-gold); }

.chatbot-send-btn {
  width: 38px; height: 38px;
  background: var(--clr-brown);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.chatbot-send-btn:hover { background: var(--clr-gold); transform: scale(1.05); }

/* Tablets (≤768px) */
@media (max-width: 768px) {
  .chatbot-launcher {
    bottom: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .chatbot-panel {
    bottom: 84px;
    right: 16px;
    max-height: calc(100vh - 100px);
  }
  .chatbot-messages {
    max-height: none;
  }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
  .chatbot-launcher {
    bottom: 16px;
    right: 12px;
    width: 48px;
    height: 48px;
  }
  .chatbot-panel {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    max-height: 100vh;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }
  .chatbot-panel.open {
    transform: translateY(0);
  }
}


