/* =================================================
   GLOBAL RESET & BASE (SEO + UX friendly)
================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #F6E6C9;
    /* Camel */
    color: #3A1F1F;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* =================================================
   TYPOGRAPHY (SEO friendly hierarchy)
================================================= */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    font-size: 32px;
}

p {
    font-size: 14px;
}

/* =================================================
   HEADER / NAVBAR
================================================= */
.site-header {
    background: #F6E6C9;
    border-bottom: 1px solid #E2C9A5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #355033;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links a {
    margin-left: 24px;
    text-decoration: none;
    font-size: 14px;
    color: #355033;
}

.nav-links a:hover {
    color: #355033;
}

/* =================================================
   HERO SECTION
================================================= */
.hero-wrapper {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    height: 420px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #E2C9A5;
}

.hero-container img,
.hero-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(246, 230, 201, 0.9),
            rgba(246, 230, 201, 0.3));
}

.hero-content {
    position: absolute;
    left: 40px;
    bottom: 50px;
    z-index: 2;
}

.hero-content h2 {
    color: #355033;
    font-size: 38px;
}

.hero-content p {
    margin: 10px 0 20px;
}

.hero-content button {
    padding: 12px 34px;
    border-radius: 30px;
    border: none;
    background: #355033;
    color: #fff;
    cursor: pointer;
}

.hero-content button:hover {
    background: #355033;
}

/* =================================================
   PRODUCTS SECTION
================================================= */
.products-section {
    padding: 70px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #355033;
}

.products-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border: 1px solid #E2C9A5;
    border-radius: 16px;
    padding: 16px;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    /* face-safe */
    background: #F6E6C9;
    border-radius: 12px;
}

.product-card h3 {
    margin: 15px 0 6px;
    font-size: 17px;
}

.price {
    color: #355033;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-card button {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: none;
    background: #355033;
    color: #fff;
    cursor: pointer;
}

.product-card button:hover {
    background: #355033;
}

/* =================================================
   CART / CHECKOUT BUTTONS
================================================= */
.checkout-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #355033;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
}

.checkout-btn:hover {
    background: #355033;
}

/* =================================================
   CHECKOUT FORM
================================================= */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkout-form input {
    padding: 14px 16px;
    border-radius: 30px;
    border: 1px solid #E2C9A5;
}

.checkout-form input:focus {
    outline: none;
    border-color: #355033;
}

.checkout-form button {
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: #355033;
    color: #fff;
    cursor: pointer;
}

/* =================================================
   FOOTER
================================================= */
footer {
    padding: 40px 20px;
    text-align: center;
    font-size: 13px;
    color: #355033;
}

/* =================================================
   RESPONSIVE BREAKPOINTS
================================================= */
@media (max-width: 992px) {
    .hero-container {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .nav-links a {
        margin-left: 14px;
        font-size: 13px;
    }

    .hero-container {
        height: 300px;
    }

    .hero-content {
        left: 20px;
        bottom: 30px;
    }

    .hero-content h2 {
        font-size: 26px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 260px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 24px;
    }

    .logo {
        font-size: 18px;
    }
}

/* INTRO LOGO SCREEN */
#intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #F6E7C1;
    /* camel / luxury */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 1s ease forwards;
    animation-delay: 2.5s;
}

#intro img {
    width: 160px;
    animation: zoomIn 2s ease;
}

/* Animations */
@keyframes zoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.stat-card h3 {
    color: #3A4921;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 22px;
    font-weight: bold;
}


/* ================= PREMIUM UPGRADE ================= */

.site-header {
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 34px;
    font-weight: 700;
}

.nav-links a {
    font-weight: 500;
    transition: .3s;
}

.nav-links a:hover {
    color: #3A4921;
    transform: translateY(-2px);
}

/* HERO */

.hero-container {
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.hero-content h2 {
    font-size: 52px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-content button {
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(139, 30, 30, .25);
}

/* TRUST SECTION */

.trust-box {
    background: white;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

/* PRODUCTS */

.products-section {
    padding: 90px 20px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
}

.product-card {
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.product-card img {
    transition: .5s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 20px;
}

.price {
    font-size: 18px;
}

/* BUTTON */

.product-card button,
.checkout-btn {
    font-weight: 600;
    transition: .3s;
}

.product-card button:hover,
.checkout-btn:hover {
    transform: translateY(-2px);
}

/* FOOTER */

footer {
    background: #1d1d1d;
    color: white;
    padding: 60px 20px;
    margin-top: 60px;
}

/* MOBILE */

@media(max-width:768px) {

    .hero-content h2 {
        font-size: 32px;
    }

    .section-title {
        font-size: 30px;
    }

    .logo {
        font-size: 24px;
    }

}


/* ===== FINAL PREMIUM LOOK ===== */

body {
    background: #f9f6f1;
}

.site-header {
    background: rgba(249, 246, 241, .95);
    backdrop-filter: blur(15px);
}

.hero-container {
    height: 650px;
    border-radius: 25px;
    overflow: hidden;
}

.hero-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 500px;
}

.hero-content h2 {
    font-size: 58px;
    line-height: 1.1;
    color: #355033;
}

.hero-content p {
    font-size: 18px;
    color: #333;
}

.hero-content button {
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 50px;
}

.trust-box {
    transition: .3s;
}

.trust-box:hover {
    transform: translateY(-8px);
}

.products-grid {
    gap: 35px;
}

.product-card {
    background: white;
    border-radius: 20px;
}

.product-card img {
    height: 420px;
    object-fit: cover;
    background: white;
}

.product-card h3 {
    font-size: 22px;
}

.price {
    font-size: 20px;
    font-weight: 700;
}

.product-card button {
    border-radius: 50px;
}

footer {
    background: #111;
    color: white;
}

@media(max-width:768px) {

    .hero-container {
        height: 450px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .product-card img {
        height: 320px;
    }

}


/* ================= SHOP V2 PREMIUM ================= */

.product-card {
    position: relative;
    overflow: hidden;
}

.product-card img {
    transition: 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .15);
}

.product-buttons {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.view-btn {
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 12px;
    border: 2px solid #355033;
    color: #355033;
    border-radius: 30px;
    font-weight: 600;
    transition: .3s;
    background: #fff;
}

.view-btn:hover {
    background: #355033;
    color: #fff;
}

.add-cart-btn {

    flex: 1;

    padding: 15px;

    border: none;

    border-radius: 35px;

    background: #355033;

    color: white;

    font-size: 16px;

    cursor: pointer;

    transition: .3s;

}

.add-cart-btn:hover {

    background: #355033;

}


.product-card span {
    letter-spacing: .5px;
}

/* ================= PREMIUM FOOTER ================= */

.premium-footer {

    background: #1F1F1F;

    color: white;

    margin-top: 80px;

}

.footer-container {

    max-width: 1200px;

    margin: auto;

    padding: 60px 20px;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 40px;

}

.footer-box h3 {

    margin-bottom: 20px;

    color: #F6E6C9;

    font-size: 22px;

}

.footer-box p {

    color: #d7d7d7;

    line-height: 1.9;

    font-size: 14px;

}

.footer-box a {

    display: block;

    margin-bottom: 12px;

    color: #d7d7d7;

    text-decoration: none;

    transition: .3s;

}

.footer-box a:hover {

    color: #F6E6C9;

    padding-left: 6px;

}

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .12);

    padding: 22px;

    text-align: center;

    font-size: 14px;

    color: #bbb;

}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}


/* PRODUCT OPTIONS */

.product-option {

    margin-top: 30px;

}

.product-option h3 {

    margin-bottom: 12px;

    font-size: 18px;

}

.size-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}

.size-buttons button {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    border: 1px solid #ddd;

    background: white;

    cursor: pointer;

    font-weight: 600;

    transition: .3s;

}

.size-buttons button:hover {

    background: #355033;

    color: white;

}

.active-size {

    background: #355033 !important;

    color: white;

}

.qty-box {

    display: flex;

    align-items: center;

    gap: 15px;

}

.qty-box button {

    width: 45px;

    height: 45px;

    border: none;

    background: #355033;

    color: white;

    border-radius: 10px;

    cursor: pointer;

    font-size: 20px;

}

.qty-box span {

    font-size: 20px;

    font-weight: bold;

}

.product-action {

    display: flex;

    gap: 15px;

    margin-top: 35px;

}

.buy-btn {

    flex: 1;

    padding: 15px;

    border: none;

    border-radius: 35px;

    background: #222;

    color: white;

    font-size: 16px;

    cursor: pointer;

    transition: .3s;

}

.buy-btn:hover {

    background: #000;

}

.size-chart {

    margin-top: 18px;

}

.size-chart button {

    background: none;

    border: none;

    color: #355033;

    font-weight: 600;

    cursor: pointer;

    font-size: 15px;

}

/* POPUP */

.size-popup {

    display: none;

    position: fixed;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, .65);

    justify-content: center;

    align-items: center;

    z-index: 9999;

}

.size-popup-content {

    background: white;

    padding: 25px;

    border-radius: 15px;

    max-width: 900px;

    width: 90%;

    position: relative;

}

.size-popup-content img {

    width: 100%;

    border-radius: 10px;

}

#closeSizePopup {

    position: absolute;

    right: 20px;

    top: 15px;

    font-size: 32px;

    cursor: pointer;

}

/* PRODUCT GALLERY */

.product-gallery {

    display: flex;

    gap: 20px;

}

.thumbnail-gallery {

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.thumbnail-gallery img {

    width: 85px;

    height: 110px;

    object-fit: cover;

    border-radius: 12px;

    cursor: pointer;

    border: 2px solid transparent;

    transition: .3s;

}

.thumbnail-gallery img:hover {

    border-color: #3A4921;

}

.active-thumb {

    border-color: #3A4921 !important;

}

.main-image {

    flex: 1;

}

.main-image img {

    width: 100%;

    border-radius: 20px;

    background: white;

    padding: 12px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}


/* ================= IMAGE LIGHTBOX ================= */

.image-lightbox {

    display: none;

    position: fixed;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, .92);

    justify-content: center;

    align-items: center;

    z-index: 999999;

    animation: fadeIn .3s;

}

.image-lightbox img {

    max-width: 90%;

    max-height: 90%;

    border-radius: 12px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);

}

#closeLightbox {

    position: absolute;

    top: 25px;

    right: 35px;

    font-size: 48px;

    color: white;

    cursor: pointer;

    transition: .3s;

}

#closeLightbox:hover {

    transform: scale(1.2);

}

@keyframes fadeIn {

    from {

        opacity: 0;

    }

    to {

        opacity: 1;

    }

}

/* LIGHTBOX ARROWS */

.lightbox-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;

    height: 55px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, .15);

    color: white;

    font-size: 28px;

    cursor: pointer;

    backdrop-filter: blur(10px);

    transition: .3s;

}

.lightbox-arrow:hover {

    background: #3A4921;

}

.left-arrow {

    left: 35px;

}

.right-arrow {

    right: 35px;

}


.product-details-section {

    max-width: 1200px;

    margin: 60px auto;

    padding: 0 20px;

}

.product-details-section h2 {

    color: #355033;

    margin-bottom: 25px;

    font-size: 30px;

}

.product-details-table {

    width: 100%;

    border-collapse: collapse;

    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);

}

.product-details-table td {

    padding: 16px;

    border-bottom: 1px solid #eee;

    font-size: 15px;

}

.product-details-table tr:last-child td {

    border: none;

}

.product-details-table td:first-child {

    width: 35%;

    background: #fafafa;

    font-weight: 600;

}


.cart-buttons {

    display: flex;

    gap: 15px;

    margin-top: 25px;

    flex-wrap: wrap;

}

.continue-shopping-btn,

.checkout-btn {

    flex: 1;

    text-align: center;

    padding: 15px;

    text-decoration: none;

    border-radius: 10px;

    font-weight: 600;

    transition: .3s;

}

.continue-shopping-btn {

    background: #f5f5f5;

    color: #333;

    border: 1px solid #ddd;

}

.continue-shopping-btn:hover {

    background: #03d7b4;

}

.checkout-btn {

    background: #355033;

    color: #fff;

}

.checkout-btn:hover {

    background: #355033;

}





/* ==========================================
   CHECKOUT V2
========================================== */

.checkout-page {

    max-width: 1400px;

    margin: 50px auto;

    padding: 0 25px;

}

.checkout-container {

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 35px;

    align-items: start;

}

.checkout-left {

    width: 100%;

}

.checkout-right {

    width: 100%;

}

.checkout-card,
.order-summary {

    background: #fff;

    border-radius: 20px;

    padding: 35px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.checkout-card h2,
.order-summary h2 {

    color: #3A4921;

    font-size: 36px;

    margin-bottom: 10px;

    font-weight: 700;

}

.checkout-card>p {

    color: #777;

    margin-bottom: 35px;

}

.checkout-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;

}



/* ==========================================
   CHECKOUT FORM
========================================== */

.form-group {

    display: flex;

    flex-direction: column;

}

.form-group label {

    font-size: 14px;

    font-weight: 600;

    color: #333;

    margin-bottom: 8px;

}

.form-group input,
.form-group select {

    width: 100%;

    height: 56px;

    border: 1px solid #ddd;

    border-radius: 14px;

    padding: 0 18px;

    font-size: 15px;

    background: #fff;

    transition: .3s;

}

.form-group input:focus,
.form-group select:focus {

    outline: none;

    border-color: #3A4921;

    box-shadow: 0 0 0 4px rgba(139, 30, 30, .08);

}

.form-group input::placeholder {

    color: #999;

}

.form-group select {

    cursor: pointer;

}

/* Payment Section */

.payment-section {

    grid-column: 1/-1;

    margin-top: 35px;

}

.payment-section h2 {

    color: #3A4921;

    margin-bottom: 20px;

    font-size: 28px;

}

.payment-options {

    display: flex;

    flex-direction: column;

    gap: 15px;

}


/* ==========================================
   PAYMENT CARDS
========================================== */

.payment-card {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 18px 20px;

    border: 2px solid #e8e8e8;

    border-radius: 16px;

    background: #fff;

    cursor: pointer;

    transition: all .3s ease;

}

.payment-card:hover {

    border-color: #3A4921;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

    transform: translateY(-2px);

}

.payment-card input {

    accent-color: #3A4921;

    transform: scale(1.2);

}

.payment-card h4 {

    margin: 0;

    font-size: 17px;

    color: #222;

}

.payment-card p {

    margin: 5px 0 0;

    color: #777;

    font-size: 14px;

}

/* ==========================================
   TERMS
========================================== */

.terms-box {

    grid-column: 1/-1;

    margin: 30px 0 25px;

}

.terms-box label {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    cursor: pointer;

    font-size: 14px;

    color: #555;

    line-height: 1.6;

}

.terms-box input {

    margin-top: 3px;

    accent-color: #3A4921;

}

/* ==========================================
   PLACE ORDER BUTTON
========================================== */

.checkout-actions {

    grid-column: 1/-1;

}

.place-order-btn {

    width: 100%;

    height: 60px;

    border: none;

    border-radius: 16px;

    background: #3A4921;

    color: #fff;

    font-size: 18px;

    font-weight: 600;

    cursor: pointer;

    transition: .35s;



}

.place-order-btn:hover {

    background: #6f1515;



    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(139, 30, 30, .25);


}

/* ==========================================
   ORDER SUMMARY
========================================== */

.order-summary {

    position: sticky;

    top: 120px;

}

#orderItems {

    margin: 25px 0;

}

.checkout-product {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid #eee;

}

.checkout-product:last-child {

    border-bottom: none;

}

.checkout-product-img {

    width: 80px;

    height: 100px;

    object-fit: cover;

    border-radius: 12px;

    border: 1px solid #eee;

}

.checkout-product-info {

    flex: 1;

}

.checkout-product-info h4 {

    margin: 0 0 8px;

    font-size: 16px;

    color: #222;

}

.checkout-product-info p {

    margin: 4px 0;

    color: #666;

    font-size: 14px;

}

.checkout-product-price {

    font-size: 18px;

    font-weight: 700;

    color: #3A4921;

}

.summary-subtitle {

    color: #777;

    margin-bottom: 20px;

}

.summary-total {

    margin-top: 25px;

}

.summary-row {

    display: flex;

    justify-content: space-between;

    margin: 15px 0;

    font-size: 16px;

}

.total-row {

    font-size: 22px;

    font-weight: 700;

    color: #3A4921;

}

.secure-box {

    margin-top: 30px;

    padding-top: 20px;

    border-top: 1px solid #eee;

}

.secure-box p {

    margin: 10px 0;

    color: #555;

}


/* ==========================================
   CHECKOUT PROGRESS
========================================== */

.checkout-banner {

    text-align: center;

    margin: 35px 0 20px;

}

.checkout-banner h1 {

    font-size: 42px;

    color: #3A4921;

    margin-bottom: 8px;

}

.checkout-banner p {

    color: #777;

}

.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 50px;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 120px;
}

.progress-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e5e5;
    color: #666;
    font-size: 24px;
    transition: .3s;
}

.progress-step span {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
}

.progress-line {
    width: 90px;
    height: 4px;
    background: #e5e5e5;
    margin: 0 8px;
    border-radius: 10px;
    margin-bottom: 25px;
}

/* Completed */
.progress-step.completed .progress-circle {
    background: #3A4921;
    color: #fff;
}

/* Active */
.progress-step.active .progress-circle {
    background: #d7a35b;
    color: #fff;
}

/* Cart -> Checkout line */
.progress-step.completed+.progress-line {
    background: #3A4921;
}

/* Checkout -> Order Complete line */
.progress-step.active+.progress-line {
    background: #e5e5e5;
}

.order-summary {
    position: sticky;
    top: 110px;
}

.summary-total {

    margin-top: 25px;

}

.summary-row {

    display: flex;

    justify-content: space-between;

    margin: 15px 0;

}

.total-row {

    font-size: 22px;

    font-weight: 700;

    color: #3A4921;

}

.payment-card:has(input:checked) {
    border: 2px solid #3A4921;
    background: #fff8f6;
}


/* ==========================================
   SUCCESS PAGE
========================================== */

.success-hero {

    max-width: 900px;

    margin: 50px auto 30px;

    text-align: center;

}

.success-icon {

    width: 110px;

    height: 110px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: linear-gradient(135deg, #20c997, #198754);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 48px;

    box-shadow: 0 18px 40px rgba(32, 201, 151, .30);

    animation: successPop .8s ease;

}

.success-hero h1 {

    font-size: 38px;

    color: #3A4921;

    margin-bottom: 12px;

}

.success-hero p {

    color: #666;

    font-size: 17px;

}

.success-order-card {

    width: 90%;

    max-width: 700px;

    margin: 30px auto;

    background: #fff;

    border-radius: 22px;

    padding: 35px;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

}

.success-order-card h2 {

    margin-bottom: 25px;

    color: #3A4921;

}

.success-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 16px 0;

    border-bottom: 1px solid #eee;

}

.success-row:last-child {

    border: none;

}

.success-row span {

    color: #666;

}

.success-row strong {

    color: #222;

}

.success-actions {

    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

    margin: 40px auto;

}

.success-btn {

    text-decoration: none;

    padding: 15px 28px;

    border-radius: 14px;

    font-weight: 600;

    transition: .35s;

}

.primary-btn {

    background: #3A4921;

    color: #fff;

}

.secondary-btn {

    background: #f3f3f3;

    color: #222;

}

.outline-btn {

    border: 2px solid #3A4921;

    color: #3A4921;

}

.success-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, .12);

}

@keyframes successPop {

    0% {

        transform: scale(.2);

        opacity: 0;

    }

    100% {

        transform: scale(1);

        opacity: 1;

    }

}


/* ==========================
   DELIVERY CARD
========================== */

.delivery-card {

    max-width: 700px;

    margin: 25px auto;

    background: #fff;

    border-radius: 20px;

    padding: 22px 28px;

    display: flex;

    align-items: center;

    gap: 18px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

}

.delivery-icon {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: #f4f4f4;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 32px;

}

.delivery-card h3 {

    margin-bottom: 6px;

    color: #3A4921;

}

.delivery-card p {

    color: #666;

    font-size: 15px;

}


/* ==========================
   SUCCESS BUTTONS
========================== */

.success-actions {

    max-width: 700px;

    margin: 35px auto;

    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

}

.success-btn {

    min-width: 200px;

    text-align: center;

    text-decoration: none;

    padding: 16px 26px;

    border-radius: 14px;

    font-weight: 600;

    font-size: 15px;

    transition: .3s ease;

}

.primary-btn {

    background: #3A4921;

    color: #fff;

}

.primary-btn:hover {

    background: #741818;

    transform: translateY(-3px);

}

.secondary-btn {

    background: #D4A15E;

    color: #fff;

}

.secondary-btn:hover {

    background: #c69248;

    transform: translateY(-3px);

}

.outline-btn {

    border: 2px solid #3A4921;

    color: #3A4921;

    background: #fff;

}

.outline-btn:hover {

    background: #3A4921;

    color: #fff;

    transform: translateY(-3px);

}


/* ==========================
   HELP CARD
========================== */

.help-card {

    max-width: 700px;

    margin: 35px auto 60px;

    background: #fff;

    border-radius: 20px;

    padding: 30px;

    text-align: center;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

}

.help-card h3 {

    color: #3A4921;

    margin-bottom: 10px;

}

.help-card p {

    color: #666;

    margin-bottom: 20px;

}

.help-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

}

.help-buttons a {

    text-decoration: none;

    background: #f5f5f5;

    color: #333;

    padding: 12px 20px;

    border-radius: 12px;

    font-weight: 600;

    transition: .3s;

}

.help-buttons a:hover {

    background: #3A4921;

    color: #fff;

}



/* ===================================
   MY ORDERS
=================================== */

.orders-wrapper {

    max-width: 1200px;

    margin: 40px auto;

    padding: 0 20px;

}

.order-card {

    display: grid;

    grid-template-columns: 140px 1fr 220px;

    gap: 25px;

    background: #fff;

    border-radius: 18px;

    padding: 20px;

    margin-bottom: 25px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.order-image img {

    width: 140px;

    height: 170px;

    object-fit: cover;

    border-radius: 12px;

}

/* ==========================
   MY ORDERS
========================== */

.orders-page-header {

    text-align: center;

    padding: 50px 20px 25px;

}

.orders-page-header h1 {

    font-size: 42px;

    color: #3A4921;

    margin-bottom: 10px;

}

.orders-page-header p {

    color: #666;

}

.orders-search {

    max-width: 1200px;

    margin: 20px auto;

    padding: 0 20px;

}

.orders-search input {

    width: 100%;

    padding: 15px 18px;

    border: 1px solid #ddd;

    border-radius: 12px;

    font-size: 15px;

}

.orders-toolbar {

    max-width: 1200px;

    margin: 20px auto;

    padding: 0 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

}

.orders-count {

    font-size: 17px;

    font-weight: 600;

}

.orders-toolbar select {

    padding: 12px 15px;

    border-radius: 10px;

    border: 1px solid #ddd;

}

/* ===================================
   ORDER DETAILS MODAL
=================================== */

.order-modal {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .55);

    display: none;

    justify-content: center;

    align-items: center;

    z-index: 9999;

    padding: 20px;

}

.order-modal-content {

    background: #fff;

    width: 100%;

    max-width: 700px;

    border-radius: 18px;

    padding: 30px;

    max-height: 85vh;

    overflow-y: auto;

    position: relative;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);

}

.close-modal {

    position: absolute;

    right: 20px;

    top: 15px;

    font-size: 30px;

    cursor: pointer;

    font-weight: bold;

    color: #3A4921;

}

.modal-product {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 15px 0;

    border-bottom: 1px solid #eee;

}

.modal-product img {

    width: 80px;

    height: 100px;

    object-fit: cover;

    border-radius: 10px;

}

.modal-product h4 {

    margin-bottom: 6px;

    color: #3A4921;

}

.modal-product strong {

    margin-left: auto;

    color: #3A4921;

    font-size: 18px;

}


.more-items {

    display: inline-block;

    margin-top: 8px;

    padding: 5px 10px;

    background: #F8E7D1;

    color: #3A4921;

    border-radius: 20px;

    font-size: 12px;

    font-weight: 600;

}

.status-badge {

    display: inline-block;

    padding: 8px 16px;

    border-radius: 20px;

    font-size: 13px;

    font-weight: 600;

    margin: 10px 0;

    background: #EEF7EE;

    color: #1E7E34;

}


.status-badge.new-order {

    background: #FFF3CD;

    color: #856404;

}

.status-badge.confirmed {

    background: #D1ECF1;

    color: #0C5460;

}

.status-badge.packed {

    background: #E2E3FF;

    color: #383D99;

}

.status-badge.shipped {

    background: #D4EDDA;

    color: #155724;

}

.status-badge.out-for-delivery {

    background: #CCE5FF;

    color: #004085;

}

.status-badge.delivered {

    background: #D4EDDA;

    color: #155724;

}

.status-badge.cancelled {

    background: #F8D7DA;

    color: #721C24;

}


.order-buttons {

    display: flex;

    gap: 10px;

    justify-content: flex-end;

    flex-wrap: wrap;

    margin-top: 12px;

}

.track-btn {

    padding: 10px 18px;

    border: none;

    border-radius: 25px;

    background: #355033;

    color: #fff;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;

}

.track-btn:hover {

    background: #355033;

}

/* ===================================
   TRACK ORDER
=================================== */

.track-header {

    text-align: center;

    padding: 50px 20px 30px;

}

.track-header h1 {

    font-size: 40px;

    color: #355033;

    margin-bottom: 10px;

}

.track-header p {

    color: #666;

}

.track-card {

    max-width: 800px;

    margin: 30px auto;

    background: #fff;

    border-radius: 18px;

    padding: 30px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.track-row {

    display: flex;

    justify-content: space-between;

    padding: 15px 0;

    border-bottom: 1px solid #eee;

}

.track-row:last-child {

    border-bottom: none;

}

.track-timeline {

    max-width: 800px;

    margin: 35px auto;

    background: #fff;

    border-radius: 18px;

    padding: 35px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.timeline-step {

    display: flex;

    align-items: center;

    gap: 18px;

    position: relative;

    padding-bottom: 28px;

}

.timeline-step:not(:last-child)::after {

    content: "";

    position: absolute;

    left: 17px;

    top: 38px;

    width: 3px;

    height: 38px;

    background: #ddd;

}

.timeline-icon {

    width: 36px;

    height: 36px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #ddd;

    z-index: 2;

}

.timeline-text {

    font-weight: 600;

}

.timeline-step.active .timeline-icon {

    background: #28a745;

    color: #fff;

}

.timeline-step.active .timeline-text {

    color: #28a745;

}

.delivery-card {

    max-width: 800px;

    margin: 35px auto 60px;

    background: #fff;

    border-radius: 18px;

    padding: 30px;

    text-align: center;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.delivery-card h2 {

    color: #355033;

    margin-bottom: 15px;

}

.delivery-card p {

    font-size: 20px;

    font-weight: 700;

    color: #28a745;

}


/* ===================================
   TRACK PRODUCTS
=================================== */

.track-product {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 18px 0;

    border-bottom: 1px solid #eee;

}

.track-product:last-child {

    border-bottom: none;

}

.track-product img {

    width: 90px;

    height: 110px;

    object-fit: cover;

    border-radius: 12px;

}

.track-product-info {

    flex: 1;

}

.track-product-info h3 {

    color: #3A4921;

    margin-bottom: 8px;

    font-size: 18px;

}

.track-product-info p {

    margin: 4px 0;

    color: #666;

}

.track-product strong {

    color: #3A4921;

    font-size: 20px;

}


/* ===================================
   TRACK ACTIONS
=================================== */

.track-actions {

    max-width: 800px;

    margin: 40px auto 80px;

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

.track-back-btn,
.track-shop-btn {

    text-decoration: none;

    padding: 14px 28px;

    border-radius: 30px;

    font-weight: 700;

    transition: .3s;

}

.track-back-btn {

    background: #fff;

    color: #355033;

    border: 2px solid #355033;

}

.track-back-btn:hover {

    background: #355033;

    color: #fff;

}

.track-shop-btn {

    background: #fff;

    color: #355033;

    border: 2px solid #355033;
}

.track-shop-btn:hover {

    background: #355033;

    color: #fff;
}


.coupon-box {

    display: flex;

    gap: 10px;

    margin: 18px 0;

}

.coupon-box input {

    flex: 1;

    padding: 12px;

    border: 1px solid #ddd;

    border-radius: 8px;

}

.coupon-box button {

    padding: 12px 18px;

    border: none;

    border-radius: 8px;

    background: #355033;

    color: #fff;

    cursor: pointer;

    font-weight: 600;

}

.coupon-box button:hover {

    opacity: .9;

}



.product-card img {

    width: 100%;

    height: 320px;

    object-fit: cover;

    border-radius: 16px;

}

.available-offers {

    background: #fff;

    border-radius: 16px;

    overflow: hidden;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

    margin-bottom: 25px;

    border: 1px solid #e8e8e8;

}

.available-offers h3 {

    margin: 0;

    padding: 16px 22px;

    background: #355033;

    color: #fff;

    font-size: 18px;

    font-weight: 600;

}

.offer-card {

    background: #fff;

    border-left: 4px solid #355033;

    border-radius: 12px;

    padding: 14px;

    margin-bottom: 14px;

    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);

}

.offer-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .10);

}

.offer-card button {

    background: #355033;

    color: #fff;

    border: none;

    padding: 8px 16px;

    border-radius: 8px;

    cursor: pointer;

}

.offer-card {

    background: #fff;

    border-left: 5px solid #3A4921;

    border-radius: 14px;

    padding: 15px;

    margin-bottom: 15px;

    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);

    transition: .3s;

}

.offer-card:hover {

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, .12);

}

.offer-card h4 {

    margin: 0;

    color: #355033;

    font-size: 20px;

    font-weight: 700;

}

.offer-save {

    display: inline-block;

    margin: 12px 0;

    padding: 7px 14px;

    background: #355033;

    color: #fff;

    border-radius: 40px;

    font-size: 13px;

    font-weight: 700;

}

.offer-info {

    color: #666;

    line-height: 1.8;

    font-size: 14px;

}


.offer-card button {

    width: 100%;

    margin-top: 15px;

    padding: 12px;

    border: none;

    border-radius: 10px;

    background: #355033;

    color: #fff;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: .30s;

}

.offer-card button:hover {

    background: #2B4229;

}

.offer-card button:hover {

    background: #2B4229;

}

.coupon-box {

    display: flex;

    gap: 12px;

    align-items: center;

    margin-top: 18px;

}

.coupon-box {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 15px;

}

#couponCode {

    flex: 1;

    height: 48px;

    padding: 0 15px;

    border-radius: 8px;

}

#applyCouponBtn {

    width: 140px;

    height: 48px;

}

#removeCoupon {

    width: 140px;

    height: 48px;

}

#applyCouponBtn {

    width: 170px;

    height: 55px;

}

#removeCoupon {

    width: 170px;

    height: 55px;

}


#removeCoupon:hover {

    background: #b52f2a;

}


.available-offers-list {

    max-height: 320px;

    overflow-y: auto;

    padding-right: 8px;

}

.available-offers-list::-webkit-scrollbar {

    width: 6px;

}

.available-offers-list::-webkit-scrollbar-thumb {

    background: #355033;

    border-radius: 20px;

}

.offers-scroll {

    max-height: 300px;

    overflow-y: auto;

    padding-right: 8px;

}

.offers-scroll::-webkit-scrollbar {

    width: 6px;

}

.offers-scroll::-webkit-scrollbar-thumb {

    background: #355033;

    border-radius: 20px;

}

.invoice-wrapper {

    max-width: 1100px;

    margin: 40px auto;

    background: white;

    padding: 35px;

    border-radius: 18px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .10);

}

.invoice-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 20px;

    border-bottom: 3px solid #355033;

}

.invoice-header h1 {

    color: #355033;

    margin: 0;

    font-size: 34px;

}

.invoice-card {

    margin-top: 25px;

    padding: 20px;

    background: #fafafa;

    border-radius: 12px;

}

.customer-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

}

.invoice-table {

    width: 100%;

    border-collapse: collapse;

    margin-top: 20px;

}

.invoice-table th {

    background: #355033;

    color: white;

    padding: 14px;

}

.invoice-table td {

    padding: 14px;

    border-bottom: 1px solid #eee;

}

.invoice-summary {

    margin-top: 30px;

    margin-left: auto;

    width: 380px;

}

.invoice-summary div {

    display: flex;

    justify-content: space-between;

    padding: 10px 0;

}

.grand-total {

    font-size: 22px;

    font-weight: bold;

    color: #355033;

    border-top: 2px solid #355033;

    padding-top: 15px;

}

.invoice-buttons {

    margin-top: 35px;

    display: flex;

    gap: 15px;

}

.invoice-buttons button {

    background: #355033;

    color: white;

    border: none;

    padding: 14px 22px;

    border-radius: 10px;

    cursor: pointer;

    font-weight: 600;

}

.invoice-buttons a {

    padding: 14px 22px;

    background: #eee;

    text-decoration: none;

    border-radius: 10px;

    color: black;

}

.invoice-logo {
    width: 90px;
    height: auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
}


.returnBtn {

    background: #355033;

    color: white;

    border: none;

    padding: 10px 18px;

    border-radius: 8px;

    cursor: pointer;

    font-weight: 600;

    margin-top: 12px;

    transition: .3s;

}

.returnBtn:hover {

    background: #2B4229;

}

.returnBtn:disabled {

    background: #bdbdbd;

    cursor: not-allowed;

}

.summary-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 12px 0;

    font-size: 16px;

}

.summary-row span:first-child {

    color: #555;

    font-weight: 500;

}

.summary-row span:last-child {

    min-width: 120px;

    text-align: right;

    font-weight: 600;

}


.grand-total {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 15px;

    padding-top: 15px;

    border-top: 2px solid #355033;

    font-size: 30px;

    font-weight: 700;

    color: #355033;

}

.invoice-summary {

    width: 340px;

    margin-left: auto;

    margin-top: 25px;

}

.summary-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 10px 0;

    font-size: 16px;

}

.summary-row span:first-child {

    color: #666;

    font-weight: 500;

}

.summary-row span:last-child {

    min-width: 120px;

    text-align: right;

    font-weight: 600;

}

.grand-total {

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-top: 2px solid #355033;

    margin-top: 12px;

    padding-top: 15px;

    font-size: 28px;

    font-weight: 700;

    color: #355033;

}


.return-message {

    margin-top: 10px;

    font-size: 14px;

    font-weight: 600;

}

.return-approved {

    color: #1b8f3a;

}

.return-rejected {

    color: #d32f2f;

}

.return-pending {

    color: #f59e0b;

}


/* ===========================
RTO BOX
=========================== */

.rto-box {

    margin-top: 12px;

    padding: 12px;

    background: #fff5f5;

    border-left: 4px solid #dc2626;

    border-radius: 8px;

}

.rto-title {

    margin: 0;

    font-weight: 600;

    color: #dc2626;

    font-size: 14px;

}

.rto-reason {

    margin-top: 6px;

    font-size: 13px;

    color: #555;

    line-height: 1.5;

}











/* ===========================
   PRODUCT SIZE BUTTONS
=========================== */

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.size-btn {

    width: 48px;
    height: 48px;

    border: 1px solid #d9d9d9;
    border-radius: 50%;

    background: #fff;

    cursor: pointer;

    font-size: 14px;
    font-weight: 600;

    transition: .25s;
}

.size-btn:hover {

    background: #355033;
    color: #fff;
    border-color: #355033;

}

.size-btn.active {

    background: #355033;
    color: #fff;
    border-color: #355033;

}