/* Base */
body {
    color: #fff;
    background-color: #000;
    padding-top: 50px !important;
    -webkit-text-size-adjust: 100%;
}

.navbar {
    margin-bottom: 0;
    border-radius: 0;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.margin-bottom {
    margin-bottom: 15px;
}

.pad-top {
    padding-top: 15px;
}

.text-orange {
    color: #ffa500;
    font-size: 1.1em;
}

/* Hero */
.hero-banner {
    position: relative;
    overflow: hidden;
    background: #000;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-banner img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.65)),
        linear-gradient(to right, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.12));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 94%;
    max-width: 900px;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 3;
    text-align: center;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #d1d5db;
    margin-bottom: 0.35rem;
}

.hero-content h1 {
    margin: 0 0 0.4rem 0;
    color: #fff;
    font-weight: 800;
    font-size: 2.8rem;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
    margin: 0 0 0.6rem 0;
    color: #fff !important;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: #f1f3f5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-buttons .btn {
    margin: 0.2rem;
    text-decoration: none !important;
}

.hero-buttons-mobile-only {
    display: block;
}

@media (min-width: 992px) {
    .hero-buttons-mobile-only {
        display: none;
    }
}

/* Buttons */
.btn-e3-primary,
.btn-e3-outline,
.btn-e3-sm {
    display: inline-block;
    text-decoration: none !important;
}

.btn-e3-primary {
    background: #fff;
    color: #000 !important;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
}

.btn-e3-primary:hover,
.btn-e3-primary:focus {
    background: #e9ecef;
    color: #000 !important;
}

.btn-e3-outline {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-e3-outline:hover,
.btn-e3-outline:focus {
    background: #fff;
    color: #000 !important;
    border-color: #fff;
}

.btn-e3-sm {
    padding: 6px 14px;
    font-size: 0.85rem;
}

/* Product page layout */
.section-space {
    margin-bottom: 30px;
}

.info-card {
    background: linear-gradient(180deg, #151515 0%, #101010 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.category-heading {
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0.75rem;
    color: #fff;
    text-align: center;
}

.product-section {
    margin-bottom: 30px;
}

.product-section:last-child {
    margin-bottom: 0;
}

.product-top-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 25px auto;
    border-radius: 12px;
}

.info-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
}

.content-copy p,
.content-copy li {
    color: #ced4da;
}

.content-copy ul {
    padding-left: 20px;
}

/* Pricing table */
.pricing-table-wrap {
    overflow-x: visible;
}

.pricing-table {
    width: 100%;
    table-layout: fixed;
}

.pricing-table td,
.pricing-table th {
    color: #fff;
    border: 0 !important;
    border-color: rgba(255, 255, 255, 0.10);
    background-color: transparent !important;
    padding: 0.5rem 0.45rem;
    font-size: 0.95rem;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
    vertical-align: middle;
}

.pricing-table tr:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table tr:first-child td,
.pricing-table tr:first-child th {
    font-weight: 700;
    color: #fff;
}

.pricing-table td.text-orange,
.pricing-table th.text-orange {
    color: #ffa500 !important;
}

/* Iframe */
.iframe-wrap iframe {
    width: 100%;
    min-height: 2200px;
    border: 0;
    background: transparent;
}

/* Sticky mobile start order */
.mobile-order-bar {
    display: none;
}

@media (max-width: 767.98px) {
    .hero-banner img {
        height: 210px;
    }

    .hero-content {
        width: 90%;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-eyebrow {
        font-size: 0.8rem;
    }

    .hero-content p {
        display: none;
    }

    .hero-buttons .btn {
        min-width: 110px;
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
    }

    .pricing-table td,
    .pricing-table th {
        font-size: 0.78rem;
        padding: 0.35rem 0.2rem;
        line-height: 1.15;
    }

    .mobile-order-bar {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1030;
        padding: 10px 12px;
        background: rgba(0, 0, 0, 0.92);
        box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.25);
    }

    .mobile-order-bar .btn {
        display: block;
        width: 100%;
        text-align: center;
    }

    body {
        padding-bottom: 70px !important;
    }
}

/* Modern mobile pricing cards */
.pricing-cards-mobile {
    display: none;
}

@media (max-width: 767px) {
    .pricing-table-wrap {
        display: none;
    }

    .pricing-cards-mobile {
        display: block;
        margin-top: 10px;
    }

    .price-card {
        background: linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
        border: 1px solid rgba(255,255,255,0.10);
        border-radius: 14px;
        padding: 14px;
        margin-bottom: 12px;
        box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    }

    .price-tier {
        color: #fff;
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .price-discount {
        color: #ffa500;
        font-size: 0.92rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .price-line {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 6px 0;
        border-top: 1px solid rgba(255,255,255,0.08);
        font-size: 0.95rem;
        color: #d7dbe0;
    }

    .price-line:first-of-type {
        border-top: none;
    }

    .price-line strong {
        color: #fff;
        font-size: 1rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .price-note {
        color: #d7dbe0;
        font-size: 0.92rem;
        line-height: 1.4;
    }

    .price-card-note {
        background: linear-gradient(180deg, #151515 0%, #0f0f0f 100%);
    }
}

/* Fabric / small image grid */
.fabric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.fabric-item {
    text-align: center;
    max-width: 120px;
}

.fabric-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
}

.fabric-item p {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #d7dbe0;
}