

.top-bar {
  background: var(--primary);
  color: var(--text-on-dark);
  height: var(--top-bar-height);
  font-size: var(--text-xs);
  position: relative;
  z-index: 100;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.top-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--duration) var(--ease);
  font-weight: 500;
}

.top-bar__link:hover {
  color: var(--accent);
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.top-bar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-xs);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration) var(--ease);
}

.top-bar__social:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .top-bar__left {
    gap: var(--space-sm);
  }

  .top-bar__link:nth-child(n+3) {
    display: none;
  }
}

@media (max-width: 576px) {
  .top-bar {
    display: none;
  }
}

.header {
  background: white;
  height: var(--header-height);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 90;
  transition: box-shadow var(--duration) var(--ease);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--duration) var(--ease);
}

.header__logo:hover {
  opacity: 0.85;
}

.header__logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.header__logo-img:hover {
  transform: scale(1.02);
}

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

.header__search input {
  width: 100%;
  height: 44px;
  padding: 0 48px 0 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--surface);
  transition: all var(--duration) var(--ease);
}

.header__search input::placeholder {
  color: var(--text-muted);
}

.header__search input:focus {
  border-color: var(--primary-light);
  background: white;
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.header__search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: white;
  transition: all var(--duration) var(--ease);
}

.header__search-btn:hover {
  background: var(--accent);
  color: var(--text-on-accent);
}

.search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  max-height: 400px;
  overflow-y: auto;
  display: none;
  z-index: 200;
}

.search-results--visible {
  display: block;
  animation: fadeInDown 0.25s var(--ease);
}

.search-results__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--duration-fast) var(--ease);
  cursor: pointer;
}

.search-results__item:hover {
  background: var(--surface);
}

.search-results__item:last-child {
  border-bottom: none;
}

.search-results__img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 4px;
  border: 1px solid var(--border-light);
}

.search-results__info {
  flex: 1;
  min-width: 0;
}

.search-results__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-results__price {
  font-size: var(--text-sm);
  color: var(--accent-hover);
  font-weight: 700;
}

.search-results__empty {
  padding: var(--space-xl);
  text-align: center;
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--duration) var(--ease);
  position: relative;
}

.header__action-btn:hover {
  color: var(--primary);
  background: var(--surface);
}

.header__cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: var(--text-on-accent);
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text);
  transition: background var(--duration) var(--ease);
}

.header__mobile-toggle:hover {
  background: var(--surface);
}

@media (max-width: 1024px) {
  .header__actions span {
    display: none;
  }

  .header__logo-img {
    height: 56px;
  }
}

@media (max-width: 768px) {
  .header {
    height: 60px;
  }

  .header__search {
    display: none;
  }

  .header__actions {
    display: none;
  }

  .header__mobile-toggle {
    display: flex;
  }

  .header__logo-img {
    height: 50px;
  }
}

.nav {
  background: var(--primary);
  height: var(--nav-height);
  position: sticky;
  top: var(--header-height);
  z-index: 80;
  display: flex;
  align-items: center;
}

.nav>.container {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

.nav__item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: 100%;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--accent);
  border-radius: var(--radius-full) var(--radius-full) 0 0;
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
}

.nav__link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__item--active .nav__link {
  color: var(--accent);
}

.nav__item--active .nav__link::after {
  transform: scaleX(1);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--duration) var(--ease);
  z-index: 100;
}

.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: all var(--duration-fast) var(--ease);
  border-bottom: 1px solid var(--border-light);
}

.nav__dropdown a:last-child {
  border-bottom: none;
}

.nav__dropdown a:hover {
  background: var(--surface);
  color: var(--accent-hover);
  padding-left: 24px;
}

@media (max-width: 1024px) {
  .nav__link {
    padding: 0 10px;
    font-size: var(--text-xs);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
}

@media (max-width: 576px) {
  .nav {
    display: none;
  }
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background: white;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform var(--duration-slow) var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border-light);
  background: var(--primary);
  color: white;
}

.mobile-nav__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
}

.mobile-nav__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: white;
  transition: background var(--duration) var(--ease);
}

.mobile-nav__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-sm) 0;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 14px var(--space-lg);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--duration) var(--ease);
  border-left: 3px solid transparent;
}

.mobile-nav__link:hover,
.mobile-nav__link--active {
  background: var(--surface);
  color: var(--primary);
  border-left-color: var(--accent);
}

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-slow) var(--ease);
  backdrop-filter: blur(4px);
}

.mobile-nav__overlay--visible {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero__slider {
  position: relative;
  height: 600px;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s var(--ease), visibility 0s 0.8s;
  pointer-events: none;
  z-index: 1;
}

.hero__slide--active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s var(--ease), visibility 0s;
  pointer-events: all;
  z-index: 5;
}

.hero__slide-bg {
  position: absolute;
  inset: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 40px;
  gap: var(--space-3xl);
}

.hero__text {
  max-width: 560px;
}

.hero__badge {
  display: none;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
  animation: fadeInUp 0.6s var(--ease) 0.3s both;
}

.hero__title-accent {
  color: var(--accent);
  position: relative;
}

.hero__desc {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s var(--ease) 0.4s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: fadeInUp 0.6s var(--ease) 0.5s both;
}

.hero__visual {
  flex-shrink: 0;
  width: 50%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  animation: fadeIn 1s var(--ease) 0.6s both;
}

.hero__image-wrapper {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.hero__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(var(--img-y, 0)) scale(var(--img-s, 1));
  transition: transform var(--duration-slow) var(--ease);
}

.hero__image-wrapper:hover .hero__image {
  transform: translateY(var(--img-y, 0)) scale(calc(var(--img-s, 1) + 0.08));
}

.hero__controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: 5;
}

.hero__arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  transition: all var(--duration) var(--ease);
}

.hero__arrow:hover {
  background: var(--accent);
  color: var(--text-on-accent);
  border-color: var(--accent);
}

.hero__dots {
  display: flex;
  gap: var(--space-sm);
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  transition: all var(--duration) var(--ease);
}

.hero__dot--active {
  background: var(--accent);
  width: 28px;
}

@media (max-width: 1024px) {
  .hero__slider {
    height: 720px;
  }

  .hero__content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
  }

  .hero__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }

  .hero__visual {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    justify-content: center;
  }

  .hero__title {
    font-size: var(--text-4xl);
  }
}

@media (max-width: 768px) {
  .hero__slider {
    height: 680px;
  }

  .hero__title {
    font-size: var(--text-3xl);
  }

  .hero__desc {
    font-size: var(--text-base);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .hero__content {
    padding-bottom: 64px;
    gap: var(--space-lg);
  }
  
  .hero__visual {
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .hero__slider {
    height: 620px;
  }

  .hero__title {
    font-size: var(--text-2xl);
  }

  .hero__content {
    padding-bottom: 56px;
  }

  .hero__controls {
    bottom: 14px;
    gap: var(--space-sm);
  }

  .hero__arrow {
    width: 34px;
    height: 34px;
  }
  
  .hero__visual {
    max-width: 220px;
  }
}

.categories {
  padding: var(--space-4xl) 0 var(--space-3xl);
  background: var(--bg);
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl) var(--space-md);
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(20, 31, 51, 0.08);
  border-color: rgba(20, 31, 51, 0.15);
}

.category-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--surface);
  color: var(--primary);
  transition: all var(--duration) var(--ease);
}

.category-card:hover .category-card__icon {
  background: var(--primary-light);
  color: white;
  transform: scale(1.05);
}

.category-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 1024px) {
  .categories__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .categories {
    padding: var(--space-3xl) 0 var(--space-2xl);
  }
}

@media (max-width: 480px) {
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card {
    padding: var(--space-md);
  }

  .category-card__icon {
    width: 52px;
    height: 52px;
  }
}

.featured,
.new-arrivals {
  padding: var(--space-3xl) 0;
}

.featured {
  background: var(--surface);
}

.featured__grid,
.new-arrivals__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}

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

.product-card__img {
  position: relative;
  aspect-ratio: 1;
  background: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-light);
}

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

.product-card:hover .product-card__img img {
  transform: scale(1.08);
}

.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-alt) 100%);
  color: var(--text-light);
}

.product-card__badges {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-card__badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-card__badge--new {
  background: var(--info);
  color: white;
}

.product-card__badge--sale {
  background: var(--danger);
  color: white;
}

.product-card__body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.product-card__price-current {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary);
}

.product-card__price-old {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-card__actions {
  display: flex;
  gap: var(--space-sm);
}

.product-card__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.product-card__btn:active {
  transform: scale(0.96);
}

.product-card__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.product-card__btn:hover::after {
  left: 150%;
}

.product-card__btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-card__btn--primary:hover {
  background: var(--accent);
  color: var(--text-on-accent);
  box-shadow: 0 4px 8px rgba(243, 156, 18, 0.2);
}

.product-card__btn--whatsapp {
  background: #25D366;
  color: white;
  width: 42px;
  flex: none;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(37, 211, 102, 0.2);
}

.product-card__btn--whatsapp:hover {
  background: #1ebc59;
  box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

@media (max-width: 1024px) {

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

@media (max-width: 768px) {

  .featured__grid,
  .new-arrivals__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {

  .featured__grid,
  .new-arrivals__grid {
    grid-template-columns: 1fr;
  }
}

.why-us {
  padding: var(--space-4xl) 0;
  background: var(--bg);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.why-us__card {
  text-align: center;
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: white;
  transition: all var(--duration) var(--ease);
}

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

.why-us__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--accent);
}

.why-us__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.why-us__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .why-us {
    padding: var(--space-3xl) 0;
  }
}

@media (max-width: 480px) {
  .why-us__grid {
    grid-template-columns: 1fr;
  }
}

.cta-banner {
  padding: var(--space-3xl) 0;
  background: var(--surface);
}

.cta-banner__inner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, hsl(220, 35%, 28%) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-3xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.cta-banner__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.cta-banner__desc {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cta-banner__visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-banner__inner {
    padding: var(--space-2xl);
    flex-direction: column;
    text-align: center;
  }

  .cta-banner__title {
    font-size: var(--text-2xl);
  }

  .cta-banner__desc {
    margin: 0 auto var(--space-lg);
  }

  .cta-banner__actions {
    justify-content: center;
  }

  .cta-banner__visual {
    display: none;
  }
}

.footer {
  background: var(--primary);
  color: var(--text-on-dark);
  padding: var(--space-3xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 1);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
}

.footer__logo:hover {
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.footer__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer__about {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.footer__socials {
  display: flex;
  gap: var(--space-sm);
}

.footer__socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration) var(--ease);
}

.footer__socials a:hover {
  background: var(--accent);
  color: var(--text-on-accent);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--accent);
  border-radius: var(--radius-full);
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration) var(--ease);
}

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

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--duration) var(--ease);
}

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

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), background var(--duration) var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: #1ebc59;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 500;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--duration) var(--ease);
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  color: var(--text-on-accent);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .back-to-top {
    bottom: 16px;
    left: 16px;
    width: 38px;
    height: 38px;
  }
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}