.listado-resultados .producto .box-detalle-producto {
    min-height: 100px !important;
}

/* Premium Styling Overrides */
body {
    background-color: #ffffff !important;
    color: #111111;
    font-family: 'Inter', sans-serif;
}

/* Subtle, elegant shadows for product cards */
.listado-resultados .producto {
    background: #ffffff !important;
    border: 1px solid #eeeeee !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.listado-resultados .producto:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #d9d9d9 !important;
}

/* Header updates for a cleaner look */
header .bg-header {
    background: #000000 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .header-middle {
    background: #000000 !important;
}

/* Search bar styling */
header .bg-header .buscador-header {
    border: 1px solid #d9d9d9 !important;
    border-radius: 0;
    background: #ffffff !important;
    padding: 0 !important;
}

header .bg-header .buscador-header input {
    background: transparent !important;
    color: #111111 !important;
    padding-right: 50px !important; /* Space for the button */
}

header .bg-header .buscador-header input::placeholder {
    color: #888888 !important;
}

header .bg-header .buscador-header button[type="submit"] {
    background: #ed3237 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    height: 100% !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    border: none !important;
    opacity: 1 !important;
    width: 45px !important; /* Ensure fixed width for consistency */
}

header .bg-header .buscador-header button[type="submit"] .icon {
    color: #ffffff !important;
}

header .bg-header .buscador-header button[type="submit"]:hover {
    background: #cc252a !important;
}

/* Primary Button Styling */
.btn-primario {
    background: #ed3237 !important;
    color: #ffffff !important;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(237, 50, 55, 0.3);
}

.btn-primario:hover {
    background: #cc252a !important;
    box-shadow: 0 6px 15px rgba(237, 50, 55, 0.4);
    transform: translateY(-1px);
}

/* Black Button Styling */
.btn-negro {
    background: #000000 !important;
    border-radius: 6px;
    transition: all 0.3s ease !important;
}

.btn-negro:hover {
    background: #222222 !important;
    transform: translateY(-1px);
}

/* Input & Select Forms */
input.normal-input, textarea.normal-input, select.normal-input,
.form-control, select {
    border: 1px solid #d9d9d9 !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    color: #111111 !important;
}

input:focus, textarea:focus, select:focus, .form-control:focus {
    border-color: #ed3237 !important;
    box-shadow: 0 0 0 3px rgba(237, 50, 55, 0.1) !important;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: #000000;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Price highlighting */
.precio {
    color: #ed3237;
    font-weight: 800;
}

/* Footer / dark areas */
footer {
    background: #000000;
    color: #ffffff;
}