/* Hero Section Offers */
.headline__offer {
  margin-bottom: 2rem;
}

.offer-text {
  color: var(--accent-color, #8A5CF6);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

@media only screen and (min-width: 768px) {
  .offer-text {
    font-size: 1.2rem;
  }
}

@media only screen and (min-width: 1200px) {
  .headline__offer {
    margin-bottom: 2.5rem;
  }
  
  .offer-text {
    font-size: 1.3rem;
  }
}

/* CSS Variables para Accent Color */
:root {
  --accent-color: #8A5CF6;
  --accent-color-hover: #7C3AED;
  --text-color: var(--t-bright);
  --text-muted: var(--t-muted);
  --neutral-medium: var(--stroke-elements);
}

/* Remaining CSS from previous custom.css... */
/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  background: var(--neutral-bright);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
}

.cart-sidebar__header {
  padding: 2rem;
  border-bottom: 1px solid var(--neutral-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-sidebar__header h3 {
  margin: 0;
  color: var(--text-color);
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.cart-close:hover {
  background-color: var(--neutral-medium);
}

.cart-sidebar__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.cart-empty i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--neutral-medium);
  gap: 1rem;
}

.cart-item__image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__details {
  flex: 1;
  min-width: 0;
}

.cart-item__name {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 500;
}

.cart-item__price {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.cart-item__quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--neutral-medium);
  background: transparent;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-color);
  font-weight: 600;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.quantity {
  min-width: 30px;
  text-align: center;
  font-weight: 500;
  color: var(--text-color);
}

.remove-item {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.remove-item:hover {
  color: #e74c3c;
  background-color: rgba(231, 76, 60, 0.1);
}

.cart-sidebar__footer {
  padding: 2rem;
  border-top: 1px solid var(--neutral-medium);
  background: var(--base-tint);
}

.cart-total {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  text-align: center;
}

.cart-checkout {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--neutral-bright);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
}

.search-container {
  padding: 2rem;
  border-bottom: 1px solid var(--neutral-medium);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.5rem;
  background: transparent;
  color: var(--text-color);
  font-family: var(--_font-default);
}

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

.search-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.search-close:hover {
  background-color: var(--neutral-medium);
}

.search-results {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.search-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.search-results-list {
  max-width: 600px;
  margin: 0 auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--neutral-medium);
  transition: background-color 0.2s ease;
}

.search-result-item:hover {
  background-color: var(--base-tint);
}

.search-result-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

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

.search-result-info h4 {
  margin: 0 0 0.25rem 0;
  color: var(--text-color);
  font-size: 1rem;
}

.search-result-info .category {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.search-result-info .price {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.search-result-item .btn-add-cart {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.search-result-item .btn-add-cart:hover {
  background: var(--accent-color-hover);
  transform: scale(1.05);
}

/* Cart Count Badge */
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Flying Product Animation */
.flying-product-img {
  border-radius: 8px;
  pointer-events: none;
  z-index: 10000;
}

/* Responsive */
@media (max-width: 768px) {
  .cart-sidebar {
    width: 100%;
  }
  
  .search-container {
    padding: 1rem;
  }
  
  .search-input {
    font-size: 1.2rem;
  }
  
  .cart-sidebar__header,
  .cart-sidebar__footer {
    padding: 1.5rem;
  }
  
  .offer-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .search-result-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .search-result-item img {
    width: 80px;
    height: 80px;
  }
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  background: var(--neutral-bright);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.cart-sidebar__header {
  padding: 2rem;
  border-bottom: 1px solid var(--neutral-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-sidebar__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

.cart-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--neutral-medium);
  gap: 1rem;
}

.cart-item__image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__details {
  flex: 1;
}

.cart-item__name {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.cart-item__price {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cart-item__quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--neutral-medium);
  background: transparent;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cart-sidebar__footer {
  padding: 2rem;
  border-top: 1px solid var(--neutral-medium);
}

.cart-total {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

/* Product Cards */
.product-card {
  position: relative;
  background: var(--neutral-bright);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-actions {
  display: flex;
  gap: 1rem;
}

.btn-quick-view,
.btn-wishlist {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-quick-view:hover,
.btn-wishlist:hover {
  transform: scale(1.1);
}

.product-info {
  padding: 1.5rem;
}

.product-category {
  margin-bottom: 0.5rem;
}

.category-tag {
  background: var(--accent-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.product-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  gap: 0.125rem;
  color: #ffc107;
}

.rating-count {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-current {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color);
}

.price-original {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.discount-percent {
  background: #e74c3c;
  color: white;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.product-variants {
  margin-bottom: 1rem;
}

.size-options {
  display: flex;
  gap: 0.5rem;
}

.size-option {
  width: 32px;
  height: 32px;
  border: 1px solid var(--neutral-medium);
  background: transparent;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-option.active,
.size-option:hover {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--neutral-bright);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
}

.search-container {
  padding: 2rem;
  border-bottom: 1px solid var(--neutral-medium);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.5rem;
  background: transparent;
  color: var(--text-color);
}

.search-results {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--neutral-medium);
}

.search-result-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.search-result-info {
  flex: 1;
}

/* Category Cards */
.category-card {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: scale(1.02);
}

.category-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

/* Filters */
.product-filters {
  margin-bottom: 2rem;
}

.filters-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--neutral-medium);
  background: transparent;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

/* Cart Count Badge */
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  display: none;
  align-items: center;
  justify-content: center;
}

/* Flying Product Animation */
.flying-product-img {
  border-radius: 8px;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
  .cart-sidebar {
    width: 100%;
  }
  
  .search-container {
    padding: 1rem;
  }
  
  .search-input {
    font-size: 1.2rem;
  }
  
  .product-card {
    margin-bottom: 1rem;
  }
}