    /* Custom Color Palette */
    :root {
        --vampire-black: #050606;
        --army-green: #475225;
        --mustard-green: #6A743A;
        --olive-green: #B0A464;
        --mud: #765735;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        scroll-behavior: smooth;
    }

    .cards{
        width: 100px;
    }

    /* Navigation */
    .navbar-custom {
        background-color: var(--army-green) !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .navbar-custom .navbar-brand {
        color: #fff !important;
        font-weight: bold;
        font-size: 1.5rem;
    }

    .navbar-custom .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 500;
        transition: color 0.3s;
    }

    .navbar-custom .nav-link:hover {
        color: var(--olive-green) !important;
    }

    .navbar-custom .dropdown-menu {
        background-color: var(--mustard-green);
    }

    .navbar-custom .dropdown-item {
        color: #fff;
    }

    .navbar-custom .dropdown-item:hover {
        background-color: var(--army-green);
    }

    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.3);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Hero Section */
    .hero-section {
        background: linear-gradient(135deg, var(--army-green) 0%, var(--mustard-green) 50%, var(--mud) 100%);
        background-size: 200% 200%;
        animation: gradientShift 15s ease infinite;
        padding: 120px 0 80px;
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;

        opacity: 0.3;
    }

    @keyframes gradientShift {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .hero-content {
        position: relative;
        z-index: 1;
    }

    .hero-section h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-section p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .hero-section .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        font-weight: 600;
    }

    .hero-section .hero-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        line-height: 1.6;
        max-width: 650px;
    }

    .btn-cta-primary {
        background-color: var(--mustard-green);
        border: none;
        color: #fff;
        padding: 15px 40px;
        font-size: 1.1rem;
        font-weight: bold;
        border-radius: 8px;
        transition: all 0.3s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    .btn-cta-primary:hover {
        background-color: #7a8442;
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
        color: #fff;
    }

    .btn-cta-secondary {
        background-color: var(--olive-green);
        border: none;
        color: var(--vampire-black);
        padding: 15px 40px;
        font-size: 1.1rem;
        font-weight: bold;
        border-radius: 8px;
        transition: all 0.3s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    .btn-cta-secondary:hover {
        background-color: #c0b474;
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
        color: var(--vampire-black);
    }

    .book-mockup {
        background: linear-gradient(135deg, var(--mud) 0%, var(--army-green) 100%);
        border: 3px solid var(--olive-green);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--olive-green);
        font-weight: bold;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
        position: relative;
        overflow: hidden;
    }

    .book-mockup::after {
        position: absolute;
        font-size: 2rem;
        opacity: 0.3;
        transform: rotate(-15deg);
    }

    /* Features Section */
    .features-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }

    .feature-card {
        background-color: #fff;
        border-radius: 12px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        height: 100%;
        border: 2px solid var(--olive-green);
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        background-color: var(--olive-green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: var(--army-green);
        font-size: 2rem;
    }

    .feature-card h4 {
        color: var(--army-green);
        font-weight: bold;
        margin-bottom: 15px;
    }

    .feature-card p {
        color: #666;
    }

    /* Checklist Section */
    .checklist-section {
        padding: 80px 0;
        background-color: #fff;
    }

    .checklist-section h2 {
        color: var(--army-green);
        font-weight: bold;
        margin-bottom: 30px;
    }

    .list-group-item {
        border-left: 4px solid var(--mustard-green);
        margin-bottom: 10px;
        padding: 15px;
        background-color: #f8f9fa;
    }

    .list-group-item i {
        color: var(--army-green);
        margin-right: 10px;
    }

    .checklist-cta {
        background: linear-gradient(135deg, var(--army-green) 0%, var(--mustard-green) 100%);
        padding: 40px;
        border-radius: 12px;
        color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .checklist-cta h3 {
        font-weight: bold;
        margin-bottom: 20px;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }

    .testimonials-section h2 {
        color: var(--army-green);
        font-weight: bold;
        margin-bottom: 50px;
        text-align: center;
    }

    .testimonial-card {
        background-color: #fff;
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border: 2px solid var(--olive-green);
        margin: 0 15px;
    }

    .testimonial-quote {
        font-size: 1.1rem;
        font-style: italic;
        color: #333;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .testimonial-author {
        font-weight: bold;
        color: var(--army-green);
        margin-bottom: 5px;
    }

    .testimonial-location {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .testimonial-stars {
        color: var(--mustard-green);
        font-size: 1.2rem;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: var(--army-green);
        border-radius: 50%;
        padding: 20px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 80px 0;
        background-color: #fff;
    }

    .faq-section h2 {
        color: var(--army-green);
        font-weight: bold;
        margin-bottom: 50px;
        text-align: center;
    }

    h2.accordion-header {
        margin-bottom: 0px;
    }

    .accordion-button {
        background-color: var(--army-green) !important;
        color: #fff !important;
        font-weight: bold;
        font-size: 1.1rem;
    }

    .accordion-button:not(.collapsed) {
        background-color: var(--mustard-green) !important;
        color: #fff !important;
    }

    .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(106, 116, 58, 0.25);
    }

    .accordion-body {
        background-color: #f8f9fa;
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Footer */
    .footer {
        background-color: var(--vampire-black);
        color: #FFF;
        padding: 60px 0 20px;
    }

    .footer h5 {
        color: #fff;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .footer a {
        color: #FFF;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer a:hover {
        color: #fff;
    }

    .footer .list-unstyled li {
        margin-bottom: 10px;
    }

    .newsletter-form .form-control {
        border-radius: 8px 0 0 8px;
        border: none;
    }

    .newsletter-form .btn {
        background-color: var(--mustard-green);
        border: none;
        color: #fff;
        border-radius: 0 8px 8px 0;
        padding: 10px 25px;
        font-weight: bold;
    }

    .newsletter-form .btn:hover {
        background-color: var(--olive-green);
    }

    .social-icons a {
        color: var(--olive-green);
        font-size: 1.5rem;
        margin: 0 10px;
        transition: color 0.3s;
    }

    .social-icons a:hover {
        color: #fff;
    }

    .copyright {
        border-top: 1px solid rgba(176, 164, 100, 0.3);
        margin-top: 40px;
        padding-top: 20px;
        text-align: center;
        color: #FFF;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-section h1 {
            font-size: 2rem;
        }

        .hero-section p {
            font-size: 1.2rem;
        }

        .book-mockup {
            height: 300px;
            margin-top: 30px;
        }

        .btn-cta-primary,
        .btn-cta-secondary {
            padding: 12px 30px;
            font-size: 1rem;
            width: 100%;
            margin-bottom: 15px;
        }
    }
</style>
<!-- Checkout Page Custom Styles -->
<style>
    /* Forest/Camo Checkout Palette */
    :root {
        --vampire-black: #050606;
        --army-green: #475225;
        --mustard-green: #6A743A;
        --olive-green: #B0A464;
        --mud: #765735;
    }

    /* Professional font for typography consistency */
    body,
    input,
    select,
    textarea,
    button {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .checkout-header {
        background: var(--army-green);
        color: #fff;
        font-weight: bold;
        border-bottom: 2px solid var(--mustard-green);
    }

    .checkout-header .checkout-logo {
        font-size: 1.45rem;
        display: flex;
        align-items: center;
    }

    .checkout-header .back-link {
        color: var(--olive-green) !important;
        font-size: 1rem;
        text-underline-offset: 2px;
    }

    .checkout-header .back-link:hover {
        color: #fff !important;
    }

    .checkout-progress {
        background: transparent;
        margin-top: 1rem;
        margin-bottom: 1.25rem;
    }

    .checkout-stepper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .checkout-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 0.97rem;
        font-weight: 500;
        color: #c6c7c2;
        min-width: 72px;
    }

    .checkout-step .circle {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
        transition: border 0.3s;
    }

    .checkout-step--current .circle {
        background: var(--mustard-green);
        color: #fff;
        border: 2px solid var(--mustard-green);
        box-shadow: 0 2px 8px rgba(74, 90, 40, 0.12);
    }

    .checkout-step--complete .circle {
        background: var(--olive-green);
        color: #fff;
        border: 2px solid var(--olive-green);
    }

    .checkout-step--upcoming .circle {
        background: #ececec;
        border: 2px solid #cacaca;
        color: #7b7a74;
    }

    .checkout-step--current,
    .checkout-step--complete {
        color: var(--mud);
    }

    .checkout-stepper .checkout-divider {
        width: 42px;
        height: 4px;
        background: #d2d4cc;
        border-radius: 2px;
        margin: 0 0.4rem;
    }

    .checkout-stepper .checkout-divider--complete {
        background: var(--olive-green);
    }

    /* Checkout Page Main Layout */
    .checkout-main-wrap {
        background: #f5f5f1;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    /* Card styles for form and summary */
    .checkout-card {
        background: #fff;
        border-radius: 14px;
        padding: 2.1rem 2.25rem 1.5rem 2.25rem;
        box-shadow: 0 8px 28px 0 rgba(20, 29, 13, 0.10);
        border: 1.5px solid #eaeae0;
        margin-bottom: 2rem;
    }

    .checkout-card .section-title {
        margin-top: 1.2rem;
        margin-bottom: 1.1rem;
        color: var(--army-green);
        font-size: 1.20rem;
        font-weight: 600;
    }

    .checkout-summary-card {
        color: var(--vampire-black);
        border-radius: 14px;
        padding: 1.8rem 1.5rem 1.1rem 1.5rem;
        box-shadow: 0 8px 28px 0 rgba(20, 29, 13, 0.08);
        border: 1.5px solid var(--mustard-green);
    }

    .checkout-summary-card .section-title {
        color: var(--army-green);
        font-size: 1.1rem;
        font-weight: 600;
    }

    /* Checkout Book Placeholder */
    .checkout-book-img {
        width: 100px;
        background: linear-gradient(116deg, var(--mud) 60%, var(--army-green) 100%);
        border-radius: 7px;
        box-shadow: 0 3px 12px 0 rgba(78, 80, 56, 0.21);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--olive-green);
        font-weight: 700;
        font-size: 1rem;
        letter-spacing: 0.04em;
        border: 2px solid var(--olive-green);
    }

    /* Sticky right column on desktop */
    @media (min-width: 992px) {
        .checkout-summary-sticky {
            position: sticky;
            top: 2rem;
            z-index: 11;
        }
    }

    /* Shipping method radio */
    .shipping-method-card {
        border: 2px solid #e2e2de;
        padding: 1.1rem;
        border-radius: 8px;
        transition: border 0.25s;
        background: #fafaf6;
        margin-bottom: 0.7rem;
        cursor: pointer;
    }

    .shipping-method-card.selected {
        border: 2px solid var(--mustard-green);
        background: #fcfbf9;
        box-shadow: 0 4px 18px 0 rgba(106, 116, 58, 0.09);
    }

    .shipping-method-card:not(.selected):hover {
        border: 2px solid var(--olive-green);
    }

    .shipping-method-card input[type=radio] {
        accent-color: var(--mustard-green);
    }

    /* Complete Order Button */
    .btn-complete-order {
        background: var(--mustard-green);
        color: #fff;
        font-size: 1.19rem;
        font-weight: 600;
        width: 100%;
        padding: 0.85rem 1.5rem;
        border-radius: 9px;
        border: none;
        box-shadow: 0 2.5px 8px 0 rgba(78, 80, 56, 0.15);
        margin-top: 0.35rem;
        margin-bottom: 0.3rem;
        transition: background 0.25s;
    }

    .btn-complete-order:hover,
    .btn-complete-order:focus {
        background: #7a8442;
        color: #fff;
    }

    /* Promo code */
    .promo-toggle {
        color: var(--mustard-green);
        background: transparent;
        border: none;
        font-size: 1.01rem;
        font-weight: 500;
        padding: 0.25rem 0 0.25rem 0;
        text-align: left;
    }

    .promo-input-group {
        display: flex;
        gap: 0.5rem;
        margin-top: 0.8rem;
    }

    .btn-apply-promo {
        background: var(--olive-green);
        color: var(--vampire-black);
        border: none;
        font-weight: 500;
        border-radius: 7px;
        height: 42px;
        min-width: 84px;
    }

    .btn-apply-promo:hover,
    .btn-apply-promo:focus {
        background: #cbc993;
        color: var(--vampire-black);
    }

    .promo-success {
        color: var(--mustard-green);
        margin-top: 0.2rem;
        font-size: 0.95rem;
    }

    .promo-error {
        color: var(--mud);
        margin-top: 0.2rem;
        font-size: 0.98rem;
    }

    /* Quantity selector in order summary */
    .quantity-selector {
        display: flex;
        align-items: center;
    }

    .quantity-btn {
        background: #ececec;
        border: 1.2px solid var(--olive-green);
        color: var(--army-green);
        border-radius: 50%;
        width: 30px;
        height: 30px;
        font-size: 1.19rem;
        font-weight: bold;
        text-align: center;
        transition: background 0.17s, color 0.17s;
    }

    .quantity-btn:active,
    .quantity-btn:focus {
        background: var(--mustard-green);
        color: #fff;
    }

    /* Order Trust Signals & Payment badge icons */
    .trust-icon {
        width: 24px;
        height: 24px;
        margin-right: 0.55rem;
        color: var(--olive-green);
    }

    .order-security-badges {
        display: flex;
        align-items: center;
        gap: 0.9rem;
        margin-top: 0.4rem;
    }

    .order-payment-badges {
        display: flex;
        gap: 0.6rem;
        margin-top: 0.2rem;
        font-size: 1.36rem;
    }

    /* Real-time form validation checkmark */
    .is-valid~.valid-feedback {
        display: block;
    }

    .is-invalid~.invalid-feedback {
        display: block;
    }

    /* Responsive stacking */
    @media (max-width: 991.98px) {
        .checkout-card {
            padding: 1.7rem 1.13rem 1.15rem 1.13rem;
            border-radius: 10.5px;
        }

        .checkout-summary-card {
            border-radius: 10.5px;
            padding: 1.3rem 0.8rem 1.05rem 0.8rem;
        }
    }

    @media (max-width: 767.98px) {
        .checkout-main-wrap {
            padding-top: 1.1rem;
            padding-bottom: 0.9rem;
        }

        .checkout-row {
            flex-direction: column-reverse;
        }

        .mobile-order-summary-first {
            order: -1 !important;
            margin-bottom: 1.59rem;
        }
    }

    /* Minimal sticky checkout footer */
    .checkout-page-footer {
        background: var(--vampire-black);
        color: var(--olive-green);
        font-size: 1rem;
        padding: 1.2rem 0 1rem 0;
        margin-top: 1.4rem;
        border-top: 1.5px solid var(--army-green);
        text-align: center;
    }

    .checkout-page-footer a {
        color: var(--olive-green);
        text-decoration: underline;
        text-underline-offset: 2px;
        margin-right: 1.5rem;
    }

    .checkout-page-footer a:hover {
        color: #fff;
    }