/**
 * Rocket-Blue order form style sheet
 * Clean consolidated version (Popular is class-based)
 */

/* Container */
#order-modern,
#order-rocket-blue{
    margin: 0 auto;
    max-width: 1180px;
    padding: 40px 20px 80px 20px;
}


/* Title */
#order-modern .title-bar,
#order-rocket-blue .header-lined{
    text-align: center;
    margin-bottom: 40px;
}
#order-modern .title-bar h1,
#order-rocket-blue .header-lined h1{
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
    color: #0a0a0a;
}
#order-modern .title-bar p{
    font-size: 16px;
    margin-top: 6px;
    color: rgba(0,0,0,0.55);
}

/* Section headings */
.section-divider{
    text-align: center;
    margin: 60px 0 20px 0;
}
.section-divider h2{
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 6px 0;
    color: #0a0a0a;
}
.section-subtitle{
    font-size: 14px;
    color: rgba(0,0,0,0.55);
    margin: 0;
}

/* Panel behind cards */
.section-divider + .row{
    background: #eaf1f4;
    border: 1px solid #d7e3ea;
    border-radius: 12px;
    padding: 30px 26px;
    margin-left: 0;
    margin-right: 0;
}
.section-divider + .row > [class*="col-"]{
    padding-left: 14px;
    padding-right: 14px;
}

/* Cards */
.product-card{
    position: relative;
    background: #ffffff;
    border: 1px solid #e3edf3;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
    padding: 22px 22px 18px 22px;
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

/* Featured (Popular) card */
.product-card.rocket-featured{
    background: #ffffff;
    border: 2px solid #2d8cff;
    box-shadow: 0 14px 36px rgba(0,0,0,0.16);
    transform: translateY(-6px);
}

/* Popular badge */
.rocket-popular-badge{
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #10a0ff;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Name */
.product-card .name{
    color: #0b5fd7;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 10px;
}

/* Price */
.price-block{
    margin: 8px 0 12px 0;
    line-height: 1.1;
}
.price-block .price{
    font-size: 42px;
    font-weight: 700;
    color: #111;
    display: block;
}
.price-block .cycle{
    margin-top: 6px;
    font-size: 12px;
    color: rgba(0,0,0,0.45);
}

/* Description + checkmarks if UL exists */
.product-card .description{
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(0,0,0,0.65);
    flex: 1;
}
.product-card .description ul{
    list-style: none;
    padding-left: 0;
    margin: 12px 0 0 0;
}
.product-card .description li{
    position: relative;
    padding-left: 18px;
    margin: 7px 0;
}
.product-card .description li::before{
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #10a0ff;
    font-weight: 900;
}

/* Light blue button (match the screenshot accent) */
.product-card .btn,
.product-card .btn-success,
.product-card a.btn,
#order-rocket-blue .btn-primary{
    background: #10a0ff !important;
    border-color: #10a0ff !important;
    color: #fff !important;
    font-weight: 800;
    border-radius: 4px;
    padding: 12px 18px;
    width: 170px;              /* slightly wider like your example */
    display: inline-block;
}


/* Hover state slightly darker */
.product-card .btn:hover,
.product-card .btn-success:hover,
.product-card a.btn:hover,
#order-rocket-blue .btn-primary:hover{
    background: #0b86db !important;
    border-color: #0b86db !important;
}

/* Button alignment */
.product-card .text-center{
    text-align: center !important;
    margin-top: 14px;
}

/* Responsive */
@media (max-width: 991px){
    .section-divider + .row{ padding: 22px 18px; }
    .product-card{ min-height: auto; }
    .product-card.rocket-featured{ transform: none; }
}
@media (max-width: 575px){
    #order-modern .title-bar h1{ font-size: 34px; }
    .section-divider h2{ font-size: 28px; }
    .product-card{ padding: 18px; }
}




#order-rocket-blue .cart-body{
    background: #ffffff;
    border: 2px solid #2d8cff;
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.16);
    padding: 30px;
}


/* Center Rocket Blue order form block */
#order-rocket-blue {
    max-width: 900px;
    margin: 60px auto;
}

#order-rocket-blue > .row {
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
}

#order-rocket-blue .cart-body {
    width: 100%;
}

/* White card background + blue border */
#order-rocket-blue .cart-body {
    background: #ffffff;
    border: 2px solid #2d8cff;
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.16);
    padding: 40px 35px;
}


