 h1,h2,h3,h4,h5,h6{
    letter-spacing:-0.4px;
    line-height:1.25;
}
 html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ===============================
   HAMBURGER MENU MOBILE
   =============================== */

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger img {
    width: 28px;
    height: 28px;
    display: block;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0; /* remove gap */
    text-decoration: none;
}

.logo-round {
    height: 90px;   /* bigger round logo */
    width: auto;
}

.logo-text {
    height: 36px;   /* bigger Promozone text */
    width: auto;
    margin-left: -10px;
}



body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}

header {
    background: #fff;
    padding: 15px 60px 0 60px;
    border-bottom: 1px solid #eee;
}


.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 600;
    color: #2d3a4b;
}

.right-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.shop-btn {
    border: 2px solid #3b82f6;
    padding: 6px 14px;
    border-radius: 6px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.amount {
    font-weight: 500;
}

.nav-menu {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 35px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu a {
    text-decoration: none;
    color: #2d3a4b;
}

.nav-menu a:hover {
    color: #3b82f6;
}

/* ===== FOOTER ===== */

.site-footer {
    background: #eef1f5;
    padding: 60px 20px 40px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

/* FOOTER DESKTOP IMPROVEMENT */

.footer-links {
    flex-wrap: wrap;
    row-gap: 18px;
}

.footer-links a {
    text-decoration: none;
    color: #3c5068;
}

.footer-copy {
    margin-top: 25px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-weight: 600;
    margin-bottom: 40px;
}

.footer-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.footer-social {
    margin-bottom: 40px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-social a {
    text-decoration: none;
    color: #2d3a4b;
}

.footer-copy {
    font-size: 15px;
    color: #2d3a4b;
}

 
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 70px;     /* thoda bada */
    height: 70px;
    background: none;      /* REMOVE background */
   border-radius: 50%;      /* REMOVE circle */
    display: block;        /* flex remove */
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 99999;
}

.whatsapp-float img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    object-fit: contain;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* ===== BANNER SECTION ===== */

.banner {
     background: #fff;
    display: flex;
     align-items: flex-start; 
    justify-content: space-between;
 box-sizing: border-box;
    padding: 40px 6%;   /* balanced desktop spacing */
    gap: 40px;

    height: auto;       /* тнР important */
}



.banner-left {
    width: 50%;
}

.banner-left h1 {
    font-size: 52px;
    font-weight: 700;
    color: #444;
    margin-bottom: 15px;
}

.banner-left p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.banner-btn {
    background: #6b21a8;
    color: #fff;
    padding: 18px 45px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0;
}

.banner-subtext {
    font-size: 22px;
    color: #333;
}

.banner-subtext span {
    color: #6b21a8;
    font-weight: 700;
}

.banner-right {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}


.banner-right img {
    max-width: 430px;
    width: 100%;
    height: auto;
}
.banner-slider {
       background: #fff;
    overflow: hidden;
    position: relative;
}

/* IMPORTANT FIX */
.banner-track {
    display: flex;
    transition: transform 0.5s ease;

    /*width: 100%;*/
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    flex: 0 0 100%;
}

 



/* ===== STATS SECTION ===== */

.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
      padding: 50px 60px 25px; 
gap: 40px;
    background: #fff;
}

.stat-box {
    text-align: center;
}

.stat-icon {
    width: 120px;
    height: 120px;
    background: #3d3a8f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}
/* ===== STATS POP ANIMATION ===== */

.stat-icon {
    transform: scale(0.6);
    opacity: 0;
    transition: all 0.6s ease;
}

.stat-box.show .stat-icon {
    transform: scale(1);
    opacity: 1;
}

.stat-box h2 {
    font-size: 42px;
    font-weight: 700;
    color: #444;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 28px;
    color: #555;
}

/* ===== TESTIMONIALS ===== */

.testimonials-section {
     padding: 50px 80px 80px;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
    color: #444;
}

.testimonials-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.testimonial-card {
    background: #e8e2ef;
    padding: 40px 30px;
    width: 23%;
    border-radius: 8px;
}

.testimonial-card.light {
    background: #f4f5f7;
}

.testimonial-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.stars {
    color: #f4b400;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}


/* ===== CTA SECTION ===== */

.cta-section {
    text-align: center;
     padding: 60px 20px; 
    background: #fff;
}

.cta-section h2 {
    font-size: 32px; 
    margin-bottom: 25px;
    color: #444;
}

.cta-btn {
     margin-top: 0;
    background: #6b21a8;
    color: #fff;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

/* ===== FAQ SECTION ===== */

.faq-section {
    padding: 100px 20px;
    background: #f4f5f7;
}

.faq-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #444;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    margin-bottom: 15px;
}

.faq-question {
    padding: 20px 25px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    padding: 20px 25px;
    font-size: 17px;
    color: #555;
    display: none;
}

/* Active state */
.faq-item.active .faq-question {
    background: linear-gradient(to right, #8e44ad, #9b59b6);
    color: #fff;
}

.faq-item.active .faq-answer {
    display: block;
    background: #fff;
}

.logo {
    display: flex;
    align-items: center;
}
 

 

.footer-social img {
    width: 32px;
    height: 32px;
    transition: 0.3s ease;
}

.footer-social img:hover {
    transform: scale(1.15);
}

.nav-menu a.active {
    color: #6b21a8;
    border-bottom: 2px solid #6b21a8;
    padding-bottom: 5px;
}

/* ===== SHOP GRID ===== */

.shop-section {
    padding: 80px 60px;
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;   /* equal rows */
}


.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: space-between; /* IMPORTANT */
    height: 100%;                   /* SAME HEIGHT */
}


.product-card img {
    width: 100%;
    height: 160px;      /*  fixed height */
    object-fit: contain;
    margin-bottom: 15px;
}

 
.product-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.price {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-left: 8px;
}
/* ONLY LinkedIn product */
.linkedin-card .old-price {
    text-decoration: none;
    color: #999;
}

.product-btn {
    background: #6b21a8;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.nav-menu a.active {
    color: #6b21a8;
    border-bottom: 2px solid #6b21a8;
}

/* ============================= */
/* PRODUCT DETAIL PAGE MODERN UI */
/* ============================= */

.product-detail {
    padding: 100px 120px;
    background: #fff;
}

.product-detail-wrapper {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

/* LEFT IMAGE */

.product-detail-left {
    width: 40%;
    display: flex;
    justify-content: center;
}

.product-detail-left img {
    max-width: 320px;
    width: 100%;
    object-fit: contain;
}


/* RIGHT CONTENT */

.product-detail-right {
    flex: 1;
}

.product-detail-right h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3a4b;
}

/* PRICE */

.price-area {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    margin-bottom: 30px;
}

.new-price {
    font-weight: 700;
    color: #2d3a4b;
}

.old-price {
    color: #9aa3af;
    text-decoration: line-through;
    font-size: 20px;
}

/* DELIVERY BUTTONS */

.delivery-options {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.green-btn,
.orange-btn {
    padding: 12px 24px;
    border-radius: 30px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.green-btn {
    background: #2e7d32;
    color: #fff;
}

.orange-btn {
    background: #ef6c00;
    color: #fff;
}

/* DIVIDER */

.product-detail-right hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 35px 0;
}

/* TENURE */

.tenure-box p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.tenure-pill {
    display: inline-block;
    border: 2px solid #111;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 500;
}

.clear-link {
    margin-left: 10px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
}

/* CART ROW */

.cart-row {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.qty-box {
    display: flex;
    align-items: center;
    border: 2px solid #7b1fa2;
    border-radius: 8px;
    overflow: hidden;
    height: 55px;
}

.qty-box button {
    background: #fff;
    border: none;
    padding: 0 20px;
    font-size: 20px;
    cursor: pointer;
}

.qty-box span {
    padding: 0 25px;
    font-size: 18px;
}

.add-cart-btn {
    flex: 1;
    height: 55px;
    background: linear-gradient(to right, #6b21a8, #7e22ce);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

/* TRUST POINTS */

.trust-points {
    list-style: none;
    margin-top: 30px;
}

.trust-points li {
    font-size: 18px;
    margin-bottom: 15px;
    color: #334155;
    position: relative;
    padding-left: 30px;
}

.trust-points li::before {
      content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #2563eb;
    font-weight: bold;
}

/* SECURE BOX */

.secure-box {
    margin-top: 40px;
    padding: 30px;
    border: 2px dashed #e5e7eb;
    border-radius: 10px;
    text-align: center;
}

.secure-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #475569;
}

.payment-icons img {
    height: 45px;
    margin: 0 15px;
}

.view-cart-btn {
    flex: 1;
    height: 55px;
    background: #e5e7eb;
    color: #334155;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 55px;
    text-decoration: none;
    display: none;
}

.cart-count {
    background: #6b21a8;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 50px;
    margin-left: 5px;
}

/* ===== CART PAGE ===== */

.cart-page {
    padding: 80px 100px;
    background: #f5f6f8;
}

.cart-wrapper {
    display: flex;
    gap: 60px;
}

.cart-left {
    flex: 2;
}

.cart-right {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
}

.cart-img {
    width: 100px;
    border-radius: 6px;
}

.cart-info h4 {
    margin-bottom: 8px;
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.cart-qty button {
    padding: 5px 10px;
    border: 1px solid #aaa;
    background: #fff;
}

.cart-item-total {
    margin-left: auto;
    font-weight: 600;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
    font-size: 18px;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    background: #3b82f6;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
}

/* ===== STATIC PAGES ===== */

 

.static-container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
}

.static-container h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.static-container h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.static-container p {
    line-height: 1.8;
    color: #555;
}

.step {
    margin-bottom: 25px;
}

/* ===== TERMS PAGE ===== */

.tc-section {
    padding: 80px 100px;
    background: #fff;
}

.tc-container {
    max-width: 1000px;
    margin: auto;
}

.tc-title {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2d3a4b;
}

.accordion {
    border: 1px solid #dcdcdc;
    margin-bottom: 20px;
    background: #fff;
}

.accordion-header {
    padding: 20px 25px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f7f8fa;
}

.accordion-header:hover {
    background: #eef1f6;
}

.accordion-body {
    padding: 25px 30px;
    display: none;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.accordion.active .accordion-body {
    display: block;
}

.icon {
    font-size: 22px;
    font-weight: bold;
    color: #444;
}

.quick-ref {
    margin-bottom: 20px;
    font-size: 17px;
}

.accordion ol {
    padding-left: 20px;
}

.accordion li {
    margin-bottom: 12px;
}

.tip-box {
    margin-top: 20px;
    padding: 15px 20px;
    border-left: 4px solid #3b82f6;
    background: #f3f6ff;
}


.static-page {
    padding: 80px 100px;
    background: #fff;
}

.static-container {
    max-width: 900px;
    margin: auto;
}

.static-container h1 {
    font-size: 40px;
    margin-bottom: 25px;
}

.section-title {
    font-size: 30px;
    margin-top: 0px;
    margin-bottom: 15px;
}

.blue-link {
    color: #3b82f6;
    text-decoration: none;
}

.blue-link:hover {
    text-decoration: underline;
}

/* Accordion Style */
/* ===== MODERN TERMS ACCORDION ===== */

.accordion {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #fff;
}

.accordion-header {
    background: #f8fafc;
    padding: 18px 22px;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
    transition: 0.3s;
}

.accordion-header:hover {
    background: #eef2f7;
}

.accordion-body {
    display: none;
    padding: 25px 25px 20px;
    background: #fff;
}

.accordion.active .accordion-body {
    display: block;
}

/* OPEN STATE */
.accordion.active .accordion-header {
    background: #eef2ff;
    border-left: 4px solid #6b21a8;
}




.accordion ul {
    margin-top: 10px;
}

.accordion li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/*checkout css*/
/* PAGE BACKGROUND */
.checkout-page {
    background: #f6f7f9;
    padding: 40px 0;
}

/* MAIN WRAPPER */
.checkout-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

/* LEFT SIDE */
.checkout-left {
    flex: 2;
}

/* RIGHT SIDE */
.checkout-right {
    flex: 1;
}

/* STEP BAR */
.checkout-step {
    font-weight: 600;
    margin-bottom: 20px;
}

.progress-bar {
    height: 6px;
    background: #e2e2e2;
    border-radius: 10px;
    margin-top: 8px;
    position: relative;
}

.progress-bar::after {
    content: "";
    width: 60%;
    height: 100%;
    background: #28a745;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
}

/* CARD DESIGN */
.checkout-card {
    background: white;
    border: 1px solid #e3e6ea;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
}

/* FORM LAYOUT */
.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
}

label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

textarea {
    height: 120px;
}

/* PAYMENT BUTTON */
.payment-btn {
    width: 100%;
    padding: 16px;
    border: none;
    background: #2d6cdf;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

/* ORDER SUMMARY BOX */
.order-summary {
    background: white;
    border: 1px solid #e3e6ea;
    border-radius: 10px;
    padding: 20px;
    position: sticky;
    top: 120px;
}

/* ORDER ITEMS */
.order-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
}

.order-item img {
    width: 50px;
    border-radius: 6px;
}

/* TOTAL ROWS */
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.summary-row.total {
    font-weight: bold;
    font-size: 18px;
}

.payment-box h3 {
    margin-top: 20px;
    margin-bottom: 15px;
}

/* COUPON */
.coupon-toggle {
    color: #2d6cdf;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 10px;
}

/* PAYMENT METHOD CARD */
.payment-method {
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 15px;
}

/* TITLE BAR */
.payment-title {
    background: #f3f5f7;
    padding: 15px;
    font-weight: 600;
    color: #333;
}

/* DESCRIPTION */
.payment-desc {
    padding: 20px;
    color: #555;
}

/* TERMS */
.terms {
    display: block;
    margin: 20px 0;
    font-size: 14px;
}

.terms span {
    color: #2d6cdf;
}

/* PLACE ORDER BUTTON */
.place-order-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, #3a6fe5, #4c7cf0);
    border: none;
    color: white;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
}

.order-success {
    max-width: 900px;
    margin: 40px auto;
}

.success-box {
    background: #f7f9fc;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
}

.whatsapp-btn {
    background: #43c466;
    border: none;
    padding: 18px 30px;
    color: white;
    font-size: 18px;
    border-radius: 8px;
    margin-top: 20px;
    cursor: pointer;
}

.order-summary-box {
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 10px;
}
.success-page {
    max-width: 1100px;
    margin: 40px auto;
}

.page-title {
    font-size: 42px;
    margin-bottom: 30px;
}

/* BANNER */
.success-banner {
    background: #f5f7fb;
    padding: 60px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
}

.whatsapp-big-btn {
    background: #5fb86a;
    border: none;
    padding: 20px 40px;
    font-size: 22px;
    color: white;
    border-radius: 10px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin:25px auto 0;   /* ⭐ CENTER FIX */
}


.whatsapp-big-btn .wa-icon{
    width:24px;
    height:24px;
    object-fit:contain;
}

/* INFO GRID */
.order-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
}

.info-box {
    padding: 25px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
}

.info-box label {
    display: block;
    color: #666;
    margin-bottom: 8px;
}

/* ORDER DETAILS */
.order-details {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
}

.order-row.total {
    font-weight: bold;
    font-size: 18px;
    border-bottom: none;
}

.billing-section {
    margin-top: 40px;
}

.billing-box {
    border: 2px dashed #ddd;
    padding: 25px;
    border-radius: 10px;
    background: #fafafa;
}

/* =================================
   MOBILE RESPONSIVE (ADD AT END)
   ================================= */

 

@media (max-width: 768px) {

    /* HEADER */
    header {
        padding: 15px 20px 0;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 12px;
    }

     

    /* BANNER */
      .banner {
           background: #fff;
        flex-direction: column;
        text-align: center;
        padding: 30px 15px;  /* space kam */
        gap: 20px;
        min-height: auto;    /* ye sabse important */
    }


    .banner-left,
    .banner-right {
        width: 100%;
    }

     .banner-left h1 {
        font-size: 34px;
        margin-bottom: 10px;
    }

    .banner-left p {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .banner-right img {
        max-width: 100%;
        margin-top: 10px;
    }

    /* STATS */
 .stats-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 12px;
    gap: 10px;
     background: #fff;
}

 

     .stat-box {
    flex: 1;
}


  .stat-icon {
    width: 58px;
    height: 58px;
    font-size: 20px;
    margin-bottom: 10px;
}

.stat-box h2 {
    font-size: 34px;
}

.stat-box p {
    font-size: 18px;
}


    /* TESTIMONIALS */
    .testimonials-wrapper {
        flex-direction: column;
    }

    .testimonial-card {
        width: 100%;
    }

    .section-title {
        font-size: 30px;
    }

    /* CTA */
    .cta-section h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    /* SHOP GRID */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    

    .product-detail-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .product-detail-left img {
        width: 100%;
    }

    .product-detail-right h1 {
        font-size: 26px;
    }

    /* CART PAGE */
    .cart-wrapper {
        flex-direction: column;
    }

    .cart-page {
        padding: 40px 20px;
    }

    /* CHECKOUT PAGE */
    .checkout-wrapper {
        flex-direction: column;
        padding: 0 20px;
    }

    .order-summary {
        position: static;
    }

    .form-row {
        flex-direction: column;
    }

    /* ORDER SUCCESS */
    .order-info-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

}

 
/* =================================
   FINAL HEADER RESPONSIVE
================================= */
 


/* MOBILE MENU PANEL */
.mobile-menu {
    position: fixed;
    left: -280px;
    top: 0;
    width: 260px;
    height: 100%;
    background: white;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s;
    z-index: 9999;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.mobile-menu.open {
    left: 0;
}

/* OVERLAY */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 999;
}

.menu-overlay.show {
    display: block;
}

/* CLOSE BUTTON */
.close-btn {
     cursor: pointer;
    margin-bottom: 20px;
}
 

.close-btn img {
    width: 28px;
    height: 28px;
    display: block;
}
 

/* =================================
   PRODUCT DETAIL MOBILE RESPONSIVE
   ================================= */

 


.best-seller-section {
       padding: 25px 8% 30px;
    background: #fff;
    text-align: center;
}

.best-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.5px;
    color: #111;
    margin-bottom: 28px;
}

.best-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.best-seller-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.best-card {
    min-width: 240px;
    height: 280px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ececec;
}

.best-card img {
   width: 82%;
    max-height: 82%;
    object-fit: contain;
}

.best-dots {
    margin-top: 20px;
    text-align: center;
}

.best-dots span {
    display:inline-block;
    width: 18px;
    height: 5px;
    margin:0 4px;
    border-radius: 20px;
    background: #d1d1d1;
}


.best-dots span.active {
    background: #6b42ff;
}



/* ===============================
   TERMS CONTACT SECTION
================================= */

.tc-contact {
    margin-top: 40px;
    padding: 25px;
    background: #f8f8f8;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.tc-contact h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #222;
}

.tc-contact p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.contact-email {
    margin-top: 10px;
    font-weight: 600;
}

.contact-email a {
    color: #6a42ff;
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

.tenure-box {
    margin-bottom: 18px;
}

/* ===== PROMISE SECTION ===== */

.promise-section {
    padding: 80px 40px;
    background: #fff;
    text-align: center;
}

.promise-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #222;
}

.promise-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}


.promise-card {
    background: #1f2431;
    color: white;
    width: 320px;
    padding: 35px 25px 30px; /* bottom padding thoda kam */
    display: flex;
    flex-direction: column;
    align-items: center;
}


.promise-number {
    font-size: 38px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.promise-card h3 {
      font-size: 20px;   /* 30 тЖТ 22 */
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.promise-card img {
    width: 100px;
    height: auto;
    margin-bottom: 25px;
}

.promise-card p {
     margin-bottom: 20px; 
    font-size: 16px;   /* 26 тЖТ 18 */
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

.promise-btn {
       margin-top: 10px;
       font-size: 14px;
    padding: 12px 30px;
    background: #5b5fc7;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: 3px;
    font-weight: 600;
    transition: 0.3s;
}

.promise-btn:hover {
    background: #4b4fab;
}

@media (max-width: 992px) {
    .promise-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .promise-card {
        width: 90%;
        max-width: 400px;
    }
}



.search-box input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
}

.cart-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 5px;
}

.qr-payment-section {
    margin-top: 30px;
    text-align: center;
}

.qr-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: inline-block;
}

.qr-box img {
    width: 220px;
    height: 220px;
    object-fit: contain;
}

.upi-id {
    margin-top: 10px;
    font-size: 16px;
}

.qr-note {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}

 

.banner-dots {
    text-align: center;
    margin-top: 10px;
}

.banner-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
}

.banner-dots span.active {
    background: #000;
}

/* ===== HERO BANNER WHITE BACKGROUND FIX ===== */

  

/* ===== ALL PAGE WHITE BACKGROUND ===== */

 

/* ===========================
   NOTICE PAGE DESIGN
=========================== */

.notice-page {
    background: #fff;
    padding: 40px 20px;
}

.notice-container {
    max-width: 1300px;
    margin: auto;
}

.notice-title {
    font-size: 42px;
    margin-bottom: 30px;
}

/* CARD */
.notice-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 30px;
    margin-bottom: 24px;
}

/* LEFT COLOR BORDER */
.notice-card.blue {
    border-left: 4px solid #3b82f6;
}

.notice-card.orange {
    border-left: 4px solid #ff6b00;
}

/* HEADER */
.notice-head {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.notice-head h3 {
    font-size: 26px;
    font-weight: 700;
}

.notice-date {
    color: #7a7a7a;
    font-size: 16px;
}

/* RIGHT TAG */
.notice-type {
    margin-left: auto;
    border: 1px solid #3b82f6;
    color: #3b82f6;
    padding: 6px 16px;
    border-radius: 20px;
      font-size: 13px;
    font-weight: 600;
}

.notice-type.product {
    border-color: #ff6b00;
    color: #ff6b00;
}

/* BADGES */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.badge.info {
    background: #eef4ff;
    color: #3b82f6;
}

.badge.critical {
    background: #fff3f3;
    color: #dc2626;
}

/* TEXT */
.notice-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

.notice-card ol {
    padding-left: 20px;
}

.notice-card li {
    margin-bottom: 8px;
}

/* MOBILE */
@media(max-width:768px){
  .best-title{
        font-size:30px;
        line-height:1.2;
    }
    .notice-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .notice-type {
        margin-left: 0;
    }

    .notice-head h3 {
        font-size: 24px;
    }

    .notice-card p {
        font-size: 16px;
    }
}



/*Term of use*/
.highlight {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.term-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.term-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.booking {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 15px;
    border-radius: 8px;
    line-height: 1.7;
    margin-top: 15px;
}

.final-line {
    margin-top: 15px;
    font-weight: 600;
}

/* =============================
   HOW IT WORKS TIMELINE
============================= */
 

.how-works {
    padding: 60px 20px;
    background: #f5f6f8;
}

.how-title {
    font-size: 30px;
    font-weight: 700;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 50px;
    color: #1e293b;
}

/* TIMELINE */
.timeline {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: #6b21a8;
    transform: translateX(-50%);
}

/* ITEM */
.timeline-item {
    width: 50%;
    padding: 20px 30px;
    position: relative;

    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s forwards;
}

.timeline-item:nth-child(1){ animation-delay:0.2s; }
.timeline-item:nth-child(2){ animation-delay:0.4s; }
.timeline-item:nth-child(3){ animation-delay:0.6s; }
.timeline-item:nth-child(4){ animation-delay:0.8s; }

.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }

/* CARD */
.content {
    background: #eef0f3;
    padding: 25px;
    border-radius: 10px;
}

/* IMAGE FIX */
.content img {
    width: 100%;
    max-width: 180px;   /* smaller image */
    display: block;
    margin: 0 auto 15px;
}

/* TEXT FIX */
.content p {
    font-size: 24px;    /* ЁЯСИ OLD 30 was huge */
    line-height: 1.6;
    color: #333;
}

/* ICON DOT */
.timeline-item::after {
    content: "?";
    position: absolute;
    top: 35px;
    right: -18px;
    width: 36px;
    height: 36px;
    background: #3c0c57;
    color: #fff;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size: 20px;
}

.timeline-item.right::after {
    left: -18px;
}

/* FINAL BLOCK */
.how-final {
    text-align: center;
    margin-top: 70px;
}

.how-final img {
    max-width: 220px;
    margin-bottom: 20px;
}

.how-final p {
    font-size: 24px;
    line-height: 1.6;
    color: #333;
}

/* ANIMATION */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= MOBILE ================= */
 

.cart-icon {
    font-size: 20px;
}
/* TERMS CHECKBOX FIX */
.terms {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin: 20px 0;
}

.terms input[type="checkbox"] {
    width: auto !important;   /* IMPORTANT */
    margin: 0;
    cursor: pointer;
}


/* ===== POPUP ===== */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.popup-overlay.show {
    display: flex;
}

.popup-box {
    background: #fff;
    width: 90%;
    max-width: 500px;   /* тнР PEHLE bahut bada tha */
    padding: 25px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border-radius: 8px;
}

.popup-close {
    position: absolute;
    right: -18px;
    top: -18px;
    width: 42px;
    height: 42px;
    background: #222;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    border: 4px solid #fff;
}
/* TEXT SIZE FIX */
.popup-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}
 
/* ACTIVE SELECT STYLE */
.tenure-pill.active,
.plan-pill.active {
    background: #6b21a8;
    color: #fff;
    border-color: #6b21a8;
    transition: 0.25s;
}
.voucher-info {
    margin-top: 15px;
}

.voucher-info p {
    background: #2d6cdf;
    color: white;
    padding: 10px 12px;
    margin-bottom: 8px;
    font-size: 15px;
    border-radius: 4px;
    line-height: 1.5;
}
/* ======================
   PAY PAGE
====================== */

.pay-page{
    background:#f7f8fb;
    padding:60px 20px;
}

.pay-wrapper{
    max-width:900px;
    margin:auto;
}

.pay-title{
    font-size:48px;
    font-weight:700;
    color:#1f2b3d;
    margin-bottom:40px;
}

/* CARD */
.pay-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:30px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.brand-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

/* QR */
.qr-holder img{
    width:260px;
    max-width:100%;
    border-radius:10px;
}

.scan-text{
    margin-top:18px;
    font-size:24px;
    font-weight:600;
    line-height:1.5;
}

.scan-text span{
    font-size:18px;
    color:#555;
}

/* UPI */
.upi-label{
    margin-top:40px;
    margin-bottom:15px;
    font-size:32px;
    font-weight:700;
}

.upi-box{
    background:#f2f2f2;
    padding:20px;
    border-radius:10px;
    font-size:34px;
    font-weight:600;
}

/* NOTES */
.pay-notes{
    margin-top:60px;
}

.pay-notes h3{
    font-size:36px;
    margin-bottom:20px;
}

.pay-notes ol{
    padding-left:25px;
    line-height:1.8;
    font-size:26px;
    color:#334155;
}

.pay-notes a{
    color:#2563eb;
}

 
/* ===== RELATED PRODUCTS ===== */

.related-section{
    padding-top: 40px;
}

.related-section .section-title{
    margin-bottom: 30px;
}

 

 



 



/* ============================================
   FINAL MOBILE RESPONSIVE (ONLY ONE BLOCK)
============================================ */

@media (max-width:768px){
    
    

    body {
        overflow-x: hidden;
    }

    .banner,
    .stats-section,
    .testimonials-section,
    .shop-section,
    .cart-page,
    .checkout-page,
    .promise-section,
    .how-works {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* ============================================
   FINAL PRODUCT RESPONSIVE (ONLY ONE BLOCK)
============================================ */
    .product-detail {
        padding: 40px 20px;
    }

    .product-detail-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    /* IMAGE */
    .product-detail-left img {
        width: 100%;
        max-width: 100%;
    }

    /* TITLE */
    .product-detail-right h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    /* PRICE */
    .price-area {
        font-size: 18px;
        gap: 10px;
    }

    .old-price {
        font-size: 16px;
    }

    /* DELIVERY BUTTONS */
    .delivery-options {
        flex-direction: column;
        gap: 12px;
    }

    .green-btn,
    .orange-btn {
        width: 100%;
        text-align: center;
    }

    /* TENURE */
    .tenure-box p {
        font-size: 14px;
    }

    
    .qty-box {
        width: 100%;
        justify-content: center;
    }

    .add-cart-btn,
    .view-cart-btn {
        width: 100%;
    }

    /* TRUST POINTS */
    .trust-points li {
        font-size: 14px;
        padding-left: 25px;
    }

    /* DESCRIPTION */
    .product-description {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 20px;
    }

    /* SECURE BOX */
    .secure-box {
        padding: 20px;
    }

    .payment-icons img {
        height: 35px;
        margin: 0 8px;
    }
    
    /* ============================================
   FINAL Header RESPONSIVE (ONLY ONE BLOCK)
============================================ */
    
     header{
        padding:10px 12px;
    }
     .top-bar{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:6px;
        flex-wrap:nowrap;
    }

    /* Hamburger */
    .hamburger{
        display:block;
        flex:0 0 auto;
    }

 .logo-wrap{
     gap:0;
        /*display:flex;*/
        /*align-items:center;*/
        /*gap:4px;*/
        /*flex:1;           */
         
        /*min-width:0;   */
        /* IMPORTANT */
    }

    .logo-round{
          display:none;
        /*height:40px;*/
        /*flex-shrink:0;*/
    }
.logo-text{
        display:block;
        height:18px;      /* adjust if needed */
        margin-left:0;
    }
    /*.logo-text{*/
    /*    height:22px;*/
    /*    margin-left:0;*/
    /*    max-width:100%;*/
    /*}*/
    

  /* Right side */
    .right-icons{
        display:flex;
        align-items:center;
        gap:6px;
        flex:0 0 auto;
    }

    /* SEARCH FIX */
    .search-box{
        flex:1;               /* IMPORTANT */
        min-width:0;          /* IMPORTANT */
    }

    .search-box input{
        width:100%;
        font-size:12px;
        padding:6px 8px;
    }

 /* Shop button smaller */
    .shop-btn{
        padding:4px 6px;
        font-size:11px;
    }

   
    /* desktop menu hide */
    .nav-menu {
        display: none;
    }

    
   
   

    
     
    
    .amount {
        display: none;
    }

    .cart-icon {
        font-size: 18px;
    }

    .cart-count {
        font-size: 10px;
        padding: 2px 6px;
    }

    .mobile-menu {
        width: 240px;
        padding-top: 25px;
    }

    .mobile-menu a {
        font-size: 16px;
        padding: 8px 0;
    }
    

        /* ===================================
   FINAL HOW IT WORKS MOBILE FIX
   (ADD AT VERY END OF CSS FILE)
===================================*/
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px;
        padding-right: 10px;
    }

    .timeline-item::after {
        left: 0;
        right: auto;
    }

    .how-title {
        font-size: 32px;
    }

    .content img {
        max-width: 120px;
    }

    .content p {
        font-size: 16px;
    }

    .how-final p {
        font-size: 20px;
    }
    
      /* ===================================
   FINAL DIALOG MOBILE FIX
   (ADD AT VERY END OF CSS FILE)
===================================*/
     .popup-box {
        width: 92%;
        max-width: 92%;
        padding: 18px;
    }

    .popup-box p {
        font-size: 18px;
        line-height: 1.5;
    }
    
    
    
       .pay-title{
        font-size:30px;
    }

    .brand-title{
        font-size:22px;
    }

    .scan-text{
        font-size:18px;
    }

    .upi-box{
        font-size:20px;
    }

    .pay-notes ol{
        font-size:16px;
    }
    
      /* ===================================
   FINAL FOOTER MOBILE FIX
   (ADD AT VERY END OF CSS FILE)
===================================*/
    .site-footer {
        padding: 35px 15px 25px;
        margin-top: 50px;
        border-radius: 18px 18px 0 0;
    }

    /* LINKS */
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 22px;
        margin-bottom: 25px;
    }

    .footer-links a {
        font-size: 15px;
        letter-spacing: 0.5px;
        font-weight: 600;
    }

    /* SOCIAL ICONS */
    .footer-social {
        margin-bottom: 20px;
        gap: 18px;
    }

    .footer-social img {
        width: 22px;
        height: 22px;
    }

    /* COPYRIGHT */
    .footer-copy {
        font-size: 14px;
        margin-top: 10px;
        line-height: 1.4;
    }

     
   

    .testimonials-wrapper{
        display:flex;
        flex-direction:column;
        gap:20px;
    }

    .testimonial-card{
        width:100% !important;
        padding:25px 20px !important;
        border-radius:12px;
    }

    .testimonial-card h3{
        font-size:34px;
        margin-bottom:12px;
    }

    .stars{
        font-size:28px;
        margin-bottom:14px;
    }

   
    /* ================= HEADER ================= */
     
    .nav-menu{
        display:none;
    }

    
      
    .amount{
        display:none;
    }

    /* ================= BANNER ================= */

    .banner{
        flex-direction:column;
        text-align:center;
        padding:30px 15px;
        gap:20px;
    }

    .banner-left,
    .banner-right{
        width:100%;
    }

    .banner-left h1{
        font-size:34px;
    }

    /* ================= STATS ================= */

    .stats-section{
        padding:30px 12px;
        gap:10px;
    }

    .stat-icon{
        width:58px;
        height:58px;
        font-size:20px;
    }

    /* ================= TESTIMONIALS ================= */

    .testimonials-section{
        padding:40px 15px;
    }

    .section-title{
        font-size:34px;
        margin-bottom:30px;
    }

    .testimonials-wrapper{
        display:flex;
        flex-direction:column;
        gap:20px;
    }

    .testimonial-card{
        width:100%;
        padding:25px 20px;
    }

    .testimonial-card h3{
        font-size:24px;
    }

    .stars{
        font-size:22px;
    }

    .testimonial-card p{
        font-size:18px; /* тнР IMPORTANT FIX */
        line-height:1.6;
    }

    /* ================= SHOP ================= */

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* ================= PRODUCT DETAIL ================= */

    .product-detail{
        padding:40px 20px;
    }

    .product-detail-wrapper{
        flex-direction:column;
    }

    

    /* ================= CART & CHECKOUT ================= */

    .cart-wrapper{
        flex-direction:column;
    }

    .checkout-wrapper{
        flex-direction:column;
        padding:0 20px;
    }

    .order-summary{
        position:static;
    }

    /* ================= FOOTER ================= */

    .site-footer{
        padding:35px 15px 25px;
            background: #fff;
    }
      /* ================= CTA SECTION ================= */
      .cta-section {
        padding: 40px 15px;
            background: #fff;
    }
    
     .promise-section{
        background:#fff;
    }
        /* ================= TERMS.PHP ================= */
      .static-page{
        padding: 30px 15px;
    }

    .static-container{
        padding: 20px 15px;
        border-radius: 8px;
    }
    
     .static-container h1{
        font-size: 28px;
    }

    .section-title{
        font-size: 22px;
        margin-bottom: 12px;
    }
.accordion-header{
        font-size: 18px;
        padding: 14px 15px;
    }

    .accordion-body{
        padding: 15px;
    }
   .accordion-body{
    overflow-wrap: break-word;
}
   .highlight,
    .booking,
    .term-list li,
    .accordion-body p{
        font-size: 14px;
        line-height: 1.6;
    }
 hr{
        margin: 20px 0;
    }
    
    /* ==========================
   TERMS PAGE MOBILE FIX
========================== */

.tc-section{
    padding: 25px 12px;
}

.tc-container{
    width: 100%;
    max-width: 100%;
}

.tc-title{
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
}

/* Accordion */
.accordion{
    border-radius: 8px;
}

.accordion-header{
    font-size: 16px;
    padding: 14px 12px;
    line-height: 1.4;
}

.icon{
    font-size: 18px;
}

/* Body */
.accordion-body{
    padding: 14px 12px;
}

.accordion-body h3{
    font-size: 18px;
    margin-bottom: 8px;
}

.accordion-body p,
.accordion-body li{
    font-size: 14px;
    line-height: 1.6;
}

/* Quick ref text */
.quick-ref{
    font-size: 14px;
}

/* Tip box */
.tip-box{
    font-size: 13px;
    padding: 12px;
}

/* Contact section */
.tc-contact{
    margin-top: 20px;
    padding: 15px;
}

.tc-contact h3{
    font-size: 18px;
}

.tc-contact p{
    font-size: 14px;
}
/* ===================================
   SHOP PAGE FINAL MOBILE FIX
=================================== */
 .shop-section{
        padding: 25px 12px;
        background:#fff;
    }

    .product-grid{
        grid-template-columns: repeat(2,1fr);
        gap: 14px;
    }

    .product-card{
        padding: 12px;
        border-radius: 10px;
    }

    .product-card img{
        height: 120px;
        margin-bottom: 10px;
    }

    .product-card h3{
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .price{
        font-size: 14px;
        margin-bottom: 10px;
    }

    .old-price{
        font-size: 12px;
    }

    .product-btn{
        padding: 8px 10px;
        font-size: 12px;
        width:100%;
    }
     .product-detail{
        padding:20px 12px;
        background:#fff;
    }

    .product-detail-wrapper{
        display:flex;
        flex-direction:column;
        gap:20px;
    }

    /* IMAGE */
    .product-detail-left{
        width:100%;
    }

    .product-detail-left img{
        max-width:220px;
        margin:auto;
        display:block;
    }

    /* TITLE */
    .product-detail-right h1{
        font-size:24px;
        line-height:1.3;
        margin-bottom:10px;
    }

    /* PRICE */
    .price-area{
        margin-bottom:15px;
        font-size:18px;
    }

    .new-price{
        font-size:34px;
    }

    .old-price{
        font-size:18px;
    }

    /* DELIVERY BUTTONS */
    .delivery-options{
        flex-direction:column;
        gap:10px;
        margin-bottom:15px;
    }

    .green-btn,
    .orange-btn{
        width:100%;
        font-size:18px;
        padding:12px;
        border-radius:30px;
    }

    /* TENURE / PLAN PILLS */
    .tenure-pill{
        margin:4px 4px 8px 0;
        font-size:18px;
        padding:8px 14px;
    }

    /* QTY + CART */
     

    .qty-box{
        width:100%;
        justify-content:center;
        height:50px;
    }

    .qty-box button{
        padding:0 18px;
        font-size:22px;
    }

    .add-cart-btn,
    .view-cart-btn{
        width:100%;
        height:50px;
        font-size:18px;
    }

    /* TRUST POINTS */
    .trust-points li{
        font-size:16px;
        margin-bottom:10px;
    }

    /* SAFE CHECKOUT */
    .secure-box{
        padding:15px;
        margin-top:20px;
    }

    .secure-box h3{
        font-size:22px;
    }

    .payment-icons img{
        height:32px;
        margin:0 5px;
    }

 /* ===== FINAL ADD TO CART FIX ===== */
.cart-row{
    display:flex !important;
    flex-direction:column !important;
    gap:12px !important;
    width:100% !important;
}

.add-cart-btn{
    width:100% !important;
    height:52px !important;
    line-height:52px !important;
    font-size:18px !important;
    text-align:center;
    border-radius:8px;
    display:block;
}

}




