/* Brand Templates - Minimalistic Black Design */
@import url('https://fonts.googleapis.com/css2?family=Oranienbaum&display=swap');
:root {
    --brand-bg: #000000;
    --brand-text: #ffffff;
    --brand-text-dim: #a0a0a0;
    --brand-accent: #ffffff;
    --brand-section-pad: 80px 20px;
    --brand-section-pad-mobile: 60px 20px;
    --brand-container-width: 1200px;
}

.brand-template-wrapper {
    background-color: var(--brand-bg);
    color: var(--brand-text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.brand-template-wrapper h1, 
.brand-template-wrapper h2 {
    font-family: "Oranienbaum", Sans-serif;
    font-size: 43px;
    font-weight: 400;
    line-height: normal;
}
.brand-template-wrapper h1,
.brand-template-wrapper h2,
.brand-template-wrapper h3 {
    color: var(--brand-text);
    margin-bottom: 1.5rem;
}

.brand-template-wrapper .container {
    max-width: var(--brand-container-width);
    margin: 0 auto;
    width: 100%;
}

/* Hero Section */
.brand-hero {
    padding: 50px;
    display: inline-block;
    position: relative;
    width: 100%;
}
.brand-hero:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 0;
}

.brand-hero .container-fluid {
    z-index: 1;
    position: relative;
}
.brand-hero .eyebrow {
    text-transform: uppercase;
    color: var(--brand-text-dim);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    display: none;
}

.brand-hero h1 {
    font-size: 55px;
    font-weight: 400;
}

.brand-hero .subheadline {
    font-size: 1.25rem;
    color: var(--brand-text-dim);
    margin-bottom: 2rem;
    font-weight: 300;
}

.brand-hero .intro-text {
    max-width: 800px;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.brand-hero .lead-text {
    max-width: 800px;
    font-size: 1rem;
    /*color: var(--brand-text-dim);*/
}

/* Quick Facts & Chips */
.brand-quick-facts {
    padding: 20px 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid #333;
}

.fact-item {
    /*text-align: center;*/
}

.fact-label {
    display: block;
    font-size: 0.8rem;
    color: var(--brand-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.fact-value {
    font-size: 1.2rem;
    font-weight: bold;
}

.brand-chips {
    padding: 20px 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    padding: 5px 15px;
    border: 1px solid #444;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--brand-text-dim);
    white-space: nowrap;
}

.microLine {
    padding: 0 50px;
}
.microLine p {
    margin-top: 0;
}

/* Benefit Cards */
.brand-benefits {
    padding: var(--brand-section-pad);
    background: #0a0a0a;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 20px;
    background: #111;
    border: 1px solid #404040;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #404040;
}

.benefit-card h3 {
    font-size: 14px;
    color: #d4d4d4;
    margin-bottom: 10px;
    margin-top: 0;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: normal;
}
.benefit-card p {
    font-size: 14px;
}
.benefit-card .otherLink {
    font-family: "Inter", Sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: white;
}
.benefit-card .otherLink:hover {
    text-decoration: none;
}

/* Product Details */
.brand-details {
    padding: var(--brand-section-pad);
}

.details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .details-content {
        grid-template-columns: 1fr;
    }
}

/* Scope & Add-ons */
.brand-scope {
    padding: var(--brand-section-pad);
    background: #0a0a0a;
}

.scope-list, .addons-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.scope-list li, .addons-list li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
}
.scope-list li:last-child, .addons-list li:last-child {
    border: none;
}

.scope-list span:empty, .addons-list span:empty {
    display: none;
}
.scope-list span:first-child, .addons-list span:first-child {
    font-weight: bold;
    padding-right: 15px;
    border-right: 1px solid white;
    margin-right: 15px;
}

.brand-scope .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px 0;
}
.brand-scope .container > *:only-child {
    grid-column: 1 / -1;
}
.brand-scope .container > div {
    padding: 20px;
    background: #111;
    border: 1px solid #404040;
    transition: transform 0.3s ease;
    border-radius: 10px;
}
.brand-scope .container > div h2, .brand-scope .container > div h3 {
    font-size: 14px;
    color: #d4d4d4;
    margin: 0;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: normal;
    font-family: 'Inter', sans-serif;
}

/* Purchase Box */
.brand-purchase-section {
    padding: var(--brand-section-pad);
    background: #000;
    text-align: center;
}

.purchase-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px;
    background-image: radial-gradient(at top center, #FFFFFF30 0%, #000000 100%);
    border: 1px solid #333;
    border-radius: 20px;
}
.purchase-box .eyebrow {
    letter-spacing: 0.15em;
}

.purchase-box .price {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.purchase-box .cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 2rem 0;
}
.purchase-box .cta-group a {
    color: unset;
    text-decoration: unset;
}
.brand-btn {
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.brand-btn-primary {
    background: #fff;
    color: #000;
    border: none;
}

.brand-btn-primary:hover {
    background: #ccc;
}

.brand-btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.brand-btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* Crosslinks */
.brand-crosslinks {
    padding: var(--brand-section-pad);
    background: #0a0a0a;
}

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

/* FAQ */
.brand-faq {
    padding: var(--brand-section-pad);
}

.faq-item {
    background: #111111;
    border: 1px solid #ffffff1a;
    border-bottom: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
}
.faq-item:last-child {
    border-bottom: 1px solid #ffffff1a;
}

.faq-item h3 {
    color: var(--brand-accent);
    margin: 0;
    position: relative;
    font-family: "Oranienbaum", Sans-serif;
    font-size: 22px;
    font-weight: 400;
    padding: 15px 20px 15px 45px;
}
.faq-item h3:before {
    position: absolute;
    left: 15px;
    top: -2px;
    content: "-";
    font-weight: bold;
    font-size: 40px;
}
.faq-item.active h3:before  {
    content: "+";
    font-size: 35px;
    top: 3px;
}
.faq-item p {
    border-top: 1px solid #ffffff1a;
    padding: 15px 20px;
    margin-top: 1em;
    margin-bottom: 1.5em;
    display: none;
    font-size: 16px;
    color: #cccccc;
}

/* Footer override for this template if needed */
.brand-template-wrapper footer {
    border-top: 1px solid #222;
    margin-top: 50px;
}

.brand-lr-blocks .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
}
.brand-lr-blocks .container > div {
    padding: 20px;
    background: #111;
    border: 1px solid #404040;
    transition: transform 0.3s ease;
    border-radius: 10px;
}
.brand-lr-blocks h3 {
    font-size: 14px;
    color: #d4d4d4;
    margin-bottom: 20px;
    margin-top: 0;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: normal;
}
.brand-lr-blocks ul {
    padding: 0;
    margin: 0;
}
.brand-lr-blocks ul li {
    display: inline-block;
    position: relative;
    padding: 0 0 0 20px;
    margin-bottom: 5px;
    width: 100%;
}
.brand-lr-blocks ul li:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='65' height='65' viewBox='0 0 65 65' fill='none'%3E%3Cpath d='M42.8415 22.1561C37.7322 17.0453 34.2351 8.12044 32.4996 0C30.7614 8.1221 27.268 17.0488 22.1568 22.1596C17.0475 27.2669 8.11935 30.7638 0 32.5027C8.12267 34.2381 17.0491 37.7329 22.1585 42.8439C27.2678 47.9529 30.7649 56.8796 32.5031 65C34.2386 56.8779 37.7347 47.9512 42.8432 42.8404C47.9525 37.7314 56.8806 34.2362 65 32.4973C56.8792 30.7619 47.9527 27.2652 42.8415 22.1561Z' fill='%23737373'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 5px;
}
