@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #4169E1;
    --dark: #111827;
    --light: #f9fafb;
    --text: #1f2937;
    --border: #e5e7eb;
    --white: #ffffff;
    --body-text: #222222;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100%;
    color: var(--body-text);
}

/* Headings & Text */
h1 {
    font-size: 50px;
    line-height: 64px;
    color: var(--body-text);
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: var(--body-text);
}

h4 {
    font-size: 20px;
    color: var(--body-text);
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: var(--body-text);
    margin: 15px 0 20px 0;
}

/* Section Spacing */
.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

/* Header Start */
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 80px;
    background: #E3E6FC;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    min-height: 75px;
}

#header a {
    display: inline-block;
    flex: 0 0 auto;
}

.logo {
    width: 100px;
    height: auto;
    display: block;
    object-fit: contain;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#navbar li {
    list-style: none;
    padding: 0 24px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: var(--primary);
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: var(--primary);
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#mobile {
    display: none;
    align-items: center;
}

#close {
    display: none;
}

/* Home Page - Hero */
#hero {
    background-image: url("/zyra/img/hero4.png");
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4 {
    padding-bottom: 15px;
}

#hero h1 {
    color: var(--primary);
}

#hero button {
    background-image: url("/zyra/img/button.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 150% 150%;
    background-color: transparent;
    border: none;
    width: 230px;
    height: 160px;
    line-height: 160px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--body-text);
    cursor: pointer;
    transform: translateY(-12px);
}

/* Feature Section */
#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#feature .fe-box {
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #cce7d0;
    border-radius: 4px;
    margin: 15px 0;
    transition: 0.3s ease;
}

#feature .fe-box:hover {
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}

#feature .fe-box img {
    width: 100%;
    margin-bottom: 10px;
}

#feature .fe-box h6 {
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: var(--primary);
}

/* Feature Box Dynamic Backgrounds */
#feature .fe-box:nth-child(1) h6 {
    background-color: #fddde4;
}

#feature .fe-box:nth-child(2) h6 {
    background-color: #cdebbc;
}

#feature .fe-box:nth-child(3) h6 {
    background-color: #d1e8f2;
}

#feature .fe-box:nth-child(4) h6 {
    background-color: #cdd4f8;
}

#feature .fe-box:nth-child(5) h6 {
    background-color: #f6dbf6;
}

#feature .fe-box:nth-child(6) h6 {
    background-color: #fff2e5;
}

/* Product Section */
#product1 {
    text-align: center;
}

#product1 .pro-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

#product1 .pro {
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    background: var(--white);
    position: relative;
}

#product1 .pro:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    object-fit: cover;
}

#product1 .pro .des {
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span {
    color: #606063;
    font-size: 12px;
}

#product1 .pro .des h5 {
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

#product1 .pro .des i {
    font-size: 12px;
    color: rgb(243, 181, 25);
}

#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

#product1 .pro .cart {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #e8f6ea;
    font-weight: 500;
    color: var(--primary);
    border: 1px solid #cce7d0;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

/* Main Banner */
#banner {
    position: relative;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    margin: 40px 0;
}

#banner img {
    width: 100%;
    height: 40vh;
    object-fit: cover;
    display: block;
}

#banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

#banner h4,
#banner h2,
#banner button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

#banner h4 {
    top: 30%;
    color: #ffd700;
    font-size: 18px;
    letter-spacing: 2px;
}

#banner h2 {
    top: 45%;
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
}

#banner h2 span {
    color: #ff4d4d;
    font-size: 36px;
}

#banner button {
    top: 65%;
    padding: 12px 28px;
    background: var(--white);
    color: #000;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

#banner button:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(-50%) scale(1.05);
}

/* Small Banners (2 Column Grid) */
#sm-banner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

#sm-banner .banner-box,
#sm-banner .banner-box2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 48%;
    height: 300px;
    background-size: cover;
    background-position: center;
    padding: 30px;
}

#sm-banner .banner-box {
    background-image: url("/zyra/img/banner/b2.jpeg");
}

#sm-banner .banner-box2 {
    background-image: url("/zyra/img/banner/b3.jpeg");
}

#sm-banner h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 300;
}

#sm-banner h2 {
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
}

#sm-banner span {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 15px;
}

#sm-banner .banner-box button {
    padding: 10px 20px;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

#sm-banner .banner-box:hover button {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}

/* Triple Banners */
#banner3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
    margin-bottom: 60px;
}

#banner3 .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url("/zyra/img/banner/b4.jpeg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 .banner-box2 {
    background-image: url("/zyra/img/banner/b6.jpeg");
}

#banner3 .banner-box3 {
    background-image: url("/zyra/img/banner/b5.jpeg");
}

#banner3 h2 {
    color: var(--white);
    font-weight: 900;
    font-size: 22px;
}

#banner3 h3 {
    color: #ec544e;
    font-weight: 800;
    font-size: 15px;
}

/* Newsletter */
#newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: #041e42;
    padding: 40px 80px;
    margin: 60px 0 0 0;
}

#newsletter h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

#newsletter p {
    font-size: 14px;
    color: #818ea0;
}

#newsletter span {
    color: #ffbd27;
}

#newsletter .form {
    display: flex;
    width: 40%;
}

#newsletter input {
    height: 45px;
    padding: 0 15px;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px 0 0 4px;
}

#newsletter button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 50px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    white-space: nowrap;
}

/* Footer */
footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    background: #f5f5f5;
    padding: 60px 80px;
}

footer .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer .col h4 {
    margin-bottom: 8px;
}

footer .col p {
    margin: 2px 0;
    line-height: 1.4;
}

footer .col:first-child {
    gap: 4px;
    transform: translateY(-15px);
}

footer .logo {
    width: 90px;
    height: auto;
    margin-bottom: 8px;
}

footer h4 {
    font-size: 16px;
    padding-bottom: 15px;
}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
    transition: 0.3s;
}

footer a:hover {
    color: var(--primary);
}

footer .follow i {
    color: #465b52;
    padding-right: 10px;
    cursor: pointer;
}

footer .follow i:hover {
    color: var(--primary);
}

footer .install p {
    margin: 0 0 10px 0;
}

footer .install .row img {
    width: 130px;
    height: 40px;
    border-radius: 6px;
    background: var(--white);
    padding: 4px;
}

footer .install img {
    width: 140px;
    height: auto;
}

footer .install .row {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .payment {
    display: flex;
    align-items: center;
    gap: 12px;
}

footer .payment img {
    height: 25px;
    width: auto;
    object-fit: contain;
}

footer .copyright {
    width: 100%;
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #777;
}

/* Responsive Media Queries (Tablets) */
@media(max-width: 799px) {
    .section-p1 {
        padding: 40px;
    }

    #header {
        padding: 10px 40px;
        min-height: 68px;
    }

    #header .logo {
        width: 80px;
    }

    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #E3E6FC;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.01);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }

    #navbar.active {
        right: 0;
    }

    #navbar li {
        margin-bottom: 25px;
    }

    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i {
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }

    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
    }

    #lg-bag {
        display: none;
    }

    #hero {
        height: 70vh;
        background-position: top 30% right 30%;
        padding: 0 80px;
    }

    #feature {
        justify-content: center;
    }

    #feature .fe-box {
        margin: 15px;
    }

    #product1 .pro-container {
        justify-content: center;
    }

    #product1 .pro {
        margin: 15px;
    }

    #banner img {
        height: 20vh;
    }

    #banner h2 {
        width: 90%;
        line-height: 2;
        font-size: 22px;
    }

    #sm-banner .banner-box,
    #sm-banner .banner-box2 {
        min-width: 100%;
        height: 30vh;
    }

    #banner3 {
        padding: 0 40px;
    }

    #banner3 .banner-box {
        width: 28%;
    }

    #newsletter .form {
        width: 70%;
    }

    footer .logo {
        width: 85px;
    }
}

/* Responsive Media Queries (Mobile Devices) */
@media (max-width: 477px) {
    .section-p1 {
        padding: 20px;
    }

    #header {
        padding: 10px 18px;
        min-height: 65px;
    }

    h1 {
        font-size: 33px;
    }

    h2 {
        font-size: 27px;
    }

    #hero {
        padding: 0 20px;
        background-position: 55%;
    }

    #feature {
        justify-content: space-between;
    }

    #feature .fe-box {
        width: 155px;
        margin: 0 0 15px 0;
    }

    #product1 .pro {
        width: 100%;
    }

    #banner,
    #banner img {
        height: 40vh;
    }

    #banner h2 {
        font-size: 18px;
        line-height: 1.4;
    }

    #banner button {
        top: 75%;
    }

    #sm-banner .banner-box {
        height: 40vh;
    }

    #sm-banner .banner-box2 {
        margin-top: 20px;
    }

    #banner3 {
        padding: 0 20px;
    }

    #banner3 .banner-box {
        width: 100%;
    }

    #newsletter {
        padding: 40px 20px;
        gap: 15px;
    }

    #newsletter .form {
        width: 100%;
    }

    footer .logo {
        width: 80px;
    }
}

/* Desktop Fix Overrides */
@media (min-width: 800px) {

    #mobile,
    #close {
        display: none !important;
    }

    #navbar {
        position: static !important;
        height: auto !important;
        width: auto !important;
        flex-direction: row !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
}

/* SHOP PAGE */

#page-header {
    background-image: url("/zyra/img/banner/b1.png");
    width: 100%;
    height: 35vh;

    background-size: cover;
    display: flex;

    justify-content: center;
    text-align: center;
    flex-direction: column;

    padding: 14px;
}

#page-header h2,
#page-header p {
    color: #fff;
}

#prodetails {
    display: flex;
    margin-top: 40px;
    gap: 40px;
}

#prodetails .single-pro-image {
    width: 40%;
}

.small-img-group {
    display: flex;
    justify-content: space-between;
}

.small-img-col {
    flex-basis: 24%;
    cursor: pointer;
}

#prodetails .single-pro-details {
    width: 50%;
    padding-top: 30px;
}

#prodetails .single-pro-details h4 {
    padding: 20px 0;
}

#prodetails .single-pro-details h2 {
    font-size: 26px;
    color: #4169E1;
}

#prodetails .single-pro-details select {
    display: block;
    padding: 10px;
    margin-bottom: 10px;
}

#prodetails .single-pro-details input {
    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}

#prodetails .single-pro-details button {
    background: #4169E1;
    color: #fff;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    border-radius: 6px;
}

#prodetails .single-pro-details span {
    line-height: 25px;
}

/* TABLET */

@media (max-width:799px) {

    #prodetails {
        flex-direction: column;
    }

    #prodetails .single-pro-image {
        width: 100%;
    }

    #prodetails .single-pro-details {
        width: 100%;
    }
}

/* MOBILE */

@media (max-width:477px) {

    #page-header {
        height: 25vh;
    }

    #prodetails {
        display: flex;
        flex-direction: column;
    }

    #prodetails .single-pro-image {
        width: 100%;
    }

    #prodetails .single-pro-details {
        width: 100%;
    }

    #prodetails .single-pro-details button {
        width: 100%;
        margin-top: 10px;
    }
}

/* CART PAGE */



#cart {
    overflow-x: auto;
}

#cart table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

#cart table thead {
    background: #4169E1;
}

#cart table thead td {
    color: #fff;
    font-weight: 600;
    padding: 18px;
    text-transform: uppercase;
    font-size: 14px;
}

#cart table tbody td {
    text-align: center;
    padding: 20px 10px;
    border-bottom: 1px solid #f1f1f1;
    font-size: 15px;
}

#cart table tbody tr:hover {
    background: #f9fafb;
}

#cart table img {
    width: 80px;
    border-radius: 12px;
}

#cart table input {
    width: 70px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
}

#cart table a {
    color: #ff4d4d;
    font-size: 18px;
}

#cart-add {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

#coupon,
#subtotal {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

#coupon h3,
#subtotal h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

#coupon input {
    width: 65%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
}

#coupon button,
#subtotal button {
    padding: 14px 24px;
    background: #4169E1;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

#coupon button:hover,
#subtotal button:hover {
    background: #2747b0;
}

#subtotal table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

#subtotal table td {
    padding: 14px;
    border: 1px solid #eee;
    font-size: 15px;
}

#subtotal strong {
    color: #4169E1;
}

/* TABLET */

@media(max-width:799px) {

    #cart-add {
        flex-direction: column;
    }

    #coupon input {
        width: 100%;
        margin-bottom: 15px;
    }

    #coupon button {
        width: 100%;
    }
}

/* MOBILE */

@media(max-width:477px) {

    #cart table thead {
        display: none;
    }

    #cart table,
    #cart tbody,
    #cart tr,
    #cart td {
        display: block;
        width: 100%;
    }

    #cart tr {
        margin-bottom: 20px;
        background: #fff;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    #cart td {
        text-align: left;
        padding: 10px 0;
        border: none;
    }

    #cart table img {
        width: 100%;
        max-width: 180px;
    }

    #coupon,
    #subtotal {
        padding: 20px;
    }
}

/* QUANTITY BUTTON */

.qty-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #4169E1;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 22px;
    font-weight: 600;
}

.qty-input {
    width: 60px !important;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;

    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.hidden-update {
    display: none;
}


/* GLOBAL */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: #f8fafc;
}

/* CONTAINER SPACING */

.section-p1 {
    padding: 60px 80px;
}

/* PRODUCT CARD */

#product1 .pro {
    transition: 0.35s ease;
    border-radius: 22px;
    overflow: hidden;
}

#product1 .pro:hover {
    transform: translateY(-8px);
}

#product1 .pro img {
    transition: 0.4s ease;
}

#product1 .pro:hover img {
    transform: scale(1.03);
}

/* BUTTON */

button {
    transition: 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

/* HEADER */

#header {
    backdrop-filter: blur(12px);
}

/* NAVBAR */

#navbar li a {
    font-size: 15px;
    letter-spacing: 0.3px;
}

/* HERO */

#hero {
    border-radius: 0 0 30px 30px;
}

/* BANNER */

#banner {
    border-radius: 24px;
    overflow: hidden;
}

/* CART */

#cart table {
    border-radius: 24px;
    overflow: hidden;
}

#coupon,
#subtotal {
    border-radius: 24px;
}

/* INPUT */

input {
    transition: 0.3s ease;
}

input:focus {
    border-color: #4169E1;
    box-shadow: 0 0 0 4px rgba(65, 105, 225, 0.12);
}

/* TABLET */

@media (max-width: 991px) {

    .section-p1 {
        padding: 40px;
    }

    #hero {
        height: 70vh;
        padding: 0 40px;
        background-position: center;
    }

    #hero h1 {
        font-size: 42px;
        line-height: 50px;
    }

    #hero h2 {
        font-size: 34px;
    }

    #feature {
        justify-content: center;
        gap: 20px;
    }

    #product1 .pro-container {
        justify-content: center;
        gap: 20px;
    }

    #product1 .pro {
        width: 45%;
        min-width: 260px;
    }

    #sm-banner {
        flex-direction: column;
    }

    #sm-banner .banner-box,
    #sm-banner .banner-box2 {
        width: 100%;
        min-width: 100%;
    }

    #banner3 {
        gap: 20px;
    }

    #banner3 .banner-box {
        width: 31%;
    }

}

/* MOBILE */

@media (max-width: 768px) {

    .section-p1 {
        padding: 25px;
    }

    #header {
        padding: 14px 20px;
    }

    #hero {
        height: 60vh;
        padding: 0 20px;
        border-radius: 0 0 24px 24px;
    }

    #hero h4 {
        font-size: 14px;
    }

    #hero h1 {
        font-size: 32px;
        line-height: 38px;
    }

    #hero h2 {
        font-size: 28px;
        line-height: 34px;
    }

    #hero p {
        font-size: 14px;
    }

    #hero button {
        width: 180px;
        height: 110px;
        line-height: 110px;
        font-size: 14px;
    }

    #feature {
        gap: 14px;
        justify-content: center;
    }

    #feature .fe-box {
        width: 46%;
    }

    #product1 .pro {
        width: 100%;
        min-width: 100%;
        margin: 0;
    }

    #product1 .pro img {
        height: 320px;
    }

    #banner {
        margin: 25px 0;
    }

    #banner img {
        height: 28vh;
    }

    #banner h2 {
        width: 90%;
        font-size: 22px;
        line-height: 30px;
    }

    #banner button {
        top: 72%;
    }

    #banner3 {
        padding: 0 25px;
    }

    #banner3 .banner-box {
        width: 100%;
    }

    #newsletter {
        padding: 35px 25px;
        gap: 20px;
    }

    #newsletter .form {
        width: 100%;
    }

    #newsletter input {
        height: 50px;
    }

    #newsletter button {
        height: 50px;
    }

    footer {
        padding: 50px 25px;
        gap: 30px;
    }

    #cart {
        overflow-x: auto;
    }

    #cart table {
        min-width: 720px;
    }

    #cart-add {
        flex-direction: column;
    }

    #coupon,
    #subtotal {
        width: 100%;
        min-width: 100%;
    }

}

/* SMALL MOBILE */

@media (max-width: 477px) {

    #hero {
        height: 52vh;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 34px;
    }

    #hero h2 {
        font-size: 24px;
    }

    #feature .fe-box {
        width: 100%;
    }

    #product1 .pro img {
        height: 260px;
    }

    .qty-btn {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .qty-input {
        width: 45px !important;
        height: 34px;
        font-size: 15px;
    }

}

/* =========================
   FINAL RESPONSIVE FIX
========================= */


/* CONTAINER */

.section-p1 {
    padding: 60px 80px;
}

/* LARGE TABLET */

@media (max-width: 992px) {

    .section-p1 {
        padding: 40px;
    }

    #header {
        padding: 15px 40px;
    }

    #hero {
        height: 70vh;
        padding: 0 40px;
        background-position: center;
    }

    #hero h1 {
        font-size: 42px;
        line-height: 50px;
    }

    #hero h2 {
        font-size: 34px;
    }

    #feature {
        gap: 20px;
        justify-content: center;
    }

    #feature .fe-box {
        width: 45%;
    }

    #product1 .pro-container {
        gap: 20px;
        justify-content: center;
    }

    #product1 .pro {
        width: 45%;
        min-width: 260px;
    }

    #sm-banner {
        flex-direction: column;
    }

    #sm-banner .banner-box,
    #sm-banner .banner-box2 {
        width: 100%;
        min-width: 100%;
        height: 260px;
    }

    #banner3 {
        gap: 20px;
    }

    #banner3 .banner-box {
        width: 30%;
    }

    #newsletter .form {
        width: 100%;
    }

    #prodetails {
        flex-direction: column;
    }

    #prodetails .single-pro-image,
    #prodetails .single-pro-details {
        width: 100%;
    }

}

/* MOBILE */

@media (max-width: 768px) {

    h1 {
        font-size: 32px;
        line-height: 40px;
    }

    h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .section-p1 {
        padding: 25px;
    }

    #header {
        padding: 12px 20px;
    }

    #navbar {
        width: 280px;
    }

    #hero {
        height: 60vh;
        padding: 0 20px;
        background-position: 65%;
        border-radius: 0;
    }

    #hero h4 {
        font-size: 14px;
    }

    #hero p {
        font-size: 14px;
    }

    #hero button {
        width: 170px;
        height: 90px;
        line-height: 90px;
        font-size: 14px;
        background-size: contain;
    }

    #feature {
        flex-direction: column;
    }

    #feature .fe-box {
        width: 100%;
    }

    #product1 .pro {
        width: 100%;
        min-width: 100%;
    }

    #product1 .pro img {
        height: 280px;
    }

    #banner {
        height: auto;
    }

    #banner img {
        height: 260px;
    }

    #banner h4 {
        top: 22%;
        font-size: 14px;
    }

    #banner h2 {
        font-size: 20px;
        line-height: 28px;
        width: 90%;
    }

    #banner button {
        top: 72%;
    }

    #sm-banner .banner-box,
    #sm-banner .banner-box2 {
        height: 240px;
        padding: 20px;
    }

    #banner3 {
        padding: 0 25px;
    }

    #banner3 .banner-box {
        width: 100%;
        height: 200px;
    }

    #newsletter {
        padding: 30px 20px;
    }

    #newsletter .form {
        flex-direction: column;
        gap: 10px;
    }

    #newsletter input,
    #newsletter button {
        width: 100%;
        border-radius: 10px;
    }

    footer {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    /* CART */

    #cart {
        overflow-x: auto;
    }

    #cart table {
        min-width: 700px;
    }

    #cart-add {
        flex-direction: column;
    }

    #coupon,
    #subtotal {
        width: 100%;
    }

}

/* SMALL MOBILE */

@media (max-width: 477px) {

    h1 {
        font-size: 26px;
        line-height: 32px;
    }

    h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .section-p1 {
        padding: 20px 15px;
    }

    #header {
        padding: 10px 15px;
    }

    .logo {
        width: 75px;
    }

    #hero {
        height: 55vh;
        padding: 0 15px;
    }

    #hero button {
        width: 150px;
        height: 75px;
        line-height: 75px;
        font-size: 13px;
    }

    #product1 .pro img {
        height: 240px;
    }

    #banner img {
        height: 220px;
    }

    #banner h2 {
        font-size: 18px;
    }

    #sm-banner .banner-box,
    #sm-banner .banner-box2 {
        height: 200px;
    }

    #banner3 .banner-box {
        height: 180px;
    }

    #newsletter h4 {
        font-size: 20px;
    }

    footer {
        gap: 20px;
    }

    /* PRODUCT PAGE */

    #prodetails .single-pro-details input {
        width: 100%;
        margin-bottom: 10px;
    }

    #prodetails .single-pro-details button {
        width: 100%;
    }

    /* QUANTITY */

    .qty-box {
        gap: 6px;
    }

    .qty-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .qty-input {
        width: 45px !important;
        height: 32px;
    }

}

/* =========================
   PROFESSIONAL HEADER
========================= */

.cart-badge {

    position: absolute;
    top: -10px;
    right: -10px;

    background: #4169E1;
    color: #fff;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 600;

}

#lg-bag {

    position: relative;

}

#navbar li a {

    display: flex;
    align-items: center;
    gap: 6px;

}

.auth-box {

    width: 420px;
    max-width: 95%;

    margin: 80px auto;

    background: #fff;

    padding: 40px;

    border-radius: 20px;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08);

}

.auth-box h2 {

    margin-bottom: 25px;
    font-size: 30px;

}

.auth-box input {

    width: 100%;

    padding: 15px;

    border-radius: 10px;

    border: 1px solid #ddd;

    margin-bottom: 16px;

    font-size: 15px;

}

.auth-box button {

    width: 100%;

    padding: 15px;

    background: #4169E1;

    color: #fff;

    border: none;

    border-radius: 10px;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;

}

.auth-box button:hover {

    background: #2747b0;

}

.message {

    margin-bottom: 16px;
    color: red;

}

/* =========================
PREMIUM PRODUCT CARD
========================= */

.pro {
    width: 23%;
    min-width: 250px;
    padding: 12px;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    margin: 15px 0;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.pro img {
    width: 100%;
    border-radius: 20px;
    transition: 0.4s ease;
}

.pro:hover img {
    transform: scale(1.08);
}

.pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* overlay */

.product-overlay {

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
        rgba(0, 0, 0, 0.35);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;

}

.pro:hover .product-overlay {

    opacity: 1;
    visibility: visible;

}

/* buttons */

.product-overlay a {

    padding: 12px 18px;

    background: white;

    color: #111;

    border-radius: 50px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;

}

.product-overlay a:hover {

    background: #088178;
    color: white;

}

/* =========================================
REAL WORLD PROFESSIONAL CHECKOUT UI
========================================= */

.checkout-section {

    padding: 28px 16px;

    background:
        linear-gradient(135deg,
            #f8fbff,
            #eef3ff);

    min-height: 100vh;
}

/* CONTAINER */

.checkout-container {

    max-width: 1080px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.08fr 0.72fr;

    gap: 18px;

    align-items: start;
}

/* LEFT */

.checkout-left {

    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.7);

    border-radius: 16px;

    padding: 22px;

    box-shadow:
        0 4px 18px rgba(15, 23, 42, 0.05);

    transition: 0.3s ease;
}

.checkout-left:hover {

    transform: translateY(-1px);

    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.08);
}

.checkout-left h2 {

    font-size: 22px;

    font-weight: 700;

    color: #0f172a;

    margin-bottom: 18px;

    letter-spacing: -0.4px;
}

/* FORM */

.checkout-form {

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.input-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.input-group {

    margin: 0;
}

.input-group input,
.input-group select {

    width: 100%;

    height: 44px;

    border: 1px solid #dbe3f1;

    border-radius: 10px;

    background: #fff;

    padding: 0 13px;

    font-size: 13px;

    color: #111827;

    outline: none;

    transition: 0.25s ease;
}

.input-group input::placeholder {
    color: #94a3b8;
}

.input-group input:focus,
.input-group select:focus {

    border-color: #4169E1;

    box-shadow:
        0 0 0 3px rgba(65, 105, 225, 0.10);
}

/* BUTTON */

.place-order-btn {

    width: 100%;

    height: 46px;

    border: none;

    border-radius: 10px;

    background:
        linear-gradient(135deg,
            #4169E1,
            #5c7cff);

    color: #fff;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    margin-top: 4px;

    transition: 0.3s ease;

    box-shadow:
        0 8px 16px rgba(65, 105, 225, 0.16);
}

.place-order-btn:hover {

    transform:
        translateY(-1px) scale(1.01);

    box-shadow:
        0 12px 24px rgba(65, 105, 225, 0.22);
}

/* RIGHT */

.checkout-right {

    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.7);

    border-radius: 16px;

    padding: 20px;

    box-shadow:
        0 4px 18px rgba(15, 23, 42, 0.05);

    position: sticky;

    top: 88px;

    transition: 0.3s ease;
}

.checkout-right:hover {

    transform: translateY(-1px);

    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.08);
}

.checkout-right h2 {

    font-size: 21px;

    font-weight: 700;

    margin-bottom: 18px;

    color: #0f172a;

    letter-spacing: -0.4px;
}

/* SUMMARY */

.summary-box {

    display: flex;

    flex-direction: column;

    gap: 16px;
}

.summary-item {

    display: flex;

    justify-content: space-between;

    gap: 12px;

    padding-bottom: 16px;

    border-bottom: 1px solid #edf2f7;
}

.summary-info {

    display: flex;

    align-items: center;

    gap: 10px;
}

.summary-product-img,
.summary-info img {

    width: 54px;

    height: 54px;

    border-radius: 10px;

    object-fit: cover;

    border: 1px solid #edf2f7;
}

.summary-info h4 {

    font-size: 14px;

    line-height: 18px;

    margin-bottom: 2px;

    color: #111827;
}

.summary-info p {

    margin: 0;

    font-size: 12px;

    color: #6b7280;
}

.summary-price {

    font-size: 15px;

    font-weight: 600;

    color: #111827;
}

/* TOTAL */

.summary-total {

    margin-top: 16px;
}

.summary-total div {

    display: flex;

    justify-content: space-between;

    margin-bottom: 10px;

    font-size: 14px;

    color: #4b5563;
}

.grand-total {

    margin-top: 14px;

    padding-top: 14px;

    border-top: 1px dashed #dbe3f1;

    font-size: 22px !important;

    font-weight: 700;

    color: #4169E1;
}

/* =========================
TABLET
========================= */

@media(max-width:992px) {

    .checkout-container {

        grid-template-columns: 1fr;

        gap: 16px;
    }

    .checkout-right {

        position: relative;

        top: 0;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {

    .checkout-section {

        padding: 18px 12px;
    }

    .checkout-left,
    .checkout-right {

        padding: 16px;

        border-radius: 14px;
    }

    .checkout-left h2,
    .checkout-right h2 {

        font-size: 20px;

        margin-bottom: 15px;
    }

    .input-row {

        grid-template-columns: 1fr;

        gap: 10px;
    }

    .checkout-form {

        gap: 10px;
    }

    .input-group input,
    .input-group select {

        height: 42px;

        font-size: 13px;
    }

    .place-order-btn {

        height: 44px;

        font-size: 14px;
    }

    .summary-product-img,
    .summary-info img {

        width: 48px;

        height: 48px;
    }

    .summary-info h4 {

        font-size: 13px;
    }

    .summary-price {

        font-size: 14px;
    }

    .grand-total {

        font-size: 20px !important;
    }

}

/* ==========================================
   NEW SMALL BANNERS (SPLIT LAYOUT)
   ========================================== */
#sm-banner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 80px;
}

.split-banner-box {
    display: flex;
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    min-height: 350px;
}

.split-banner-box.reverse {
    flex-direction: row-reverse;
}

.banner-img-side {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.b1-img {
    background-image: url("/zyra/img/banner/b2.jpeg");
}

.b2-img {
    background-image: url("/zyra/img/banner/b3.jpeg");
}

.banner-text-side {
    color: var(--dark);
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.banner-text-side h4 {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.banner-text-side h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.banner-text-side p {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 25px;
}


.banner-text-side {
    color: var(--dark);
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* h4 کا کلر اب بلیک ہے */
.banner-text-side h4 {
    color: #000;
    /* یا black لکھ لیں */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* h2 کا کلر بھی اب بلیک ہے */
.banner-text-side h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    /* یا black لکھ لیں */
}

.banner-text-side p {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 25px;
}

.modern-btn {
    padding: 12px 30px;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    transition: 0.3s ease;
}

.modern-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ==========================================
   NEW TRIPLE BANNERS (SMART GRID)
   ========================================== */
#banner3-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    padding: 40px 80px;
    height: 450px;
}

.grid-box {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.grid-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}

.main-feature {
    grid-row: 1 / span 2;
    background-image: url("/zyra/img/banner/b4.jpeg");
}

.sub-feature-1 {
    background-image: url("/zyra/img/banner/b6.jpeg");
}

.sub-feature-2 {
    background-image: url("/zyra/img/banner/b5.jpeg");
}

.grid-content {
    position: relative;
    z-index: 2;
}

.grid-content h2 {
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
}

.grid-content h3 {
    color: #e5e7eb;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
}

.grid-link {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 2px solid var(--white);
    padding-bottom: 4px;
    transition: 0.3s;
}

.grid-link:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* ==========================================
   NEW NEWSLETTER (MINIMALIST CARD)
   ========================================== */
#modern-newsletter {
    padding: 60px 80px;
    background: var(--light);
}

.newsletter-card {
    background: #041e42;
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(4, 30, 66, 0.15);
}

.news-header h4 {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-header p {
    color: #9ca3af;
    font-size: 15px;
    margin: 0;
}

.news-header p span {
    color: #ffbd27;
    font-weight: 600;
}

.modern-form {
    display: flex;
    gap: 15px;
    width: 50%;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
}

.modern-form input {
    width: 100%;
    height: 54px;
    padding: 0 20px 0 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    outline: none;
    font-size: 15px;
    transition: 0.3s;
}

.modern-form input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
    height: 54px;
    padding: 0 35px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    background: #254ecb;
    transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 991px) {

    #sm-banner,
    #banner3-grid,
    #modern-newsletter {
        padding: 40px;
    }

    .newsletter-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
    }

    .modern-form {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .split-banner-box,
    .split-banner-box.reverse {
        flex-direction: column;
    }

    .banner-text-side {
        padding: 30px;
    }

    #banner3-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .main-feature {
        grid-row: auto;
        height: 300px;
    }

    .sub-feature-1,
    .sub-feature-2 {
        height: 200px;
    }
}

@media (max-width: 480px) {

    #sm-banner,
    #banner3-grid,
    #modern-newsletter {
        padding: 20px;
    }

    .banner-text-side h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .modern-form {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }
}



/* ==========================================
   NEW SMALL BANNERS (SPLIT LAYOUT)
   ========================================== */
#sm-banner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 80px;
}

.split-banner-box {
    display: flex;
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    min-height: 350px;
}

.split-banner-box.reverse {
    flex-direction: row-reverse;
}

.banner-img-side {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.banner-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* تصویر کا سائز خراب نہیں ہوگا */
    display: block;
    transition: 0.5s ease;
}

.split-banner-box:hover .banner-img-side img {
    transform: scale(1.05);
    /* ہور کرنے پر ہلکا سا زوم ان ہوگا */
}

.banner-text-side {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.banner-text-side h4 {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.banner-text-side h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.banner-text-side p {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 25px;
}

.modern-btn {
    padding: 12px 30px;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    transition: 0.3s ease;
}

.modern-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ==========================================
   NEW TRIPLE BANNERS (SMART GRID)
   ========================================== */
#banner3-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    padding: 40px 80px;
    height: 450px;
}

.grid-box {
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

/* تصویر کو بیک گراؤنڈ پر سیٹ کرنے کے لیے */
.grid-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: 0.5s ease;
}

.grid-box:hover .grid-bg-img {
    transform: scale(1.06);
}

/* بلیک اوورلے */
.grid-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.main-feature {
    grid-row: 1 / span 2;
}

.grid-content {
    position: relative;
    z-index: 2;
}

.grid-content h2 {
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
}

.grid-content h3 {
    color: #e5e7eb;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
}

.grid-link {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 2px solid var(--white);
    padding-bottom: 4px;
    transition: 0.3s;
}

.grid-link:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* ==========================================
   NEW NEWSLETTER (MINIMALIST CARD)
   ========================================== */
#modern-newsletter {
    padding: 60px 80px;
    background: var(--light);
}

.newsletter-card {
    background: #041e42;
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(4, 30, 66, 0.15);
}

.news-header h4 {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-header p {
    color: #9ca3af;
    font-size: 15px;
    margin: 0;
}

.news-header p span {
    color: #ffbd27;
    font-weight: 600;
}

.modern-form {
    display: flex;
    gap: 15px;
    width: 50%;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
}

.modern-form input {
    width: 100%;
    height: 54px;
    padding: 0 20px 0 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    outline: none;
    font-size: 15px;
    transition: 0.3s;
}

.modern-form input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
    height: 54px;
    padding: 0 35px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    background: #254ecb;
    transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 991px) {

    #sm-banner,
    #banner3-grid,
    #modern-newsletter {
        padding: 40px;
    }

    .newsletter-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
    }

    .modern-form {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .split-banner-box,
    .split-banner-box.reverse {
        flex-direction: column;
    }

    .banner-img-side {
        min-height: 250px;
    }

    .banner-text-side {
        padding: 30px;
    }

    #banner3-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .main-feature {
        grid-row: auto;
        height: 300px;
    }

    .sub-feature-1,
    .sub-feature-2 {
        height: 200px;
    }
}

@media (max-width: 480px) {

    #sm-banner,
    #banner3-grid,
    #modern-newsletter {
        padding: 20px;
    }

    .banner-text-side h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .modern-form {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }
}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px) {

    .checkout-section {

        padding: 14px 10px;
    }

    .checkout-left,
    .checkout-right {

        padding: 14px;
    }

    .checkout-left h2,
    .checkout-right h2 {

        font-size: 18px;
    }

    .input-group input,
    .input-group select {

        height: 40px;

        border-radius: 9px;

        font-size: 12px;
    }

    .place-order-btn {

        height: 42px;

        font-size: 13px;
    }

    .summary-total div {

        font-size: 13px;
    }

    .grand-total {

        font-size: 18px !important;
    }

}

.auth-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        linear-gradient(135deg,
            #0f172a,
            #1e293b,
            #111827);
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.auth-box {
    width: 100%;
    max-width: 850px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    animation: fadeIn .8s ease;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, .3);
}

.auth-left {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .05),
            rgba(255, 255, 255, .02));
}

.brand-logo {
    width: 130px;
    margin-bottom: 30px;
    animation: float 3s infinite ease-in-out;
}

.auth-left h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.auth-left p {
    opacity: .8;
    line-height: 1.7;
}

.auth-right {
    padding: 50px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.input-group {
    position: relative;
    margin-bottom: 18px;
}

.input-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.input-group input {
    width: 100%;
    height: 52px;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 0 50px;
    font-size: 14px;
    transition: .3s;
}

.input-group input:focus {
    border-color: #111827;
    box-shadow: 0 0 0 4px rgba(17, 24, 39, .08);
}

.password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
}

.auth-btn {
    height: 52px;
    border: none;
    border-radius: 14px;
    background: #111827;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s;
}

.auth-btn:hover {
    transform: translateY(-2px);
    background: #000;
}

.auth-bottom {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.auth-bottom a {
    color: #111827;
    font-weight: 600;
    text-decoration: none;
}

.success-msg {
    background: #dcfce7;
    color: #166534;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 18px;
    animation: fadeIn .4s ease;
}

.error-msg {
    background: #fee2e2;
    color: #991b1b;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 18px;
    animation: fadeIn .4s ease;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }

}

@media(max-width:768px) {

    .auth-box {
        grid-template-columns: 1fr;
    }

    .auth-left {
        display: none;
    }

    .auth-right {
        padding: 35px;
    }

}

.success {
    background: #dcfce7;
    color: #166534;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 15px;
    animation: fade .3s ease;
}

.error {
    background: #fee2e2;
    color: #991b1b;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 15px;
    animation: fade .3s ease;
}

.input-group.active input {
    border-color: #111827;
    box-shadow: 0 0 0 4px rgba(17, 24, 39, .08);
}

.auth-btn {
    transition: .3s ease;
}

@keyframes fade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================
   ALIVE PREMIUM EFFECTS
========================= */

/* Page Load */
body {
    animation: pageFade .8s ease;
}

@keyframes pageFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Hero */
#hero {
    animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        background-size: 100%;
    }

    to {
        background-size: 108%;
    }
}

/* Hero Text Animation */
#hero h4,
#hero h2,
#hero h1,
#hero p,
#hero button {
    animation: heroText 1s ease forwards;
}

@keyframes heroText {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Cards */
#feature .fe-box {
    transition: .4s ease;
}

#feature .fe-box:hover {
    transform: translateY(-12px) scale(1.03);
}

/* Product Cards */
#product1 .pro {
    transition: .4s ease;
}

#product1 .pro:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

/* Product Image */
#product1 .pro img {
    transition: .6s ease;
}

#product1 .pro:hover img {
    transform: scale(1.08);
}

/* Cart Icon Pulse */
.fa-bag-shopping,
.fa-shopping-bag {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* Banner Hover */
#banner img,
.banner-box,
.banner-box2 {
    transition: .8s ease;
}

#banner:hover img {
    transform: scale(1.06);
}

.banner-box:hover,
.banner-box2:hover {
    transform: translateY(-8px);
}

/* Newsletter */
#newsletter {
    position: relative;
    overflow: hidden;
}

#newsletter::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    top: -150px;
    right: -100px;
}

/* Navbar Premium */
#header {
    backdrop-filter: blur(20px);
    background: rgba(227, 230, 252, .85);
}

.shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;

    background: linear-gradient(135deg, #3b82f6, #1d4ed8, #2563eb);
    background-size: 300% 300%;

    border-radius: 999px;
    text-decoration: none;

    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);

    position: relative;
    overflow: hidden;

    transition: all 0.4s ease;
    animation: gradientFlow 4s ease infinite;
}

/* smooth alive movement */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* hover = lift + glow */
.shop-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.5);
}

/* click effect */
.shop-btn:active {
    transform: scale(0.98);
}

/* real “alive shine wave” */
.shop-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transform: skewX(-20deg);
}

.shop-btn:hover::before {
    animation: shine 0.9s ease;
}

@keyframes shine {
    0% {
        left: -120%;
    }

    100% {
        left: 220%;
    }
}

