:root {
    --bt-bg-light: #f8fafc;
    --bt-text-dark: #1b4332;
    --bt-blue-main: #0077b6;
    --bt-green-soft: #ffffff;
    --bt-green-bright: #52b788;
    --bt-white: #ffffff;
}

.bt-shop-body {
    background-color: var(--bt-bg-light);
    color: var(--bt-text-dark);
    margin: 0;
    padding: 0;
  font-family: 'Segoe UI', sans-serif;
   padding-top: 100px;
}


/* --- Hero Section --- */
.bt-shop-hero {
    text-align: center;
    padding: 4rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
/* 1. Blindaje del Título: Forzamos color y fuente */
.bt-shop-hero h1.bt-shop-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: var(--bt-text-dark) !important;
    font-size: clamp(2.5rem, 6vw, 3.5rem) !important;
    text-align: center !important;
    display: block !important; /* Evita que se comporte como flex-item si el padre es flex */
    margin: 0 auto 1rem !important;
    line-height: 1.1 !important;
    letter-spacing: -1px !important;
}

.bt-shop-hero h1.bt-shop-hero-title span {
    color: var(--bt-blue-main) !important;
    display: inline !important;
}

/* 2. Blindaje de las Acciones: Forzamos que se mantengan en FILA (row) */
.bt-shop-hero .bt-shop-hero-actions {
    display: flex !important;
    flex-direction: row !important; /* <--- Esto evita que se pongan en columna */
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important; /* Para que en móviles sí puedan bajar si no caben */
    margin-top: 2rem !important;
}

/* 3. Ajuste de los botones para que no hereden anchos extraños */
.bt-shop-action-link {
    display: inline-block !important;
    width: auto !important; 
    min-width: 180px;
}
.bt-shop-hero-desc {
    font-size: 1.1rem;
    color: var(--bt-green-bright);
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.bt-shop-hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
}

.bt-shop-action-link {
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
    border: 2px solid transparent;
}

.bt-shop-experience {
    background: var(--bt-green-soft);
    color: var(--bt-text-dark);
    border: 1px solid #e2e8f0;
}

.bt-shop-ownership {
    background: var(--bt-blue-main);
    color: white;
}

.bt-shop-action-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

/* --- Grid de Merch --- */
.bt-shop-merch-container {
    max-width: 1100px;
    margin: 0 auto 5rem;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.bt-shop-card {
    background: var(--bt-white);
    border-radius: 24px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.bt-shop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.bt-shop-img-wrapper {
    background-color: #f1f5f9;
    /* Color neutro para el fondo de imagen */
    border-radius: 20px;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bt-shop-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: 0.5s;
}

.bt-shop-card-info {
    padding: 20px 10px;
}

.bt-shop-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--bt-blue-main);
    margin-bottom: 8px;
    display: block;
}

.bt-shop-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--bt-text-dark);
}

.bt-shop-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bt-shop-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--bt-text-dark);
}

.bt-shop-add-btn {
    background: var(--bt-blue-main);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.bt-shop-add-btn:hover {
    background: var(--bt-text-dark);
}