/*-----------------------------------*\
 * #style.css — RR Handicrafts (Full)
 * (All original styles + new header/hero/categories)
\*-----------------------------------*/
:root {
  --maximum-blue-green_10: hsla(185, 75%, 45%, 0.1);
  --rich-black-fogra-29: hsl(217, 28%, 9%);
  --gray-x-11-gray: hsl(0, 0%, 74%);
  --oxford-blue_60: hsla(230, 41%, 14%, 0.6);
  --bittersweet: hsl(5, 100%, 69%);
  --smoky-black: rgb(7, 6, 1);
  --gainsboro: hsl(0, 0%, 88%);
  --black_90: hsla(0, 0%, 0%, 0.9);
  --cultured: hsl(200, 12%, 95%);
  --salmon: hsl(5, 100%, 73%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 27%);

  --ff-roboto: 'Roboto', sans-serif;
  --ff-josefin-sans: 'Josefin Sans', sans-serif;
  --ff-cormorant: 'Cormorant Garamond', serif;

  --fs-1: 3rem; --fs-2: 2.6rem; --fs-3: 2.2rem; --fs-4: 2rem;
  --fs-5: 1.8rem; --fs-6: 1.6rem; --fs-7: 1.4rem; --fs-8: 1.2rem;

  --fw-300: 300; --fw-500: 500; --fw-600: 600; --fw-700: 700;

  --transition-1: 0.25s ease; --transition-2: 0.5s ease;
  --cubic-out: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-in: cubic-bezier(0.33, 0.85, 0.56, 1.02);

  --section-padding: 60px;
}

/* Dark mode – refined palette */
[data-theme="dark"] {
  --white: hsl(0, 0%, 10%);
  --rich-black-fogra-29: hsl(0, 0%, 95%);
  --onyx: hsl(0, 0%, 80%);
  --gainsboro: hsl(0, 0%, 25%);
  --cultured: hsl(0, 0%, 15%);
  --black_90: hsla(0, 0%, 100%, 0.9);
  --gray-x-11-gray: hsl(0, 0%, 50%);
  --bittersweet: hsl(5, 90%, 65%);
  --salmon: hsl(5, 90%, 70%);
}

/* ========== GLOBAL RESETS (original) ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; position: relative; }
li { list-style: none; } a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; background: none; border: none; }
input { width: 100%; } button { cursor: pointer; }
address { font-style: normal; line-height: 1.8; }

html { font-family: var(--ff-josefin-sans); font-size: 10px; scroll-behavior: smooth; width: 100%; height: 100%; margin: 0; padding: 0; }
body { background: var(--white); font-size: 1.6rem; padding-block-start: 100px; color: var(--onyx); overflow-x: hidden; width: 100%; margin: 0; min-height: 100vh; }
body.no-scroll { overflow: hidden; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cultured); }
::-webkit-scrollbar-thumb { background: var(--bittersweet); border-radius: 10px; }

.container { padding-inline: 20px; max-width: 1260px; margin: 0 auto; }
@media (min-width: 1200px) { .container { padding-inline: 30px; } }
.section { padding-block: var(--section-padding); width: 100%; }
.h1,.h2,.h3,.h4 { color: var(--rich-black-fogra-29); }
.h2 { font-size: var(--fs-2); text-align: center; } 
.h3 { font-size: var(--fs-4); }
.h4 { font-size: var(--fs-5); text-transform: uppercase; }
.section-title { margin-bottom: 20px; text-align: center; width: 100%; }

.btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--bittersweet); color: var(--white);
  font-size: var(--fs-5); padding: 14px 25px;
  border: 2px solid var(--bittersweet); border-radius: 30px;
  font-weight: 600; transition: all var(--transition-1);
}
.btn:hover { background: var(--salmon); border-color: var(--salmon); }
.btn-outline { background: transparent; color: var(--bittersweet); }
.btn-outline:hover { background: var(--bittersweet); color: white; }
.btn-link { background: transparent; border: 2px solid white; color: white; }
.btn-link:hover { background: var(--bittersweet); border-color: var(--bittersweet); }

/* Fade animation */
.fade-in-el { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-el.appear { opacity: 1; transform: translateY(0); }

/* ========== HEADER (new – fixed and elegant) ========== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--gainsboro);
  transition: var(--transition-1); height: 80px; display: flex; align-items: center;
}
.header.active { box-shadow: 0 2px 15px rgba(0,0,0,0.1); }
.header-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo-link { display: flex; flex-direction: column; align-items: flex-start; }
.logo-text { font-family: var(--ff-cormorant); font-size: 2.0rem; font-weight: 700; color: var(--rich-black-fogra-29); line-height:1; }
.logo-dot { color: var(--bittersweet); }
.logo-tagline { font-size: 0.9rem; color: var(--onyx); text-transform: uppercase; letter-spacing: 2px; }

.navbar { display: flex; align-items: center; }
.navbar-list { display: flex; gap: 30px; }
.navbar-link { color: var(--onyx); font-weight: 500; padding: 8px 0; position: relative; }
.navbar-link.active, .navbar-link:hover { color: var(--bittersweet); }
.navbar-link::after { content:''; position: absolute; bottom: 0; left:0; width: 0; height: 2px; background: var(--bittersweet); transition: var(--transition-1); }
.navbar-link:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 15px; }
.wishlist-btn { position: relative; color: var(--onyx); font-size: 22px; }
.nav-action-badge {
  position: absolute; top: -8px; right: -14px;
  background: var(--bittersweet); color: white;
  min-width: 22px; height: 22px; display: grid; place-items: center;
  border-radius: 50%; font-size: 0.8rem; font-weight: 700; padding: 0 5px;
}

.dark-toggle {
  width: 50px; height: 28px; border-radius: 20px; background: var(--gainsboro);
  position: relative; transition: var(--transition-1);
}
.dark-toggle .toggle-moon, .dark-toggle .toggle-sun {
  position: absolute; top: 50%; transform: translateY(-50%); font-size: 16px;
}
.dark-toggle .toggle-moon { left: 6px; color: var(--onyx); }
.dark-toggle .toggle-sun { right: 6px; color: var(--bittersweet); opacity: 0; }
[data-theme="dark"] .dark-toggle { background: var(--white); border: 1px solid var(--bittersweet); }
[data-theme="dark"] .dark-toggle .toggle-moon { opacity: 0; }
[data-theme="dark"] .dark-toggle .toggle-sun { opacity: 1; }

.nav-open-btn { display: none; font-size: 28px; color: var(--onyx); }
.nav-close-btn { position: absolute; top: 20px; right: 20px; font-size: 24px; color: var(--onyx); display: none; }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.overlay.active { opacity: 1; pointer-events: all; }

@media (max-width: 991px) {
  .nav-open-btn { display: block; }
  .navbar {
    position: fixed; top: 0; left: -280px; width: 260px; height: 100vh;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 80px 30px 30px; box-shadow: 0 0 20px rgba(0,0,0,0.2);
    transition: left 0.4s ease; z-index: 10000;
  }
  .navbar.active { left: 0; }
  .navbar-list { flex-direction: column; gap: 20px; }
  .nav-close-btn { display: block; }
}

/* ========== HERO CAROUSEL (YouTube thumbnail style) ========== */
.hero-carousel { padding-top: 30px; }
.carousel-wrapper { position: relative; overflow: hidden; border-radius: 20px; box-shadow: 0 12px 35px rgba(0,0,0,0.08); }
.carousel-track { display: flex; transition: transform 0.5s ease; }
.hero-slide { flex: 0 0 100%; display: flex; flex-direction: column; }
.hero-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.hero-thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-badge { position: absolute; top: 15px; left: 15px; background: var(--bittersweet); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; }
.hero-info { padding: 30px 25px; background: var(--white); }
.hero-title { font-size: 2.2rem; color: var(--rich-black-fogra-29); margin-bottom: 12px; }
.hero-desc { color: var(--onyx); margin-bottom: 20px; font-size: 1.5rem; }
.hero-btn { display: inline-flex; }
.carousel-arrow { position: absolute; top: 45%; transform: translateY(-50%); width: 42px; height: 42px; background: var(--white); border-radius: 50%; box-shadow: 0 3px 12px rgba(0,0,0,0.15); display: grid; place-items: center; z-index: 9; font-size: 20px; color: var(--onyx); transition: all var(--transition-1); }
.carousel-arrow:hover { background: var(--bittersweet); color: white; }
.carousel-arrow.left { left: 20px; } .carousel-arrow.right { right: 20px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 10; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gainsboro); transition: var(--transition-1); }
.dot.active { background: var(--bittersweet); width: 26px; border-radius: 12px; }

@media (min-width: 768px) {
  .hero-slide { flex-direction: row; }
  .hero-thumb { flex: 1; aspect-ratio: auto; }
  .hero-info { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 50px; }
  .carousel-arrow { top: 50%; }
}

/* Product cards (original – with subtle border) */
.product-card {
  border: 1px solid var(--gainsboro); border-radius: 12px; overflow: hidden;
  background: var(--white); box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  transition: all var(--transition-2);
}
.product-card:hover { box-shadow: 0 15px 35px rgba(235, 34, 110, 0.12); transform: translateY(-6px); }
.card-banner { background: var(--cultured); position: relative; height: 350px; overflow: hidden; }
.image-contain { width: 100%; height: 100%; object-fit: contain; transition: var(--transition-2); }
.product-card:is(:hover,:focus) .image-contain { transform: scale(1.1); }
.card-badge { position: absolute; top: 20px; left: 20px; background: var(--bittersweet); color: var(--white); padding: 5px 15px; border-radius: 25px; }
.card-action-list { position: absolute; top: 20px; right: -20px; opacity: 0; transition: var(--transition-1); }
.product-card:is(:hover,:focus) .card-action-list { right: 20px; opacity: 1; }
.card-action-btn { background: var(--white); color: var(--rich-black-fogra-29); font-size: 18px; padding: 10px; border-radius: 50%; transition: var(--transition-1); }
.card-action-btn:is(:hover,:focus) { background: var(--bittersweet); color: var(--white); }
.card-action-tooltip {
  position: absolute; top: 50%; right: calc(100% + 5px); transform: translateY(-50%);
  background: var(--black_90); color: var(--white); padding: 4px 8px; border-radius: 4px;
  opacity: 0; pointer-events: none; transition: var(--transition-1); white-space: nowrap;
}
.card-action-btn:is(:hover,:focus) + .card-action-tooltip { opacity: 1; }
.card-content { padding: 24px 15px 0; text-align: center; }
.card-cat { color: var(--onyx); font-size: var(--fs-7); margin-bottom: 12px; }
.product-card .card-title { margin-bottom: 12px; }
.card-price { color: var(--bittersweet); font-weight: var(--fw-600); }

/* Filter & Pagination (original) */
.filter-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 30px; }
.filter-btn { color: var(--onyx); padding: 12px 22px; border: 1px solid var(--gainsboro); border-radius: 30px; font-weight: 600; font-size: 1.4rem; background: var(--white); transition: all var(--transition-1); }
.filter-btn.active, .filter-btn:hover { background: var(--bittersweet); color: white; border-color: var(--bittersweet); }
.pagination-container { display: flex; justify-content: center; gap: 10px; margin-top: 50px; flex-wrap: wrap; padding-block: 30px; border-top: 2px solid var(--gainsboro); border-bottom: 2px solid var(--gainsboro); }
.pagination-btn {
  background: var(--white); border: 2px solid var(--gainsboro); padding: 10px 18px; border-radius: 25px;
  font-weight: 600; font-size: 1.4rem; transition: all var(--transition-1); cursor: pointer;
}
.pagination-btn:hover:not(:disabled) { background: rgba(235, 34, 110, 0.1); border-color: var(--bittersweet); color: var(--bittersweet); }
.pagination-btn.active { background: var(--bittersweet); color: white; border-color: var(--bittersweet); box-shadow: 0 4px 15px rgba(235, 34, 110, 0.3); }
.pagination-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--onyx);
  opacity: 0.6;
  user-select: none;
}
/* Latest header (original) */
.latest-header {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  margin-bottom: 35px; gap: 20px;
}
@media (max-width: 768px) { .latest-header { flex-direction: column; text-align: center; } }
.btn-outline {
  background: transparent; border: 2px solid var(--bittersweet); color: var(--bittersweet);
  padding: 12px 24px; border-radius: 30px; display: flex; align-items: center; gap: 8px;
  transition: all var(--transition-1); font-weight: 600; margin: 0 auto;
}
@media (min-width: 992px) { .btn-outline { margin: 0; } }
.btn-outline:hover { background: var(--bittersweet); color: white; transform: translateX(3px); }

/* Special section (original) */
.special {
  background: linear-gradient(135deg, rgba(235, 34, 110, 0.05) 0%, rgba(235, 34, 110, 0.02) 100%);
  border-top: 3px solid var(--bittersweet); border-bottom: 3px solid var(--bittersweet);
}
.special .container { display: flex; gap: 40px; flex-wrap: wrap; align-items: stretch; }
.special-banner { 
  flex: 1 1 300px; background-size: cover; background-position: center; min-height: 400px; 
  display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start;
  padding: 50px; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  position: relative; overflow: hidden;
}
.special-banner::before { content: ''; position: absolute; inset: 0; background: transparent; z-index: 1; }
.special-banner .banner-title,
.special-banner .btn-link { position: relative; z-index: 2; color: white; }
.special-banner .btn-link { margin-top: auto; border-color: white; }
.special-product { flex: 2 1 500px; display: flex; flex-direction: column; }
.special .section-title { margin-bottom: 35px; font-size: 2rem; }
.special-product .has-scrollbar { gap: 20px; }
.special-product .has-scrollbar > li { scroll-snap-align: start; }
.special-product .product-card { border: 1px solid var(--gainsboro); border-radius: 8px; padding: 12px; transition: all var(--transition-2); }
.special-product .product-card:hover { box-shadow: 0 12px 32px rgba(235, 34, 110, 0.15); border-color: var(--bittersweet); transform: translateY(-4px); }
.special .container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: stretch;
}

.special-banner {
  flex: 1 1 280px;
  /* ... existing styles ... */
}

.special-product {
  flex: 2 1 500px;
  display: flex;
  flex-direction: column;
  min-width: 0;              /* 👈 Important: allow shrinking */
}

.special-product .has-scrollbar {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;      /* space for scrollbar */
  /* 👇 Prevent the list from becoming taller than its content */
  flex-wrap: nowrap;
}

.special-product .has-scrollbar > li {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 250px;              /* 👈 Fixed width for each card */
  /* Optional: clamp for smaller screens */
  min-width: 200px;
}
/* CTA Section (original) */
.cta {
  background: linear-gradient(135deg, rgba(235, 34, 110, 0.08) 0%, rgba(235, 34, 110, 0.02) 100%);
  padding-block: 60px; border-top: 2px solid var(--gainsboro); border-bottom: 2px solid var(--gainsboro);
}
.cta-list { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cta-card {
  background-size: cover; background-position: center; min-height: 350px;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  padding: 50px 40px; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  position: relative; overflow: hidden; transition: all var(--transition-2);
}
.cta-card::before { content: ''; position: absolute; inset: 0; background: transparent; z-index: 1; transition: all var(--transition-2); }
.cta-card:hover { transform: translateY(-10px); box-shadow: 0 16px 40px rgba(235, 34, 110, 0.25); }
.cta-card .card-subtitle,
.cta-card .card-title,
.cta-card .btn-link { position: relative; z-index: 2; color: white; }
.cta-card .card-subtitle { font-size: 1.4rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 10px; }
.cta-card .card-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; line-height: 1.3; }
.cta-card .btn-link { background: transparent; border: 2px solid white; margin-top: auto; transition: all var(--transition-1); display: inline-flex; }
.cta-card:hover .btn-link { background: var(--bittersweet); border-color: var(--bittersweet); }

/* ==================== BLOG STYLES (fully preserved) ==================== */
.blog-list { display: grid; gap: 30px; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); margin-bottom: 40px; }
.blog-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08); transition: all var(--transition-2);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(235, 34, 110, 0.2); }
.blog-card-image { width: 100%; height: 250px; background-size: cover; background-position: center; transition: all var(--transition-2); }
.blog-card:hover .blog-card-image { transform: scale(1.05); }
.blog-card-content { padding: 25px; display: flex; flex-direction: column; flex: 1; }
.blog-card-category { font-size: 1.2rem; color: var(--bittersweet); text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.blog-card-title { font-size: 1.8rem; font-weight: 700; color: var(--rich-black-fogra-29); margin-bottom: 12px; line-height: 1.4; transition: var(--transition-1); }
.blog-card:hover .blog-card-title { color: var(--bittersweet); }
.blog-card-excerpt { font-size: 1.4rem; color: var(--onyx); margin-bottom: auto; line-height: 1.6; }
.blog-card-meta { display: flex; gap: 15px; margin-top: 20px; padding-top: 15px; border-top: 1px solid var(--gainsboro); font-size: 1.3rem; color: var(--onyx); }
.blog-card-date { font-weight: 600; }
.blog-card-author { font-style: italic; }

.blog-post-section { max-width: 900px; margin: 0 auto; }
.blog-post-article { background: var(--white); padding: 40px; border-radius: 12px; }
.blog-post-header { margin-bottom: 40px; }
.blog-post-title { font-size: 2.8rem; font-weight: 700; color: var(--rich-black-fogra-29); margin-bottom: 20px; line-height: 1.3; }
.blog-post-meta {
  display: flex; flex-wrap: wrap; gap: 20px; font-size: 1.4rem; color: var(--onyx);
  margin-bottom: 30px; padding-bottom: 30px; border-bottom: 2px solid var(--gainsboro);
}
.blog-post-date, .blog-post-author { font-weight: 600; }
.blog-post-category { background: rgba(235, 34, 110, 0.1); color: var(--bittersweet); padding: 5px 12px; border-radius: 20px; font-weight: 600; }
.blog-post-image { width: 100%; height: auto; max-height: 500px; object-fit: cover; border-radius: 12px; margin-bottom: 40px; }
.blog-post-content { font-family: var(--ff-roboto); font-size: 1.6rem; line-height: 1.8; color: var(--onyx); }
.blog-post-content h2 { font-size: 2rem; color: var(--rich-black-fogra-29); font-weight: 700; margin-top: 40px; margin-bottom: 20px; }
.blog-post-content h3 { font-size: 1.8rem; color: var(--bittersweet); font-weight: 700; margin-top: 30px; margin-bottom: 15px; }
.blog-post-content p { margin-bottom: 20px; }
.blog-post-content ul, .blog-post-content ol { margin-left: 30px; margin-bottom: 20px; }
.blog-post-content li { margin-bottom: 10px; display: list-item; list-style: inherit; }
.blog-post-content strong { font-weight: 700; color: var(--rich-black-fogra-29); }
.blog-post-footer { margin-top: 40px; padding-top: 30px; border-top: 2px solid var(--gainsboro); }

.related-posts { margin-top: 60px; }
.related-posts-list { display: grid; gap: 25px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin-top: 30px; }
.related-post-card {
  display: block; padding: 25px; background: rgba(235, 34, 110, 0.05);
  border-left: 4px solid var(--bittersweet); border-radius: 8px; transition: all var(--transition-1);
}
.related-post-card:hover { background: rgba(235, 34, 110, 0.1); transform: translateX(8px); }
.related-post-card h3 { font-size: 1.6rem; font-weight: 700; color: var(--rich-black-fogra-29); margin-bottom: 10px; }
.related-post-card p { font-size: 1.4rem; color: var(--onyx); }

/* ==================== SEARCH & BREADCRUMB (original) ==================== */
.breadcrumb-section { padding-block: 25px; background: rgba(235, 34, 110, 0.03); }
.breadcrumb-list { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 1.4rem; }
.breadcrumb-list li a { color: var(--bittersweet); transition: var(--transition-1); }
.breadcrumb-list li a:hover { text-decoration: underline; }
.breadcrumb-list li span { color: var(--onyx); }

.search-bar-wrapper { margin-bottom: 40px; position: relative; }
.search-input-wrapper {
  display: flex; align-items: center; gap: 12px; padding: 12px 20px; background: var(--cultured);
  border-radius: 30px; border: 2px solid transparent; transition: all var(--transition-1);
  max-width: 600px; margin: 0 auto;
}
.search-input-wrapper:focus-within { border-color: var(--bittersweet); box-shadow: 0 4px 16px rgba(235, 34, 110, 0.15); }
.search-input-wrapper ion-icon { color: var(--bittersweet); font-size: 20px; }
.search-input { background: transparent; color: var(--onyx); font-size: 1.5rem; width: 100%; }
.search-input::placeholder { color: rgb(165, 107, 107); }

.search-results-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: min(90vw, 600px); background: var(--white); border: 1px solid var(--gainsboro);
  border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.15); z-index: 10;
  max-height: 400px; overflow-y: auto; margin-top: 8px;
}
.search-result-item { display: flex; align-items: center; gap: 15px; padding: 12px 20px; cursor: pointer; transition: all var(--transition-1); border-bottom: 1px solid var(--gainsboro); }
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: rgba(235, 34, 110, 0.05); padding-left: 25px; }
.search-result-item img { width: 50px; height: 50px; object-fit: cover; border-radius: 8px; }
.search-result-info { flex: 1; }
.search-result-name { font-weight: 600; color: var(--rich-black-fogra-29); margin-bottom: 4px; }
.search-result-category { font-size: 1.2rem; color: var(--onyx); }
.search-result-price { font-weight: 700; color: var(--bittersweet); }
.search-no-results { padding: 30px 20px; text-align: center; color: var(--onyx); font-size: 1.5rem; }

/* ==================== MAP & FOOTER (original, dark footer updated) ==================== */
.map-section { display: none; }
.map-container {
  max-width: 100%; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 2px solid rgba(235, 34, 110, 0.2); transition: all var(--transition-2); display: block;
}
.map-container:hover { box-shadow: 0 15px 40px rgba(235, 34, 110, 0.3); border-color: rgba(235, 34, 110, 0.35); transform: translateY(-3px); }
.map-container iframe { width: 100%; height: 100%; border: none; display: block; }

.footer { font-family: var(--ff-roboto); }
.footer-top { 
  background: linear-gradient(135deg, #2a2520 0%, #1f1b17 100%);
  color: var(--white); padding-block: 80px; border-top: 4px solid var(--bittersweet);
}
[data-theme="dark"] .footer-top {
  background: linear-gradient(135deg, hsl(0, 0%, 14%) 0%, hsl(0, 0%, 8%) 100%) !important;
  color: hsl(0, 0%, 90%);
}
[data-theme="dark"] .footer-list-title { color: hsl(0, 0%, 95%); }
[data-theme="dark"] .footer-link { color: hsl(0, 0%, 80%); }
[data-theme="dark"] .footer-link:hover { color: var(--bittersweet); }
[data-theme="dark"] .footer-bottom { background: hsl(0, 0%, 8%) !important; }
[data-theme="dark"] .copyright { color: hsl(0, 0%, 70%); }

.footer-top .container { display: flex; flex-direction: column; gap: 50px; }
.footer-brand {
  padding-bottom: 40px; border-bottom: 2px solid rgba(235, 34, 110, 0.3);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px;
}
.social-list { display: flex; gap: 12px; }
.social-link {
  background: rgba(235, 34, 110, 0.15); color: var(--white); font-size: 22px;
  padding: 12px; border-radius: 50%; transition: all var(--transition-1);
  border: 2px solid rgba(235, 34, 110, 0.4); width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.social-link:hover { background: var(--bittersweet); border-color: var(--bittersweet); transform: translateY(-3px); }
.footer-list { display: flex; flex-direction: column; gap: 15px; }
.footer-list-title {
  font-size: 1.7rem; font-weight: var(--fw-700); margin-bottom: 20px; color: var(--white);
  text-transform: uppercase; letter-spacing: 1px;
}
.footer-list-title::after { content: ""; display: block; background: var(--bittersweet); width: 40px; height: 3px; margin-top: 12px; border-radius: 2px; }
.footer-link { color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 10px; padding-block: 6px; transition: all var(--transition-1); font-size: 1.4rem; }
.footer-link:hover { color: var(--bittersweet); transform: translateX(5px); }
.footer-link-box { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; width: 100%; }
@media (min-width: 768px) { .footer-link-box { grid-template-columns: repeat(4, 1fr); } }
.footer-bottom {
  background: rgba(0,0,0,0.6); padding-block: 25px; text-align: center;
  border-top: 1px solid rgba(235, 34, 110, 0.2);
}
.copyright { color: rgba(255,255,255,0.7); font-size: 1.3rem; }
.copyright-link { color: var(--bittersweet); transition: var(--transition-1); }
.copyright-link:hover { text-decoration: underline; }

/* ==================== PRODUCT PAGE TEXT STYLES (original) ==================== */
.product-section { min-height: 80vh; }
.product-section .section-title { font-size: 2.8rem; font-weight: 700; color: var(--rich-black-fogra-29); margin-bottom: 50px; }
.product-section .filter-list { margin-bottom: 40px; justify-content: center; gap: 15px; }
.product-section .filter-btn { padding: 12px 20px; font-size: 1.5rem; font-weight: 600; border-radius: 30px; background: var(--cultured); }
.product-section .filter-btn:hover { background: rgba(235, 34, 110, 0.1); border-color: var(--bittersweet); }
.product-section .filter-btn.active { background: var(--bittersweet); color: white; box-shadow: 0 6px 20px rgba(235, 34, 110, 0.3); }
.product-card .card-title { font-size: 1.6rem; font-weight: 700; color: var(--rich-black-fogra-29); margin-bottom: 8px; text-align: center; transition: var(--transition-1); }
.product-card:hover .card-title { color: var(--bittersweet); }
.product-card .card-cat { font-size: 1.3rem; color: var(--onyx); text-align: center; text-transform: uppercase; letter-spacing: 0.5px; }
.product-card .card-price { font-size: 1.8rem; font-weight: 700; color: var(--bittersweet); text-align: center; margin-top: 10px; }

/* Go top */
.go-top-btn {
  position: fixed; bottom: 25px; right: 25px; background: var(--bittersweet); color: white;
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); opacity: 0; visibility: hidden;
  transition: var(--transition-1); z-index: 99;
}
.go-top-btn.active { opacity: 1; visibility: visible; }

/* Responsive product grid (original) */
.product-list { display: grid; gap: 30px; padding: 20px 0; }
@media (min-width: 575px) { .product-list { grid-template-columns: repeat(2,1fr); gap: 25px; } }
@media (min-width: 992px) { .product-list { grid-template-columns: repeat(3,1fr); gap: 28px; } }
@media (min-width: 1200px) { .product-list { grid-template-columns: repeat(4,1fr); gap: 30px; } }