/*
Theme Name: Antonina Rebuilt
Description: Tema personalizado de WooCommerce para Antonina Shop
Version: 1.0
Author: Alex
*/

/* Reset y variables CSS */
:root {
  --primary-pink: #e91e63;
  --dark-footer: #333;
  --text-dark: #333;
  --text-light: #666;
  --border-light: #e0e0e0;
  --hero-yellow: #f4d03f;
  --hero-purple: #8e44ad;
}

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

body {
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Customs Overrides */

.woocommerce-cart table.cart img {
  width: 70px !important;
}

/* WooCommerce Specific Links - Exclude Navigation Areas and Cart Buttons */
.woocommerce
  a:not(.button):not(.add-to-cart-btn):not(.view-product-btn):not(
    .out-of-stock-btn
  ):not(.woocommerce-MyAccount-navigation a):not(.remove):not(
    .remove_from_cart_button
  ):not(.plus):not(.minus):not(.qty-btn) {
  color: var(--primary-pink);
}

.woocommerce
  a:not(.button):not(.add-to-cart-btn):not(.view-product-btn):not(
    .out-of-stock-btn
  ):not(.woocommerce-MyAccount-navigation a):not(.remove):not(
    .remove_from_cart_button
  ):not(.plus):not(.minus):not(.qty-btn):hover {
  color: #d81b60;
}

/* Header Styles */
.top-header {
  background: #f8f8f8;
  color: var(--text-dark);
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.top-header-content {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info span {
  color: var(--text-light);
  font-size: 11px;
}

.contact-info i {
  margin-right: 5px;
  color: var(--primary-pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

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

.cart-info {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-light);
  font-size: 11px;
}

.cart-info i {
  color: var(--primary-pink);
}

.top-header-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.top-header-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.top-header-links a:hover {
  color: var(--primary-pink);
}

.top-header-links span {
  color: var(--text-light);
}

/* Main Header - New Layout */
.main-header {
  background: white;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}

.header-content {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 20px;
  gap: 20px;
}

/* Search Left */
.header-search {
  justify-self: start;
}

.search-form {
  display: flex;
  align-items: center;
  background: #f8f8f8;
  border-radius: 25px;
  padding: 8px 15px;
  width: 280px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.search-form:focus-within {
  border-color: var(--primary-pink);
}

.search-field {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 14px;
  color: var(--text-dark);
}

.search-field::placeholder {
  color: var(--text-light);
}

.search-submit {
  border: none;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  padding: 5px;
  margin-left: 10px;
  transition: color 0.3s;
}

.search-submit:hover {
  color: #fff;
  background-color: #c90044;
}

/* Logo Center */
.site-branding {
  justify-self: center;
  text-align: center;
}

.site-branding .logo {
  display: inline-block;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.3s ease;
}

.site-branding .logo:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Ocultar texto del logo ya que usamos imagen */
.logo-text {
  display: none;
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #fff !important;
  transition: all 0.3s;
  border-radius: 2px;
  position: relative;
  z-index: 10;
  display: block;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Account & Cart Right */
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-account a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.header-account a:hover {
  color: var(--primary-pink);
}

.header-cart a {
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
  position: relative;
}

.header-cart a:hover {
  color: var(--primary-pink);
}

.header-cart i {
  font-size: 18px;
}

.cart-count {
  background: var(--primary-pink);
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 11px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -8px;
}

/* Navigation Header */
.navigation-header {
  background: white;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.navigation-content {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-navigation {
  display: flex;
  justify-content: center;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  position: relative;
}

.main-navigation > ul > li > a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 18px 25px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.main-navigation > ul > li > a:hover,
.main-navigation > ul > li:hover > a {
  color: var(--primary-pink);
  border-bottom-color: var(--primary-pink);
}

.dropdown-arrow {
  margin-left: 5px;
  font-size: 10px;
  transition: transform 0.3s;
}

.main-navigation li:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Submenus */
.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-top: 2px solid var(--primary-pink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
}

.main-navigation li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: flex;
  flex-direction: column;
}

.main-navigation .sub-menu li {
  width: 100%;
}

.main-navigation .sub-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  padding: 12px 20px;
  display: block;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.main-navigation .sub-menu a:hover {
  color: var(--primary-pink);
  background: #f8f8f8;
  border-left-color: var(--primary-pink);
  padding-left: 25px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary-pink);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #c2185b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-slider {
  position: relative;
  height: 550px;
  overflow: hidden;
  margin-bottom: 40px;
  max-width: 1350px;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  color: white;
  text-align: center;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(208, 179, 213, 0.55);
  padding: 40px;
  border-radius: 30px;
}

.hero-content h2 {
  font-size: 30px;
  margin-bottom: 0px;
  font-weight: 300;
  text-shadow: rgba(0, 0, 0, 0.37) 0px 6px 11px;
}

.hero-content h1 {
  font-family: Alegreya, serif;
  font-size: 80px;
  font-weight: 700;
  margin-bottom: 0px;
  line-height: 1.2;
  text-shadow: rgba(0, 0, 0, 0.37) 0px 6px 11px;
}

.hero-content .website {
  font-size: 20px;
  margin-top: 20px;
  text-shadow: rgba(0, 0, 0, 0.37) 0px 6px 11px;
}

.hero-content .hero-button {
  display: inline-block;
  padding: 12px 30px;
  margin: 15px 0;
  border: 2px solid white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-shadow: none;
  background: transparent;
  font-size: 14px;
}

.hero-content .hero-button:hover {
  background: white;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Alineaciones del hero content */
.hero-content-left {
  left: 20%;
  transform: translate(-50%, -50%);
  text-align: left;
}

.hero-content-center {
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-content-right {
  left: 80%;
  transform: translate(-50%, -50%);
  text-align: right;
}

/* Responsive adjustments for alignment */
@media (max-width: 768px) {
  .hero-content-left,
  .hero-content-right {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
  }

  .hero-content-center {
    width: 90%;
  }
}

/* Slider Navigation Arrows */
.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
  pointer-events: none;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-arrow:active {
  transform: scale(0.95);
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dot.active {
  background: white;
}

/* Info Blocks Section */
.info-blocks-section {
  background: #f8f8f8;
  padding: 40px 0;
  margin-bottom: 60px;
}

.info-blocks-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.info-block {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-block-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: var(--primary-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
}

.info-block-content {
  flex: 1;
}

.info-block-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.info-block-description {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

/* Products Section */
.products-section {
  max-width: 1350px;
  margin: 0 auto;
  padding: 40px 40px;
  background-color: #fff6f6;
  border-radius: 20px;
}

.section-title {
  text-align: center;
  font-size: 24px;
  /*border-bottom: 4px solid #e91e63;*/
  padding-bottom: 19px;
  width: fit-content;
  margin: 0 auto;
  /*margin-bottom: 40px;*/
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}

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

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
  text-align: center;
}

.product-info .product-actions .wc-forward {
  display: none;
}

.product-name {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}

.product-price {
  color: var(--primary-pink);
  font-weight: 700;
  font-size: 18px;
}

.coupon label {
  margin: 0;
}

.coupon input {
  width: 150px !important;
  height: 35px;
}

.woocommerce .quantity .qty {
  width: 80px !important;
}

/* Featured Products */
.featured-section {
  background: #f9f9f9;
  padding: 60px 0;
  margin: 60px 0;
}

.featured-grid {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Featured section uses same product-card styles */

/* Removed featured-card specific styles */

/* Footer */
.main-footer {
  background: var(--dark-footer);
  color: white;
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h4 {
  margin-bottom: 15px;
  color: white;
}

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

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary-pink);
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 20px;
  text-align: center;
  color: #ccc;
  font-size: 14px;
}

.footer-social {
  display: flex;
  justify-content: left;
  gap: 15px;
  margin-top: 15px;
}

.footer-social a {
  color: #ccc;
  font-size: 20px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--primary-pink);
}

table.variations th,
table.variations td:hover,
table.variations tr:hover {
  background-color: #fff !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Asegurar que el header-content tenga buen espaciado */
  .main-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    gap: 10px;
  }

  .top-header,
  #wpadminbar {
    display: none;
  }

  .header-search,
  .site-branding,
  .header-actions {
    justify-self: center;
  }

  .site-branding {
    /*position: relative;*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    display: flex;
  }

  .site-branding img {
    width: 170px;
    height: 70px;
    object-fit: contain;
  }

  .nav-toggle {
    display: flex;
    position: absolute;
    right: 10px;
  }

  .search-form {
    width: 250px;
  }

  .header-actions {
    gap: 20px;
    position: absolute;
    top: 27px;
    right: 75px;
  }

  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #e91e63;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: #e91e63 !important;
    margin: 0.5px;
    transition: all 0.3s ease;
    border-radius: 1px;
    position: relative;
    z-index: 10;
    display: block;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Ocultar la búsqueda en móvil si es necesario para ahorrar espacio */
  .header-search {
    display: none;
  }

  .main-header {
    height: 90px;
  }

  .navigation-header {
    position: relative;
  }

  .main-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
  }

  .main-navigation.active {
    max-height: none !important;
  }

  .main-navigation ul {
    flex-direction: column;
    padding: 20px;
    gap: 0;
    width: 100%;
    text-align: left;
  }

  .main-navigation > ul > li > a {
    padding: 15px 0;
    font-size: 12px;
    border-bottom: 1px solid #eee;
    border-left: none;
    justify-content: left;
  }

  .main-navigation .accordion-indicator {
    display: none;
  }

  .main-navigation > ul > li > a:hover {
    border-bottom-color: #eee;
    border-left: none;
    background: #f8f8f8;
  }

  .main-navigation .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: #f8f8f8;
    margin-top: 5px;
    display: none;
    padding: 0;
  }

  .main-navigation li:hover > .sub-menu {
    display: none;
  }

  .main-navigation .sub-menu a {
    padding: 10px 20px;
    border-left: none;
    text-align: center;
  }

  .main-navigation .sub-menu a:hover {
    padding-left: 20px;
    background: #e8e8e8;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .slider-arrows {
    padding: 0 10px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-arrow svg {
    width: 20px;
    height: 20px;
  }

  .info-blocks-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-block {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .info-block-icon {
    align-self: center;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .top-header-content {
    flex-direction: column;
    gap: 10px;
  }

  .contact-info {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .search-form {
    width: 200px;
  }

  .logo-image {
    height: 50px;
    max-width: 150px;
  }

  .main-navigation ul {
    flex-direction: column;
    text-align: center;
  }

  .main-navigation > ul > li > a {
    padding: 12px 15px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .main-navigation > ul > li > a:hover {
    border-left-color: var(--primary-pink);
    border-bottom: none;
  }

  .info-blocks-container {
    padding: 0 15px;
  }

  .info-block {
    padding: 20px;
  }

  .info-block-title {
    font-size: 14px;
  }

  .info-block-description {
    font-size: 13px;
  }
}

/* ==========================================================================
   WooCommerce Pages Styles
   ========================================================================== */

.woocommerce-page {
  padding: 0;
  min-height: 60vh;
}

.woocommerce-page .container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

.woocommerce-page .page-header {
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.woocommerce-page .page-title {
  font-size: 2.5rem;
  color: #333;
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: 600;
}

.woocommerce-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* My Account Page Specific */
.my-account-page .woocommerce-MyAccount-navigation {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.my-account-page .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.my-account-page .woocommerce-MyAccount-navigation li {
  margin-bottom: 10px;
}

.my-account-page .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.my-account-page .woocommerce-MyAccount-navigation a:hover,
.my-account-page .woocommerce-MyAccount-navigation .is-active a {
  background: var(--primary-pink, #e91e63);
  color: white;
}

/* Cart Page Specific */
.cart-page .woocommerce-cart-form {
  margin-bottom: 30px;
}

.cart-page .cart_totals {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}

/* Checkout Page Specific */

/* Coupon Section - Full Width */
.woocommerce-cart .coupon {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex: 1 !important;
  min-width: 300px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.wc-proceed-to-checkout {
  display: flex;
  flex-direction: column;
}

.checkout-page .woocommerce-checkout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.checkout-page .col2-set {
  grid-column: 1;
}

.checkout-page .woocommerce-checkout-review-order {
  grid-column: 2;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}

/* Shop Page Specific */
.shop-page .woocommerce-products-header {
  text-align: center;
  margin-bottom: 40px;
}

.shop-page .woocommerce-result-count {
  margin-bottom: 20px;
  color: #666;
}

/* Breadcrumbs */
.woocommerce-breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.woocommerce-breadcrumb a {
  color: var(--primary-pink, #e91e63);
  text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
  text-decoration: underline;
}

/* Forms */
.woocommerce-page .form-row {
  margin-bottom: 20px;
}

.woocommerce-page .form-row label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.woocommerce-page .form-row input[type="text"],
.woocommerce-page .form-row input[type="email"],
.woocommerce-page .form-row input[type="password"],
.woocommerce-page .form-row textarea,
.woocommerce-page .form-row select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.woocommerce-page .form-row input:focus,
.woocommerce-page .form-row textarea:focus,
.woocommerce-page .form-row select:focus {
  outline: none;
  border-color: var(--primary-pink, #e91e63);
  box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.1);
}

/* Buttons */
.woocommerce-page .button,
.woocommerce-page .woocommerce-Button {
  background: var(--primary-pink, #e91e63);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.woocommerce-page .button:hover,
.woocommerce-page .woocommerce-Button:hover {
  background: #c2185b;
  transform: translateY(-1px);
}

/* Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  border-left: 4px solid;
}

.woocommerce-message {
  background: #d4edda;
  border-left-color: #28a745;
  color: #155724;
}

.woocommerce-info {
  background: #d1ecf1;
  border-left-color: #17a2b8;
  color: #0c5460;
}

.woocommerce-error {
  background: #f8d7da;
  border-left-color: #dc3545;
  color: #721c24;
}

/* Responsive */
@media (max-width: 768px) {
  .woocommerce-page .page-title {
    font-size: 2rem;
  }

  .woocommerce-content {
    padding: 20px;
  }

  .checkout-page .woocommerce-checkout {
    grid-template-columns: 1fr;
  }

  .checkout-page .woocommerce-checkout-review-order {
    grid-column: 1;
  }
}

/* Page Template Styles */
.page-content {
  padding: 40px 0;
}

.page-content .container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.page-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-content-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
}

.page-content-wrapper h1,
.page-content-wrapper h2,
.page-content-wrapper h3,
.page-content-wrapper h4,
.page-content-wrapper h5,
.page-content-wrapper h6 {
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-content-wrapper p {
  margin-bottom: 20px;
  color: #666;
}

.page-content-wrapper a {
  color: var(--primary-pink, #e91e63);
  text-decoration: none;
}

.page-content-wrapper a:hover {
  text-decoration: underline;
}

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

  .page-content-wrapper {
    padding: 20px;
  }
}
/* ==========================================================================
   Product Cards & Buttons Styles
   ========================================================================== */

/* Product Card Styles */
.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.product-image-wrapper {
  position: relative;
  overflow: hidden;
}

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

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

/* Sale Badge */
.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e91e63;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

/* Product Info */
.product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.product-name a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-name a:hover {
  color: #e91e63;
}

.product-price {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #e91e63;
}

.product-price del {
  color: #999;
  font-weight: 400;
  margin-right: 8px;
}

.product-price ins {
  text-decoration: none;
  color: #e91e63;
}

/* Product Actions */
.product-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Buttons - Consistent Style */
.add-to-cart-btn,
.view-product-btn,
.out-of-stock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Primary Button (Add to Cart) */
.add-to-cart-btn {
  background: #e91e63;
  color: white;
  border: 2px solid #e91e63;
}

.add-to-cart-btn:hover {
  background: #c2185b;
  border-color: #c2185b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
  color: #fff;
}

.add-to-cart-btn:active {
  transform: translateY(0);
}

.add-to-cart-btn:visited {
  color: white;
}

/* Secondary Button (View Product) */
.view-product-btn {
  background: transparent;
  color: #e91e63;
  border: 2px solid #e91e63;
}

.view-product-btn:hover {
  background: #e91e63;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.2);
}

/* Out of Stock Button */
.out-of-stock-btn {
  background: #f5f5f5;
  color: #999;
  border: 2px solid #ddd;
  cursor: not-allowed;
}

/* Loading State */
.add-to-cart-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

.add-to-cart-btn.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Featured Products Styles */
.featured-card {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  transition: opacity 0.3s ease;
}

.featured-card:hover::before {
  opacity: 0.8;
}

.featured-content {
  position: relative;
  z-index: 2;
  padding: 25px;
  width: 100%;
}

.featured-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: white;
}

.featured-price {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.featured-price del {
  opacity: 0.7;
  margin-right: 8px;
}

.featured-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.featured-actions .add-to-cart-btn,
.featured-actions .view-product-btn {
  padding: 10px 16px;
  font-size: 12px;
  flex: 1;
  min-width: 120px;
}

/* Products Grid Layout */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    height: 250px;
  }

  .featured-content {
    padding: 20px;
  }

  .featured-title {
    font-size: 20px;
  }

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

  .featured-actions .add-to-cart-btn,
  .featured-actions .view-product-btn {
    flex: none;
    min-width: auto;
  }

  .product-actions {
    gap: 8px;
  }

  .add-to-cart-btn,
  .view-product-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

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

  .product-image {
    height: 200px;
  }

  .product-info {
    padding: 15px;
  }

  .featured-card {
    height: 200px;
  }
}

/* WooCommerce Integration */
.woocommerce .products .product {
  margin-bottom: 0;
}

.woocommerce .products .product .button {
  background: #e91e63;
  color: white;
  border: 2px solid #e91e63;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.woocommerce .products .product .button:hover {
  background: #c2185b;
  border-color: #c2185b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* Success Messages */
.woocommerce-message {
  background: #d4edda;
  border-left: 4px solid #28a745;
  color: #155724;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 5px;
}

.woocommerce-message::before {
  content: "✓ ";
  font-weight: bold;
  margin-right: 5px;
}

/* Cart Icon Animation */
.header-cart .cart-contents {
  transition: all 0.3s ease;
}

.header-cart .cart-contents:hover {
  transform: scale(1.1);
}

.cart-count {
  background: #e91e63;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 5px;
  min-width: 18px;
  text-align: center;
  display: inline-block;
}

/* Accessibility */
.add-to-cart-btn:focus,
.view-product-btn:focus {
  outline: 2px solid #e91e63;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .product-actions,
  .sale-badge {
    display: none;
  }
}
/* ==========================================================================
   Cart Notifications & Animations
   ========================================================================== */

/* Cart Notification Styles */
.cart-notification {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  border: none !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.cart-notification i {
  font-size: 16px;
  flex-shrink: 0;
}

.cart-notification.woocommerce-message {
  background: #d4edda !important;
  color: #155724 !important;
  border-left: 4px solid #28a745 !important;
}

.cart-notification.woocommerce-error {
  background: #f8d7da !important;
  color: #721c24 !important;
  border-left: 4px solid #dc3545 !important;
}

.close-notification {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
  margin-left: auto;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.close-notification:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
}

/* Cart Count Animation */
.cart-count.updated {
  animation: cartBounce 0.6s ease;
  background: #28a745 !important;
}

@keyframes cartBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) scale(1);
  }
  40% {
    transform: translateY(-10px) scale(1.2);
  }
  60% {
    transform: translateY(-5px) scale(1.1);
  }
}

/* Product Card Hover Effects */
.product-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Button Ripple Effect */
.add-to-cart-btn,
.view-product-btn {
  position: relative;
  overflow: hidden;
}

.add-to-cart-btn::before,
.view-product-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.add-to-cart-btn:active::before,
.view-product-btn:active::before {
  width: 300px;
  height: 300px;
}

/* Sale Badge Animation */
.sale-badge {
  animation: saleGlow 2s ease-in-out infinite alternate;
}

@keyframes saleGlow {
  from {
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
  }
  to {
    box-shadow: 0 4px 16px rgba(233, 30, 99, 0.6);
  }
}

/* Loading Spinner for Buttons */
.add-to-cart-btn.loading {
  position: relative;
  color: transparent !important;
}

.add-to-cart-btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: buttonSpin 1s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes buttonSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Improved Focus States */
.add-to-cart-btn:focus-visible,
.view-product-btn:focus-visible {
  outline: 3px solid rgba(233, 30, 99, 0.5);
  outline-offset: 2px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .cart-notification {
    right: 10px !important;
    left: 10px !important;
    max-width: none !important;
    font-size: 14px;
  }

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

  .sale-badge {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .add-to-cart-btn {
    border-width: 3px;
  }

  .sale-badge {
    border: 2px solid white;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .product-card,
  .add-to-cart-btn,
  .view-product-btn,
  .sale-badge,
  .cart-count {
    animation: none !important;
    transition: none !important;
  }

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

  .product-card:hover .product-image {
    transform: none;
  }
}

/* Print Styles */
@media print {
  .cart-notification,
  .add-to-cart-btn,
  .view-product-btn {
    display: none !important;
  }

  .sale-badge {
    background: #000 !important;
    color: #fff !important;
    box-shadow: none !important;
  }
} /* ===
=======================================================================
   Slide-out Cart Styles
   ========================================================================== */

/* Overlay */
.slide-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.slide-cart-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Slide Cart */
.slide-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: #fff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  z-index: 10000;
}

.slide-cart-overlay.active .slide-cart {
  transform: translateX(0);
}

/* Header */
.slide-cart-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
}

.slide-cart-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.close-slide-cart {
  background: none;
  border: none;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.close-slide-cart:hover {
  background: #e9ecef;
  color: #333;
}

/* Content */
.slide-cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.slide-cart-items {
  padding: 0;
}

.slide-cart-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.slide-cart-item:hover {
  background: #f8f9fa;
}

.slide-cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.slide-cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-cart-item-details {
  flex: 1;
  min-width: 0;
}

.slide-cart-item-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 0 0 5px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slide-cart-item-name a {
  color: inherit;
  text-decoration: none;
}

.slide-cart-item-name a:hover {
  color: #e91e63;
}

.slide-cart-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #666;
}

.slide-cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slide-cart-item-price {
  font-weight: 600;
  color: #e91e63;
}

.slide-cart-item-remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 5px;
  border-radius: 3px;
  transition: all 0.2s ease;
  margin-left: 10px;
}

.slide-cart-item-remove:hover {
  color: #dc3545;
  background: #f8f9fa;
}

/* Empty Cart */
.slide-cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.slide-cart-empty i {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 20px;
}

.slide-cart-empty p {
  font-size: 16px;
  margin-bottom: 20px;
}

.continue-shopping-btn {
  display: inline-block;
  background: #e91e63;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.continue-shopping-btn:hover {
  background: #c2185b;
  transform: translateY(-2px);
}

/* Footer */
.slide-cart-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  background: #f8f9fa;
}

.slide-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
}

.subtotal-label {
  font-weight: 500;
  color: #333;
}

.subtotal-amount {
  font-weight: 700;
  font-size: 18px;
  color: #e91e63;
}

.slide-cart-actions {
  display: flex;
  gap: 10px;
}

.slide-cart-actions .view-cart-btn:visited {
  color: #e91e63;
}

.slide-cart-actions .view-cart-btn:hover {
  color: white;
}

.slide-cart-actions .checkout-btn:visited {
  color: white;
}

.view-cart-btn,
.checkout-btn {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-cart-btn {
  background: transparent;
  color: #e91e63;
  border: 2px solid #e91e63;
}

.view-cart-btn:hover {
  background: #e91e63;
  color: white;
  transform: translateY(-2px);
}

.checkout-btn {
  background: #e91e63;
  color: white;
  border: 2px solid #e91e63;
}

.checkout-btn:hover {
  background: #c2185b;
  border-color: #c2185b;
  transform: translateY(-2px);
}

/* Quantity Controls */
.quantity-controls {
  display: flex;
  align-items: center;
  gap: 5px;
}

.quantity-btn {
  background: #f0f0f0;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #666;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background: #e91e63;
  color: white;
}

.quantity-input {
  width: 70px !important;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 2px 4px;
  font-size: 12px;
}

/* Loading State */
.slide-cart-loading {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

.slide-cart-loading i {
  font-size: 24px;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

/* Success Animation */
.slide-cart-item.just-added {
  background: #d4edda;
  animation: highlightItem 2s ease;
}

@keyframes highlightItem {
  0% {
    background: #d4edda;
  }
  100% {
    background: transparent;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .slide-cart {
    width: 100%;
    max-width: 400px;
  }

  .slide-cart-item {
    padding: 12px 15px;
  }

  .slide-cart-item-image {
    width: 50px;
    height: 50px;
    margin-right: 12px;
  }

  .slide-cart-header,
  .slide-cart-footer {
    padding: 15px;
  }

  .slide-cart-actions {
    flex-direction: column;
  }

  .view-cart-btn,
  .checkout-btn {
    flex: none;
  }
}

@media (max-width: 480px) {
  .slide-cart {
    width: 100vw;
  }
}

/* Accessibility */
.slide-cart-overlay[aria-hidden="true"] {
  pointer-events: none;
}

.slide-cart-overlay[aria-hidden="false"] {
  pointer-events: auto;
}

/* Focus Management */
.slide-cart *:focus {
  outline: 2px solid #e91e63;
  outline-offset: 2px;
}

/* Scrollbar Styling */
.slide-cart-content::-webkit-scrollbar {
  width: 6px;
}

.slide-cart-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.slide-cart-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.slide-cart-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
/* ==========================================================================
   Slide Cart Interactive States & Messages
   ========================================================================== */

/* Updating States */
.slide-cart-item.updating-quantity {
  opacity: 0.7;
  pointer-events: none;
}

.slide-cart-item.removing {
  opacity: 0.5;
  transform: scale(0.95);
  transition: all 0.3s ease;
}

.quantity-btn.updating {
  opacity: 0.5;
  pointer-events: none;
}

.quantity-btn.updating::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(233, 30, 99, 0.3);
  border-top: 1px solid #e91e63;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

/* Cart Messages */
.cart-message {
  padding: 12px 20px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  animation: slideInMessage 0.3s ease;
}

.cart-message-success {
  background: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.cart-message-error {
  background: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.cart-message i {
  font-size: 16px;
  flex-shrink: 0;
}

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

/* Quantity Controls Enhanced */
.quantity-controls {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.quantity-btn {
  background: #f0f0f0;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  transition: all 0.2s ease;
  position: relative;
  user-select: none;
}

.quantity-btn:hover:not(.updating) {
  background: #e91e63;
  color: white;
  transform: scale(1.1);
}

.quantity-btn:active:not(.updating) {
  transform: scale(0.95);
}

.quantity-btn:disabled,
.quantity-btn.updating {
  cursor: not-allowed;
  opacity: 0.6;
}

.quantity-input {
  width: 50px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.2s ease;
}

.quantity-input:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.1);
}

/* Remove Button Enhanced */
.slide-cart-item-remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  margin-left: 10px;
  position: relative;
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-cart-item-remove:hover {
  color: #dc3545;
  background: #f8f9fa;
  transform: scale(1.1);
}

.slide-cart-item-remove:active {
  transform: scale(0.95);
}

.slide-cart-item-remove:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* Loading Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.slide-cart-item.updating-quantity .slide-cart-item-image img {
  animation: pulse 1.5s ease-in-out infinite;
}

/* Improved Hover Effects */
.slide-cart-item {
  transition: all 0.2s ease;
}

.slide-cart-item:hover:not(.updating-quantity):not(.removing) {
  background: #f8f9fa;
  transform: translateX(2px);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .quantity-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .quantity-input {
    width: 60px;
    padding: 6px 8px;
    font-size: 14px;
  }

  .slide-cart-item-remove {
    padding: 10px;
    min-width: 36px;
    height: 36px;
  }

  .cart-message {
    padding: 10px 15px;
    font-size: 13px;
  }
}

/* Accessibility Improvements */
.quantity-btn:focus,
.slide-cart-item-remove:focus {
  outline: 2px solid #e91e63;
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .quantity-btn {
    border: 2px solid #333;
  }

  .cart-message {
    border-width: 2px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .slide-cart-item,
  .quantity-btn,
  .slide-cart-item-remove,
  .cart-message {
    animation: none !important;
    transition: none !important;
  }

  .slide-cart-item:hover {
    transform: none;
  }

  .quantity-btn:hover {
    transform: none;
  }
} /* ========
==================================================================
   WooCommerce Messages & Notices Styling
   ========================================================================== */

/* WooCommerce Notices Wrapper */
.woocommerce-notices-wrapper {
  margin: 20px 0;
  clear: both;
}

/* WooCommerce Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  border-left: 4px solid;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Success Messages */
.woocommerce-message {
  background: #d4edda;
  border-left-color: #28a745;
  color: #155724;
}

.woocommerce-message::before {
  content: "✓";
  font-size: 18px;
  font-weight: bold;
  color: #28a745;
  flex-shrink: 0;
}

/* Info Messages */
.woocommerce-info {
  background: #d1ecf1;
  border-left-color: #17a2b8;
  color: #0c5460;
}

.woocommerce-info::before {
  content: "ℹ";
  font-size: 18px;
  font-weight: bold;
  color: #17a2b8;
  flex-shrink: 0;
}

/* Error Messages */
.woocommerce-error {
  background: #f8d7da;
  border-left-color: #dc3545;
  color: #721c24;
}

.woocommerce-error::before {
  content: "⚠";
  font-size: 18px;
  font-weight: bold;
  color: #dc3545;
  flex-shrink: 0;
}

/* Message Buttons */
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
  background: #e91e63;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.3s ease;
  margin-left: auto;
  flex-shrink: 0;
}

.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.woocommerce-error .button:hover {
  background: #c2185b;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

/* Remove default WooCommerce button styles */
.woocommerce-message .button.wc-forward {
  background: #e91e63 !important;
  color: white !important;
  border: none !important;
}

/* Sidebar Styling */
.sidebar {
  background: #f8f9fa;
  border-radius: 12px;
  margin-top: 40px;
}

.sidebar .widget {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.sidebar .widget:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar .widget-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e91e63;
  position: relative;
}

.sidebar .widget-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #e91e63;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar ul li:last-child {
  border-bottom: none;
}

.sidebar ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar ul li a:hover {
  color: #e91e63;
}

.sidebar ul li a::before {
  content: "→";
  color: #e91e63;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar ul li a:hover::before {
  opacity: 1;
}

/* Responsive Sidebar */
@media (max-width: 768px) {
  .sidebar {
    margin-top: 30px;
    padding: 20px 15px;
  }

  .sidebar .widget-title {
    font-size: 16px;
  }
}

/* WooCommerce Product Page Messages */
.single-product .woocommerce-notices-wrapper {
  margin: 20px 0 30px 0;
}

.single-product .woocommerce-message {
  animation: slideInMessage 0.5s ease;
}

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

/* Fix for duplicate message containers */
.woocommerce-notices-wrapper .woocommerce-notices-wrapper {
  margin: 0;
}

.woocommerce-message .woocommerce-message {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  display: inline;
}

.woocommerce-message .woocommerce-message::before {
  display: none;
} /* =
=========================================================================
   Single Product Page Layout
   ========================================================================== */

.single-product-page {
  padding: 40px 0;
  background: #fff;
  overflow-x: hidden; /* Prevenir scroll horizontal */
}

.single-product-page .container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Sección superior: Fotos + Detalles */
.product-main-section {
  margin-bottom: 40px;
}

.product-main-section .woocommerce div.product {
  max-width: 1350px;
  margin: 0 auto;
  width: 100%;
  padding: 20px;
}

/* Contenedor que encierra galería y summary */
#product-details-and-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Contenedores eliminados - estructura simplificada */

/* Forzar que los elementos hijos respeten el grid */
.product-main-section .woocommerce div.product > * {
  min-width: 0; /* Prevenir overflow del grid */
}

/* Sección de ancho completo para tabs y productos relacionados */
.product-full-width-sections {
  width: 100%;
  padding: 20px;
}

/* Sistema de imágenes del producto */
#product-details-and-gallery .woocommerce-product-gallery {
  width: 100%;
  max-width: 100%;
  grid-column: 1; /* Galería a la izquierda */
}

/* Imagen principal */
.woocommerce div.product .woocommerce-product-gallery__wrapper {
  margin-bottom: 15px;
}

.woocommerce div.product .woocommerce-product-gallery__image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #eee;
}

.woocommerce div.product .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.woocommerce div.product .woocommerce-product-gallery__image:hover img {
  transform: scale(1.05);
}

/* Thumbnails slider */
.product-thumbnails-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.product-thumbnails-slider {
  display: flex;
  gap: 10px;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.product-thumbnail {
  flex: 0 0 calc(25% - 7.5px);
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-thumbnail:hover,
.product-thumbnail.active {
  border-color: #e91e63;
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Botones de navegación del slider */
button.thumbnail-nav {
  padding: 0 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 30px;
  height: 80px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  z-index: 10;
}
.woocommerce-product-gallery__trigger {
  display: none;
}

.thumbnail-nav:hover {
  background: rgba(0, 0, 0, 0.7);
  /*transform: translateY(-50%) scale(1.1);*/
}

.thumbnail-nav.prev {
  left: 0;
}

.thumbnail-nav.next {
  right: 0;
}

.thumbnail-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.thumbnail-nav:disabled:hover {
  /*transform: translateY(-50%);*/
  background: rgba(0, 0, 0, 0.5);
}

/* CSS del summary-container eliminado */

.woocommerce div.product .product_title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.woocommerce div.product .price {
  font-size: 24px;
  font-weight: 700;
  color: #e91e63;
  margin-bottom: 20px;
}

.woocommerce div.product .price del {
  color: #999;
  font-weight: 400;
  margin-right: 10px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
}

/* Add to Cart Form */
.woocommerce div.product form.cart {
  margin-bottom: 30px;
}

.woocommerce div.product form.cart .quantity {
  display: inline-block;
  margin-right: 15px;
  vertical-align: top;
}

.woocommerce div.product form.cart .quantity input {
  width: 80px;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
  background: #e91e63;
  color: white;
  border: 2px solid #e91e63;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: #c2185b;
  border-color: #c2185b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.woocommerce div.product form.cart .single_add_to_cart_button::before {
  content: "🛒";
  font-size: 16px;
}

/* Product Meta */
.woocommerce div.product .product_meta {
  font-size: 14px;
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
}

.woocommerce div.product .product_meta > span {
  display: block;
  margin-bottom: 8px;
}

.woocommerce div.product .product_meta a {
  color: #e91e63;
  text-decoration: none;
}

.woocommerce div.product .product_meta a:hover {
  text-decoration: underline;
}

/* Product Tabs */
.woocommerce div.product .woocommerce-tabs {
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 40px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  border-bottom: 2px solid #f0f0f0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin-right: 30px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 15px 0;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: #e91e63;
  border-bottom-color: #e91e63;
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 20px 0;
}

/* Tabs de descripción y valoraciones - 100% ancho */
.product-full-width-sections .woocommerce-tabs {
  width: 100%;
  margin-bottom: 40px;
  padding: 20px;
}

/* Related Products - 100% ancho */
.product-full-width-sections .related.products {
  width: 100%;
  border-top: 1px solid #eee;
  padding: 40px 20px;
}

.product-full-width-sections .related.products h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}

/* Productos relacionados con el mismo estilo que la home */
.related.products .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1350px;
  margin: 0 auto;
}

.related.products .product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.related.products .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.related.products .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related.products .product-card:hover .product-image img {
  transform: scale(1.08);
}

.related.products .sale-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e91e63;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

.related.products .product-actions {
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.related.products .product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.related.products .add-to-cart-btn,
.related.products .view-product-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.related.products .add-to-cart-btn {
  background: #e91e63;
  color: white;
}

.related.products .add-to-cart-btn:hover {
  background: #c2185b;
  transform: translateY(-2px);
}

.related.products .view-product-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.related.products .view-product-btn:hover {
  background: white;
  transform: translateY(-2px);
}

.related.products .product-info {
  padding: 20px;
}

.related.products .product-title {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.related.products .product-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related.products .product-title a:hover {
  color: #e91e63;
}

.related.products .product-price {
  font-size: 18px;
  font-weight: 700;
  color: #e91e63;
  margin-bottom: 10px;
}

.related.products .product-price del {
  color: #999;
  font-weight: 400;
  margin-right: 8px;
}

.related.products .product-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Responsive para productos relacionados */
@media (max-width: 768px) {
  .related.products .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .related.products .product-actions {
    position: static;
    opacity: 1;
    transform: none;
    margin-top: 15px;
  }
}

.woocommerce .single-product-page .related.products h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
  #product-details-and-gallery {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  /* Asegurar que galería y summary ocupen 100% en tablet */
  #product-details-and-gallery .woocommerce-product-gallery {
    width: 100% !important;
    max-width: 100% !important;
  }

  .summary.entry-summary {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
  #product-details-and-gallery {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  /* Asegurar que galería y summary ocupen 100% en mobile */
  #product-details-and-gallery .woocommerce-product-gallery {
    width: 100% !important;
    max-width: 100% !important;
  }

  .summary.entry-summary {
    width: 100% !important;
    max-width: 100% !important;
  }

  .woocommerce div.product .product_title {
    font-size: 24px;
  }

  .woocommerce div.product .price {
    font-size: 20px;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs {
    flex-wrap: wrap;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin-right: 20px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .single-product-page .container {
    padding: 0 15px;
  }

  .woocommerce div.product form.cart .quantity input {
    width: 60px;
    padding: 10px;
  }

  .woocommerce div.product form.cart .single_add_to_cart_button {
    padding: 10px 20px;
    font-size: 14px;
  }
} /* =
=========================================================================
   Sidebar Default Content Styles
   ========================================================================== */

/* Default Widget Styles */
.sidebar .default-widget {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.sidebar .default-widget .widget-title {
  background: #e91e63;
  color: white;
  margin: 0;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: none;
}

.sidebar .default-widget .widget-title::after {
  display: none;
}

/* Category List */
.sidebar .default-widget ul {
  padding: 0;
  margin: 0;
}

.sidebar .default-widget ul li {
  padding: 0;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar .default-widget ul li:last-child {
  border-bottom: none;
}

.sidebar .default-widget ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sidebar .default-widget ul li a:hover {
  background: #f8f9fa;
  color: #e91e63;
  padding-left: 25px;
}

.sidebar .default-widget ul li a .count {
  background: #e91e63;
  color: white;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 500;
}

.sidebar .default-widget ul li a:hover .count {
  background: #c2185b;
}

/* Sidebar Products */
.sidebar-products {
  padding: 0;
}

.sidebar-product {
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar-product:last-child {
  border-bottom: none;
}

.sidebar-product-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.sidebar-product-link:hover {
  transform: translateX(5px);
}

.sidebar-product-image {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.sidebar-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-product-info {
  flex: 1;
  min-width: 0;
}

.sidebar-product-info h5 {
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-product-info .price {
  font-size: 13px;
  font-weight: 600;
  color: #e91e63;
}

.sidebar-product-info .price del {
  color: #999;
  font-weight: 400;
  margin-right: 5px;
}

/* Contact Info */
.contact-info {
  padding: 20px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px 0;
  font-size: 14px;
  color: #666;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info i {
  color: #e91e63;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

/* Ensure sidebar is visible */
.product-sidebar {
  display: block !important;
  visibility: visible !important;
}

/* Fix grid layout */
.product-layout {
  display: grid !important;
  grid-template-columns: 1fr 300px !important;
  gap: 40px !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  /* .product-layout {
        grid-template-columns: 1fr !important;
    }
    
    .product-sidebar {
        order: 2;
    } */

  .sidebar .default-widget .widget-title {
    font-size: 15px;
    padding: 12px 15px;
  }

  .sidebar .default-widget ul li a {
    padding: 10px 15px;
  }

  .sidebar-product {
    padding: 12px 15px;
  }

  .contact-info {
    padding: 15px;
  }
} /*

/* Max-width específico para el elemento producto */
.woocommerce .product.type-product {
  max-width: 1350px;
  margin: 0 auto;
  width: 100%;
}

/* Asegurar que la sección de tabs y productos relacionados también respete el max-width */
.product-full-width-sections {
  max-width: 1350px;
  margin: 0 auto;
  width: 100%;
}
/* Summary dentro del contenedor */
#product-details-and-gallery .summary {
  grid-column: 2; /* Summary a la derecha */
  padding: 20px 0;
  width: 100%;
}

/* Responsive para el nuevo contenedor */
@media (max-width: 768px) {
  #product-details-and-gallery {
    display: block;
    margin: 20px;
  }

  /* Asegurar que galería y summary ocupen 100% en mobile */
  #product-details-and-gallery .woocommerce-product-gallery {
    width: 100% !important;
    max-width: 100% !important;
  }

  .summary.entry-summary {
    width: 100% !important;
    max-width: 100% !important;
  }
}
/* Estados de loading para botones de productos relacionados */
.related.products .add-to-cart-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.related.products .add-to-cart-btn.loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Asegurar que los productos relacionados usen el mismo grid que la home */
.related.products .products-grid .product-card {
  width: 100%;
  max-width: none;
}

/* Mejorar la visibilidad de los botones en hover */
.related.products .product-card .product-actions {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 20px 15px 15px;
  border-radius: 0 0 12px 12px;
}

.related.products .product-card:hover .product-actions {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
} /* Est
ados de stock para productos relacionados */
.related.products .product-stock {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
}

.related.products .stock-status {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.related.products .stock-status.in-stock {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.related.products .stock-status.out-of-stock {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.related.products .stock-status.low-stock {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.product-template-default .sidebar {
  display: none;
}

/* Botón agotado */
.related.products .add-to-cart-btn.out-of-stock {
  background: #6c757d;
  color: white;
  cursor: not-allowed;
  opacity: 0.7;
}

.related.products .add-to-cart-btn.out-of-stock:hover {
  background: #6c757d;
  transform: none;
  opacity: 0.7;
}

/* Overlay de agotado en la imagen */

.related.products .product-card.out-of-stock .add-to-cart-btn {
  display: none;
}

.related.products .product-card.out-of-stock .product-image::after {
  content: "AGOTADO";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.related.products .product-card.out-of-stock:hover .product-image::after {
  opacity: 1;
}
/* Estados de stock para productos de la home */
.products .product-stock {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
}

.products .stock-status {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.products .stock-status.in-stock {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.products .stock-status.out-of-stock {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.products .stock-status.low-stock {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

/* Botón agotado en productos de la home */
.products .add-to-cart-btn.out-of-stock {
  background: #6c757d;
  color: white;
  cursor: not-allowed;
  opacity: 0.7;
}

.products .add-to-cart-btn.out-of-stock:hover {
  background: #6c757d;
  transform: none;
  opacity: 0.7;
}

/* Overlay de agotado en productos de la home */
.products .product-card.out-of-stock .product-image-wrapper::after {
  content: "AGOTADO";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.products .product-card.out-of-stock:hover .product-image-wrapper::after {
  opacity: 1;
} /* 
==========================================================================
   Search Results Page
   ========================================================================== */

.search-results-page {
  padding: 40px 0;
  background: #f8f9fa;
  min-height: 60vh;
}

.search-results-page .container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Page Header */
.search-results-page .page-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.search-results-page .page-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.search-results-page .search-query {
  color: #e91e63;
  font-style: italic;
}

.search-results-page .search-results-count {
  color: #666;
  font-size: 16px;
  margin: 0;
}

/* Search Results Sections */
.search-results section {
  margin-bottom: 50px;
}

.search-results section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e91e63;
  display: inline-block;
}

/* Products Grid in Search */
.search-products .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.search-products .product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.search-products .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Imagen del producto en búsqueda */
.search-products .product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.search-products .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.search-products .product-card:hover .product-image img {
  transform: scale(1.08);
}

.search-products .sale-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e91e63;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

.search-products .product-actions {
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 3;
}

.search-products .product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.search-products .add-to-cart-btn,
.search-products .view-product-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.search-products .add-to-cart-btn {
  background: #e91e63;
  color: white;
}

.search-products .add-to-cart-btn:hover {
  background: #c2185b;
  transform: translateY(-2px);
}

.search-products .view-product-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.search-products .view-product-btn:hover {
  background: white;
  transform: translateY(-2px);
}

.search-products .product-info {
  padding: 20px;
}

.search-products .product-title {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.search-products .product-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.search-products .product-title a:hover {
  color: #e91e63;
}

.search-products .product-price {
  font-size: 18px;
  font-weight: 700;
  color: #e91e63;
  margin-bottom: 10px;
}

.search-products .product-price del {
  color: #999;
  font-weight: 400;
  margin-right: 8px;
}

.search-products .product-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Posts List in Search */
.search-posts .posts-list {
  display: grid;
  gap: 30px;
}

.search-result-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.search-result-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.search-result-item .entry-title {
  margin: 0 0 15px 0;
  font-size: 20px;
  font-weight: 700;
}

.search-result-item .entry-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.search-result-item .entry-title a:hover {
  color: #e91e63;
}

.search-result-item .entry-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.search-result-item .post-type {
  background: #e91e63;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.search-result-item .entry-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.search-result-item .read-more {
  color: #e91e63;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.search-result-item .read-more:hover {
  color: #c2185b;
  transform: translateX(5px);
}

/* No Results */
.no-results {
  text-align: center;
  padding: 60px 20px;
}

.no-results-content {
  max-width: 600px;
  margin: 0 auto;
}

.no-results-icon {
  font-size: 64px;
  color: #ddd;
  margin-bottom: 30px;
}

.no-results h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.no-results p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.search-suggestions {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  text-align: left;
}

.search-suggestions h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.search-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-suggestions li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.search-suggestions li::before {
  content: "•";
  color: #e91e63;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Search Again Form */
.search-again {
  margin-bottom: 40px;
}

.search-again h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.search-input-group {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-input-group .search-field {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  outline: none;
}

.search-input-group .search-submit {
  background: #e91e63;
  color: white;
  border: none;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-input-group .search-submit:hover {
  background: #c2185b;
}

/* Helpful Links */
.helpful-links h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.helpful-links .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease;
}

.helpful-links .btn-primary {
  background: #e91e63;
  color: white;
}

.helpful-links .btn-primary:hover {
  background: #c2185b;
  transform: translateY(-2px);
}

.helpful-links .btn-secondary {
  background: #6c757d;
  color: white;
}

.helpful-links .btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

/* Pagination */
.search-results-page .pagination {
  margin-top: 50px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .search-products .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .search-input-group {
    flex-direction: column;
    max-width: 300px;
  }

  .search-input-group .search-submit {
    border-radius: 0 0 8px 8px;
  }

  .helpful-links .btn {
    display: block;
    margin: 10px 0;
  }
}
/* Categorías de productos en búsqueda */
.search-products .product-categories {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.search-products .product-category {
  background: #f8f9fa;
  color: #666;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #e9ecef;
}

/* Mejorar el título de la página de búsqueda */
.search-results-page .page-title {
  font-size: 32px;
  margin-bottom: 15px;
}

.search-results-page .page-header {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

/* Mejorar el grid de productos en búsqueda */
.search-products .products-grid {
  margin-top: 0;
}

/* Mensaje cuando no hay resultados - más específico para productos */
.no-results h2 {
  color: #e91e63;
}

.no-results .search-again h3 {
  color: #333;
  margin-bottom: 15px;
}

/* Responsive mejorado */
@media (max-width: 768px) {
  .search-results-page .page-header {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .search-results-page .page-title {
    font-size: 24px;
  }
} /* Botón 
agotado en búsqueda */
.search-products .add-to-cart-btn.out-of-stock {
  background: #6c757d;
  color: white;
  cursor: not-allowed;
  opacity: 0.8;
}

.search-products .add-to-cart-btn.out-of-stock:hover {
  background: #6c757d;
  transform: none;
  opacity: 0.8;
}

/* Overlay de agotado en búsqueda */
.search-products .product-card.out-of-stock .product-image::after {
  content: ""; /* AGOTADO */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.search-products .product-card.out-of-stock:hover .product-image::after {
  opacity: 1;
}

/* Mejorar el fondo de los botones para mejor visibilidad */
.search-products .product-actions {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 20px 15px 15px;
  border-radius: 0;
}

.search-products .product-card:hover .product-actions {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* Estados de loading para búsqueda */
.search-products .add-to-cart-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.search-products .add-to-cart-btn.loading i {
  animation: spin 1s linear infinite;
}

/* Responsive para búsqueda en móviles */
@media (max-width: 768px) {
  .search-products .product-actions {
    position: static;
    opacity: 1;
    transform: none;
    background: none;
    padding: 15px;
    margin-top: 10px;
  }

  .search-products .add-to-cart-btn,
  .search-products .view-product-btn {
    padding: 10px;
    font-size: 13px;
  }
} /* Estad
os de loading para botón de página de producto */
.single_add_to_cart_button.loading {
  pointer-events: none;
  opacity: 0.8;
  position: relative;
}

.single_add_to_cart_button.loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Mejorar la transición del botón */
.single_add_to_cart_button {
  transition: all 0.3s ease;
}

/* Asegurar que el botón mantenga su tamaño durante el loading */
.single_add_to_cart_button.loading {
  min-width: 200px; /* Ajustar según el tamaño original */
} /* Ocu
ltar mensajes de WooCommerce que interfieren con el carrito flotante */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  display: none !important;
}

/* Ocultar específicamente el mensaje de "Ver carrito" */
.woocommerce-message[role="alert"] {
  display: none !important;
}

/* Ocultar solo notificaciones específicas, no botones de checkout */
.woocommerce-message .wc-forward.added_to_cart {
  display: none !important;
}

/* Asegurar que no aparezcan mensajes en la parte superior */
.woocommerce-notices-wrapper {
  display: none !important;
}

/* Permitir solo mensajes de error importantes (checkout, etc.) */
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-error,
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-error {
  display: block !important;
}

/* Permitir mensajes en páginas de cuenta */
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-error {
  display: block !important;
} /*
 Ajustes para móvil - Logo y cuenta */
@media (max-width: 768px) {
  /* Logo más pequeño en móvil */
  .site-branding img {
  }

  /* Convertir "MI CUENTA" en icono de persona en móvil */
  .header-actions .header-account a {
    font-size: 0; /* Ocultar el texto */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /*background: rgba(233, 30, 99, 0.1);*/
    transition: all 0.3s ease;
    flex-direction: column;
  }

  .header-actions .header-account a:before {
    content: "\f007"; /* Icono de FontAwesome para persona */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    color: #e91e63;
  }

  .header-actions .header-account a:hover {
    background: rgba(233, 30, 99, 0.2);
    transform: scale(1.1);
  }

  /* Ajustar el header-actions para que tenga mejor espaciado */
  .header-actions {
    gap: 0;
    align-items: center;
  }

  /* Asegurar que el carrito también se vea bien */
  .header-cart a.cart-contents {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 10px;
    border-radius: 20px;
    /*background: rgba(233, 30, 99, 0.1);*/
    transition: all 0.3s ease;
  }

  .header-cart a.cart-contents:hover {
    background: rgba(233, 30, 99, 0.2);
    transform: scale(1.05);
  }

  .header-cart .cart-count {
    background: #e91e63;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
  }
} /* A
cordeón para menú móvil */
@media (max-width: 768px) {
  /* Indicador de acordeón */
  .main-navigation .accordion-indicator {
    margin-left: auto;
    padding-left: 10px;
    transition: transform 0.3s ease;
    color: #e91e63;
    font-size: 14px;
  }

  .main-navigation .menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
  }

  /* Submenús ocultos por defecto en móvil */
  .main-navigation .sub-menu {
    display: none;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 8px;
    margin-top: 10px;
    padding: 10px 0;
    border-left: 3px solid #e91e63;
  }

  /* Submenú abierto */
  .main-navigation .sub-menu.accordion-open {
    display: block;
  }

  /* Estilo para elementos del submenú */
  .main-navigation .sub-menu li {
    margin: 0;
    padding: 0;
  }

  .main-navigation .sub-menu a {
    padding: 12px 20px;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
  }

  .main-navigation .sub-menu a:hover {
    color: #e91e63;
    background: rgba(233, 30, 99, 0.1);
    padding-left: 25px;
  }

  /* Último elemento sin borde */
  .main-navigation .sub-menu li:last-child a {
    border-bottom: none;
  }

  /* Estado activo del elemento padre */
  .main-navigation .menu-item-has-children.accordion-active > a {
    color: #e91e63;
    background: rgba(233, 30, 99, 0.1);
  }

  /* Animación del indicador */
  .main-navigation .accordion-active .accordion-indicator i {
    transform: rotate(180deg);
  }

  /* Mejorar el espaciado general del menú móvil */
  .main-navigation.active {
    padding: 20px 0;
  }

  .main-navigation ul li {
    margin-bottom: 5px;
  }

  .main-navigation ul li a {
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .main-navigation ul li a:hover {
    background: rgba(233, 30, 99, 0.1);
    color: #e91e63;
  }
}
/* Inst
agram Section */
.instagram-section {
  background: white;
  padding: 60px 0;
  margin: 0;
}

.instagram-container {
  max-width: 330px;
  margin: 0 auto;
  padding: 0 20px;
  scale: 1;
}

.instagram-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.instagram-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #e4405f, #833ab4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
}

.instagram-text {
  text-align: center;
}

.instagram-title {
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.instagram-icon a:visited {
  color: rgb(255, 255, 255) !important;
}

.instagram-link {
  font-family: Alegreya, serif;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.instagram-username {
  font-size: 35px;
  line-height: 35px;
  font-weight: 600;
  color: var(--primary-pink);
  transition: color 0.3s ease;
}

.instagram-link:hover .instagram-username {
  color: #e4405f;
  text-decoration: underline;
}

/* Responsive Design for Instagram Section */
@media (max-width: 768px) {
  .instagram-section {
    padding: 40px 0;
  }

  .instagram-content {
    flex-direction: column;
    gap: 20px;
  }

  .instagram-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .instagram-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .instagram-username {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .instagram-section {
    padding: 30px 0;
  }

  .instagram-container {
    max-width: 330px;
    padding: 0 15px;
  }

  .instagram-title {
    font-size: 18px;
  }

  .instagram-username {
    font-size: 16px;
  }
} /* Fea
tured Categories Section */
.featured-categories-section {
  background: white;
  padding: 60px 0;
  margin: 0;
}

.featured-categories-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

.featured-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.featured-category-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.featured-category-card:hover {
  transform: translateY(-3px);
}

.category-image-wrapper {
  width: 300px;
  height: 300px;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.category-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 40px;
  background: #f8f8f8;
  border-radius: 50%;
}

.category-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-button {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary-pink);
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 25px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-pink);
}

.category-button:hover {
  background: transparent;
  color: var(--primary-pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.category-button.disabled {
  background: #ccc;
  color: #999;
  border-color: #ccc;
  cursor: not-allowed;
}

.category-button.disabled:hover {
  background: #ccc;
  color: #999;
  transform: none;
  box-shadow: none;
}

/* Responsive Design for Featured Categories */
@media (max-width: 768px) {
  .featured-categories-section {
    padding: 40px 0;
  }

  .featured-categories-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .featured-category-card {
    padding: 0;
  }

  .category-image-wrapper {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
  }

  .category-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .category-button {
    padding: 10px 20px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .featured-categories-container {
    padding: 0 15px;
  }

  .featured-category-card {
    padding: 0;
  }

  .category-image-wrapper {
    width: 100px;
    height: 100px;
  }

  .category-title {
    font-size: 18px;
  }
} /* Woo
Commerce Archive Pages (Shop, Categories, Tags) */
.woocommerce-shop-page,
.woocommerce-category-page,
.woocommerce-tag-page {
  padding: 40px 0;
  min-height: 60vh;
}

.woocommerce-shop-page .container,
.woocommerce-category-page .container,
.woocommerce-tag-page .container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Archive Headers */
.woocommerce-products-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.woocommerce-products-header__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-description,
.tag-description {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Products Wrapper */
.woocommerce-products-wrapper {
  margin-bottom: 40px;
}

.woocommerce-products-wrapper .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0 20px 0 0;
}

/* Product Cards in Archive Pages */
.woocommerce-products-wrapper .product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  position: relative;
}

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

.woocommerce-products-wrapper .product-card.out-of-stock {
  opacity: 0.7;
}

.woocommerce-products-wrapper .product-image-wrapper {
  position: relative;
  overflow: hidden;
}

.woocommerce-products-wrapper .product-image-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.woocommerce-products-wrapper .product-card:hover .product-image-wrapper img {
  transform: scale(1.05);
}

/* Product Badges */
.sale-badge,
.stock-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-pink);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.stock-badge.out-of-stock {
  background: #999;
}

/* Product Info */
.woocommerce-products-wrapper .product-info {
  padding: 20px;
  text-align: center;
}

.woocommerce-products-wrapper .product-name {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}

.woocommerce-products-wrapper .product-name a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.woocommerce-products-wrapper .product-name a:hover {
  color: var(--primary-pink);
}

.woocommerce-products-wrapper .product-price {
  color: var(--primary-pink);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

/* Product Actions */
.woocommerce-products-wrapper .product-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.woocommerce-products-wrapper .add-to-cart-btn,
.woocommerce-products-wrapper .view-product-btn,
.woocommerce-products-wrapper .out-of-stock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.woocommerce-products-wrapper .add-to-cart-btn {
  background: var(--primary-pink);
  color: white;
}

.woocommerce-products-wrapper .add-to-cart-btn:hover {
  background: #d81b60;
  transform: translateY(-2px);
}

.woocommerce-products-wrapper .view-product-btn {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.woocommerce-products-wrapper .view-product-btn:hover {
  background: var(--text-dark);
  color: white;
}

.woocommerce-products-wrapper .out-of-stock-btn {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

/* WooCommerce Pagination */
.woocommerce-pagination {
  text-align: center;
  margin-top: 40px;
}

.woocommerce-pagination .page-numbers {
  display: inline-block;
  padding: 10px 15px;
  margin: 0 5px;
  background: white;
  color: var(--text-dark);
  text-decoration: none;
  border: 1px solid var(--border-light);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.woocommerce-pagination .page-numbers:hover,
.woocommerce-pagination .page-numbers.current {
  background: var(--primary-pink);
  color: white;
  border-color: var(--primary-pink);
}

/* No Products Found */
.woocommerce-no-products-found {
  text-align: center;
  padding: 60px 20px;
}

.woocommerce-no-products-found .woocommerce-info {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Responsive Design for Archive Pages */
@media (max-width: 768px) {
  .woocommerce-shop-page,
  .woocommerce-category-page,
  .woocommerce-tag-page {
    padding: 20px 0;
  }

  .woocommerce-products-header__title {
    font-size: 24px;
  }

  .woocommerce-products-wrapper .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .woocommerce-products-wrapper .product-image-wrapper img {
    height: 200px;
  }

  .woocommerce-products-wrapper .product-info {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .woocommerce-products-wrapper .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .woocommerce-products-wrapper .product-image-wrapper img {
    height: 180px;
  }

  .woocommerce-products-wrapper .product-actions {
    flex-direction: column;
    gap: 6px;
  }

  .woocommerce-products-wrapper .add-to-cart-btn,
  .woocommerce-products-wrapper .view-product-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
} /* WooComme
rce Layout with Sidebar */
.woocommerce-layout-container {
  display: flex;
  gap: 30px;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

.woocommerce-layout-container #primary {
  flex: 1;
  min-width: 0; /* Prevents flex item from overflowing */
}

.woocommerce-layout-container #secondary {
  flex: 0 0 300px; /* Fixed width sidebar */
  order: 2; /* Sidebar on the right */
}

/* Content Area Adjustments */
.woocommerce-layout-container .content-area {
  width: 100%;
}

.woocommerce-layout-container .site-main {
  width: 100%;
}

/* Breadcrumbs */
.woocommerce-breadcrumb-wrapper {
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

/* Category/Tag Page Specific */
.woocommerce-category-page,
.woocommerce-tag-page {
  width: 100%;
}

.woocommerce-breadcrumb-wrapper .container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Products Grid in Sidebar Layout */
.woocommerce-layout-container .woocommerce-products-wrapper .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

/* Sidebar Styles */
.woocommerce-layout-container #secondary .widget {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.woocommerce-layout-container #secondary .widget-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-pink);
}

.woocommerce-layout-container #secondary .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-layout-container #secondary .widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.woocommerce-layout-container #secondary .widget ul li:last-child {
  border-bottom: none;
}

.woocommerce-layout-container #secondary .widget ul li a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.woocommerce-layout-container #secondary .widget ul li a:hover {
  color: var(--primary-pink);
}

/* WooCommerce Filter Widgets */
.woocommerce-layout-container #secondary .woocommerce-widget-layered-nav ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.woocommerce-layout-container
  #secondary
  .woocommerce-widget-layered-nav
  .count {
  background: var(--primary-pink);
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
}

/* Price Filter Widget */
.woocommerce-layout-container
  #secondary
  .widget_price_filter
  .price_slider_wrapper {
  margin: 15px 0;
}

.woocommerce-layout-container #secondary .widget_price_filter .price_slider {
  background: #f0f0f0;
  height: 5px;
  border-radius: 3px;
}

.woocommerce-layout-container
  #secondary
  .widget_price_filter
  .ui-slider-handle {
  background: var(--primary-pink);
  border: none;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  top: -7px;
}

/* Responsive Design for Sidebar Layout */
@media (max-width: 1024px) {
  .woocommerce-layout-container {
    flex-direction: column;
    gap: 20px;
  }

  .woocommerce-layout-container #secondary {
    flex: none;
    order: 1; /* Sidebar on top for tablets */
  }

  .woocommerce-layout-container .woocommerce-products-wrapper .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .woocommerce-layout-container {
    padding: 0 15px;
  }

  .woocommerce-layout-container .woocommerce-products-wrapper .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

  .woocommerce-layout-container #secondary .widget {
    padding: 15px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .woocommerce-layout-container .woocommerce-products-wrapper .products-grid {
    grid-template-columns: 1fr;
  }
} /* Brea
dcrumbs Styles */
.woocommerce-breadcrumb-wrapper {
  background: #f8f8f8;
  border-bottom: 1px solid var(--border-light);
}

.woocommerce-breadcrumb,
.breadcrumb {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  padding: 0;
}

.woocommerce-breadcrumb a,
.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.woocommerce-breadcrumb a:hover,
.breadcrumb a:hover {
  color: var(--primary-pink);
}

.woocommerce-breadcrumb .breadcrumb-separator,
.breadcrumb .breadcrumb-separator {
  margin: 0 8px;
  color: #ccc;
}

/* WooCommerce Pagination Styles */
.woocommerce-pagination {
  text-align: center;
  margin: 40px 0;
  padding: 20px 0;
}

.woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
  align-items: center;
}

.woocommerce-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  background: white;
  color: var(--text-dark);
  text-decoration: none;
  border: 1px solid var(--border-light);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.woocommerce-pagination .page-numbers:hover {
  background: var(--primary-pink);
  color: white;
  border-color: var(--primary-pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(233, 30, 99, 0.3);
}

.woocommerce-pagination .page-numbers.current {
  background: var(--primary-pink);
  color: white;
  border-color: var(--primary-pink);
  cursor: default;
}

.woocommerce-pagination .page-numbers.prev,
.woocommerce-pagination .page-numbers.next {
  font-weight: 600;
  padding: 8px 16px;
}

.woocommerce-pagination .page-numbers.prev:before {
  content: "← ";
  margin-right: 4px;
}

.woocommerce-pagination .page-numbers.next:after {
  content: " →";
  margin-left: 4px;
}

.woocommerce-pagination .page-numbers.dots {
  background: transparent;
  border: none;
  cursor: default;
  color: #ccc;
}

.woocommerce-pagination .page-numbers.dots:hover {
  background: transparent;
  color: #ccc;
  transform: none;
  box-shadow: none;
}

/* WordPress Default Pagination (fallback) */
.pagination {
  text-align: center;
  margin: 40px 0;
  padding: 20px 0;
}

.pagination .nav-links {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  background: white;
  color: var(--text-dark);
  text-decoration: none;
  border: 1px solid var(--border-light);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
  background: var(--primary-pink);
  color: white;
  border-color: var(--primary-pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(233, 30, 99, 0.3);
}

.pagination .page-numbers.current {
  background: var(--primary-pink);
  color: white;
  border-color: var(--primary-pink);
  cursor: default;
}

.pagination .prev,
.pagination .next {
  font-weight: 600;
  padding: 8px 16px;
}

/* Responsive Breadcrumbs and Pagination */
@media (max-width: 768px) {
  .woocommerce-breadcrumb,
  .breadcrumb {
    font-size: 12px;
  }

  .woocommerce-pagination .page-numbers,
  .pagination .page-numbers {
    min-width: 35px;
    height: 35px;
    padding: 6px 10px;
    font-size: 13px;
  }

  .woocommerce-pagination .page-numbers.prev,
  .woocommerce-pagination .page-numbers.next,
  .pagination .prev,
  .pagination .next {
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .woocommerce-pagination ul.page-numbers,
  .pagination .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3px;
  }

  .woocommerce-pagination .page-numbers,
  .pagination .page-numbers {
    min-width: 32px;
    height: 32px;
    padding: 4px 8px;
    font-size: 12px;
  }

  .woocommerce-breadcrumb-wrapper .container {
    padding: 0 15px;
  }
} /* ===
=======================================================================
   FORMS AND INPUT FIELDS
   ========================================================================== */

/* General Form Styles */
.woocommerce form,
form {
  margin-bottom: 20px;
}

.woocommerce .form-row,
.form-row {
  margin-bottom: 20px;
}

.woocommerce .form-row-first,
.woocommerce .form-row-last {
  width: 48%;
  display: inline-block;
}

.woocommerce .form-row-first {
  margin-right: 4%;
}

/* Input Fields */
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="password"],
.woocommerce input[type="tel"],
.woocommerce input[type="url"],
.woocommerce input[type="number"],
.woocommerce select,
.woocommerce textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-light);
  border-radius: 5px;
  font-size: 14px;
  font-family: inherit;
  background: white;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce input[type="text"]:focus,
.woocommerce input[type="email"]:focus,
.woocommerce input[type="password"]:focus,
.woocommerce input[type="tel"]:focus,
.woocommerce input[type="url"]:focus,
.woocommerce input[type="number"]:focus,
.woocommerce select:focus,
.woocommerce textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

/* Labels */
.woocommerce label,
label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--text-dark);
}

.woocommerce .required {
  color: var(--primary-pink);
}

/* Checkboxes and Radio Buttons */
.woocommerce input[type="checkbox"],
.woocommerce input[type="radio"],
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  margin-right: 8px;
  accent-color: var(--primary-pink);
}

/* ==========================================================================
   WOOCOMMERCE PAGES
   ========================================================================== */

/* Page Headers */
.woocommerce-page .page-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.woocommerce-page .page-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* My Account Page */
.my-account-page .woocommerce-MyAccount-navigation {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.my-account-page .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.my-account-page .woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid var(--border-light);
}

.my-account-page .woocommerce-MyAccount-navigation li:last-child {
  border-bottom: none;
}

.my-account-page .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 15px 20px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.my-account-page .woocommerce-MyAccount-navigation a:hover,
.my-account-page .woocommerce-MyAccount-navigation .is-active a {
  background: var(--primary-pink);
  color: white;
}

/* Cart Page */
.cart-page .woocommerce-cart-form {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
}

.cart-page .cart_totals {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.cart-page .cart_totals h2 {
  margin-bottom: 20px;
  color: var(--text-dark);
  font-size: 24px;
}

/* Checkout Page */
.checkout-page .woocommerce-checkout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}

.checkout-page .col2-set {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.checkout-page #order_review {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: sticky;
  top: 20px;
}

/* ==========================================================================
   TABLES
   ========================================================================== */

.woocommerce table,
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: white;
}

.woocommerce table th,
.woocommerce table td,
table th,
table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.woocommerce table th,
table th {
  background: #f8f8f8;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.woocommerce table tbody tr:hover,
table tbody tr:hover {
  background: #f9f9f9;
}

/* Cart Table Specific */
.woocommerce-cart-form__contents .product-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
}

.woocommerce-cart-form__contents .product-name a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}

.woocommerce-cart-form__contents .product-name a:hover {
  color: var(--primary-pink);
}

/* ==========================================================================
   MESSAGES AND NOTIFICATIONS
   ========================================================================== */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notice {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  border-left: 4px solid;
  position: relative;
}

.woocommerce-message,
.woocommerce-notice--success {
  background: #d4edda;
  color: #155724;
  border-left-color: #28a745;
}

.woocommerce-info,
.woocommerce-notice--info {
  background: #d1ecf1;
  color: #0c5460;
  border-left-color: #17a2b8;
}

.woocommerce-error,
.woocommerce-notice--error {
  background: #f8d7da;
  color: #721c24;
  border-left-color: #dc3545;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a,
.woocommerce-notice a {
  color: inherit;
  text-decoration: underline;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.woocommerce .button,
.woocommerce button,
.button,
button[type="submit"],
input[type="submit"] {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary-pink);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.woocommerce .button:hover,
.woocommerce button:hover,
.button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  /*background: #d81b60;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);*/
}

.woocommerce .button.alt,
.button.alt {
  background: var(--text-dark);
}

.woocommerce .button.alt:hover,
.button.alt:hover {
  background: #222;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
  .woocommerce .form-row-first,
  .woocommerce .form-row-last {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .checkout-page .woocommerce-checkout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .checkout-page #order_review {
    position: static;
  }

  .woocommerce-page .page-title {
    font-size: 24px;
  }

  .woocommerce table th,
  .woocommerce table td,
  table th,
  table td {
    padding: 10px 8px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .woocommerce input[type="text"],
  .woocommerce input[type="email"],
  .woocommerce input[type="password"],
  .woocommerce input[type="tel"],
  .woocommerce input[type="url"],
  .woocommerce input[type="number"],
  .woocommerce select,
  .woocommerce textarea,
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  input[type="url"],
  input[type="number"],
  select,
  textarea {
    padding: 10px 12px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .woocommerce .button,
  .woocommerce button,
  .button,
  button[type="submit"],
  input[type="submit"] {
    /*width: 100%;
    padding: 15px 20px;*/
  }

  .product-full-width-sections .woocommerce-tabs.wc-tabs-wrapper {
    background-color: #ededed;
    padding-top: 20px;
  }

  .product-full-width-sections .woocommerce-tabs.wc-tabs-wrapper .tabs.wc-tabs {
    margin-bottom: 15px;
  }

  .product-full-width-sections
    .woocommerce-tabs.wc-tabs-wrapper
    .tabs.wc-tabs
    li {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .product-full-width-sections
    .woocommerce-tabs.wc-tabs-wrapper
    .tabs.wc-tabs
    li
    a {
    color: #e91e63 !important;
    text-align: center;
  }
}
/* ==========================================================================
   GLOBAL LINK STYLES
   ========================================================================== */

/* Default Link Colors - Override Browser Defaults */
a {
  color: var(--primary-pink);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #d81b60;
  text-decoration: underline;
}

a:visited {
  color: var(--primary-pink);
}

a:active {
  color: #ad1457;
}

/* Content Links (in posts, pages, descriptions) */
.entry-content a,
.page-content a,
.comment-content a,
.widget-content a,
.woocommerce-product-details__short-description a,
.woocommerce-Tabs-panel a,
.category-description a,
.tag-description a {
  color: var(--primary-pink);
  text-decoration: underline;
  text-decoration-color: rgba(233, 30, 99, 0.3);
  text-underline-offset: 2px;
}

.entry-content a:hover,
.page-content a:hover,
.comment-content a:hover,
.widget-content a:hover,
.woocommerce-product-details__short-description a:hover,
.woocommerce-Tabs-panel a:hover,
.category-description a:hover,
.tag-description a:hover {
  color: #d81b60;
  text-decoration-color: #d81b60;
}

/* Footer Links */
.main-footer a {
  color: #ccc;
  transition: color 0.3s ease;
}

.main-footer a:hover {
  color: var(--primary-pink);
}

/* Navigation Links - Keep Original Styling */
.main-navigation a,
.top-header a,
.mobile-menu a {
  color: inherit; /* Keep original navigation colors */
}

/* Breadcrumb Links - Already styled above */
.woocommerce-breadcrumb a,
.breadcrumb a {
  color: var(--text-light); /* Keep breadcrumb styling */
}

/* Button Links - Keep Button Styling */
.button,
.btn,
.add-to-cart-btn,
.woocommerce .button,
input[type="submit"],
button {
  /*color: white !important; */
}

/* Exceptions for Cart Quantity and Remove Buttons */
.quantity .plus,
.quantity .minus,
.qty-btn,
button.plus,
button.minus,
.remove,
.remove_from_cart_button,
a.remove,
a.remove_from_cart_button {
  /*color: white !important; */
}

/* View Product Button - Exception for transparent background */
.view-product-btn {
  color: var(--primary-pink) !important;
}

.view-product-btn:hover {
  color: white !important;
}

.search-results .view-product-btn:hover {
  color: #e91e63 !important;
}

/* Pagination Links - Keep Pagination Styling */
.woocommerce-pagination a,
.pagination a {
  color: var(--text-dark); /* Keep pagination styling */
}

/* Product Title Links */
.product-name a,
.product-title a,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--text-dark);
  text-decoration: none;
}

.product-name a:hover,
.product-title a:hover,
.woocommerce ul.products li.product .woocommerce-loop-product__title:hover {
  color: var(--primary-pink);
}

/* Social Links - Keep Original Colors */
.social-links a {
  color: var(--text-light); /* Keep social links styling */
}

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

/* Skip Links and Accessibility */
.skip-link {
  color: var(--primary-pink);
}

/* Form Links */
.woocommerce-form-login a,
.woocommerce-form-register a,
.lost_password a {
  color: var(--primary-pink);
  font-size: 14px;
}

.woocommerce-form-login a:hover,
.woocommerce-form-register a:hover,
.lost_password a:hover {
  color: #d81b60;
  text-decoration: underline;
}

/* Widget Links */
.widget a {
  color: var(--primary-pink);
}

.widget a:hover {
  color: #d81b60;
}

/* Comment Links */
.comment-author a,
.comment-reply-link {
  color: var(--primary-pink);
}

.comment-author a:hover,
.comment-reply-link:hover {
  color: #d81b60;
}

/* Archive and Category Links */
.archive-link,
.category-link,
.tag-link {
  color: var(--primary-pink);
}

.archive-link:hover,
.category-link:hover,
.tag-link:hover {
  color: #d81b60;
}

/* Search Results Links */
.search-results .entry-title a {
  color: var(--text-dark);
}

.search-results .entry-title a:hover {
  color: var(--primary-pink);
}

/* WooCommerce Account Links */
.woocommerce-MyAccount-content a:not(.button) {
  color: var(--primary-pink);
}

.woocommerce-MyAccount-content a:not(.button):hover {
  color: #d81b60;
}

/* Order Details Links */
.woocommerce-order-details a,
.woocommerce-customer-details a {
  color: var(--primary-pink);
}

.woocommerce-order-details a:hover,
.woocommerce-customer-details a:hover {
  color: #d81b60;
}
/* ==========================================================================
   LINKS ON DARK/COLORED BACKGROUNDS - WHITE TEXT
   ========================================================================== */

/* Links on Pink/Dark Backgrounds - Force White */
.woocommerce .woocommerce-MyAccount-navigation .is-active a,
.woocommerce .woocommerce-MyAccount-navigation a:hover,
.woocommerce.my-account-page .woocommerce-MyAccount-navigation a:hover,
.woocommerce.my-account-page .woocommerce-MyAccount-navigation .is-active a,
.my-account-page .woocommerce-MyAccount-navigation a:hover,
.my-account-page .woocommerce-MyAccount-navigation .is-active a {
  color: white !important;
}

/* Mobile Menu Links */
.mobile-menu a,
.mobile-menu-overlay a {
  color: white !important;
}

.mobile-menu a:hover {
  color: #f0f0f0 !important;
}

/* Dark Footer Links */
.main-footer a {
  color: #ccc !important;
}

.main-footer a:hover {
  color: white !important;
}

/* Removed featured-card link styles */

/* Hero Section Links */
.hero-content a {
  color: white !important;
}

/* Dark Buttons and Button-like Elements */
.button.alt a,
.btn-dark a,
.dark-background a {
  color: white !important;
}

/* WooCommerce Dark Elements */
.woocommerce .button.alt,
.woocommerce .button.alt a {
  color: white !important;
}

/* Any element with dark background class */
.bg-dark a,
.bg-primary a,
.bg-secondary a,
.background-dark a {
  color: white !important;
}

.bg-dark a:hover,
.bg-primary a:hover,
.bg-secondary a:hover,
.background-dark a:hover {
  color: #f0f0f0 !important;
}

/* Top Header Dark Background */
.top-header.dark a,
.header-dark a {
  color: #ccc !important;
}

.top-header.dark a:hover,
.header-dark a:hover {
  color: white !important;
}

/* Sidebar Widgets with Dark Background */
.widget.dark a,
.sidebar-dark a {
  color: white !important;
}

.widget.dark a:hover,
.sidebar-dark a:hover {
  color: #f0f0f0 !important;
}

/* Product Cards on Dark Background */
.product-card.dark a,
.dark-product-card a {
  color: white !important;
}

/* Navigation with Dark Background */
.main-navigation.dark a,
.nav-dark a {
  color: white !important;
}

.main-navigation.dark a:hover,
.nav-dark a:hover {
  color: #f0f0f0 !important;
}

/* Overlay Elements */
.overlay a,
.modal-dark a,
.popup-dark a {
  color: white !important;
}

.overlay a:hover,
.modal-dark a:hover,
.popup-dark a:hover {
  color: #f0f0f0 !important;
}

/* Specific WooCommerce Elements */
.woocommerce-message.dark a,
.woocommerce-info.dark a,
.woocommerce-error.dark a {
  color: white !important;
}

/* Any Custom Dark Sections */
.section-dark a,
.dark-section a,
.black-background a,
.primary-background a {
  color: white !important;
}

.section-dark a:hover,
.dark-section a:hover,
.black-background a:hover,
.primary-background a:hover {
  color: #f0f0f0 !important;
}

/* Ensure High Contrast on Colored Backgrounds */
[style*="background-color: #"] a,
[style*="background: #"] a {
  color: white !important;
}

/* Specific Color Backgrounds */
.bg-pink a,
.bg-rose a,
.bg-primary-pink a {
  color: white !important;
}

.bg-pink a:hover,
.bg-rose a:hover,
.bg-primary-pink a:hover {
  color: #f0f0f0 !important;
} /* Feature
d Products - 4 Products Layout */
@media (min-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .featured-card {
    height: 180px;
  }
}

@media (max-width: 1023px) and (min-width: 769px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .featured-card {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .featured-card {
    height: 200px;
  }
} /* Featur
ed Products - 4 Columns Layout Override */
@media (min-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px;
  }
}

@media (max-width: 1023px) and (min-width: 769px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .featured-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  .featured-card {
    height: 200px;
  }
}
@m edia (max-width: 480px) {
  .featured-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  .featured-card .product-image {
    height: 200px;
  }
}
/* Category Button - Override Visited Link Color */
.category-button:visited {
  color: white !important;
}

.category-button:visited:hover {
  color: var(--primary-pink) !important;
}

.category-button.disabled:visited {
  color: #999 !important;
}

.category-button.disabled:visited:hover {
  color: #999 !important;
}
/* WooCommerce Price Styling - Override Default Green */
.woocommerce-Price-amount.amount,
.woocommerce .woocommerce-Price-amount.amount,
.price .woocommerce-Price-amount.amount,
.product-price .woocommerce-Price-amount.amount {
  color: var(--primary-pink) !important;
  font-weight: 700;
}

/* Price Currency Symbol */
.woocommerce-Price-currencySymbol {
  color: var(--primary-pink) !important;
  font-weight: 700;
}

/* Sale Price Styling */
.woocommerce .price del .woocommerce-Price-amount.amount,
.price del .woocommerce-Price-amount.amount {
  color: #999 !important;
  text-decoration: line-through;
  font-weight: 400;
}

.woocommerce .price ins .woocommerce-Price-amount.amount,
.price ins .woocommerce-Price-amount.amount {
  color: var(--primary-pink) !important;
  font-weight: 700;
  text-decoration: none;
}

/* Price Range (Variable Products) */
.woocommerce .price .from,
.price .from {
  color: var(--text-light);
  font-size: 0.9em;
}

/* Cart and Checkout Prices */
.woocommerce-cart .woocommerce-Price-amount.amount,
.woocommerce-checkout .woocommerce-Price-amount.amount,
.cart_totals .woocommerce-Price-amount.amount,
.order-total .woocommerce-Price-amount.amount {
  color: var(--primary-pink) !important;
  font-weight: 700;
}

/* Order Details Prices */
.woocommerce-order-details .woocommerce-Price-amount.amount,
.woocommerce-table .woocommerce-Price-amount.amount {
  color: var(--primary-pink) !important;
}

/* Widget Prices */
.widget .woocommerce-Price-amount.amount,
.sidebar .woocommerce-Price-amount.amount {
  color: var(--primary-pink) !important;
}

/* Mini Cart Prices */
.woocommerce-mini-cart .woocommerce-Price-amount.amount {
  color: var(--primary-pink) !important;
  font-weight: 600;
}

/* Price Variations */
.woocommerce .variations .price .woocommerce-Price-amount.amount {
  color: var(--primary-pink) !important;
  font-size: 1.1em;
  font-weight: 700;
}

/* Free Price */
.woocommerce .price .amount:contains("0"),
.price .amount[data-price="0"] {
  color: #28a745 !important;
}

/* Price on Dark Backgrounds */
.bg-dark .woocommerce-Price-amount.amount,
.dark-background .woocommerce-Price-amount.amount {
  color: white !important;
}

/* Responsive Price Styling */
@media (max-width: 768px) {
  .woocommerce-Price-amount.amount {
    font-size: 16px;
  }

  .product-price .woocommerce-Price-amount.amount {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .woocommerce-Price-amount.amount {
    font-size: 15px;
  }

  .product-price .woocommerce-Price-amount.amount {
    font-size: 16px;
  }
}
/* Mini Cart / Cart Dropdown Fixes */
.woocommerce-mini-cart {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  max-width: 350px;
}

/* Mini Cart Items */
.woocommerce-mini-cart-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.woocommerce-mini-cart-item:last-child {
  border-bottom: none;
}

/* Mini Cart Product Image */
.woocommerce-mini-cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 15px;
}

/* Mini Cart Product Info */
.woocommerce-mini-cart-item .product-name {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
}

.woocommerce-mini-cart-item .product-name a {
  color: var(--text-dark) !important;
  text-decoration: none;
}

.woocommerce-mini-cart-item .product-name a:hover {
  color: var(--primary-pink) !important;
}

/* Quantity Controls */
.woocommerce-mini-cart-item .quantity {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 5px 0;
}

.woocommerce-mini-cart-item .quantity input[type="number"] {
  width: 50px !important;
  height: 30px !important;
  padding: 5px !important;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 12px;
}

/* Quantity Buttons (+ and -) - Force Pink Color */
.woocommerce-mini-cart-item .quantity .qty-btn,
.woocommerce-mini-cart-item .quantity button,
.woocommerce .quantity .plus,
.woocommerce .quantity .minus,
.quantity .plus,
.quantity .minus,
button.plus,
button.minus,
.qty-btn {
  width: 25px !important;
  height: 25px !important;
  background-color: var(--primary-pink) !important;
  background: var(--primary-pink) !important;
  color: white !important;
  border: none !important;
  border-radius: 3px !important;
  font-size: 14px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.3s ease !important;
  box-shadow: none !important;
}

.woocommerce .quantity .plus:hover,
.woocommerce .quantity .minus:hover,
.quantity .plus:hover,
.quantity .minus:hover,
button.plus:hover,
button.minus:hover {
  background-color: #d81b60 !important;
  background: #d81b60 !important;
}

/* Remove Item Button - Force Pink Color */
.woocommerce-mini-cart-item .remove,
.woocommerce-mini-cart-item .remove_from_cart_button,
.woocommerce .remove,
.woocommerce .remove_from_cart_button,
a.remove,
a.remove_from_cart_button {
  width: 20px !important;
  height: 20px !important;
  background-color: var(--primary-pink) !important;
  background: var(--primary-pink) !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  font-size: 12px !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: 10px !important;
  transition: background 0.3s ease !important;
  box-shadow: none !important;
}

.woocommerce-mini-cart-item .remove:hover,
.woocommerce-mini-cart-item .remove_from_cart_button:hover,
.woocommerce .remove:hover,
.woocommerce .remove_from_cart_button:hover,
a.remove:hover,
a.remove_from_cart_button:hover {
  background-color: #d81b60 !important;
  background: #d81b60 !important;
  transform: scale(1.1) !important;
}

.woocommerce-mini-cart-item .remove:before,
.woocommerce-mini-cart-item .remove_from_cart_button:before {
  content: "×" !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

/* Mini Cart Totals */
.woocommerce-mini-cart__total {
  padding: 15px 0;
  border-top: 2px solid var(--primary-pink);
  margin-top: 15px;
  text-align: center;
}

.woocommerce-mini-cart__total strong {
  font-size: 16px;
  color: var(--text-dark);
}

/* Mini Cart Buttons */
.woocommerce-mini-cart__buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.woocommerce-mini-cart__buttons .button {
  flex: 1;
  padding: 10px 15px !important;
  font-size: 13px !important;
  text-align: center;
  border-radius: 5px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.woocommerce-mini-cart__buttons .checkout {
  background: var(--primary-pink) !important;
  color: white !important;
  border: 1px solid var(--primary-pink) !important;
}

.woocommerce-mini-cart__buttons .checkout:hover {
  background: #d81b60 !important;
  border-color: #d81b60 !important;
}

.woocommerce-mini-cart__buttons .wc-forward {
  background: transparent !important;
  color: var(--primary-pink) !important;
  border: 1px solid var(--primary-pink) !important;
}

.woocommerce-mini-cart__buttons .wc-forward:hover {
  background: var(--primary-pink) !important;
  color: white !important;
}

/* Empty Cart Message */
.woocommerce-mini-cart__empty-message {
  text-align: center;
  padding: 30px 20px;
  color: var(--text-light);
  font-style: italic;
}

/* Cart Dropdown Arrow */
.cart-dropdown:before {
  content: "";
  position: absolute;
  top: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

/* Mobile Mini Cart */
@media (max-width: 768px) {
  .woocommerce-mini-cart {
    max-width: 300px;
    padding: 15px;
  }

  .woocommerce-mini-cart-item img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }

  .woocommerce-mini-cart-item .product-name {
    font-size: 13px;
  }

  .woocommerce-mini-cart__buttons {
    flex-direction: column;
  }

  .woocommerce-mini-cart__buttons .button {
    margin-bottom: 5px;
  }
} /* Fo
rce Pink Colors - Override Any Other Styles */
.woocommerce-mini-cart .quantity button,
.woocommerce-mini-cart .qty-btn,
.mini-cart .quantity button,
.cart-dropdown .quantity button,
.widget_shopping_cart .quantity button {
  background-color: var(--primary-pink) !important;
  background: var(--primary-pink) !important;
  color: white !important;
}

.woocommerce-mini-cart .remove,
.woocommerce-mini-cart .remove_from_cart_button,
.mini-cart .remove,
.cart-dropdown .remove,
.widget_shopping_cart .remove {
  background-color: var(--primary-pink) !important;
  background: var(--primary-pink) !important;
  color: white !important;
}

/* Additional Specificity for Stubborn Styles */
body .woocommerce-mini-cart-item .quantity button,
body .woocommerce-mini-cart-item .qty-btn {
  background-color: var(--primary-pink) !important;
}

body .woocommerce-mini-cart-item .remove,
body .woocommerce-mini-cart-item .remove_from_cart_button {
  background-color: var(--primary-pink) !important;
}

/* Cart Page Quantity Buttons */
.woocommerce-cart .quantity .plus,
.woocommerce-cart .quantity .minus,
.cart-page .quantity button {
  background-color: var(--primary-pink) !important;
  background: var(--primary-pink) !important;
  color: white !important;
  border: none !important;
}

/* Cart Page Remove Buttons */
.woocommerce-cart .remove,
.cart-page .remove {
  background-color: var(--primary-pink) !important;
  background: var(--primary-pink) !important;
  color: white !important;
} /*
 Override General Button Styles for Cart Buttons - Higher Specificity */
.woocommerce .quantity button.plus,
.woocommerce .quantity button.minus,
.woocommerce button.plus,
.woocommerce button.minus,
.woocommerce .qty-btn,
.woocommerce a.remove,
.woocommerce a.remove_from_cart_button {
  background-color: var(--primary-pink) !important;
  background: var(--primary-pink) !important;
  color: white !important;
  border: none !important;
}

.woocommerce .quantity button.plus:hover,
.woocommerce .quantity button.minus:hover,
.woocommerce button.plus:hover,
.woocommerce button.minus:hover,
.woocommerce .qty-btn:hover,
.woocommerce a.remove:hover,
.woocommerce a.remove_from_cart_button:hover {
  background-color: #d81b60 !important;
  background: #d81b60 !important;
  color: white !important;
}

/* Even Higher Specificity */
body.woocommerce .quantity button,
body.woocommerce .qty-btn,
body.woocommerce a.remove,
body.woocommerce-page .quantity button,
body.woocommerce-page .qty-btn,
body.woocommerce-page a.remove {
  background-color: var(--primary-pink) !important;
  background: var(--primary-pink) !important;
  color: white !important;
  border: none !important;
  box-shadow: none !important;
}

/* Maximum Specificity for Stubborn Cases */
html body .woocommerce .quantity button,
html body .woocommerce .qty-btn,
html body .woocommerce a.remove,
html body .woocommerce-mini-cart .quantity button,
html body .woocommerce-mini-cart a.remove {
  background-color: var(--primary-pink) !important;
  background: var(--primary-pink) !important;
  color: white !important;
}
/* Force Navigation Colors - Override WooCommerce Link Rules */
.main-navigation > ul > li > a,
.main-navigation ul li a,
.navigation-menu a,
.menu a {
  color: var(--text-dark) !important;
}

.main-navigation > ul > li > a:hover,
.main-navigation ul li a:hover,
.navigation-menu a:hover,
.menu a:hover {
  color: var(--primary-pink) !important;
}

/* Force Cart Button Colors - Override Link Rules */
.woocommerce .quantity .plus,
.woocommerce .quantity .minus,
.woocommerce .qty-btn,
.woocommerce .remove,
.woocommerce .remove_from_cart_button {
  color: white !important;
  background-color: var(--primary-pink) !important;
  text-decoration: none !important;
}

/* Ensure Cart Buttons Don't Get Link Styling */
.quantity button,
.qty-btn,
a.remove,
a.remove_from_cart_button,
button.plus,
button.minus {
  color: white !important;
  background-color: var(--primary-pink) !important;
  text-decoration: none !important;
}

/* Additional Specificity for Navigation */
body .main-navigation a,
body .navigation-menu a,
body .menu a {
  color: var(--text-dark) !important;
}

body .main-navigation a:hover,
body .navigation-menu a:hover,
body .menu a:hover {
  color: var(--primary-pink) !important;
}
/*  Fix  Sale  Badge  Position  -  Front  Page  Products  */
.products-section .sale-badge,
.featured-section .sale-badge,
.front-page .sale-badge {
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  right: auto !important;
  background: var(--primary-pink) !important;
  color: white !important;
  padding: 5px 10px !important;
  border-radius: 15px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  z-index: 2 !important;
  width: auto !important;
  display: inline-block !important;
}
/* Force Product Name Colors - Override WooCommerce Link Rules */
.woocommerce-products-wrapper .product-name a,
.products-section .product-name a,
.featured-section .product-name a,
.product-card .product-name a,
.woocommerce .product-name a {
  color: var(--text-dark) !important;
  text-decoration: none !important;
  transition: color 0.3s !important;
}

.woocommerce-products-wrapper .product-name a:hover,
.products-section .product-name a:hover,
.featured-section .product-name a:hover,
.product-card .product-name a:hover,
.woocommerce .product-name a:hover {
  color: var(--primary-pink) !important;
}

/* Additional Specificity for Product Names */
body .woocommerce .product-name a,
body .product-card .product-name a {
  color: var(--text-dark) !important;
}

body .woocommerce .product-name a:hover,
body .product-card .product-name a:hover {
  color: var(--primary-pink) !important;
}
/* Force Hide Nav Toggle on Desktop */
@media (min-width: 769px) {
  .nav-toggle {
    display: none !important;
  }
}

/* Ensure Nav Toggle Only Shows on Mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
  }
}
/* Ensure Checkout Buttons Are Visible */
.woocommerce-checkout .wc-forward,
.checkout-page .wc-forward,
.woocommerce-cart .wc-forward,
.cart-page .wc-forward,
.woocommerce-mini-cart__buttons .wc-forward {
  display: inline-block !important;
}

/* Specific Checkout Button Styling */
.woocommerce-checkout .wc-forward,
.checkout-page .wc-forward {
  background: var(--primary-pink) !important;
  color: white !important;
  padding: 12px 24px !important;
  border-radius: 5px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: background 0.3s ease !important;
}

.woocommerce-checkout .wc-forward:hover,
.checkout-page .wc-forward:hover {
  background: #d81b60 !important;
}
/* Google Fonts - Alegreya para títulos */
.category-title,
.section-title,
.woocommerce-products-header__title,
.page-title {
  font-family: "Alegreya", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Estilos específicos para títulos de categorías */
.category-title {
  font-size: 2.3rem;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-align: center;
}

/* Estilos específicos para títulos de secciones */
.section-title {
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

/* Estilos específicos para títulos de WooCommerce */
.woocommerce-products-header__title {
  font-size: 2rem;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: center;
}

/* Estilos específicos para títulos de páginas */
.page-title {
  font-size: 2rem;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: center;
}

/* Decoración opcional para section-title */
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-pink);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .category-title {
    font-size: 1.3rem;
  }

  .section-title,
  .woocommerce-products-header__title,
  .page-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .category-title {
    font-size: 1.2rem;
  }

  .section-title,
  .woocommerce-products-header__title,
  .page-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
}
