/* wwwroot/css/site.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #0f172a;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 48px;
}

.nav-list {
    display: flex;
    gap: 36px;
    list-style: none;
}

    .nav-list a {
        text-decoration: none;
        color: #0f172a;
        font-weight: 600;
        font-size: 15px;
    }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-primary {
    background: #1d4ed8;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    border: 2px solid #1d4ed8;
    color: #1d4ed8;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cart-icon {
    position: relative;
    color: #1d4ed8;
    font-size: 24px;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1d4ed8;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HERO */

.hero-section {
    padding: 0px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 45px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #0f172a;
}

    .hero-content h1 span {
        color: #2563eb;
    }

.hero-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-image img {
    width: 100%;
    border-radius: 18px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #1d4ed8;
}

    .feature-item i {
        font-size: 26px;
    }

    .feature-item span {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.5;
    }

/* TRUSTED */

.trusted-section {
    padding: 50px 0;
    background: #f8fafc;
}

    .trusted-section h3 {
        text-align: center;
        font-size: 14px;
        color: #1d4ed8;
        margin-bottom: 40px;
    }

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 30px;
}

.trusted-item {
    text-align: center;
    font-weight: 600;
    color: #0f172a;
}

/* PROGRAMS */

.program-section {
    padding: 100px 0;
}

.section-heading {
    margin-bottom: 50px;
}

    .section-heading span {
        color: #2563eb;
        font-weight: 700;
        font-size: 13px;
    }

    .section-heading h2 {
        font-size: 42px;
        margin-top: 12px;
    }

.program-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.program-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
}

    .program-card img {
        width: 100%;
        margin-bottom: 24px;
    }

    .program-card h3 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .program-card p {
        color: #475569;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .program-card ul {
        padding-left: 20px;
        margin-bottom: 24px;
    }

    .program-card li {
        margin-bottom: 10px;
        color: #334155;
    }

    .program-card a {
        color: #2563eb;
        font-weight: 700;
        text-decoration: none;
    }

/* FOOTER */

.site-footer {
    background: #071a52;
    color: #ffffff;
    padding-top: 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(5,1fr);
    gap: 24px;
}

.footer-logo {
    height: 36px;
    margin-bottom: 12px;
}

.footer-about p {
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 12px;
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 8px;
}

    .social-links a {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(255,255,255,.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        text-decoration: none;
        font-size: 12px;
    }

.footer-column h4 {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 28px;
    padding: 16px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
}

.footer-contact {
    display: flex;
    gap: 20px;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .hero-container,
    .program-grid,
    .footer-top,
    .trusted-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-features {
        grid-template-columns: repeat(2,1fr);
    }

    .nav-list {
        display: none;
    }
}
/* =========================
   HERO SECTION
========================= */

.hero-section {
    padding-top: 0;
    background: #ffffff;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: stretch;
    min-height: 460px;
}

/* LEFT SIDE */

.hero-content {
    padding: 40px 50px 10px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 800;
    color: #07133b;
    margin-bottom: 14px;
}

    .hero-title span {
        color: #2563eb;
    }

.hero-description {
    max-width: 480px;
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 22px;
}

/* BUTTONS */

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.btn-primary-custom {
    background: #2563eb;
    color: #ffffff;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

    .btn-primary-custom:hover {
        background: #1d4ed8;
        color: #ffffff;
    }

.btn-outline-custom {
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

    .btn-outline-custom:hover {
        background: #2563eb;
        color: #ffffff;
    }

/* FEATURES */

.hero-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 560px;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

    .hero-feature-icon i {
        color: #2563eb;
        font-size: 16px;
    }

.hero-feature-item p {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    color: #07133b;
    margin: 0;
}

/* RIGHT IMAGE */

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* IMAGE FADE EFFECT */

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 220px;
    height: 100%;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.92) 30%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1400px) {

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 13px;
    }
}

@media (max-width: 1200px) {

    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-image-wrapper {
        min-height: 320px;
    }

    .hero-content {
        padding: 40px 36px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .hero-content {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .hero-btn-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .hero-image-wrapper {
        min-height: 280px;
    }
}

@media (max-width: 576px) {

    .hero-title {
        font-size: 22px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }

    .hero-btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   TRUSTED SECTION
========================= */

.trusted-section {
    background: #f8fafc;
    padding: 24px 0;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.trusted-header {
    text-align: center;
    margin-bottom: 20px;
}

    .trusted-header span {
        color: #2563eb;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.6px;
    }

/* GRID */

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

/* CARD */

.trusted-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    text-align: center;
}

/* ICON */

.trusted-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

    .trusted-icon i {
        color: #2563eb;
        font-size: 20px;
    }

/* TITLE */

.trusted-item h4 {
    font-size: 13px;
    font-weight: 700;
    color: #07133b;
    line-height: 1.4;
    margin: 0;
}

/* HOVER */

.trusted-item:hover .trusted-icon {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {

    .trusted-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 35px;
    }
}

@media (max-width: 768px) {

    .trusted-section {
        padding: 20px 0;
    }

    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .trusted-item h4 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {

    .trusted-grid {
        grid-template-columns: 1fr;
    }

    .trusted-icon {
        width: 68px;
        height: 68px;
    }

        .trusted-icon i {
            font-size: 26px;
        }
}

/* ==========================================
   Water Testing System Section
========================================== */

.water-system-section {
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

.water-system-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 48px;
    align-items: center;
}

/* Left Content */

.water-system-content {
    max-width: 390px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2453ff;
    margin-bottom: 18px;
}

.water-system-title {
    font-size: 54px;
    line-height: 1.08;
    font-weight: 700;
    color: #071b63;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.water-system-description {
    font-size: 18px;
    line-height: 1.9;
    color: #344054;
    margin-bottom: 42px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 34px;
    background: #2453ff;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .primary-btn:hover {
        background: #163ed9;
        color: #ffffff;
    }

/* Right Grid */

.water-system-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.system-card {
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e7ebf3;
    min-height: 240px;
}

.info-card {
    /* padding: 34px 28px;*/
    display: flex;
    flex-direction: column;
}

.card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 26px;
}

    .card-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.card-content h4 {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    color: #071b63;
    margin-bottom: 18px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #475467;
    margin: 0;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================
   Responsive
========================================== */

@media (max-width: 1400px) {

    .water-system-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {

    .water-system-section {
        padding: 70px 0;
    }

    .water-system-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .water-system-content {
        max-width: 100%;
    }

    .water-system-title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {

    .water-system-grid {
        grid-template-columns: 1fr;
    }

    .water-system-title {
        font-size: 34px;
    }

    .water-system-description {
        font-size: 16px;
    }

    .info-card {
        min-height: auto;
    }
}
/* =====================================================
   COMPLETE WATER SYSTEM SECTION
===================================================== */

.complete-system-section {
    padding: 28px 0;
    background: #ffffff;
}

.complete-system-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 36px;
    align-items: center;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.complete-system-content {
    max-width: 300px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2453ff;
    margin-bottom: 12px;
}

.complete-system-title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #071b63;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.complete-system-description {
    font-size: 13px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 22px;
    max-width: 290px;
}

.system-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 38px;
    padding: 0 20px;
    background: #2453ff;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

    .system-btn:hover {
        background: #123de3;
        color: #ffffff;
    }

/* =====================================================
   RIGHT GRID
===================================================== */

.complete-system-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.feature-card,
.image-card {
    height: 200px;
    border: 1px solid #e7ecf4;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
}

/* FEATURE CARD */

.feature-card {
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
}

    .feature-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.feature-card h4 {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    color: #071b63;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.feature-card p {
    font-size: 12px;
    line-height: 1.6;
    color: #475467;
    margin: 0;
}

/* IMAGE CARD */

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1500px) {

    .complete-system-wrapper {
        grid-template-columns: 280px 1fr;
    }

    .complete-system-title {
        font-size: 20px;
    }
}

@media (max-width: 1200px) {

    .complete-system-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .complete-system-content {
        max-width: 100%;
    }

    .complete-system-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .complete-system-section {
        padding: 70px 0;
    }

    .complete-system-grid {
        grid-template-columns: 1fr;
    }

    .complete-system-title {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -0.3px;
    }

    .complete-system-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .system-btn {
        width: 100%;
        min-width: auto;
        font-size: 17px;
    }

    .feature-card,
    .image-card {
        height: auto;
        min-height: 280px;
    }
}

/* =========================================================
   STRUCTURED PROCESS SECTION
========================================================= */

.structured-process-section {
    padding: 20px 0;
    background: #ffffff;
    overflow: hidden;
}

.section-heading {
    text-align: center;
    margin-bottom: 20px;
}

    .section-heading h2 {
        font-size: 22px;
        line-height: 1.2;
        font-weight: 600;
        color: #071b63;
        margin: 0;
        letter-spacing: -0.5px;
    }

/* =========================================================
   PROCESS WRAPPER
========================================================= */

.process-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

/* =========================================================
   STEP
========================================================= */

.process-step {
    width: 160px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 100px;
    height: 100px;
    border: 2px solid #dbe4ff;
    border-radius: 50%;
    background: #ffffff;
    margin: 0 auto 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    position: absolute;
    top: -6px;
    left: 6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #2453ff;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 36px;
    color: #071b63;
    line-height: 1;
}

.process-step h4 {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    color: #071b63;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.process-step p {
    font-size: 12px;
    line-height: 1.6;
    color: #475467;
    margin: 0;
    padding-top: 4px;
}

/* =========================================================
   CONNECTING LINE
========================================================= */

.process-line {
    width: 60px;
    height: 2px;
    background: repeating-linear-gradient( to right, #b7c8ff 0, #b7c8ff 8px, transparent 8px, transparent 14px );
    margin-top: 50px;
    flex-shrink: 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1400px) {

    .process-wrapper {
        flex-wrap: wrap;
        gap: 40px;
    }

    .process-line {
        display: none;
    }
}

@media (max-width: 991px) {

    .structured-process-section {
        padding: 20px 0;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .process-step {
        width: calc(50% - 20px);
    }

    .step-circle {
        width: 145px;
        height: 145px;
    }

    .step-icon {
        font-size: 48px;
    }

    .process-step h4 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {

    .section-heading {
        margin-bottom: 50px;
    }

        .section-heading h2 {
            font-size: 30px;
            line-height: 1.3;
        }

    .process-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        width: 100%;
        max-width: 320px;
    }

    .step-circle {
        width: 130px;
        height: 130px;
        margin-bottom: 24px;
    }

    .step-icon {
        font-size: 42px;
    }

    .process-step h4 {
        font-size: 22px;
    }

    .process-step p {
        font-size: 16px;
        line-height: 1.8;
    }
}
/* =========================================================
   PROGRAM SECTION
========================================================= */

.program-section {
    padding: 28px 0;
    background: #ffffff;
}

.program-section-header {
    margin-bottom: 24px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2453ff;
    margin-bottom: 10px;
}

.program-section-header h2 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    color: #071b63;
    margin: 0;
    letter-spacing: -0.5px;
}


/* =========================================================
   CARD
========================================================= */

.program-card {
    border: 1px solid #e7ecf4;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .program-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 50px rgba(7, 27, 99, 0.08);
    }

.program-image {
    padding: 16px 16px 8px;
    text-align: center;
}

    .program-image img {
        width: 100%;
        max-width: 200px;
        height: auto;
        object-fit: contain;
    }

/* =========================================================
   CONTENT
========================================================= */

.program-content {
    padding: 0 18px 16px;
    flex: 1;
}

    .program-content h3 {
        font-size: 18px;
        line-height: 1.2;
        font-weight: 700;
        color: #071b63;
        margin-bottom: 8px;
        letter-spacing: -0.3px;
    }

.program-subtitle {
    font-size: 13px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 14px;
}

.use-case-label {
    font-size: 13px;
    font-weight: 700;
    color: #071b63;
    margin-bottom: 8px;
}

.program-list {
    margin: 0;
    padding-left: 16px;
}

    .program-list li {
        font-size: 13px;
        line-height: 1.7;
        color: #475467;
        margin-bottom: 4px;
    }

/* =========================================================
   FOOTER
========================================================= */

.program-footer {
    padding: 14px 18px;
    border-top: 1px solid #edf1f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

    .program-footer span {
        font-size: 13px;
        line-height: 1.5;
        font-weight: 600;
        color: #2453ff;
    }

    .program-footer a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #f3f6ff;
        color: #2453ff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        flex-shrink: 0;
        transition: 0.3s ease;
    }

        .program-footer a:hover {
            background: #2453ff;
            color: #ffffff;
        }

/* =========================================================
   CTA PROGRAM SECTION
========================================================= */

.cta-program-section {
    padding: 24px 0;
    background: #ffffff;
}

.cta-program-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    background: #f4f7ff;
    border-radius: 14px;
    overflow: hidden;
    min-height: 220px;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.cta-program-content {
    padding: 30px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2453ff;
    margin-bottom: 10px;
}

.cta-program-content h2 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: #071b63;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.cta-program-content p {
    font-size: 13px;
    line-height: 1.7;
    color: #475467;
    margin-bottom: 18px;
    max-width: 300px;
}

/* =========================================================
   BUTTONS
========================================================= */

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.primary-cta-btn,
.secondary-cta-btn {
    height: 36px;
    padding: 0 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.primary-cta-btn {
    background: #2453ff;
    color: #ffffff;
    border: 1px solid #2453ff;
}

    .primary-cta-btn:hover {
        background: #123de3;
        color: #ffffff;
    }

.secondary-cta-btn {
    background: transparent;
    color: #2453ff;
    border: 1px solid #2453ff;
}

    .secondary-cta-btn:hover {
        background: #2453ff;
        color: #ffffff;
    }

/* =========================================================
   RIGHT IMAGES
========================================================= */

.cta-program-images {
    height: 100%;
}

.cta-image {
    position: relative;
    overflow: hidden;
}

    .cta-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .cta-program-wrapper {
        grid-template-columns: 1fr;
    }

    .cta-program-images {
        min-height: 320px;
    }
}

@media (max-width: 767px) {

    .cta-program-section {
        padding: 20px 0;
    }

    .cta-program-content {
        padding: 24px 20px;
    }

        .cta-program-content h2 {
            font-size: 18px;
        }

        .cta-program-content p {
            font-size: 13px;
        }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-cta-btn,
    .secondary-cta-btn {
        width: 100%;
    }

    .cta-program-images {
        grid-template-columns: 1fr;
    }

    .cta-image {
        height: 220px;
    }
}


/* ==========================================================
   SHOP HERO
========================================================== */

.shop-hero {
    padding: 30px 0 20px;
}

.shop-banner {
    background: linear-gradient( 90deg, #f8fbff 0%, #f2f6ff 100% );
    border-radius: 22px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    min-height: 230px;
    position: relative;
}

    .shop-banner::before {
        content: "";
        position: absolute;
        width: 700px;
        height: 280px;
        background: rgba(36,83,255,.04);
        border-radius: 50%;
        bottom: -180px;
        left: 40%;
    }

.shop-banner-content {
    padding: 24px 40px;
    z-index: 2;
}

.shop-badge {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid #2453ff;
    color: #2453ff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.shop-banner-content h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    color: #071b63;
    margin-bottom: 18px;
}

    .shop-banner-content h1 span {
        color: #2453ff;
    }

.shop-banner-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #52617d;
}

.shop-banner-image {
    height: 100%;
}

    .shop-banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


/* ==========================================================
   SECTION HEADER
========================================================== */

.section-header {
    text-align: center;
    margin: 25px 0;
}

    .section-header h2 {
        font-size: 22px;
        font-weight: 700;
        color: #071b63;
        margin-bottom: 8px;
    }

    .section-header p {
        font-size: 14px;
        color: #5d6b87;
    }


/* ==========================================================
   PRODUCT GRID
========================================================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}


/* ==========================================================
   PRODUCT CARD
========================================================== */

.product-card {
    background: #fff;
    border: 1px solid #e7edf7;
    border-radius: 18px;
    overflow: hidden;
    transition: .3s;
    box-shadow: 0 10px 30px rgba(0,0,0,.03);
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,.08);
    }


.product-image {
    padding: 15px;
}

    .product-image img {
        width: 100%;
        border-radius: 12px;
    }

.product-content {
    padding: 16px 20px 20px;
}

.product-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #edf3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #2453ff;
    font-size: 18px;
    margin-bottom: 12px;
}

.product-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #071b63;
    margin-bottom: 10px;
}

.title-divider {
    width: 40px;
    height: 3px;
    border-radius: 30px;
    background: #2453ff;
    display: block;
    margin-bottom: 14px;
}

.product-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-content li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #4e5e7d;
}

    .product-content li i {
        color: #2453ff;
        margin-top: 4px;
    }

.price {
    margin: 12px 0;
    font-size: 22px;
    font-weight: 700;
    color: #2453ff;
    text-align: center;
}


/* ==========================================================
   BUTTON
========================================================== */

.cart-btn {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 10px;
    background: linear-gradient( 90deg, #2453ff, #003dff );
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: .3s;
}

    .cart-btn:hover {
        transform: translateY(-3px);
    }


/* ==========================================================
   TRUST STRIP
========================================================== */

.trust-strip {
    padding: 35px 0 40px;
}

.trust-grid {
    background: #f7faff;
    border-radius: 18px;
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px;
    border-right: 1px solid #dde5f5;
}

    .trust-item:last-child {
        border-right: 0;
    }

    .trust-item i {
        font-size: 22px;
        color: #2453ff;
    }

    .trust-item span {
        font-size: 13px;
        font-weight: 600;
        color: #071b63;
    }


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1200px) {

    .product-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }

    .trust-item {
        border-right: 0;
    }

    .shop-banner {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .shop-banner-content {
        padding: 24px;
    }

        .shop-banner-content h1 {
            font-size: 26px;
        }

        .shop-banner-content p {
            font-size: 13px;
        }

    .section-header h2 {
        font-size: 18px;
    }

    .product-content h3 {
        font-size: 30px;
    }

    .price {
        font-size: 32px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   CART HERO SECTION
========================================================== */

.cart-hero {
    padding: 30px 0;
}

.cart-banner {
    background: #f6f9ff;
    border-radius: 22px;
    min-height: 160px;
    display: grid;
    grid-template-columns: 280px 1fr 220px;
    align-items: center;
    padding: 24px 36px;
    position: relative;
    overflow: hidden;
}

    /* Background wave */

    .cart-banner::before {
        content: "";
        position: absolute;
        width: 700px;
        height: 250px;
        background: rgba(36,83,255,.03);
        border-radius: 50%;
        left: 35%;
        bottom: -180px;
    }


/* ==========================================================
   LEFT CONTENT
========================================================== */

.page-badge {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 30px;
    background: #edf2ff;
    font-size: 12px;
    font-weight: 700;
    color: #2453ff;
    margin-bottom: 15px;
}

.cart-banner-content {
    position: relative;
    z-index: 2;
}

    .cart-banner-content h1 {
        font-size: 34px;
        font-weight: 600;
        line-height: 1.1;
        color: #071b63;
        margin-bottom: 10px;
    }

    .cart-banner-content p {
        font-size: 13px;
        line-height: 1.7;
        color: #61708d;
        margin: 0;
    }


/* ==========================================================
   STEPPER
========================================================== */

.cart-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #dce5ff;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a0bd;
    transition: .3s;
}

.step.active .step-icon,
.step.completed .step-icon {
    background: #fff;
    border-color: #2453ff;
    color: #2453ff;
}

.step span {
    margin-top: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #071b63;
}

.step-line {
    width: 80px;
    height: 2px;
    background: #dbe4ff;
    margin: 0 5px;
}

    .step-line.active {
        background: #2453ff;
    }


/* ==========================================================
   HERO IMAGE
========================================================== */

.cart-hero-image {
    width: 200px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

    .cart-hero-image img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
    }


/* ==========================================================
   CART CONTENT
========================================================== */

.cart-content {
    padding: 24px 0 36px;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}


/* ==========================================================
   LEFT PRODUCT AREA
========================================================== */

.cart-products,
.cart-summary {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 16px;
    overflow: hidden;
}

.cart-header {
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #edf2f7;
    font-size: 14px;
    font-weight: 700;
    color: #071b63;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 18px;
    padding: 20px 22px;
    border-bottom: 1px solid #edf2f7;
}

    .cart-item:last-child {
        border-bottom: none;
    }

    .cart-item img {
        width: 100%;
        border-radius: 10px;
    }

.item-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #071b63;
    margin-bottom: 6px;
}

.item-content .price {
    color: #2453ff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.item-content p {
    color: #62708f;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.item-content a {
    text-decoration: none;
    color: #2453ff;
    font-size: 14px;
}

.remove {
    display: inline-block;
    margin-top: 10px;
}


/* ==========================================================
   QUANTITY
========================================================== */

.quantity-box {
    display: flex;
    margin-top: 15px;
}

    .quantity-box button {
        width: 40px;
        height: 40px;
        border: 1px solid #dbe4ff;
        background: #fff;
        cursor: pointer;
    }

    .quantity-box input {
        width: 50px;
        border: 1px solid #dbe4ff;
        text-align: center;
        outline: none;
    }

.item-total {
    font-size: 16px;
    font-weight: 700;
    color: #071b63;
}


/* ==========================================================
   SUMMARY
========================================================== */

.cart-summary {
    padding: 20px;
    height: fit-content;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

    .summary-header h3 {
        font-size: 15px;
        font-weight: 600;
        color: #071b63;
    }

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid #edf2f7;
    color: #61708d;
    font-size: 13px;
}

.green {
    color: #16a34a;
    font-weight: 700;
}

.estimated {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 18px 0;
}

    .estimated span {
        font-size: 13px;
        font-weight: 700;
        color: #071b63;
    }

    .estimated h2 {
        font-size: 15px;
        font-weight: 700;
        color: #071b63;
    }


/* ==========================================================
   BUTTON
========================================================== */

.checkout-btn {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 10px;
    background: linear-gradient( 90deg, #2453ff, #003eff );
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

    .checkout-btn:hover {
        transform: translateY(-2px);
    }


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1200px) {

    .cart-grid {
        grid-template-columns: 1fr;
    }

    .cart-banner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .cart-stepper {
        justify-content: center;
    }

    .cart-hero-image {
        margin: auto;
    }
}

@media(max-width:768px) {

    .cart-banner {
        padding: 18px;
    }

    .cart-banner-content h1 {
        font-size: 24px;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .item-total {
        font-size: 15px;
    }

    .estimated h2 {
        font-size: 14px;
    }

    .step-line {
        width: 40px;
    }
}

    .payment-info h4 {
        margin: 0 0 10px;
        font-size: 18px;
        font-weight: 700;
        color: #071b63;
    }

    .payment-info p {
        margin: 0;
        font-size: 16px;
        color: #62708f;
    }

    .payment-info a {
        color: #2453ff;
        text-decoration: none;
        font-weight: 600;
    }


/* =========================================
       OPTIONS
    ========================================= */

.payment-option {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    margin-bottom: 18px;
}

    .payment-option:last-child {
        margin-bottom: 0;
    }

    .payment-option input {
        position: absolute;
        opacity: 0;
    }

.radio-custom {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #cfd8ea;
    margin-right: 14px;
    position: relative;
    transition: .3s;
}

.payment-option input:checked + .radio-custom {
    border-color: #2453ff;
}

    .payment-option input:checked + .radio-custom::after {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #2453ff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.option-text {
    font-size: 16px;
    color: #53627f;
}

    .option-text small {
        color: #7a88a5;
    }


/* =========================================
       BUTTON
    ========================================= */

.place-order-btn {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: linear-gradient( 90deg, #2453ff, #003eff );
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: .3s;
}

    .place-order-btn:hover {
        transform: translateY(-2px);
    }


/* =========================================
       FOOTER
    ========================================= */

.secure-checkout {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    color: #7b88a5;
}

    .secure-checkout i {
        color: #2453ff;
    }


/* =========================================
   COUPON SECTION
========================= */

.coupon-section {
    margin: 20px 0;
}

.coupon-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .coupon-input-wrapper input {
        flex: 1;
        height: 38px;
        border: 1px solid #dce1f0;
        border-radius: 10px;
        padding: 0 16px;
        font-size: 14px;
        font-weight: 500;
        outline: none;
        transition: 0.3s;
    }

        .coupon-input-wrapper input:focus {
            border-color: #2453ff;
        }

    .coupon-input-wrapper button {
        height: 38px;
        padding: 0 18px;
        border: none;
        border-radius: 10px;
        background: #2453ff;
        color: white;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s;
    }

        .coupon-input-wrapper button:hover {
            opacity: 0.92;
        }

.discount-row {
    color: #1fa463;
    font-weight: 700;
}

.remove-coupon-btn {
    background: transparent;
    border: none;
    color: #ff4d4f;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
    font-weight: 700;
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;

    text-decoration: none;
}

.checkout-hero {
    padding: 0px 0;
}

.checkout-banner {
    background: #f7faff;
    border-radius: 20px;
    padding: 60px;
}

.checkout-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin: 20px 0;
    color: #071b63;
}

.checkout-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #667590;
}


/* STEP */

.checkout-stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #dbe4ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.active .step-icon,
.step.completed .step-icon {
    background: #fff;
    color: #2453ff;
    border: 2px solid #2453ff;
}

.step-line {
    width: 140px;
    height: 2px;
    background: #dbe4ff;
}

    .step-line.active {
        background: #2453ff;
    }


/* MAIN */

.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.billing-card,
.summary-card,
.payment-card {
    border: 1px solid #e8edf5;
    border-radius: 15px;
    background: #fff;
    padding: 20px;
}

.card-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

    .card-title h3 span,
    .summary-card h3 span,
    .payment-card h3 span {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: #2453ff;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 8px;
        font-size: 13px;
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.full {
    grid-column: span 2;
}

.form-grid input,
.form-grid select,
textarea {
    width: 100%;
    height: 42px;
    border: 1px solid #dce4f2;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 14px;
}

textarea {
    height: 90px;
    padding-top: 12px;
}

.location-box {
    position: relative;
}

    .location-box i:first-child {
        position: absolute;
        left: 15px;
        top: 18px;
    }

    .location-box i:last-child {
        position: absolute;
        right: 15px;
        top: 18px;
    }

    .location-box input {
        padding-left: 45px;
    }

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #edf2f7;
    font-weight:700;
}

.total strong {
    font-size: 16px;
    color: #2453ff;
}

.place-order-btn {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: #2453ff;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-top: 16px;
}

.secure-checkout {
    margin-top: 25px;
    text-align: center;
    color: #667590;
}


@media(max-width:1200px) {

    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full {
        grid-column: unset;
    }

    .step-line {
        width: 50px;
    }

    .checkout-content h1 {
        font-size: 40px;
    }
}
/* =========================================
   PAYMENT CARD
========================================= */

.payment-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 18px;
    padding: 28px;
}


/* =========================================
   HEADER
========================================= */

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.payment-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.payment-step {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #2453ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.payment-title h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #071b63;
}


/* =========================================
   PAYMENT ICONS
========================================= */

.payment-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .payment-icons span {
        font-size: 15px;
        color: #6c7a97;
    }

    .payment-icons img {
        height: 28px;
        border-radius: 6px;
    }

.more-card {
    width: 40px;
    height: 28px;
    border-radius: 8px;
    background: #f3f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #5d6b87;
}


/* =========================================
   PAYMENT BOX
========================================= */

.payment-box {
    border: 1px solid #e7edf5;
    border-radius: 14px;
    padding: 26px;
    margin-bottom: 26px;
}


/* =========================================
   PAYMENT INFO
========================================= */

.payment-info {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #edf2f7;
}

    .payment-info h4 {
        font-size: 17px;
        font-weight: 700;
        color: #071b63;
        margin-bottom: 10px;
    }

    .payment-info p {
        margin: 0;
        font-size: 16px;
        color: #61708f;
    }

    .payment-info a {
        color: #2453ff;
        font-weight: 600;
        text-decoration: none;
    }


/* =========================================
   RADIO OPTIONS
========================================= */

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.payment-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

    .payment-option input {
        position: absolute;
        opacity: 0;
    }

.radio-custom {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #cfd8ea;
    margin-right: 14px;
    position: relative;
    transition: .3s;
}

.payment-option input:checked + .radio-custom {
    border-color: #2453ff;
}

    .payment-option input:checked + .radio-custom::after {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #2453ff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.option-text {
    font-size: 16px;
    color: #53627f;
}

    .option-text small {
        color: #7a88a5;
    }


/* =========================================
   BUTTON
========================================= */

.place-order-btn {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: linear-gradient( 90deg, #2453ff, #003eff );
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: .3s;
}

    .place-order-btn:hover {
        transform: translateY(-2px);
    }


/* =========================================
   FOOTER
========================================= */

.secure-checkout {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    color: #7b88a5;
}

    .secure-checkout i {
        color: #2453ff;
    }


/* restore validate button style */
.validate-address-btn {
    background: #00AEEF;
    color: white;
    border: none;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: 0.3s;
}
.validate-address-btn:hover { opacity: 0.9; }

/* Stripe elements container and iframe sizing */
.stripe-card-box {
    display: block !important;
    min-height: 38px;
    padding: 6px 10px !important;
    border: 1px solid #dcdfe6;
    border-radius: 8px;
    background: #fff;
}
.stripe-card-box iframe { height: 38px !important; }

/* Payment icons (visa, amex, mastercard, discover) */
.payment-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.payment-icons .card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 32px;
    padding: 0 10px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e8eef8;
    box-shadow: 0 2px 6px rgba(2,6,23,0.04);
    font-size: 13px;
    font-weight: 700;
    color: #6c7a97;
    line-height: 1;
}
.payment-icons .visa { color: #1a1f71; }
.payment-icons .amex { color: #2e77bc; }
.payment-icons .discover { color: #f58220; }
.payment-icons .mastercard { position: relative; width: 64px; padding: 0; }
.payment-icons .mastercard::before,
.payment-icons .mastercard::after {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.payment-icons .mastercard::before { background: #eb001b; left: 10px; }
.payment-icons .mastercard::after  { background: #f79e1b; right: 10px; }

#googleMap,
#shippingGoogleMap {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 12px;
}


/* =========================================
   CHECKOUT PRODUCT CARD
========================================= */

.summary-card {
    border: 1px solid #e7edf5;
    border-radius: 18px;
    background: #ffffff;
    padding: 18px;
    margin-bottom: 16px;
}

/* =========================================
   PRODUCT ITEM
========================================= */

.checkout-product {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #edf2f7;
}

    .checkout-product:last-child {
        border-bottom: none;
    }

.checkout-product-image {
    width: 64px;
    min-width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fbff;
    border: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .checkout-product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 8px;
    }

.checkout-product-content {
    flex: 1;
}

    .checkout-product-content h4 {
        font-size: 14px;
        line-height: 1.3;
        font-weight: 700;
        color: #071b63;
        margin-bottom: 4px;
    }

.checkout-product-price {
    font-size: 13px;
    font-weight: 700;
    color: #2453ff;
    margin-bottom: 8px;
}

/* =========================================
   QUANTITY SELECT
========================================= */

.checkout-qty {
    width: 90px;
    height: 42px;
    border: 1px solid #dce4f2;
    border-radius: 10px;
    background: #ffffff;
    padding: 0 14px;
    font-size: 14px;
    color: #071b63;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}

    .checkout-qty:focus {
        border-color: #2453ff;
    }

/* =========================================
   SUMMARY ROWS
========================================= */

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #edf2f7;
    font-size: 13px;
    color: #61708d;
}

    .summary-row.total {
        padding-top: 14px;
    }

        .summary-row.total h2 {
            font-size: 15px;
            font-weight: 600;
            color: #071b63;
        }

        .summary-row.total strong {
            font-size: 15px;
            font-weight: 800;
            color: #2453ff;
        }

/* =========================================
   COUPON BOX
========================================= */

.coupon-box {
    margin-top: 22px;
    border: 1px solid #e7edf5;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
}

/* =========================================
   HEADER
========================================= */

.coupon-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .coupon-header:hover {
        background: #f8fbff;
    }

.coupon-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* =========================================
   ICON
========================================= */

.coupon-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #edf3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2453ff;
    font-size: 18px;
    flex-shrink: 0;
}

/* =========================================
   TEXT
========================================= */

.coupon-title {
    font-size: 13px;
    font-weight: 700;
    color: #071b63;
    margin-bottom: 2px;
}

.coupon-subtitle {
    font-size: 14px;
    color: #7b88a5;
    line-height: 1.5;
}

/* =========================================
   ARROW
========================================= */

#couponArrow {
    color: #7b88a5;
    font-size: 15px;
    transition: transform 0.3s ease;
}

/* =========================================
   CONTENT
========================================= */

.coupon-content {
    padding: 0 16px 16px;
    border-top: 1px solid #edf2f7;
}

/* =========================================
   INPUT WRAPPER
========================================= */

.coupon-input-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

    .coupon-input-wrapper input {
        flex: 1;
        height: 38px;
        border: 1px solid #dce4f2;
        border-radius: 10px;
        padding: 0 14px;
        font-size: 13px;
        outline: none;
        transition: 0.3s ease;
    }

        .coupon-input-wrapper input:focus {
            border-color: #2453ff;
        }

    .coupon-input-wrapper button {
        min-width: 90px;
        height: 38px;
        border: none;
        border-radius: 10px;
        background: #2453ff;
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s ease;
    }

        .coupon-input-wrapper button:hover {
            background: #123de3;
        }

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px) {

    .checkout-product {
        flex-direction: column;
    }

    .checkout-product-image {
        width: 100%;
        height: 220px;
    }

    .coupon-input-wrapper {
        flex-direction: column;
    }

        .coupon-input-wrapper button {
            width: 100%;
        }

    .summary-row.total h2,
    .summary-row.total strong {
        font-size: 28px;
    }
}

/* =========================================
   CLEAN ORDER SUMMARY
========================================= */

.checkout-order-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #edf2f7;
}

    .checkout-order-item:last-child {
        border-bottom: none;
    }

.checkout-order-info {
    flex: 1;
}

    .checkout-order-info h4 {
        font-size: 17px;
        line-height: 1.4;
        font-weight: 700;
        color: #071b63;
        margin: 0 0 8px;
    }

.checkout-order-meta {
    font-size: 15px;
    color: #64748b;
}

.checkout-order-price {
    font-size: 18px;
    font-weight: 700;
    color: #2453ff;
    white-space: nowrap;
}

/* MOBILE */

@media(max-width:768px) {

    .checkout-order-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-order-price {
        font-size: 20px;
    }
}

/* =========================================
   FINAL COUPON UI FIX
========================================= */

.coupon-box {
    margin-top: 18px;
    margin-bottom: 18px;
    border: 1px solid #e8eef7;
    border-radius: 22px;
    background: #ffffff;
    overflow: hidden;
    transition: 0.3s ease;
}

.coupon-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    min-height: 92px;
    cursor: pointer;
}

.coupon-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.coupon-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #edf3ff;
    color: #2453ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.coupon-title {
    font-size: 17px;
    font-weight: 700;
    color: #071b63;
    line-height: 1.3;
    margin-bottom: 4px;
}

.coupon-subtitle {
    font-size: 14px;
    color: #7b88a5;
    line-height: 1.4;
}

#couponArrow {
    font-size: 14px;
    color: #7b88a5;
    transition: transform 0.3s ease;
}

/* OPEN STATE */

.coupon-box.active {
    box-shadow: 0 8px 30px rgba(36, 83, 255, 0.08);
}

/* CONTENT */

.coupon-content {
    padding: 0 16px 16px;
    border-top: 1px solid #edf2f7;
}

.coupon-input-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

    .coupon-input-wrapper input {
        flex: 1;
        height: 38px;
        border: 1px solid #dbe4f0;
        border-radius: 10px;
        padding: 0 14px;
        font-size: 13px;
    }

    .coupon-input-wrapper button {
        height: 38px;
        min-width: 90px;
        border: none;
        border-radius: 10px;
        background: #2453ff;
        color: white;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
    }
.checkout-content-wrapper {
    position: relative;
}

.checkout-loader {
    padding: 20px 0;
}

.checkout-skeleton {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.skeleton-left,
.skeleton-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skeleton-card {
    border-radius: 12px;
    background: #e9ecef;
    overflow: hidden;
    position: relative;
}

    .skeleton-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: -150px;
        width: 150px;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,.8), transparent );
        animation: shimmer 1.4s infinite;
    }

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

.skeleton-title {
    height: 45px;
    width: 300px;
}

.skeleton-input {
    height: 55px;
}

.skeleton-map {
    height: 260px;
}

.skeleton-order-title {
    height: 45px;
}

.skeleton-product {
    height: 65px;
}

.skeleton-total {
    height: 90px;
}

.skeleton-payment {
    height: 300px;
}

@media(max-width:991px) {
    .checkout-skeleton {
        grid-template-columns: 1fr;
    }
}

.payment-processing-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.payment-processing-box {
    width: 100%;
    max-width: 450px;
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.payment-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #e5e5e5;
    border-top: 5px solid #2453ff;
    border-radius: 50%;
    animation: spin .8s linear infinite;
    margin: 0 auto 20px;
}

.payment-processing-box h3 {
    margin-bottom: 12px;
    color: #0f172a;
    font-size: 24px;
    font-weight: 700;
}

.payment-processing-box p {
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.6;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Tablet */
@media (max-width: 768px) {

    .payment-processing-box {
        max-width: 380px;
        padding: 30px 24px;
    }

    .payment-spinner {
        width: 50px;
        height: 50px;
    }

    .payment-processing-box h3 {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 480px) {

    .payment-processing-overlay {
        padding: 15px;
    }

    .payment-processing-box {
        max-width: 100%;
        padding: 24px 18px;
        border-radius: 12px;
    }

    .payment-spinner {
        width: 45px;
        height: 45px;
        border-width: 4px;
    }

    .payment-processing-box h3 {
        font-size: 20px;
    }

    .payment-processing-box p {
        font-size: 14px;
    }
}

.payment-form {
    max-width: 700px;
}

.stripe-label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
}

.stripe-card-box {
    width: 100%;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid #dbe2ea;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.stripe-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

    .stripe-row > div {
        width: 100%;
    }

.stripe-error {
    color: #dc2626;
    margin-top: 12px;
    font-size: 14px;
}

.save-payment-btn {
    margin-top: 20px;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    background: #2563eb;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    min-width: 220px;
}

    .save-payment-btn:hover {
        background: #1d4ed8;
    }

/* Stripe states */
.StripeElement--focus {
    border-color: #2563eb;
}

.StripeElement--invalid {
    border-color: #dc2626;
}

#card-number,
#card-expiry,
#card-cvc {
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
    padding: 14px 16px !important;
}
.payment-box {
    padding: 24px;
}

.payment-info {
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all .2s ease;
}

    .payment-option:hover {
        border-color: #2952ff;
        background: #f8faff;
    }

    .payment-option input[type="radio"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

.option-text {
    font-size: 15px;
    color: #334155;
}

    .option-text small {
        color: #64748b;
    }

.saved-cards-title {
    margin: 20px 0 12px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

.stripe-wrapper {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
}

.stripe-label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
}

.stripe-card-box {
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    padding: 8px 12px;
    min-height: 38px;
}

.place-order-btn {
    margin-top: 16px;
}

.secure-checkout {
    margin-top: 20px;
    text-align: center;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    min-height: 48px;
    margin-bottom: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s ease;
}

    .payment-option.selected {
        border: 2px solid #2952ff;
        background: #f5f8ff;
    }

.saved-cards-title {
    font-size: 15px;
    font-weight: 600;
    margin: 16px 0 10px;
    color: #0f172a;
}

.stripe-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8faff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

    .stripe-info i {
        color: #2952ff;
    }
.stripe-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f8fbff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    margin-bottom: 20px;
}

    .stripe-info i {
        font-size: 18px;
        color: #2952ff;
    }

.stripe-mode {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.saved-cards-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 10px;
    background: #fff;
    cursor: pointer;
    transition: all .2s ease;
}

    .payment-option:hover {
        border-color: #2952ff;
        background: #f8fbff;
    }

    .payment-option input[type="radio"] {
        width: 18px;
        height: 18px;
    }

.option-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.new-card-option {
    border-style: dashed;
}

/* =========================================
   PAYMENT RESPONSIVE FIX
========================================= */

@media (max-width: 991px) {

    .payment-card {
        padding: 20px;
    }

    .payment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .payment-icons {
        flex-wrap: wrap;
    }

    .payment-title h3 {
        font-size: 24px;
    }

    .payment-box {
        padding: 18px;
    }
}

@media (max-width: 768px) {

    .payment-card {
        padding: 16px;
    }

    .payment-header {
        margin-bottom: 20px;
    }

    .payment-title {
        gap: 10px;
    }

    .payment-step {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .payment-title h3 {
        font-size: 22px;
    }

    .payment-icons {
        gap: 6px;
    }

        .payment-icons .card-icon {
            min-width: 48px;
            height: 28px;
            font-size: 11px;
        }

    .payment-box {
        padding: 14px;
    }

    #savedPaymentMethods {
        gap: 10px;
    }

    .payment-option {
        padding: 14px;
        gap: 10px;
        margin-bottom: 10px;
    }

    .option-text {
        font-size: 15px;
        line-height: 1.4;
        flex-wrap: wrap;
    }

        .option-text small {
            display: block;
            margin-top: 4px;
        }

    .place-order-btn {
        height: 42px;
        font-size: 14px;
    }

    .secure-checkout {
        font-size: 13px;
    }
}

@media (max-width: 576px) {

    .payment-card {
        padding: 12px;
    }

    .payment-title h3 {
        font-size: 15px;
    }

    .payment-box {
        padding: 12px;
    }

    .payment-info h4 {
        font-size: 14px;
    }

    .payment-info p {
        font-size: 13px;
        line-height: 1.5;
    }

    .payment-option {
        padding: 10px;
        align-items: flex-start;
    }

    .radio-custom {
        margin-top: 3px;
        flex-shrink: 0;
    }

    .option-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .place-order-btn {
        height: 40px;
        font-size: 13px;
    }

    .secure-checkout {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

#savedPaymentMethods {
    margin-bottom: 16px !important;
}

    #savedPaymentMethods .payment-option {
        margin-bottom: 12px !important;
    }

.new-card-option {
    margin-top: 12px !important;
}