/* === BLACK HORSE PRODUCT - GREEN & GREY THEME === */
.black-horse-aura {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #2a2a2a;
    line-height: 1.7;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    position: relative;
    overflow: hidden;
}

/* Soft green motion background */
.black-horse-aura::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 15% 25%, rgba(139, 195, 74, 0.08) 0, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(76, 175, 80, 0.06) 0, transparent 55%);
    opacity: 0.9;
    z-index: -1;
    animation: bh-orbit 26s linear infinite alternate;
}

@keyframes bh-orbit {
    0% { transform: translate3d(-10px, 0, 0) scale(1); }
    100% { transform: translate3d(10px, -10px, 0) scale(1.03); }
}

/* Glass cards with soft green tint */
.black-horse-aura .bh-glass-block {
    background: linear-gradient(135deg, rgba(248, 252, 245, 0.95) 0%, rgba(245, 250, 242, 0.92) 100%);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    border-radius: 22px;
    border: 2px solid rgba(139, 195, 74, 0.25);
    box-shadow: 
        0 18px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    padding: 35px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.black-horse-aura .bh-glass-block::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.12) 0, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.black-horse-aura .bh-glass-block:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 24px 60px rgba(0, 0, 0, 0.12),
        0 0 0 2px rgba(139, 195, 74, 0.35) inset;
}

.black-horse-aura .bh-glass-block:hover::after {
    opacity: 1;
    transform: translate3d(20px, 10px, 0);
}

/* Hero heading - Dark grey/black */
.black-horse-aura .bh-hero-heading {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #1a1a1a;
    text-shadow: 1px 1px 2px rgba(139, 195, 74, 0.15);
}

.black-horse-aura .bh-hero-sub {
    font-size: 1.05rem;
    font-weight: 400;
    color: #4a4a4a;
}

/* Product Meta Section - Green accent */
.black-horse-aura .bh-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    padding: 22px 24px;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.08) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-radius: 16px;
    border-left: 4px solid #689f38;
    box-shadow: 0 6px 20px rgba(139, 195, 74, 0.12);
}

.black-horse-aura .bh-meta-item {
    display: flex;
    gap: 8px;
    font-size: 1rem;
}

.black-horse-aura .bh-meta-label {
    font-weight: 700;
    color: #2e2e2e;
}

.black-horse-aura .bh-meta-value {
    font-weight: 500;
    color: #555;
}

/* Disclaimer text */
.black-horse-aura .bh-disclaimer {
    font-size: 0.85rem;
    font-style: italic;
    color: #5a5a5a;
    margin: 15px 0 20px;
    padding: 14px 18px;
    background: rgba(139, 195, 74, 0.05);
    border-radius: 10px;
    border-left: 3px solid rgba(139, 195, 74, 0.3);
}

/* Section titles - Green accent */
.black-horse-aura .bh-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    color: #558b2f;
}

/* Accent line - green gradient */
.black-horse-aura .bh-accent-line {
    width: 80px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #689f38, #8bc34a, rgba(139, 195, 74, 0));
    margin: 18px 0 20px;
    box-shadow: 0 2px 8px rgba(139, 195, 74, 0.25);
}

/* Two-column layout */
.black-horse-aura .bh-flex {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 30px;
    margin-top: 14px;
}

/* Pill labels - Green with minimal #08ACEC accent */
.black-horse-aura .bh-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.black-horse-aura .bh-pill {
    font-size: 0.77rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.12), rgba(76, 175, 80, 0.08));
    border: 1.5px solid rgba(139, 195, 74, 0.35);
    font-weight: 600;
    color: #33691e;
    transition: all 0.3s ease;
}

.black-horse-aura .bh-pill:hover {
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.22), rgba(76, 175, 80, 0.15));
    border-color: #689f38;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 195, 74, 0.2);
}

.black-horse-aura .bh-pill--accent {
    background: linear-gradient(135deg, rgba(8,172,236,0.12), rgba(6,102,204,0.08));
    border-color: rgba(8,172,236,0.4);
    color: #055c7b;
}

.black-horse-aura .bh-pill--accent:hover {
    background: linear-gradient(135deg, rgba(8,172,236,0.2), rgba(6,102,204,0.15));
    border-color: #08ACEC;
}

/* Feature rows */
.black-horse-aura .bh-feature-row {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 16px;
    margin-top: 14px;
}

.black-horse-aura .bh-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(145deg, #424242, #2a2a2a);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8f5e9;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.black-horse-aura .bh-feature-item:hover .bh-feature-icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.black-horse-aura .bh-feature-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #2e2e2e;
}

.black-horse-aura .bh-feature-text {
    font-size: 0.94rem;
    color: #555;
}

/* Symbolism bullets - Green dots */
.black-horse-aura .bh-symbolism-list {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}

.black-horse-aura .bh-symbolism-item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 0.98rem;
    color: #333;
    line-height: 1.6;
}

.black-horse-aura .bh-symbolism-item::before {
    content: "●";
    position: absolute;
    left: 8px;
    top: 2px;
    font-size: 0.9rem;
    color: #689f38;
}

/* Specs strip - light green background */
.black-horse-aura .bh-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 12px;
}

.black-horse-aura .bh-spec-item {
    padding: 14px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(248, 252, 245, 0.9), rgba(245, 250, 242, 0.85));
    border: 1.5px solid rgba(139, 195, 74, 0.25);
    transition: all 0.3s ease;
}

.black-horse-aura .bh-spec-item:hover {
    border-color: #689f38;
    box-shadow: 0 6px 18px rgba(139, 195, 74, 0.15);
    transform: translateY(-3px);
}

.black-horse-aura .bh-spec-label {
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #558b2f;
}

.black-horse-aura .bh-spec-value {
    font-weight: 500;
    color: #444;
}

/* Tag line */
.black-horse-aura .bh-tagline {
    margin-top: 10px;
    font-size: 0.94rem;
    color: #4a4a4a;
    font-style: italic;
}

/* Final highlight - green banner */
.black-horse-aura .bh-highlight {
    text-align: center;
    padding: 32px 20px 10px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2e2e2e;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.12), rgba(76, 175, 80, 0.08));
    border-radius: 18px;
    border: 2px solid rgba(139, 195, 74, 0.3);
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.12);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets (landscape) and smaller desktops */
@media (max-width: 1024px) {
    .black-horse-aura {
        padding: 35px 18px 50px;
    }
    
    .black-horse-aura .bh-hero-heading {
        font-size: 2.1rem;
    }
    
    .black-horse-aura .bh-glass-block {
        padding: 28px;
    }
}

/* Tablets (portrait) */
@media (max-width: 900px) {
    .black-horse-aura .bh-flex {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }
    
    .black-horse-aura .bh-product-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .black-horse-aura .bh-hero-heading {
        font-size: 2rem;
    }
}

/* Mobile devices */
@media (max-width: 600px) {
    .black-horse-aura {
        padding: 25px 12px 40px;
    }
    
    .black-horse-aura .bh-hero-heading {
        font-size: 1.8rem;
        letter-spacing: 0.02em;
    }
    
    .black-horse-aura .bh-hero-sub {
        font-size: 0.98rem;
    }
    
    .black-horse-aura .bh-glass-block {
        padding: 22px 18px;
        border-radius: 18px;
    }
    
    .black-horse-aura .bh-specs {
        grid-template-columns: 1fr;
    }
    
    .black-horse-aura .bh-feature-row {
        grid-template-columns: 35px minmax(0, 1fr);
        column-gap: 12px;
    }
    
    .black-horse-aura .bh-feature-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .black-horse-aura .bh-section-title {
        font-size: 1.2rem;
    }
    
    .black-horse-aura .bh-highlight {
        font-size: 1rem;
        padding: 25px 15px 8px;
    }
    
    .black-horse-aura .bh-product-meta {
        padding: 18px;
    }
    
    .black-horse-aura .bh-pills {
        gap: 8px;
    }
    
    .black-horse-aura .bh-pill {
        font-size: 0.72rem;
        padding: 6px 12px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .black-horse-aura .bh-hero-heading {
        font-size: 1.6rem;
    }
    
    .black-horse-aura .bh-glass-block {
        padding: 18px 14px;
    }
    
    .black-horse-aura .bh-accent-line {
        width: 60px;
        height: 3px;
    }
}