*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}
body{

    background:linear-gradient(135deg,#f8f5ef,#e9f5ec);
    color:#1b4332;
}
.top-bar{

    background:#2d6a4f;
    color:#fff;
    text-align:center;
    padding:10px 20px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;

}
.navbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#ffffff;
    box-shadow:0 2px 12px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:34px;
    font-weight:700;
    color:#2d6a4f;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#2d6a4f;
}
/* HERO SECTION */

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:90px 8%;
    background:linear-gradient(135deg,#f8f6f2,#eef8f1);
    position: relative;
    overflow: hidden;
    gap:60px;
    min-height: 90vh;
    flex-wrap:wrap;
}

.hero-text{
    flex:1;
}

.tag{
    display:inline-block;
    background:#d8f3dc;
    color:#2d6a4f;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-text h1{
    font-size:60px;
    color:#2d6a4f;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-text p{
    font-size:18px;
    color:#555;
    line-height:1.8;
    max-width:550px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-primary{

    background:#2d6a4f;
    color:#fff;
    padding:16px 38px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:.4s;

}

.btn-primary:hover{

    background:#1b4332;
    transform:translateY(-4px);

}


.btn-secondary{

    border:2px solid #2d6a4f;
    color:#2d6a4f;
    padding:16px 38px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:.4s; }
.btn-secondary:hover{
    background:#2d6a4f;
    color:#fff;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:520px;
    border-radius:25px;
    transition:.5s;
    animation:float 4s ease-in-out infinite;
}

.hero-image img:hover{
    transform:scale(1.05);
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}

/* Statistics */

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:70px 8%;
    background:#ffffff;
}

.stat-box{
    background:#f8f6f2;
    text-align:center;
    padding:35px;
    border-radius:20px;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.stat-box:hover{
    transform:translateY(-8px);
}

.stat-box h2{
    color:#2d6a4f;
    font-size:40px;
    margin-bottom:10px;
}

.stat-box p{
    color:#666;
    font-size:17px;
}
/* Featured Products */

.featured{
    padding:90px 8%;
    background:#f8f6f2;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    color:#2d6a4f;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
}

.featured-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{

    background:rgba(255,255,255,0.6);
    backdrop-filter:blur(15px);
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 30px rgba(0,0,0,.08);
    transition:.4s;
    padding:25px;
    border:1px solid rgba(255,255,255,0.4);

}

.card:hover{

    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.card img{
    width:100%;
    height:220px;
    object-fit:contain;
}


.card h3{
    margin:20px 0 10px;
    color:#2d6a4f;
}

.card p{
    color:#777;
    margin-bottom:10px;
}

.card span{
    display:block;
    font-size:22px;
    font-weight:bold;
    color:#2d6a4f;
    margin-bottom:20px;
}

.shop-btn{
    display:inline-block;
    text-decoration:none;
    background:#2d6a4f;
    color:#fff;
    padding:12px 28px;
    border-radius:30px;
    transition:.3s;
}

.shop-btn:hover{
    background:#1b4332;
}
/* Why Choose Élan */

.why-choose{
    padding:90px 8%;
    background:#ffffff;
}

.choose-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.choose-card{
    background:#f8f6f2;
    padding:35px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.choose-card:hover{
    transform:translateY(-10px);
}

.icon{
    font-size:45px;
    margin-bottom:20px;
}

.choose-card h3{
    color:#2d6a4f;
    margin-bottom:15px;
}

.choose-card p{
    color:#666;
    line-height:1.7;
}
/* Customer Reviews */

.reviews{
    padding:90px 8%;
    background:#f8f6f2;
}

.review-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:50px;
}

.review-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-10px);
}

.review-card img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
}

.review-card h3{
    color:#2d6a4f;
    margin-bottom:10px;
}

.stars{
    color:#f4b400;
    font-size:20px;
    margin-bottom:15px;
}

.review-card p{
    color:#666;
    line-height:1.8;
}
/* Newsletter */

.newsletter{
    padding:90px 8%;
    background:#2d6a4f;
    text-align:center;
}

.newsletter h2{
    color:#fff;
    font-size:42px;
    margin-bottom:15px;
}

.newsletter p{
    color:#f0f0f0;
    max-width:650px;
    margin:0 auto 35px;
    line-height:1.8;
}

.newsletter-form{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.newsletter-form input{
    width:350px;
    padding:16px;
    border:none;
    border-radius:40px;
    outline:none;
    font-size:16px;
}

.newsletter-form button{
    padding:16px 35px;
    border:none;
    border-radius:40px;
    background:#fff;
    color:#2d6a4f;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.newsletter-form button:hover{
    background:#d8f3dc;
}
/* Footer */

.footer{
    background:#1b4332;
    color:#fff;
    padding:70px 8% 30px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

.footer-box h3{
    margin-bottom:20px;
}

.footer-box p,
.footer-box a{
    color:#ddd;
    text-decoration:none;
    display:block;
    margin-bottom:12px;
}

.footer-box a:hover{
    color:#fff;
}

.footer hr{
    margin:40px 0 20px;
    border:0;
    border-top:1px solid rgba(255,255,255,.2);
}

.copyright{
    text-align:center;
    color:#ccc;
} 
.products{

    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    padding:40px;

}


.product-card{

    width:100%;
    background:#fff;
    border-radius:25px;
    padding:20px;
    box-sizing:border-box;
    text-align:center;
    box-shadow:0 15px 30px rgba(0,0,0,.08);

}


.product-card img{

    width:100%;
    height:220px;
    object-fit:contain;
    border-radius:20px;

}


.product-card:hover{

    transform:translateY(-10px);

}
.product-price{

    font-size:22px;
    font-weight:900;
    color:#1b4332;
    margin:12px 0;
    letter-spacing: 0.5px;

}
.product-card button{

    background:#2d6a4f;
    color:white;
    border:none;
    padding:12px 30px;
    border-radius:30px;
    font-size:15px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;

}


.product-card button:hover{

    background:#1b4332;
    transform:translateY(-3px);

}
.rating{

    color:#f4a261;
    font-size:18px;
    margin:8px 0;

}
.cart-product{

    width:300px;
    background:#fff;
    padding:20px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.1);

}


.cart-product img{

    width:150px;
    height:150px;
    object-fit:contain;
    border-radius:15px;

}


#cart-items{

    display:flex;
    flex-wrap:wrap;
    gap:30px;
    padding:40px;

}
.cart-product button{

    background:#2d6a4f;
    color:white;
    border:none;
    padding:8px 18px;
    border-radius:20px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;

}


.cart-product button:hover{

    background:#1b4332;
    transform:translateY(-2px);

}


.cart-product span{

    font-size:18px;
    font-weight:bold;
    margin:0 12px;

}
.checkout-left form{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.checkout-left label{

    font-size:15px;
    font-weight:600;
    color:#2d6a4f;
    margin-bottom:-10px;

}

.checkout-left input,
.checkout-left select,
.checkout-left textarea{

    width:100%;
    padding:16px;
    border:1px solid #dcdcdc;
    border-radius:12px;
    font-size:16px;
    outline:none;
    transition:.3s;
    background:#fafafa;

}

.checkout-left input:focus,
.checkout-left select:focus,
.checkout-left textarea:focus{

    border-color:#2d6a4f;
    background:#fff;
    box-shadow:0 0 10px rgba(45,106,79,.15);

}

.checkout-left textarea{

    height:120px;
    resize:none;

}

.row{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;

}

.terms{

    display:flex;
    align-items:center;
    gap:10px;
    margin-top:10px;
    color:#555;
    font-size:15px;

}

.terms input{

    width:18px;
    height:18px;

}

.checkout-left .btn-primary{

    width:100%;
    margin-top:15px;
    padding:18px;
    font-size:18px;
    border:none;
    cursor:pointer;

}
.checkout-right h2{

    color:#2d6a4f;
    margin-bottom:25px;

}

.order-item{

    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;

}

.order-item img{

    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:15px;

}

.order-item h4{

    margin-bottom:5px;

}

.order-item span{

    margin-left:auto;
    font-weight:bold;
    color:#2d6a4f;

}

.summary p,
.summary h3{

    display:flex;
    justify-content:space-between;
    margin:15px 0;

}

.summary h3{

    color:#2d6a4f;
    font-size:24px;

}

.secure-box{

    margin-top:30px;
    background:#f4f9f6;
    padding:20px;
    border-radius:15px;
    text-align:center;
    color:#2d6a4f;
    line-height:1.7;

}
.payment-method{

    display:flex;
    flex-direction:column;
    gap:15px;
    margin:20px 0;

}

.payment-method label{

    display:flex;
    align-items:center;
    gap:12px;
    padding:15px;
    border:1px solid #ddd;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
    background:#fff;

}

.payment-method label:hover{

    border-color:#2d6a4f;
    background:#f6fbf8;

}

.payment-method input{

    width:18px;
    height:18px;

}
.success{

    max-width:700px;
    margin:100px auto;
    text-align:center;
    background:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.1);

}

.success h1{

    color:#2d6a4f;
    margin-bottom:20px;

}

.success p{

    font-size:18px;
    margin-bottom:15px;
    color:#555;

}
/* Billing Details Box */

#checkout-form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-width: 600px;
}


/* Labels */

#checkout-form label {
    display: block;
    font-weight: 600;
    margin: 15px 0 8px;
}


/* Inputs */

#checkout-form input,
#checkout-form select,
#checkout-form textarea {

    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;

}


#checkout-form input:focus,
#checkout-form select:focus,
#checkout-form textarea:focus {

    border-color: #8aa874;

}


/* Payment Method style */

.payment-method {

    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

}


.payment-method label {

    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;

}


.payment-method input {

    width: auto !important;

}


/* Terms checkbox */

.terms {

    display: flex !important;
    align-items: center;
    gap: 8px;

}

.terms input {

    width: auto !important;

}
/* ===== ABOUT PAGE ===== */

.about-section {
    padding: 80px 8%;
    background: #f8f6f1;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}


/* About Image */

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    object-fit: cover;
}


/* About Content */

.about-content {
    flex: 1;
}

.about-content h1 {
    font-size: 45px;
    color: #2f4f3a;
    margin-bottom: 20px;
    font-family: serif;
}


.about-content h2 {
    font-size: 28px;
    color: #3f5f48;
    margin-bottom: 15px;
}


.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}


/* Features */

.about-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}


.feature-box {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}


.feature-box h3 {
    color: #2f4f3a;
    margin-bottom: 10px;
}


.feature-box p {
    font-size: 14px;
}


/* Button */

.about-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: #2f4f3a;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}


.about-btn:hover {
    background: #1f3527;
}


/* Responsive */

@media(max-width: 768px){

    .about-container {
        flex-direction: column;
        text-align: center;
    }


    .about-content h1 {
        font-size: 35px;
    }


    .about-features {
        flex-direction: column;
    }

}
*{
    box-sizing:border-box;
}


.about-hero{

    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:80px 8%;
    background:#f7f4ed;

}


.about-text{

    width:50%;

}


.small-title{

    letter-spacing:4px;
    color:#4d6b55;
    font-size:14px;

}


.about-text h1{

    font-size:60px;
    line-height:1.1;
    color:#263b2d;
    font-family:serif;
    margin:20px 0;

}


.about-text p{

    color:#555;
    line-height:1.8;
    font-size:17px;

}



.about-button{

    display:inline-block;
    margin-top:25px;
    padding:14px 35px;
    background:#354f3b;
    color:white;
    border-radius:30px;
    text-decoration:none;

}



.about-image{

    width:45%;

}


.about-image img{

    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:30px;

}




.story{

    text-align:center;
    padding:90px 15%;
    background:white;

}


.story h2{

    font-size:42px;
    color:#304936;
    font-family:serif;

}


.story p{

    font-size:18px;
    line-height:2;
    color:#666;

}



.values{

    display:flex;
    gap:30px;
    padding:70px 8%;
    background:#f7f4ed;

}



.value-card{

    flex:1;
    background:white;
    padding:35px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);

}


.value-card h3{

    color:#304936;
    font-size:22px;

}



.value-card p{

    color:#666;

}




@media(max-width:768px){

.about-hero{

flex-direction:column;

}


.about-text,
.about-image{

width:100%;

}


.about-text h1{

font-size:40px;

}


.values{

flex-direction:column;

}

}
.contact-section{

display:flex;
gap:50px;
padding:80px 8%;
background:#f7f4ed;

}


.contact-info,
.contact-form{

flex:1;

}


.contact-info h1{

font-size:50px;
color:#304936;
font-family:serif;

}


.contact-info p{

color:#666;
line-height:1.8;

}


.info-box{

margin-top:25px;

}


.info-box h3{

color:#304936;

}



.contact-form{

background:white;
padding:40px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,.08);

}



.contact-form input,
.contact-form textarea{

width:100%;
padding:15px;
margin:10px 0;
border:1px solid #ddd;
border-radius:10px;

}



.contact-form textarea{

height:120px;

}



.contact-form button{

padding:15px 35px;
background:#304936;
color:white;
border:none;
border-radius:30px;
cursor:pointer;

}



/* Elegant Search Box */

.search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #d8ddd5;
    border-radius: 30px;
    padding: 5px 8px 5px 18px;
    width: 260px;
    transition: 0.3s ease;
}


.search-box:hover {
    border-color: #304936;
}


.search-box input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
    color: #304936;
}


.search-box input::placeholder {
    color: #999;
}


.search-box button {

    border: none;
    background: #304936;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;

}


.search-box button:hover {

    background: #1f3527;
    transform: scale(1.05);

}
.search-box button {
    border: none;
    background: transparent;
    color: #304936;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 17px;
    transition: 0.3s;
}

.search-box button:hover {
    color: #1f3527;
    transform: scale(1.1);
}
/* ===== Product Filter Buttons ===== */

.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 50px 0 30px;
}


.filters button {

    background: transparent;
    border: 1px solid #304936;
    color: #304936;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;

}


.filters button:hover {

    background: #304936;
    color: white;

}


.filters button:focus {

    background: #304936;
    color: white;

}
.login-section{

min-height:80vh;
display:flex;
justify-content:center;
align-items:center;
background:#f7f4ed;
padding:50px 8%;

}


.login-box{

background:white;
width:400px;
padding:45px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:center;

}


.login-box h1{

font-size:40px;
font-family:serif;
color:#304936;
margin-bottom:10px;

}


.login-box p{

color:#666;

}


.login-box form{

text-align:left;
margin-top:30px;

}


.login-box label{

display:block;
margin:15px 0 8px;
color:#304936;

}


.login-box input{

width:100%;
padding:15px;
border:1px solid #ddd;
border-radius:10px;
outline:none;

}


.login-box input:focus{

border-color:#304936;

}


.login-box button{

width:100%;
margin-top:25px;
padding:15px;
border:none;
border-radius:30px;
background:#304936;
color:white;
font-size:16px;
cursor:pointer;

}


.login-box button:hover{

background:#1f3527;

}


.signup{

margin-top:20px;
font-size:14px;

}


.signup a{

color:#304936;
text-decoration:none;
font-weight:bold;

}
.signup-section{

    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f8f6f1;
    padding:60px 8%;

}

.signup-box{

    width:420px;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);

}

.signup-box h1{

    text-align:center;
    color:#304936;
    margin-bottom:10px;

}

.signup-box p{

    text-align:center;
    color:#666;
    margin-bottom:25px;

}

.signup-box label{

    display:block;
    margin:15px 0 8px;
    color:#304936;
    font-weight:600;

}

.signup-box input{

    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:15px;

}

.signup-box input:focus{

    border-color:#304936;

}

.signup-box button{

    width:100%;
    margin-top:25px; }
    .login-link{

    margin-top:20px;
    text-align:center;

}

.login-link a{

    color:#304936;
    text-decoration:none;
    font-weight:bold;

}

@media(max-width:768px){

.signup-box{

    width:100%;
    padding:30px 20px;

}

}
.signup-box button{
    width:100%;
    padding:16px;
    margin-top:25px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#304936,#496b4f);
    color:#fff;
    font-size:17px;
    font-weight:600;
    letter-spacing:0.5px;
    cursor:pointer;
    transition:0.3s ease;
    box-shadow:0 8px 20px rgba(48,73,54,0.25);
}

.signup-box button:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(48,73,54,0.35);
}

.signup-box button:active{
    transform:scale(0.98);
}
.search-box{
    position: relative;
}

.search-results{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 999;
}

.search-item{
    padding: 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.search-item:hover{
    background: #f5f5f5;
}
.details-btn{
    display:block;
    text-align:center;
    text-decoration:none;
    padding:12px;
    margin:10px 0;
    border-radius:8px;
    background:#2e7d32;
    color:white;
    font-size:16px;
}

.details-btn:hover{
    opacity:0.9;
}
.tracking-box{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.tracking-box input{
    padding:12px;
    border:1px solid #ccc;
    border-radius:8px;
}

.tracking-box button{
    padding:12px 20px;
    border:none;
    border-radius:8px;
    cursor:pointer;
}
/* Shipping Page Styling */

.info-page{
    padding:70px 10%;
    text-align:center;
    max-width:900px;
    margin:auto;
}

.info-page h1{
    font-size:42px;
    margin-bottom:20px;
    letter-spacing:1px;
}

.info-page > p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:35px;
}


.info-page h2{
    margin-top:35px;
    font-size:24px;
}


.info-page p{
    color:#555;
    line-height:1.7;
}


/* Tracking Box */

.tracking-box{
    margin-top:40px;
    padding:30px;
    border-radius:15px;
    background:#f7f7f7;
}


.tracking-box input{
    padding:12px 15px;
    width:250px;
    border:1px solid #ddd;
    border-radius:8px;
}


.tracking-box button{
    padding:12px 25px;
    margin-left:10px;
    border:none;
    border-radius:8px;
    background:#222;
    color:white;
    cursor:pointer;
}


.tracking-box button:hover{
    opacity:0.8;
}
/* Returns Page Styling */

.info-page{
    padding:70px 10%;
    max-width:900px;
    margin:auto;
    text-align:center;
}


.info-page h1{
    font-size:42px;
    margin-bottom:20px;
    letter-spacing:1px;
}


.info-page h2{
    margin-top:35px;
    font-size:24px;
}


.info-page p{
    color:#555;
    font-size:16px;
    line-height:1.8;
}


/* Section spacing */

.info-page h2 + p{
    background:#f8f8f8;
    padding:20px;
    border-radius:12px;
    margin-top:15px;
}


/* Smooth hover effect */

.info-page h2 + p:hover{
    transform:translateY(-3px);
    transition:0.3s;
}
/* Privacy Policy Styling */

.info-page{
    padding:70px 10%;
    max-width:900px;
    margin:auto;
    text-align:center;
}


.info-page h1{
    font-size:42px;
    margin-bottom:20px;
    letter-spacing:1px;
}


.info-page h2{
    margin-top:35px;
    font-size:24px;
}


.info-page p{
    color:#555;
    font-size:16px;
    line-height:1.8;
}


.info-page h2 + p{
    background:#f8f8f8;
    padding:20px;
    border-radius:12px;
    margin-top:15px;
    transition:0.3s;
}


.info-page h2 + p:hover{
    transform:translateY(-3px);
}
/* Terms & Conditions Page */

.info-page{
    padding:70px 10%;
    max-width:900px;
    margin:auto;
    text-align:center;
}


.info-page h1{
    font-size:42px;
    margin-bottom:20px;
    letter-spacing:1px;
}


.info-page h2{
    margin-top:35px;
    font-size:24px;
}


.info-page p{
    color:#555;
    font-size:16px;
    line-height:1.8;
}


.info-page h2 + p{
    background:#f8f8f8;
    padding:20px;
    border-radius:12px;
    margin-top:15px;
    transition:0.3s;
}


.info-page h2 + p:hover{
    transform:translateY(-3px);
}


/* Footer bottom */

body{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

.info-page{
    flex:1;
}

.footer{
    margin-top:auto;
}
/* Payment Page Styling */

.payment-section{
    max-width:600px;
    margin:60px auto;
    padding:35px;
    background:#f8f8f8;
    border-radius:15px;
}


.payment-section h2{
    text-align:center;
    margin-bottom:25px;
    font-size:28px;
}


.payment-section label{
    font-size:16px;
    display:block;
    margin:12px 0;
}


.card-details{
    margin-top:25px;
}


.card-details input{
    width:100%;
    padding:13px;
    margin:10px 0;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
}


.card-row{
    display:flex;
    gap:15px;
}


.card-row input{
    width:50%;
}


.pay-btn{
    width:100%;
    margin-top:25px;
    padding:14px;
    background:#222;
    color:white;
    border:none;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
}


.pay-btn:hover{
    opacity:0.8;
}
.payment-section{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f7f7f4;
    padding:60px 20px;
}

.payment-box{
    width:480px;
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.payment-box h2{
    text-align:center;
    color:#234233;
    margin-bottom:10px;
    font-size:30px;
}

.payment-text{
    text-align:center;
    color:#777;
    margin-bottom:25px;
}

.card-icons{
    text-align:center;
    font-size:40px;
    color:#234233;
    margin-bottom:30px;
}

.payment-box label{
    display:block;
    margin:15px 0 8px;
    color:#234233;
    font-weight:600;
}

.payment-box input{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    outline:none;
}

.payment-box input:focus{
    border-color:#234233;
}

.card-row{
    display:flex;
    gap:15px;
}

.card-row div{
    flex:1;
}

.pay-btn{
    width:100%;
    margin-top:30px;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#234233;
    color:#fff;
    font-size:17px;
    cursor:pointer;
    transition:.3s;
}

.pay-btn:hover{
    background:#355a47;
}
.payment-section{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    background:#f5f8fa;
    padding:40px 20px;
}

.payment-box{
    width:450px;
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.payment-box h2{
    text-align:center;
    margin-bottom:10px;
    color:#1d4f5f;
}

.payment-text{
    text-align:center;
    color:#666;
    margin-bottom:20px;
}

.card-icons{
    text-align:center;
    font-size:38px;
    margin-bottom:25px;
}

.card-icons i{
    margin:0 8px;
    color:#1d4f5f;
}

.payment-box label{
    display:block;
    margin:12px 0 6px;
    font-weight:600;
}

.payment-box input{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    box-sizing:border-box;
}

.card-row{
    display:flex;
    gap:15px;
}

.input-group{
    flex:1;
}

.pay-btn{
    width:100%;
    margin-top:25px;
    padding:15px;
    border:none;
    border-radius:30px;
    background:#2d6f82;
    color:white;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.pay-btn:hover{
    background:#1d4f5f;
}
.tracking-box{
    max-width:900px;
    margin:80px auto;
    text-align:center;
}

.tracking{
    display:flex;
    justify-content:space-between;
    margin-top:60px;
}

.step{
    width:180px;
    padding:20px;
    border-radius:15px;
    background:#f3f3f3;
    transition:.4s;
}

.step h2{
    font-size:40px;
}

.step.active{
    background:#0f766e;
    color:white;
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}
.tracking-box{
    width:90%;
    max-width:700px;
    margin:50px auto;
    text-align:center;
}

.tracking{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    margin-top:40px;
}

.step{
    text-align:center;
    color:#999;
}

.step .icon{
    font-size:35px;
}

.step.active{
    color:#111;
}

.line{
    width:50px;
    height:3px;
    background:#ddd;
}
.menu-btn{
    display:none;
    font-size:25px;
    background:none;
    border:none;
    cursor:pointer;
}


@media(max-width:768px){

.navbar{
    flex-wrap:wrap;
    padding:15px;
}

.menu-btn{
    display:block;
}


.nav-links{
    display:none;
    width:100%;
    flex-direction:column;
    text-align:center;
    gap:15px;
}


.nav-links.active{
    display:flex;
}


.search-box{
    order:3;
    width:100%;
}


.search-box input{
    width:80%;
}

}
@media (max-width:768px){

    .why-choose{
        padding:40px 20px;
    }


    .section-title h2{
        font-size:28px;
    }


    .section-title p{
        font-size:15px;
        line-height:1.5;
    }


    .choose-container{
        display:grid;
        grid-template-columns:1fr;
        gap:20px;
    }


    .choose-card{
        text-align:center;
        padding:25px 15px;
    }


    .choose-card .icon{
        font-size:35px;
        margin-bottom:10px;
    }


    .choose-card h3{
        font-size:20px;
    }


    .choose-card p{
        font-size:14px;
        line-height:1.6;
    }

}