@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --primary: #ff2a7a;
  --primary-hover: #e01b63;
  --secondary: #00e0ff;
  --bg-light: #fef5f9;
  --text-dark: #333;
  --text-light: #fff;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(255, 42, 122, 0.15);
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
  --radius: 20px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* TOP BANNER */
.top-banner {
  background: var(--primary);
  color: var(--white);
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: padding 0.3s ease;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  text-shadow: 2px 2px 0px rgba(0, 224, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 50px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-icons {
  display: flex;
  gap: 1.5rem;
  font-size: 1.2rem;
  color: var(--text-dark);
  align-items: center;
}

.cart-icon {
  position: relative;
  cursor: pointer;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4rem 5%;
  background: url('./navbar.jpeg') center/cover no-repeat;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 42, 122, 0.8) 0%, rgba(0, 224, 255, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 50%;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--white);
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-3px);
  background: var(--primary-hover);
  box-shadow: 0 10px 40px rgba(255, 42, 122, 0.3);
}

.hero-image {
  width: 45%;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* CATEGORIES */
.categories {
  padding: 3rem 5%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin: -3rem 5% 4rem;
  border-radius: var(--radius);
  position: relative;
  z-index: 10;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.category-item:hover {
  transform: scale(1.1);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: #f0f8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: inset 0 0 20px rgba(0, 224, 255, 0.2);
  overflow: hidden;
}

.category-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-name {
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* PRODUCTS SECTION */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin: 4rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 5% 4rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.product-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
  background-color: #f9f9f9;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  text-transform: none;
  color: #333;
}

.product-price {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
  margin-right: 0.5rem;
  font-weight: normal;
}

.btn-add {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  display: block;
  text-align: center;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn-add:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 42, 122, 0.3);
}

/* CUSTOM PACKAGES */
.package-builder {
  display: flex;
  gap: 2rem;
  padding: 2rem 5% 5rem;
}

.box-selector {
  flex: 1;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.candy-selector {
  flex: 2;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.candy-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.candy-item {
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.candy-item:hover {
  border-color: var(--primary);
  background: var(--bg-light);
}

.candy-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.progress-container {
  margin-top: 2rem;
}

.progress-bar {
  height: 20px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width 0.3s;
}

/* ADMIN DASHBOARD */
.admin-container {
  padding: 3rem 5%;
  display: flex;
  gap: 2rem;
}

.admin-sidebar {
  width: 250px;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.admin-sidebar ul {
  list-style: none;
}

.admin-sidebar li {
  padding: 1rem 0;
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.admin-sidebar li:hover {
  color: var(--primary);
}

.admin-content {
  flex: 1;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.admin-table th,
.admin-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.admin-form input,
.admin-form select {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}

.admin-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 5% 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-col h3 {
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col li a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* CART MODAL */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  justify-content: flex-end;
}

.cart-modal {
  background: var(--white);
  width: 400px;
  max-width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 900;
}

.close-cart {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-dark);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

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

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-weight: 700;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 900;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.qty-btn {
  background: #eee;
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.qty-btn:hover {
  background: #ddd;
}

.remove-btn {
  background: none;
  border: none;
  color: red;
  cursor: pointer;
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

.remove-btn:hover {
  transform: scale(1.1);
}

.cart-footer {
  margin-top: 2rem;
  border-top: 2px solid #eee;
  padding-top: 1rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

/* PREMIUM POLISH STYLES */

/* Toasts */
#toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--white);
  color: var(--text-dark);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  border-left: 5px solid var(--primary);
  animation: slideInRight 0.3s ease-out forwards, fadeOut 0.5s ease-in 2.5s forwards;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Product Badges */
.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 224, 255, 0.4);
}

/* Scroll Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ADMIN LOGIN OVERLAY */
.admin-login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-login-box {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.admin-login-box input {
  width: 100%;
  padding: 1rem;
  margin: 1rem 0;
  border: 1px solid #ddd;
  border-radius: 8px;
}

/* RESPONSIVE DESIGN & MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--primary);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  /* Hero Adjustments */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 6rem 5% 4rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 3rem;
  }

  /* Categories Adjustments */
  .categories {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  /* Package Builder Adjustments */
  .package-builder {
    flex-direction: column;
  }

  /* Admin Adjustments */
  .admin-container {
    flex-direction: column;
  }

  .admin-sidebar {
    width: 100%;
  }

  /* Cart Modal Adjustments */
  .cart-modal {
    width: 100%;
  }

  /* Mobile Navbar Polish */
  .logo-text {
    display: none;
  }
  .nav-logo {
    font-size: 1.2rem;
    gap: 5px;
  }
  .nav-logo img {
    height: 35px;
  }
  .nav-icons {
    gap: 10px;
    font-size: 1.1rem;
  }

  /* Navbar Adjustments Mobile */
  .navbar {
    padding: 1rem 5%; /* Volver al padding original */
  }
  
  .nav-icons {
    gap: 1.2rem; /* Separación más natural */
  }
  
  .nav-logo {
    font-size: 1.6rem; /* Que el logo destaque más */
  }
  
  .nav-logo img {
    height: 45px;
  }

  /* Search Bar Inside Mobile Menu */
  .nav-links .search-container input {
    width: 85vw !important;
    max-width: 350px;
    padding: 12px 20px !important;
    font-size: 1.1rem !important;
  }
}

/* ORDER MODAL */
.order-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-modal {
  background: var(--white);
  width: 700px;
  max-width: 95%;
  max-height: 90vh;
  border-radius: var(--radius);
  padding: 2rem;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.order-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.order-modal-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.order-modal-section h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.order-modal-items {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
}

/* SOCIAL LINKS */
.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff !important;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.tiktok {
  background: #000;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* Category Hero Banner */
.category-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8cba 100%);
  padding: 3rem 1rem;
  text-align: center;
  color: white;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.category-hero h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  letter-spacing: 1px;
}

.category-hero p {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .category-hero h2 {
    font-size: 2rem;
  }
  .category-hero p {
    font-size: 1rem;
    padding: 0.8rem;
  }
}
/* SINGLE PRODUCT PAGE */
.single-product-layout { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .single-product-layout { flex-direction: row; align-items: flex-start; } }
.single-product-gallery { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.single-product-main-img { width: 100%; border-radius: 12px; object-fit: contain; background: #fff; max-height: 500px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.single-product-thumbs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 5px; }
.single-product-thumb { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; transition: 0.2s; opacity: 0.7; }
.single-product-thumb:hover, .single-product-thumb.active { opacity: 1; border-color: var(--primary); }
.single-product-info { flex: 1; padding: 1rem; }
.single-product-title { font-size: 2rem; margin-bottom: 0.5rem; color: #333; font-weight: 700; line-height: 1.2; }
.single-product-price { font-size: 1.8rem; color: var(--primary); font-weight: bold; margin-bottom: 1.5rem; }
.single-product-desc { font-size: 1.05rem; line-height: 1.6; color: #555; margin-bottom: 2rem; }
.single-product-add-btn { background: var(--primary); color: white; border: none; padding: 1rem 2rem; border-radius: 30px; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; width: 100%; max-width: 300px; box-shadow: 0 4px 15px rgba(255, 42, 122, 0.3); }
.single-product-add-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 42, 122, 0.4); }


/* PRODUCT PAGE ENHANCEMENTS */
.breadcrumbs { font-size: 0.9rem; color: #888; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 0.5rem; }
.breadcrumbs a { color: var(--primary); text-decoration: none; font-weight: bold; }
.breadcrumbs a:hover { text-decoration: underline; }
.qty-selector { display: flex; align-items: center; border: 2px solid #eaeaea; border-radius: 30px; overflow: hidden; width: max-content; margin-right: 1rem; }
.qty-selector button { background: #fff; border: none; font-size: 1.2rem; padding: 0.5rem 1rem; cursor: pointer; color: #555; transition: 0.2s; }
.qty-selector button:hover { background: #f5f5f5; color: var(--primary); }
.qty-selector input { width: 50px; border: none; text-align: center; font-size: 1.1rem; font-weight: bold; color: #333; pointer-events: none; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid #eaeaea; }
.trust-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: #666; font-weight: 500; }
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: loading 1.5s infinite; border-radius: 8px; }
@keyframes loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.single-product-desc { text-transform: none !important; font-size: 1.1rem; line-height: 1.7; color: #444; }


/* CATALOG TOOLBAR */
.catalog-toolbar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; padding: 1rem 5%; margin-bottom: 2rem; border-bottom: 1px solid #eaeaea; gap: 1rem; background-color: var(--bg-color, #fafafa); }
.catalog-toolbar-left { display: flex; flex-direction: column; gap: 0.3rem; }
.catalog-breadcrumbs { font-size: 0.85rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.catalog-breadcrumbs a { color: var(--primary); text-decoration: none; font-weight: bold; }
.catalog-breadcrumbs a:hover { text-decoration: underline; }
.catalog-count { font-size: 1rem; color: #333; font-weight: 600; }
.catalog-toolbar-right { display: flex; align-items: center; gap: 0.5rem; }
.catalog-sort-select { padding: 0.5rem 1rem; border: 1px solid #ccc; border-radius: 8px; font-size: 0.95rem; font-family: inherit; color: #444; background: #fff; cursor: pointer; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.catalog-sort-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255, 42, 122, 0.2); }
.catalog-sort-select:hover { border-color: var(--primary); }

