/* ============================================
   DubaiParts — Auto Parts E-Commerce
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Noto+Sans+Georgian:wght@300;400;500;600;700&display=swap');

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: clip;
}

.header__mobile-phone {
  display: none;
}

:root {
  --primary: #1a1a2e;
  --accent: #e63946;
  --accent-hover: #c62828;
  --green: #25d366;
  --green-hover: #1da851;
  --gold: #f4a100;
  --bg: #f5f5f7;
  --white: #ffffff;
  --card: #ffffff;
  --border: #e0e0e0;
  --text: #1d1d1f;
  --text-light: #6e6e73;
  --text-muted: #999;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --font-heading: 'Space Grotesk', 'Noto Sans Georgian', sans-serif;
  --font-body: 'Noto Sans Georgian', 'Space Grotesk', sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Top Bar --- */
.top-bar {
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-bar__socials a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: color var(--transition);
}

.top-bar__socials a:hover {
  color: #fff;
}

.top-bar__links {
  display: flex;
  gap: 20px;
}

.top-bar__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.3px;
}

.top-bar__links a:hover {
  color: #fff;
}

/* --- Header --- */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.header__logo-badge {
  background: var(--acccent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.5px;
  color: var(--text);
}

.header__logo-text span {
  color: var(--accent);
}

.header__info {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--text-light);
  margin-left: -4px;
}

.header__info strong {
  color: var(--text);
  font-size: 13px;
}

.header__search {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.header__search input {
  width: 100%;
  padding: 12px 48px 12px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
  outline: none;
  font-size: 14px;
  transition: border-color var(--transition);
  background: var(--bg);
}

.header__search input:focus {
  border-color: var(--accent);
  background: var(--white);
}

.header__search button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.header__search button:hover {
  background: var(--accent-hover);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__action-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: 50%;
  color: var(--text);
  font-size: 20px;
  transition: background var(--transition);
}

.header__action-btn:hover {
  background: var(--bg);
}

.header__action-btn .badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--green);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: background var(--transition);
}

.header__phone:hover {
  background: var(--green-hover);
}

.header__phone svg {
  flex-shrink: 0;
}

/* --- Navigation --- */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__categories-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-body);
  border-radius: 0;
  transition: background var(--transition);
  white-space: nowrap;
}

.nav__categories-btn:hover {
  background: var(--accent-hover);
}

.nav__categories-btn svg {
  flex-shrink: 0;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.nav__menu a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__menu a:hover {
  color: var(--accent);
  background: rgba(230, 57, 70, 0.04);
}

.nav__menu a.active {
  color: var(--accent);
}

.nav__menu a svg {
  font-size: 16px;
  opacity: 0.6;
}

/* --- Mega Menu Dropdown --- */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--accent);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  display: none;
  z-index: 99;
}

.mega-menu.active {
  display: block;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.mega-menu__brand h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.mega-menu__brand ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega-menu__brand ul a {
  font-size: 13px;
  color: var(--text-light);
  padding: 4px 0;
}

.mega-menu__brand ul a:hover {
  color: var(--accent);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #16213e 100%);
  overflow: hidden;
  margin-bottom: 0;
}

.hero__slider {
  position: relative;
}

.hero__slide {
  display: none;
  padding: 80px 0;
  min-height: 420px;
  align-items: center;
}

.hero__slide.active {
  display: flex;
}

.hero__slide .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero__content {
  flex: 1;
  color: #fff;
  max-width: 560px;
}

.hero__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__content h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero__content p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 12px;
}

.hero__image {
  flex: 1;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-placeholder {
  width: 400px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 48px;
}

.hero__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 32px;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.hero__dot.active {
  background: var(--accent);
  width: 32px;
  border-radius: 5px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-body);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn--dark {
  background: var(--primary);
  color: #fff;
}

.btn--dark:hover {
  background: #2a2a4a;
}

.btn--green {
  background: var(--green);
  color: #fff;
}

.btn--green:hover {
  background: var(--green-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--sm {
  padding: 8px 18px;
  font-size: 13px;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

/* --- Section Titles --- */
.section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.section-subtitle {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 32px;
}

/* --- Brands Grid --- */
.brands {
  padding: 60px 0;
  background: var(--white);
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}

.brand-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.brand-card__count {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card__logo {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--text);
}

.brand-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Products Grid --- */
.products-section {
  padding: 60px 0;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__info-btn {
  margin-top: auto !important;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.product-card__badge--new {
  background: var(--accent);
  color: #fff;
}

.product-card__badge--stock {
  background: var(--green);
  color: #fff;
}

.product-card__badge--out {
  background: var(--text-muted);
  color: #fff;
}

.product-card__image {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 40px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__body {
  padding: 16px;
}

.product-card__category {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  min-height: 2.8em;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.product-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}

.product-card__price .currency {
  font-size: 14px;
}

.product-card__info-btn {
  display: block;
  margin-top: 10px;
  padding: 10px;
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition);
}

.product-card__info-btn:hover {
  background: #333;
}

.product-card__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.product-card__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* --- Features Banner --- */
.features {
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-item__text h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.feature-item__text p {
  font-size: 12px;
  color: var(--text-light);
}

/* --- CTA Banner --- */
.cta {
  background: #fff;
  padding: 64px 0;
  color: #1a1a1a;
  text-align: center;
}

.cta h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta p {
  font-size: 16px;
  color: #666;
  margin-bottom: 28px;
}

.cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #16213e 100%);
  padding: 64px 0;
  color: #fff;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  margin: 0 6px;
}

/* --- Contact/Map Section --- */
.contact-section {
  padding: 60px 0;
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-card__map {
  width: 100%;
  height: 240px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
}

.contact-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-card__info {
  padding: 24px;
}

.contact-card__info h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card__info p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-card__info .phone {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 8px;
  margin-bottom: 16px;
  display: block;
}

/* --- Footer --- */
.footer {
  background: var(--primary);
  color: #fff;
  padding: 48px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand .header__logo {
  margin-bottom: 16px;
}

.footer__brand .header__logo-text {
  color: #fff;
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.footer__socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer__col ul a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* --- WhatsApp Float --- */
.chat-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.chat-float__toggle {
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  border: none;
  transition: transform 0.2s;
}

.chat-float__toggle:hover {
  transform: scale(1.1);
}

.chat-float__menu {
  position: absolute;
  bottom: 66px;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.chat-float.active .chat-float__menu {
  display: flex;
}

.chat-float__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.chat-float__btn:hover {
  transform: scale(1.1);
}

.chat-float__btn--whatsapp {
  background: #25d366;
}

.chat-float__btn--viber {
  background: #7360f2;
}

.chat-float__btn--telegram {
  background: #0088cc;
}

.chat-float__btn--messenger {
  background: #0084ff;
}

.chat-float__btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--text-light);
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs span {
  margin: 0 8px;
  opacity: 0.4;
}

/* --- Page Header --- */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, #16213e 100%);
  padding: 48px 0;
  color: #fff;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-header p {
  opacity: 0.7;
  font-size: 15px;
}

/* --- Shop Page --- */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 40px 0;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar__block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}

.sidebar__block h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}

.filter-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.filter-item .count {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg);
  padding: 2px 8px;
  border-radius: 50px;
}

.filter-expand {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 18px;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-sub {
  padding-left: 28px;
  display: none;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.filter-sub.active {
  display: flex;
}

.filter-sub label {
  font-size: 13px;
  color: var(--text-light);
}

/* --- Product Detail Page --- */
.product-detail {
  padding: 40px 0;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.product-detail__gallery {
  position: relative;
}

.product-detail__main-image {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--text-muted);
  overflow: hidden;
}

.product-detail__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.product-detail__thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 20px;
  transition: border-color var(--transition);
}

.product-detail__thumb.active,
.product-detail__thumb:hover {
  border-color: var(--accent);
}

.product-detail__info h1 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}

.product-detail__price {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
}

.product-detail__price .currency {
  font-size: 22px;
}

.product-detail__options {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius);
}

.product-detail__options h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.option-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.option-item label {
  font-size: 14px;
  cursor: pointer;
}

.option-item .extra {
  font-size: 12px;
  color: var(--text-muted);
}

.product-detail__summary {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.product-detail__summary:last-of-type {
  border-bottom: none;
}

.product-detail__summary strong {
  font-weight: 600;
}

.product-detail__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.product-detail__meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-light);
}

.product-detail__meta span {
  color: var(--accent);
  font-weight: 500;
}

.product-detail__share {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: opacity var(--transition);
}

.share-btn:hover {
  opacity: 0.8;
}

.share-btn--fb {
  background: #1877f2;
}

.share-btn--wa {
  background: #25d366;
}

.share-btn--tg {
  background: #0088cc;
}

.share-btn--li {
  background: #0a66c2;
}

/* --- Related Products --- */
.related-products {
  padding: 48px 0;
}

/* --- About Page --- */
.about-section {
  padding: 60px 0;
}

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

.about-grid--reverse {
  direction: rtl;
}

.about-grid--reverse>* {
  direction: ltr;
}

.about-image {
  width: 100%;
  height: 380px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 48px;
  border: 1px solid var(--border);
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-text .label {
  display: inline-block;
  background: rgba(230, 57, 70, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Partners */
.partners {
  padding: 48px 0;
  background: var(--white);
  text-align: center;
}

.partners__logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 32px;
}

.partner-logo {
  width: 120px;
  height: 60px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-light);
  transition: all var(--transition);
}

.partner-logo:hover {
  box-shadow: var(--shadow);
  color: var(--text);
}

/* --- Stats --- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-card__label {
  font-size: 14px;
  color: var(--text-light);
}

/* ============================================
   ADMIN PANEL STYLES
   ============================================ */

.admin-layout {
  display: flex;
  min-height: 100vh;
  background: var(--bg);
}

/* Admin Sidebar */
.admin-sidebar {
  width: 260px;
  background: var(--primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
}

.admin-sidebar__header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar__header .header__logo-text {
  color: #fff;
  font-size: 22px;
}

.admin-sidebar__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  padding: 20px 24px 8px;
}

.admin-sidebar__nav {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.admin-sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.admin-sidebar__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.admin-sidebar__link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--accent);
}

.admin-sidebar__link svg,
.admin-sidebar__link .icon {
  width: 20px;
  font-size: 18px;
  text-align: center;
}

.admin-sidebar__footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar__footer a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.admin-sidebar__footer a:hover {
  color: #fff;
}

/* Admin Main */
.admin-main {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  background: var(--white);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.admin-topbar__title h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}

.admin-topbar__title p {
  font-size: 13px;
  color: var(--text-light);
}

.admin-topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.admin-content {
  padding: 32px;
  flex: 1;
}

/* Admin Stat Cards */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.admin-stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-stat__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.admin-stat__icon--red {
  background: rgba(230, 57, 70, 0.1);
  color: var(--accent);
}

.admin-stat__icon--green {
  background: rgba(37, 211, 102, 0.1);
  color: var(--green);
}

.admin-stat__icon--gold {
  background: rgba(244, 161, 0, 0.1);
  color: var(--gold);
}

.admin-stat__icon--blue {
  background: rgba(0, 136, 204, 0.1);
  color: #0088cc;
}

.admin-stat__info h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
}

.admin-stat__info p {
  font-size: 13px;
  color: var(--text-light);
}

/* Admin Tables */
.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.admin-card__header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.admin-card__header h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.admin-table td {
  padding: 14px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: rgba(0, 0, 0, 0.01);
}

.admin-table .product-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-table .product-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Status badges */
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.status--completed {
  background: rgba(37, 211, 102, 0.1);
  color: #1a8a42;
}

.status--pending {
  background: rgba(244, 161, 0, 0.1);
  color: #c68200;
}

.status--processing {
  background: rgba(0, 136, 204, 0.1);
  color: #0077b3;
}

.status--cancelled {
  background: rgba(230, 57, 70, 0.1);
  color: var(--accent);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status--completed .status-dot {
  background: #1a8a42;
}

.status--pending .status-dot {
  background: #c68200;
}

.status--processing .status-dot {
  background: #0077b3;
}

.status--cancelled .status-dot {
  background: var(--accent);
}

/* Admin action buttons */
.admin-actions {
  display: flex;
  gap: 6px;
}

.admin-action-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-light);
  transition: all var(--transition);
}

.admin-action-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.admin-action-btn--danger:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

/* Admin Grid Layout */
.admin-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal__header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
}

.modal__close {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg);
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.modal__close:hover {
  background: var(--border);
}

.modal__body {
  padding: 24px;
}

.modal__footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Form groups */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

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

/* --- Mobile Menu Button --- */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 22px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  background: var(--bg);
}

/* Mobile search bar (appears below header on mobile) */
.mobile-search {
  display: none;
  padding: 8px 16px 12px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.mobile-search input {
  width: 100%;
  padding: 10px 16px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  outline: none;
  background: var(--bg);
  transition: border-color var(--transition);
}

.mobile-search input:focus {
  border-color: var(--accent);
  background: var(--white);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  max-width: 85vw;
  background: var(--white);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-nav.active .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav__close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg);
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  flex: 1;
}

.mobile-nav__links a {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav__links a:hover,
.mobile-nav__links a.active {
  color: var(--accent);
  background: rgba(230, 57, 70, 0.04);
}

.mobile-nav__contact {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .brands__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-layout {
    grid-template-columns: 240px 1fr;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  /* Hide desktop elements */
  .top-bar {
    display: none;
  }

  .header__search {
    display: none;
  }

  .header__info {
    display: none;
  }

  .nav {
    display: none;
  }

  /* Header */
  .header {
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
  }

  .header__inner {
    padding: 10px 0;
    gap: 6px;
  }

  .header__logo-text {
    font-size: 22px;
  }

  .header__mobile-phone {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    margin-left: auto;
  }

  .header__phone span {
    display: none;
  }

  .header__phone {
    padding: 0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
  }

  .header__action-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .mobile-menu-btn {
    display: flex;
    width: 36px;
    height: 36px;
  }

  .mobile-search {
    display: block;
    position: sticky;
    top: 52px;
    z-index: 99;
    background: #fff;
  }

  .mobile-search input {
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid #ddd;
  }

  .mobile-nav {
    display: block;
    pointer-events: none;
  }

  .mobile-nav.active {
    pointer-events: auto;
  }

  .mobile-nav__panel {
    width: 85%;
    background: #111;
  }

  .mobile-nav__header {
    background: #111;
  }

  .mobile-nav__header .header__logo-text {
    color: #fff;
  }

  .mobile-nav__header .header__logo-text span {
    color: #fff;
  }

  .mobile-nav__close {
    color: #fff;
  }

  .mobile-nav__links a {
    padding: 16px 24px;
    font-size: 15px;
    color: #fff;
    border-bottom: 1px solid #222;
    font-weight: 600;
  }

  .mobile-nav__links a:hover,
  .mobile-nav__links a.active {
    color: #90ff54;
    background: rgba(255, 255, 255, 0.05);
  }

  .mobile-nav__contact {
    background: #111;
    border-top: 1px solid #222;
  }

  /* Layout */
  .container {
    padding: 0 14px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* Sections */
  .section,
  .brands {
    padding: 30px 0;
  }

  .section-title,
  .section__title {
    font-size: 20px;
  }

  .section-subtitle,
  .section__subtitle {
    font-size: 13px;
    margin-bottom: 16px;
  }

  /* Brands */
  .brands__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .brand-card {
    padding: 16px 10px;
    gap: 8px;
    border-radius: 10px;
  }

  .brand-card__logo img {
    width: 50px !important;
    height: auto !important;
  }

  .brand-card__name {
    font-size: 12px;
    font-weight: 600;
  }

  .brand-card__count {
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    font-size: 9px;
  }

  /* Products — 2 col grid matching dubaiparts.ge */
  .products__grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .product-card {
    border-radius: 0;
    border: none;
    overflow: hidden;
    background: #fff;
    box-shadow: none;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .product-card:hover {
    transform: none;
    box-shadow: none;
  }

  .product-card__image {
    aspect-ratio: 1/1;
    background: #fff;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .product-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 0;
    max-width: 100% !important;
  }

  .product-card__body {
    padding: 8px 4px 12px;
  }

  .product-card__title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
    color: #000;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card__category {
    display: none;
  }

  .product-card__price {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 4px;
  }

  .product-card__footer {
    display: none;
  }

  .product-card__badge {
    font-size: 10px;
    padding: 4px 10px;
    top: 8px;
    right: 8px;
    left: auto;
    border-radius: 4px;
    background: #90ff54;
    color: #fff;
    font-weight: 700;
  }

  .product-card__badge--stock {
    background: #90ff54;
    color: #fff;
  }

  .product-card__badge--out {
    background: #ff4a4a;
    color: #fff;
  }

  .product-card__badge--new {
    background: #ff4a4a;
    color: #fff;
  }

  .product-card__info-btn {
    font-size: 13px;
    padding: 10px;
    margin-top: 8px;
    border-radius: 4px;
    background: #000;
    color: #fff;
    font-weight: 600;
  }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact.section iframe {
    height: 200px !important;
  }

  /* CTA */
  .cta {
    padding: 32px 0;
  }

  .cta h2 {
    font-size: 18px;
  }

  .cta p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .cta__buttons {
    flex-direction: column;
    gap: 8px;
    padding: 0 20px;
  }

  .cta__buttons .btn {
    width: 100%;
  }

  .cta-banner {
    padding: 32px 0;
  }

  .cta-banner h2 {
    font-size: 20px;
  }

  .cta-banner .btn {
    margin: 4px;
  }

  /* About */
  .about-section {
    padding: 30px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-grid--reverse {
    direction: ltr;
  }

  .about-image {
    height: 180px;
    border-radius: 10px;
  }

  .about-text h2 {
    font-size: 18px;
  }

  .about-text p {
    font-size: 13px;
    line-height: 1.6;
  }

  /* Stats */
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 24px 0;
  }

  .stat-card {
    padding: 16px 10px;
    border-radius: 10px;
  }

  .stat-card__number {
    font-size: 26px;
  }

  .stat-card__label {
    font-size: 11px;
  }

  /* Partners */
  .partners__logos {
    gap: 12px;
  }

  .partner-logo {
    width: 70px;
    height: 40px;
    font-size: 11px;
  }

  /* Page header */
  .page-header {
    padding: 24px 0;
  }

  .page-header h1 {
    font-size: 22px;
  }

  .page-header p {
    font-size: 13px;
  }

  /* Product detail */
  .product-detail {
    padding: 12px 0;
  }

  .product-detail__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }

  .product-detail__main-image {
    border-radius: 10px;
    overflow: hidden;
  }

  .product-detail__info h1 {
    font-size: 18px;
    line-height: 1.3;
  }

  .product-detail__price {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .product-detail__thumb {
    width: 52px;
    height: 52px;
    border-radius: 6px;
  }

  .product-detail__actions {
    gap: 8px;
  }

  .product-detail__actions .btn {
    padding: 12px;
    font-size: 13px;
  }

  .product-detail__meta {
    font-size: 13px;
  }

  .product-detail__share {
    flex-wrap: wrap;
  }

  /* Breadcrumbs */
  .breadcrumbs {
    padding: 8px 0;
    font-size: 11px;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* Shop */
  .shop-layout {
    display: block !important;
    padding: 16px 0;
  }

  .sidebar {
    display: none !important;
  }

  .shop-content {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Footer */
  .footer {
    padding: 28px 0 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 20px;
  }

  .footer__column {
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__list {
    text-align: center;
  }

  .footer__list--contact {
    text-align: left;
  }

  .footer__desc {
    font-size: 13px;
  }

  .footer__title {
    font-size: 15px;
  }

  .footer__col h4 {
    margin-bottom: 10px;
  }

  .footer__bottom {
    padding: 14px 0;
    font-size: 11px;
  }

  /* WhatsApp float */
  .chat-float {
    bottom: 16px;
    right: 14px;
  }

  .chat-float__toggle {
    width: 50px;
    height: 50px;
  }

  .chat-float__btn {
    width: 44px;
    height: 44px;
  }

  .chat-float__menu {
    bottom: 60px;
    gap: 8px;
  }

  /* Features / contact page */
  .features__grid[style*="repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  .features {
    padding: 24px 0;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Admin */
  .admin-sidebar {
    width: 56px;
  }

  .admin-sidebar__link span {
    display: none;
  }

  .admin-sidebar__label {
    display: none;
  }

  .admin-sidebar__header .header__logo-text {
    display: none;
  }

  .admin-main {
    margin-left: 56px;
  }

  .admin-content {
    padding: 12px;
  }

  .admin-topbar {
    padding: 10px 12px;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-grid-2 {
    grid-template-columns: 1fr;
  }

  .admin-table {
    font-size: 11px;
  }

  .admin-table th,
  .admin-table td {
    padding: 8px 10px;
  }
}

/* --- Utilities --- */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mt-32 {
  margin-top: 32px;
}

.bg-white {
  background: var(--white);
}

/* --- Product Card Expand Button + Lightbox --- */
.product-card__image {
  position: relative;
}

.product-card__expand-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease, transform 0.15s ease;
}

.product-card__expand-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.08);
}

.product-card__expand-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.25);
}