/* Header styles - Versión Responsive Corregida */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    z-index: 1030;
  }
  
  /* Logo circular */
  .site-header .logo {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    flex-shrink: 0; /* Evita que el logo se encoja */
  }
  
  /* Container principal del header */
  .site-header .container > .d-flex {
    min-height: 90px; /* Altura mínima consistente para logo más grande */
  }
  
  /* Search */
  .site-header .search-form {
    flex: 1;
    max-width: 720px;
  }
  
  .site-header .search-form .input-group {
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: none;
    width: 100%;
  }
  
  .site-header .search-form .form-control {
    border: none;
    padding: 12px 18px;
    font-size: 0.95rem;
    flex: 1;
  }
  
  .site-header .search-form .form-control:focus {
    box-shadow: none;
    outline: none;
  }
  
  .site-header .search-form .btn {
    border-radius: 0;
    padding: 10px 18px;
    border: none;
  }
  
  /* Login button */
  .btn-login {
    border: 2px solid #ff3b8a;
    color: #ff3b8a;
    background: transparent;
    padding: 6px 12px;
    border-radius: 24px;
    font-weight: 600;
    white-space: nowrap;
  }
  
  .btn-login:hover {
    background: #ff3b8a;
    color: #fff;
    text-decoration: none;
  }
  
  /* Cart button */
  .cart-btn {
    background: #fff;
    border: 1px solid #e9e9e9;
    padding: 8px 10px;
    border-radius: 8px;
    color: #333;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px; /* Tamaño táctil mínimo */
    min-height: 44px;
  }
  
  /* Controles del lado derecho */
  .site-header .d-flex.align-items-center.ms-3 {
    flex-shrink: 0;
    gap: 8px;
  }
  
  /* Main nav (segunda fila) */
  .site-header .navbar-nav {
    gap: 18px;
  }
  
  .site-header .nav-link {
    color: #222;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.6rem 0.75rem;
    white-space: nowrap;
  }
  
  .site-header .nav-link:hover,
  .site-header .nav-link:focus {
    color: #ff3b8a;
    text-decoration: none;
  }
  
  /* Dropdown items */
  .site-header .dropdown-menu .dropdown-item {
    font-size: 0.95rem;
  }
  
  /* Navbar toggler personalizado */
  .navbar-toggler {
    border: none;
    padding: 4px 8px;
    background: transparent;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
  }
  
  /* Social icons container */
  .site-header .ms-auto.d-flex.align-items-center {
    gap: 8px;
  }
  
  .site-header .ms-auto.d-flex.align-items-center img {
    transition: transform 0.2s ease;
  }
  
  .site-header .ms-auto.d-flex.align-items-center img:hover {
    transform: scale(1.1);
  }
