@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap");

:root {
  --primary-color: #08ed00;
  --navbar-bg: #43ed00;
  --text-dark: #000000;
  --card-bg: #ffffff;
  --hover-shadow: rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  padding-top: 80px;
}

.navegacion {
  background: var(--navbar-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  width: 100%;
  margin: auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.navbar-content {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.navbar .container-fluid .navbar-collapse {
  flex-grow: inherit;
}

.navbar .container-fluid .navbar-collapse .d-flex {
  width: 400px;
  align-items: center;
  position: relative;
  gap: 1rem;
}

.navbar ul li a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.125rem;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #fff;
}

.navbar-brand {
  position: relative;
  font-size: 1.5rem;
  color: var(--text-dark) !important;
  font-weight: 800;
}

.search-container {
  position: relative;
  flex: 1;
}

.search-input {
  border-radius: 25px;
  padding: 0.5rem 4.5rem 0.5rem 1rem;
  border: 2px solid #ddd;
  transition: all 0.3s ease;
  width: 100%;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(8, 237, 0, 0.25);
}

.search-icon {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-icon:hover {
  color: var(--primary-color);
}

/* Search Autocomplete Dropdown */
.search-suggestions {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  animation: fadeIn 0.2s ease;
}

.search-suggestions.active {
  display: block;
}

.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

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

.search-suggestion-item:hover,
.search-suggestion-item.highlighted {
  background: #f8f9fa;
  transform: translateX(5px);
}

.search-suggestion-img {
  width: 50px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}

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

.search-suggestion-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggestion-price {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 700;
  margin: 0.25rem 0 0 0;
}

.search-no-results {
  padding: 1.5rem;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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


.cart-icon-btn {
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

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

.cart-icon-btn i {
  font-size: 2rem;
  color: var(--text-dark);
}

.cart-icon-btn .cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cart-icon-btn .cart-badge.pulse {
  animation: pulse 0.3s ease;
}

.btn-hamburger {
  display: none;
  background: none;
  border: none;
  color: #000;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.btn-hamburger:hover {
  transform: scale(1.1);
  color: #333;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: white;
  z-index: 9999;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-sidebar.active {
  left: 0;
}

.mobile-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--primary-color);
  color: var(--text-dark);
}

.mobile-sidebar-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.btn-close-sidebar {
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
}

.btn-close-sidebar:hover {
  transform: rotate(90deg);
}

.mobile-sidebar-content {
  padding: 1.5rem;
}

.mobile-search {
  position: relative;
  margin-bottom: 2rem;
}

.mobile-search input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  font-family: "Poppins", sans-serif;
}

.mobile-search i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1.25rem;
}

.mobile-categories,
.mobile-sort {
  margin-bottom: 2rem;
}

.mobile-categories h4,
.mobile-sort h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#mobile-filtros-botones {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#mobile-filtros-botones .btn-filtro {
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: 10px;
}

.mobile-sort select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--text-dark);
}

.mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.carousel-container {
  width: 100%;
  background: #000;
  position: relative;
  overflow: hidden;
  height: calc(100vh - 80px - 150px);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-caption {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--primary-color);
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.carousel-caption h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.9),
    -2px -2px 4px rgba(0, 0, 0, 0.9),
    2px -2px 4px rgba(0, 0, 0, 0.9),
    -2px 2px 4px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.carousel-caption p {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  text-shadow:
    1px 1px 3px rgba(0, 0, 0, 0.9),
    -1px -1px 3px rgba(0, 0, 0, 0.9),
    1px -1px 3px rgba(0, 0, 0, 0.9),
    -1px 1px 3px rgba(0, 0, 0, 0.9),
    0 0 15px rgba(0, 0, 0, 0.7);
  margin: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn i {
  font-size: 2rem;
}

.carousel-btn-prev {
  left: 2rem;
}

.carousel-btn-next {
  right: 2rem;
}

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--primary-color);
  border-color: white;
  transform: scale(1.3);
}

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

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

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

/* Responsive Carousel */
@media (max-width: 768px) {
  .carousel-container {
    height: calc(100vh - 70px - 200px);
  }

  .carousel-caption h2 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .carousel-container {
    height: calc(100vh - 70px - 280px);
  }

  .carousel-caption h2 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    font-size: 0.85rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn i {
    font-size: 1.5rem;
  }

  .carousel-btn-prev {
    left: 1rem;
  }

  .carousel-btn-next {
    right: 1rem;
  }
}

.features-bar {
  background: var(--primary-color);
  padding: 2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-height: 150px;
  display: flex;
  align-items: center;
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  color: var(--primary-color);
}

.feature-icon i {
  font-size: 1.75rem;
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.25rem 0;
}

.feature-content p {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin: 0;
  opacity: 0.9;
}

/* Responsive Features Bar */
@media (max-width: 992px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .features-bar {
    padding: 1.5rem 0;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .feature-item {
    padding: 0.75rem;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
  }

  .feature-icon i {
    font-size: 1.5rem;
  }

  .feature-content h4 {
    font-size: 0.9rem;
  }

  .feature-content p {
    font-size: 0.75rem;
  }
}

#categorias {
  scroll-margin-top: 100px;
}

.filtros-container {
  text-align: center;
}

.filtros-titulo {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.filtros-botones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn-filtro {
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.btn-filtro:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--hover-shadow);
}

.btn-filtro.active {
  background: var(--primary-color);
  color: white;
}

.sort-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.sort-label {
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.sort-label i {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.sort-select {
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  background: white;
  color: var(--text-dark);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.sort-select:hover {
  background: var(--primary-color);
  color: white;
}

.sort-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(8, 237, 0, 0.25);
}

.no-results {
  text-align: center;
  padding: 3rem;
  color: #666;
}

.no-results i {
  font-size: 4rem;
  color: #ddd;
  margin-bottom: 1rem;
}

.no-results p {
  font-size: 1.25rem;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--hover-shadow);
}

.card {
  background-color: var(--card-bg);
  transition: all 0.3s ease;
  padding-bottom: 5px;
  border-radius: 15px;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card .card-img-top {
  height: 400px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.1);
}

.card .card-body {
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
  padding: 1.5rem 1rem 1rem 1rem;
}

.card .card-title {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  text-align: center;
  padding: 0;
  margin-top: 0.5rem;
  font-weight: 600;
}

.card .card-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  color: var(--primary-color);
  text-align: center;
  font-weight: 800;
}

.card .btn {
  width: 100%;
  margin-bottom: 0px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card .btn-dark {
  background: #2c3e50;
  border: none;
}

.card .btn-dark:hover {
  background: #1a252f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badge-new,
.badge-discount {
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.badge-new {
  background: var(--primary-color);
  color: var(--text-dark);
}

.badge-discount {
  background: #ff4757;
  color: white;
}

.price-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.original-price {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
  margin: 0;
}

.current-price {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  color: var(--primary-color);
  text-align: center;
  font-weight: 800;
  margin: 0;
}

.card-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-add-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  padding: 0.5rem;
}

.btn-quick-view {
  background: var(--primary-color);
  border: none;
  color: var(--text-dark);
  flex: 1;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.3rem;
}

.btn-quick-view:hover {
  background: #06c000;
  transform: scale(1.05);
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  right: -450px;
  top: 0;
  width: 420px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 2px solid #f0f0f0;
  background: var(--primary-color);
  color: white;
}

.cart-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.close-cart {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
  transition: transform 0.2s ease;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-cart:hover {
  transform: rotate(90deg);
}

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

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #999;
}

.cart-empty i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #ddd;
}

.cart-empty p {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.cart-empty small {
  color: #bbb;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.cart-item:hover {
  background: #f9f9f9;
}

.cart-item-img {
  width: 80px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-dark);
  line-height: 1.3;
}

.cart-item-price {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

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

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

.cart-item-controls button {
  background: #f0f0f0;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.cart-item-controls button:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.btn-cart-remove {
  background: #ffebee !important;
  color: #d32f2f;
  margin-left: auto;
}

.btn-cart-remove:hover {
  background: #d32f2f !important;
  color: white;
}

.cart-item-quantity {
  font-weight: 600;
  min-width: 25px;
  text-align: center;
}

.cart-item-total {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.cart-item-total .item-total {
  color: var(--primary-color);
}

.cart-footer {
  padding: 1.5rem;
  border-top: 2px solid #f0f0f0;
  background: #fafafa;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.subtotal-amount {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.btn-checkout {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.btn-checkout:hover {
  background: #06c000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(8, 237, 0, 0.3);
}

.btn-clear-cart {
  width: 100%;
  padding: 0.75rem;
  background: white;
  color: #d32f2f;
  border: 2px solid #d32f2f;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-clear-cart:hover {
  background: #d32f2f;
  color: white;
}

.quick-view-modal .modal-header {
  background: var(--primary-color);
  color: var(--text-dark);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.quick-view-modal .modal-content {
  border-radius: 15px;
  border: none;
}

.quick-view-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  max-height: 500px;
}

.quick-view-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.quick-view-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.quick-view-badges .badge-new,
.quick-view-badges .badge-discount {
  display: inline-block;
}

.quick-view-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.quick-view-price-container {
  margin-bottom: 1.5rem;
}

.quick-view-original-price {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
  margin: 0 0 0.5rem 0;
}

.quick-view-current-price {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 800;
  margin: 0;
}

.btn-add-to-cart-quick {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  color: var(--text-dark);
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-add-to-cart-quick:hover {
  background: #06c000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(8, 237, 0, 0.3);
}

.btn-add-to-cart-quick i {
  font-size: 1.3rem;
}

.modal-content {
  border-radius: 15px;
  border: none;
}

.modal-header {
  background: var(--primary-color);
  color: white;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.modal-title {
  font-weight: 600;
}

.modal-body {
  padding: 2rem;
}

#resumen-compra {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}

#resumen-compra p {
  margin: 0.5rem 0;
}

.section-header {
  text-align: center;
  padding: 1rem 0 0.5rem 0;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-title i {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.btn-ver-todos {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-color);
  color: var(--text-dark);
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(67, 237, 0, 0.3);
}

.btn-ver-todos:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(67, 237, 0, 0.4);
  color: white;
  background: #36b800;
}

.btn-ver-todos i {
  font-size: 1.3rem;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #36b800 100%);
  padding: 3rem 0;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.page-header h1 i {
  font-size: 2.5rem;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-title i {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header h1 i {
    font-size: 2rem;
  }
}

.footer {

  width: 100%;
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  margin-top: 3rem;
  color: white;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.footer-section p {
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-links a i {
  font-size: 0.85rem;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #bbb;
  font-size: 0.95rem;
}

.contact-info li i {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(8, 237, 0, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  color: #999;
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .navbar .container-fluid {
    margin-left: 5%;
  }

  .navbar .container-fluid .navbar-collapse {
    margin-right: 5%;
  }

  .navbar .container-fluid .navbar-collapse .d-flex {
    width: 100%;
    margin-top: 1rem;
  }

  .filtros-botones {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-filtro {
    width: 100%;
  }

  .card .card-img-top {
    height: 250px;
  }

  .footer .grupo-1 {
    grid-template-columns: 1fr;
    max-width: 90%;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
}

@media (max-width: 768px) {
  .btn-hamburger {
    display: block;
    margin-right: auto;
  }

  .navbar-content {
    display: none !important;
  }

  .navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
  }

  .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.25rem;
    margin: 0;
  }

  .cart-icon-btn {
    margin-left: auto;
  }

  .carousel-container {
    height: 300px;
  }

  .carousel-slide img {
    height: 300px;
    object-fit: cover;
  }

  .carousel-caption {
    bottom: 20px;
    padding: 0 1rem;
    max-width: 90%;
  }

  .carousel-caption h2 {
    font-size: 1.25rem;
    margin-bottom: 0;
  }

  .carousel-caption p {
    display: none;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1.25rem;
    background: rgba(0, 0, 0, 0.3);
  }

  .carousel-btn:hover {
    background: rgba(0, 0, 0, 0.5);
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .filtros-container,
  .sort-container {
    display: none;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .toastify {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    max-width: 90%;
    margin: 0 auto;
  }

  .toastify.toastify-right {
    left: 50% !important;
    right: auto !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .card .card-img-top {
    height: 300px;
  }

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

  .cart-sidebar {
    width: 380px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.card {
  animation: fadeIn 0.5s ease;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #06c000;
}

.toastify {
  font-family: "Poppins", sans-serif !important;
  animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}

.toastify.on {
  animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}

.toastify.toastify-right {
  right: 15px !important;
}

@keyframes slideInRight {
  from {
    transform: translate3d(400px, 0, 0);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.toastify img {
  animation: pulse 0.6s ease-in-out;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }
}

.checkout-summary {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  border: 1px solid #dee2e6;
}

.checkout-summary h6 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 18px;
}

.checkout-summary h6 i {
  font-size: 1.5rem;
  color: #43ed00;
}

#resumen-compra {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.checkout-item-title {
  flex: 1;
  font-weight: 600;
  color: #2c3e50;
  font-size: 15px;
}

.checkout-item-quantity {
  width: 80px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.checkout-item-price {
  width: 100px;
  text-align: right;
  font-weight: 700;
  color: #43ed00;
  font-size: 16px;
}

.checkout-totals {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #333;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #2c3e50;
}

.checkout-total-final {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 20px;
  color: #43ed00;
}

.checkout-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e9ecef;
}

.checkout-section:last-of-type {
  border-bottom: none;
}

.checkout-section h6 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.checkout-section h6 i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(67, 237, 0, 0.25);
}

.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  animation: shake 0.3s ease-in-out;
}

.form-control.is-valid {
  border-color: var(--primary-color);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2343ed00' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
  font-weight: 600;
}

.form-control.is-invalid~.invalid-feedback {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

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

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-option {
  background: #f8f9fa;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  cursor: pointer;
}

.payment-option:hover {
  background: #e9ecef;
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.payment-option input[type="radio"]:checked~.form-check-label {
  color: var(--primary-color);
  font-weight: 700;
}

.payment-option input[type="radio"]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.payment-option .form-check-label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0;
}

.payment-option .form-check-label i {
  font-size: 1.5rem;
}

.payment-option input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}

#payment-error {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  color: #721c24;
}

#modal-checkout .modal-footer .btn {
  padding: 0.75rem 2rem;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

#modal-checkout .modal-footer .btn-primary {
  background: var(--primary-color);
  border: none;
}

#modal-checkout .modal-footer .btn-primary:hover {
  background: #06c000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(67, 237, 0, 0.3);
}

#modal-checkout .modal-footer .btn-secondary {
  background: #6c757d;
  border: none;
}

#modal-checkout .modal-footer .btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .checkout-summary {
    padding: 1rem;
  }

  .checkout-section h6 {
    font-size: 1rem;
  }

  .payment-option {
    padding: 0.75rem 1rem;
  }

  #modal-checkout .modal-footer .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
}

.breadcrumb {
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.breadcrumb-item {
  font-size: 0.95rem;
  font-weight: 500;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #06c000;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #666;
}

.breadcrumb-item i {
  margin-right: 0.25rem;
}

.product-categories-section {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.product-categories-section:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.categories-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.categories-title i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.categories-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.category-btn {
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.65rem 1.75rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.category-btn:hover {
  background: rgba(67, 237, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(67, 237, 0, 0.3);
  border-color: #36b800;
}

.category-btn.active {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 12px rgba(67, 237, 0, 0.4);
  border-color: var(--primary-color);
}

.category-btn.active:hover {
  background: #36b800;
  border-color: #36b800;
}

@media (max-width: 768px) {
  .product-categories-section {
    padding: 1.25rem 1.5rem;
  }

  .categories-title {
    font-size: 1.1rem;
    justify-content: center;
  }

  .categories-buttons {
    justify-content: center;
  }

  .category-btn {
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .product-categories-section {
    padding: 1rem;
  }

  .categories-title {
    font-size: 1rem;
  }

  .category-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    flex: 1 1 calc(50% - 0.375rem);
    min-width: 120px;
  }
}

.product-detail-container {
  padding: 2rem 0;
  max-width: 1400px;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.main-image-container {
  position: relative;
  width: 100%;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.main-product-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.main-image-container:hover .main-product-image {
  transform: scale(1.05);
}

.product-badges-detail {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}

.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.thumbnail-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail-image:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.thumbnail-image.active {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(67, 237, 0, 0.3);
}

.product-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.product-rating .stars {
  display: flex;
  gap: 0.25rem;
}

.product-rating .stars i {
  color: #ffc107;
  font-size: 1.25rem;
}

.rating-text {
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
}

.product-price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.price-container-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.original-price-detail {
  font-size: 1.5rem;
  color: #999;
  text-decoration: line-through;
  margin: 0;
}

.current-price-detail {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0;
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
}

.stock-status.in-stock {
  background: rgba(67, 237, 0, 0.1);
  color: #06c000;
}

.stock-status.in-stock i {
  color: #06c000;
  font-size: 1.25rem;
}

.stock-status.low-stock {
  background: rgba(255, 193, 7, 0.1);
  color: #ff9800;
}

.stock-status.low-stock i {
  color: #ff9800;
  font-size: 1.25rem;
}

.stock-status.out-of-stock {
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
}

.stock-status.out-of-stock i {
  color: #ff4757;
  font-size: 1.25rem;
}

.product-description {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.product-description h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.product-description p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.product-specifications {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.product-specifications h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

.specs-table tr {
  border-bottom: 1px solid #f0f0f0;
}

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

.specs-table td {
  padding: 0.75rem 0;
  font-size: 0.95rem;
}

.spec-label {
  font-weight: 600;
  color: var(--text-dark);
  width: 40%;
}

.spec-value {
  color: #666;
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.quantity-selector {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quantity-selector label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 0.5rem;
}

.btn-quantity {
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.btn-quantity:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.05);
}

.quantity-controls input {
  width: 60px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.btn-add-to-cart-detail {
  flex: 1;
  background: var(--primary-color);
  color: var(--text-dark);
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-add-to-cart-detail:hover {
  background: #06c000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(67, 237, 0, 0.3);
}

.btn-add-to-cart-detail i {
  font-size: 1.5rem;
}

.btn-wishlist-detail {
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.75rem;
}

.btn-wishlist-detail:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.05);
}

.social-share {
  margin-bottom: 1rem;
}

.social-share h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  color: white;
}

.share-facebook {
  background: #1877f2;
}

.share-facebook:hover {
  background: #145dbf;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.share-twitter {
  background: #1da1f2;
}

.share-twitter:hover {
  background: #0c85d0;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.share-whatsapp {
  background: #25d366;
}

.share-whatsapp:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.share-link {
  background: #6c757d;
}

.share-link:hover {
  background: #5a6268;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
}

.related-products-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 3px solid #f0f0f0;
}

.related-products-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.btn-view-detail {
  background: var(--primary-color);
  border: none;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-view-detail:hover {
  background: #06c000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(67, 237, 0, 0.3);
}

@media (max-width: 992px) {
  .product-gallery {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }

  .main-product-image {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .product-title {
    font-size: 1.5rem;
  }

  .current-price-detail {
    font-size: 2rem;
  }

  .original-price-detail {
    font-size: 1.25rem;
  }

  .main-product-image {
    height: 400px;
  }

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

  .thumbnail-image {
    height: 100px;
  }

  .product-info {
    padding: 1.5rem;
  }

  .product-actions {
    flex-direction: column;
  }

  .quantity-selector {
    width: 100%;
  }

  .btn-add-to-cart-detail {
    width: 100%;
  }

  .product-price-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .breadcrumb {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .product-title {
    font-size: 1.25rem;
  }

  .main-product-image {
    height: 350px;
  }

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

  .thumbnail-image {
    height: 80px;
  }

  .current-price-detail {
    font-size: 1.75rem;
  }

  .product-info {
    padding: 1rem;
  }

  .share-buttons {
    justify-content: space-between;
  }

  .share-btn {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}