/* ================= HEADER STRUCTURE ================= */

.main-header {
    background: #f4f1e8;
    border-bottom: 1px solid #e5e0d6;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    max-width: 1300px;
    margin: auto;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ================= LOGO FIX ================= */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    height: 55px;
    width: auto;
    display: block;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #7a4a1e;
}

/* ================= NAVIGATION ================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: nowrap;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    color: #2e6b34;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #2e6b34;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #1f4d26;
}

/* ===================== ANNOUNCEMENT STRIP ===================== */

.announcement-slider {
    background: #2e6b34;
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
}

.announcement-track {
    display: inline-flex;
    gap: 60px;
    animation: announcementScroll 18s linear infinite;
}

.announcement-track span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

@keyframes announcementScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

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

.hero-banner {
    width: 100%;
    height: 85vh;
    margin: 0;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    box-shadow: none;
}

.banner-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 25px;
}

.banner-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.banner-slide {
    min-width: 100%;
    height: 100%;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= PREMIUM ROUND ARROWS ================= */

.banner-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.banner-btn.prev { left: 25px; }
.banner-btn.next { right: 25px; }

.banner-btn:hover {
    background: #f4f4f4;
}

/* ================= DOTS ================= */

.banner-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 9999;
}

.banner-dots span {
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
    cursor: pointer;
}

.banner-dots span.active {
    background: #4caf50;
    opacity: 1;
}

/* ===================== SECTIONS ===================== */

.section {
    padding: 50px 24px;
    text-align: center;
}

.gray {
    background: #f9f9f9;
}

/* ===================== PRODUCTS (basic) ===================== */

.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product-card {
    border: 1px solid #ddd;
    padding: 20px;
    width: 250px;
}

.product-card img {
    width: 100%;
}

/* ================= AVAILABLE ON ================= */

.available-section {
    padding: 40px 20px;
    background: #fcfbfa;
    overflow: hidden;
}

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

.platform-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.platform-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.platform-track img {
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.platform-track img:hover {
    transform: scale(1.08);
    opacity: 1;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

.main-footer {
    background: #6b4a3b;
    color: #fff;
    padding: 70px 0 25px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.footer-container h4 {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
}

.footer-container p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-container a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-container a:hover {
    color: #f6b93b;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
/* ================= PRODUCTS – PREMIUM FINAL CLEAN ================= */

.product-grid {
    max-width: 1400px;
    margin: 10px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding: 0 40px;
}

.product-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.offer-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #1b5e20;
    color: #fff;
    font-size: 11px;
    padding: 5px 14px;
    border-radius: 30px;
    font-weight: 600;
    z-index: 10;
}

.product-box img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 12px;
}

.product-box h3 {
    font-size: 16px;
    margin: 8px 0 4px;
    font-weight: 600;
}

.variant { font-size: 12px; color: #777; }
.rating { font-size: 12px; margin: 5px 0; }
.price { margin: 6px 0 8px; }

.price .current {
    font-size: 17px;
    font-weight: 700;
    color: #1b5e20;
}

.price .old {
    font-size: 12px;
    color: #999;
    margin-left: 6px;
    text-decoration: line-through;
}

.price .save {
    font-size: 11px;
    margin-left: 6px;
    background: #e8f5e9;
    padding: 3px 8px;
    border-radius: 14px;
}

.desc {
    font-size: 12px;
    color: #555;
    margin: 6px 0 12px;
    line-height: 1.4;
    flex-grow: 1;
}

.product-buttons { display: flex; gap: 8px; }

.add-btn {
    flex: 1;
    background: #f4f2ed;
    color: #fb9c03;
    padding: 8px 0;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.add-btn:hover {
    background: #eed45a;
    transform: translateY(-2px);
}

.buy-btn {
    flex: 1;
    background: #eaa800;
    color: #fff;
    padding: 8px 0;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.buy-btn:hover {
    background: #eed45a;
    transform: translateY(-2px);
}

.stock-low { color: #d32f2f; font-size: 11px; margin-top: 6px; }
.stock-ok { color: #2e7d32; font-size: 11px; margin-top: 6px; }

/* ================= OUR PROCESS – ZIG ZAG ================= */

.process-section {
    background: #fbf7ec;
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #2e6b34;
    font-weight: 700;
    margin-bottom: 60px;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.process-item.reverse {
    flex-direction: row-reverse;
}

.process-img {
    position: relative;
    flex: 1;
}

.process-img img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.process-img .step {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #2e6b34;
    color: #fff;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 50px;
}

.process-content { flex: 1; }

.process-content h3 {
    font-size: 28px;
    color: #2e6b34;
    margin-bottom: 12px;
}

.process-content p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
}

/* ================= OUR STORY ================= */

.story-section {
    background: #f5f3ea;
    padding: 100px 40px;
}

.story-container {
    max-width: 1200px;
    margin: 60px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-card {
    background: #f1efe6;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.story-logo img { max-width: 320px; }
.story-text { max-width: 600px; }

.story-main-title {
    font-size: 32px;
    color: #2e6b34;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.story-text p {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
}

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

.faq-section {
    background: #fbf7ec;
    padding: 80px 20px;
}

.faq-section details {
    background: #fff;
    margin: 15px auto;
    max-width: 900px;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.faq-section summary {
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    color: #2e6b34;
}

.faq-section p {
    margin-top: 12px;
    color: #555;
}

/* ================= HELP & SUPPORT ================= */

.help-section {
    padding: 80px 40px;
    background: #fffdf3;
}

.help-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.help-left h3 { color: #2e6b34; margin-bottom: 10px; font-size: 24px; }
.help-left p { margin-bottom: 25px; font-size: 16px; color: #555; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2e6b34;
}

.contact-item i {
    font-size: 22px;
    color: #2e6b34;
    transition: transform 0.2s ease;
}

.contact-item:hover i { transform: scale(1.1); }

.help-right {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.help-right h3 { color: #2e6b34; margin-bottom: 20px; }
.help-right label { display: block; margin-top: 15px; font-weight: 600; }

.help-right input {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: border 0.2s ease;
}

.help-right input:focus { border-color: #2e6b34; outline: none; }

.help-right button {
    width: 100%;
    margin-top: 25px;
    padding: 14px;
    border-radius: 30px;
    background: #f8b933;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.help-right button:hover {
    background: #eaa800;
    transform: translateY(-2px);
}

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

.testimonial-section {
    padding: 80px 20px;
    background: #fffaf0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    font-style: italic;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-card span {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: #7a4a1e;
}
/* ================= LOGIN MODAL ================= */

.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.login-modal.active { display: flex; }

.login-box-modal {
    background: #fff;
    padding: 25px;
    width: 300px;
    border-radius: 6px;
}

#loginModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

#loginModal.active { display: flex; }

#loginModal > div {
    width: 420px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

#loginModal h2 { margin-bottom: 20px; font-size: 24px; }

#loginModal input {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

#loginModal button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #2f6b3c;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

#loginModal button:hover { background: #24552e; }

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

.cart-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.cart-title { margin-bottom: 30px; }

.cart-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.qty-box { display: flex; align-items: center; gap: 10px; }

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #2f6b3c;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
}

.cart-subtotal { text-align: right; }
.remove { color: red; cursor: pointer; font-size: 13px; }
.total-box { text-align: right; margin-top: 30px; }

.checkout-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: #2f6b3c;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.checkout-btn:hover { background: #1f4d26; }
.cart-empty { text-align: center; margin: 120px 0; }

/* ================= CHECKOUT PAGE ================= */

.checkout-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
}

.checkout-left {
    flex: 2;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.checkout-right {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.checkout-left h2 { margin-bottom: 20px; }

.checkout-left input,
.checkout-left textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.payment-box {
    border: 1px solid #e5e5e5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
}

.payment-box:hover { border-color: #2f6b3c; }

.place-btn {
    background: #2f6b3c;
    color: #fff;
    padding: 14px;
    border: none;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 10px;
}

.place-btn:hover { background: #1f4d26; }

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.total-box {
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
}

/* ================= THANK YOU PAGE ================= */

.thankyou-wrapper {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: #f9f9f9;
}

.thankyou-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.thankyou-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2f6b3c;
}

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

.order-number { font-weight: 600; color: #000; }

.thankyou-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background: #2f6b3c;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

.thankyou-btn:hover { background: #1f4d26; }

/* ================= MY ORDERS PAGE ================= */

.orders-wrapper {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.orders-wrapper h2 { margin-bottom: 25px; }

.orders-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.orders-table th {
    background: #2f6b3c;
    color: #fff;
    padding: 14px;
    text-align: center;
}

.orders-table td {
    padding: 14px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.orders-table tr:hover { background: #f9f9f9; }
.view-btn { color: #2f6b3c; font-weight: 600; text-decoration: none; }
.view-btn:hover { text-decoration: underline; }
.status { font-weight: 600; }

/* ================= POLICY MODAL ================= */

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

#policyModal.active { display: flex; }

.policy-modal-box {
    width: 75%;
    height: 80%;
    background: #fdfaf4;
    border-radius: 14px;
    padding: 45px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    border-top: 8px solid #2f6b3c;
}

.policy-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 22px;
    cursor: pointer;
    color: #2f6b3c;
    font-weight: bold;
}

.policy-modal-box h1 {
    color: #2f6b3c;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
}

.policy-modal-box h3 {
    color: #2f6b3c;
    margin-top: 25px;
    margin-bottom: 10px;
}

.policy-modal-box p,
.policy-modal-box li {
    color: #333;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.policy-modal-box::-webkit-scrollbar { width: 8px; }

.policy-modal-box::-webkit-scrollbar-thumb {
    background: #2f6b3c;
    border-radius: 10px;
}



/* ========================================= */
/* ============= DESKTOP =================== */
/* ========================================= */

@media (min-width:1025px){

.menu-toggle{
    display: none !important;
}

.nav-menu{
    display: flex !important;
    position: static;
    background: none;
    box-shadow: none;
    flex-direction: row;
    padding: 0;
}

}


/* ========================================= */
/* ============= TABLET ==================== */
/* ========================================= */

@media (max-width:1024px){

.header-container{
    padding: 16px 20px;
    position: relative;
}

.brand img{
    height: 68px;
}

.brand-name{
    font-size: 28px;
}

.menu-toggle{
    display: block !important;
    font-size: 34px;
    cursor: pointer;
    color: #2e6b34;
}

.nav-menu{
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: #f4f1e8;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 32px 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    z-index: 998;
}

.nav-menu.active{
    display: flex;
}

.nav-menu a{
    font-size: 24px;
    font-weight: 700;
    padding: 12px 0;
    color: #2e6b34;
}

.hero-banner{
    height: 45vh;
}

.banner-btn{
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.banner-btn.prev{ left: 14px; }
.banner-btn.next{ right: 14px; }

.banner-dots span{
    width: 11px;
    height: 11px;
}

/* ---- SECTION TITLES ---- */
.section-title{
    font-size: 30px;
    margin-bottom: 40px;
}

/* ---- PRODUCT GRID ---- */
.product-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.product-box{
    padding: 20px;
}

.product-box img{
    height: 220px;
}

.product-box h3{
    font-size: 18px;
    margin: 10px 0 5px;
}

.variant{
    font-size: 14px;
}

.rating{
    font-size: 14px;
}

.price .current{
    font-size: 20px;
}

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

.price .save{
    font-size: 13px;
}

.desc{
    font-size: 14px;
    margin: 8px 0 14px;
}

.add-btn{
    font-size: 15px;
    padding: 12px 0;
}

.buy-btn{
    font-size: 15px;
    padding: 12px 0;
}

.stock-ok, .stock-low{
    font-size: 13px;
}

/* ---- LOGIN MODAL ---- */
#loginModal > div{
    width: 75%;
    max-width: none;
    padding: 35px 30px;
}

#loginModal h2{
    font-size: 24px;
}

#loginModal input{
    padding: 14px;
    font-size: 16px;
}

#loginModal button{
    padding: 16px;
    font-size: 17px;
}

/* ---- CART ---- */
.cart-container{
    padding: 20px 16px;
    margin: 30px auto;
}

.cart-row{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.cart-product img{
    width: 90px;
    height: 90px;
}

.checkout-btn{
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-top: 18px;
    text-align: center;
}

/* ---- CHECKOUT ---- */
.checkout-wrapper{
    flex-direction: column;
    gap: 24px;
    margin: 30px auto;
    padding: 0 16px;
}

.checkout-left{
    padding: 28px 22px;
}

.checkout-right{
    position: relative;
    top: 0;
    padding: 28px 22px;
}

.checkout-left input,
.checkout-left textarea{
    padding: 14px;
    font-size: 16px;
}

.place-btn{
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
}

/* ---- THANK YOU ---- */
.thankyou-wrapper{
    padding: 50px 20px;
}

.thankyou-card{
    padding: 55px 40px;
    max-width: 85%;
}

.thankyou-card h1{
    font-size: 34px;
}

.thankyou-card p{
    font-size: 17px;
}

.thankyou-btn{
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 700;
}

/* ---- PROCESS ---- */
.process-item{
    flex-direction: column;
    gap: 30px;
    text-align: center;
    margin: 40px auto;
}

.process-item.reverse{
    flex-direction: column;
}

.process-img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.process-img img{
    width: 100%;
    max-width: 320px;
    max-height: 320px;
    border-radius: 18px;
    object-fit: cover;
}

.process-img img[style*="border-radius: 50%"]{
    border-radius: 50%;
    width: 300px;
    height: 300px;
    max-width: 300px;
    max-height: 300px;
}

.process-content h3{
    font-size: 26px;
    text-align: center;
}

.process-content p{
    font-size: 17px;
    text-align: center;
}

/* ---- STORY ---- */
.story-container{
    flex-direction: column;
    text-align: center;
}

.logo-card{
    padding: 40px;
}

.story-logo img{
    max-width: 240px;
}

.story-main-title{
    font-size: 28px;
}

.story-text p{
    font-size: 16px;
}

/* ---- HELP ---- */
.help-container{
    grid-template-columns: 1fr;
    gap: 40px;
}

.help-left{
    text-align: center;
}

.help-left h3{
    font-size: 24px;
}

.help-left p{
    font-size: 16px;
}

.contact-item{
    justify-content: center;
    font-size: 18px;
}

/* ---- FAQ ---- */
.faq-section details{
    padding: 20px 24px;
}

.faq-section summary{
    font-size: 18px;
}

.faq-section p{
    font-size: 15px;
}

/* ---- TESTIMONIALS ---- */
.testimonial-grid{
    grid-template-columns: 1fr;
}

.testimonial-card{
    padding: 28px;
    font-size: 16px;
}

/* ---- MISC ---- */
.section{
    padding: 40px 18px;
}

.footer-container{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 24px;
}

.footer-container h4{
    font-size: 18px;
}

.footer-container p{
    font-size: 15px;
}

.footer-bottom{
    font-size: 14px;
}

.orders-table th,
.orders-table td{
    padding: 10px 8px;
    font-size: 14px;
}

.policy-modal-box{
    width: 90%;
    height: 85%;
    padding: 30px;
}

.announcement-track span{
    font-size: 14px;
}

.platform-track img{
    height: 55px;
}


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

@media (max-width:768px){

.header-container{
    padding: 14px 16px;
    position: relative;
}

.brand img{
    height: 58px;
}

.brand-name{
    font-size: 24px;
}

.menu-toggle{
    display: block !important;
    font-size: 30px;
    cursor: pointer;
    color: #2e6b34;
}

.nav-menu{
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: #f4f1e8;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    z-index: 998;
}

.nav-menu.active{
    display: flex;
}

.nav-menu a{
    font-size: 22px;
    font-weight: 700;
    padding: 10px 0;
    color: #2e6b34;
}

.hero-banner{
    height: 35vh;
}

.banner-btn{
    width: 36px;
    height: 36px;
    font-size: 16px;
}

.banner-btn.prev{ left: 10px; }
.banner-btn.next{ right: 10px; }

.banner-dots span{
    width: 10px;
    height: 10px;
}

/* ---- SECTION TITLES ---- */
.section-title{
    font-size: 26px;
    margin-bottom: 30px;
}

/* ---- PRODUCT GRID ---- */
.product-grid{
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0 14px;
}

.product-box{
    padding: 18px;
}

.product-box img{
    height: 240px;
}

.product-box h3{
    font-size: 18px;
    margin: 10px 0 5px;
}

.variant{
    font-size: 14px;
}

.rating{
    font-size: 14px;
}

.price .current{
    font-size: 20px;
}

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

.price .save{
    font-size: 13px;
}

.desc{
    font-size: 14px;
    margin: 8px 0 14px;
}

.product-buttons{
    flex-direction: column;
    gap: 10px;
}

.add-btn{
    font-size: 15px;
    padding: 13px 0;
    border-radius: 30px;
}

.buy-btn{
    font-size: 15px;
    padding: 13px 0;
    border-radius: 30px;
}

.stock-ok, .stock-low{
    font-size: 13px;
}

/* ---- LOGIN MODAL ---- */
#loginModal > div{
    width: 90%;
    max-width: none;
    padding: 30px 22px;
}

#loginModal h2{
    font-size: 22px;
    margin-bottom: 16px;
}

#loginModal input{
    padding: 14px;
    font-size: 16px;
    margin-bottom: 12px;
}

#loginModal button{
    padding: 16px;
    font-size: 17px;
    font-weight: 700;
}

/* ---- CART ---- */
.cart-container{
    padding: 16px 12px;
    margin: 30px auto;
}

.cart-row{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
}

.cart-product img{
    width: 75px;
    height: 75px;
}

.checkout-btn{
    display: block;
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border-radius: 10px;
    margin-top: 16px;
}

/* ---- CHECKOUT ---- */
.checkout-wrapper{
    flex-direction: column;
    gap: 20px;
    margin: 20px auto;
    padding: 0 12px;
}

.checkout-left{
    padding: 22px 18px;
}

.checkout-right{
    position: relative;
    top: 0;
    padding: 22px 18px;
}

.checkout-left input,
.checkout-left textarea{
    padding: 14px;
    font-size: 16px;
}

.place-btn{
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
}

/* ---- THANK YOU ---- */
.thankyou-wrapper{
    padding: 30px 14px;
}

.thankyou-card{
    padding: 40px 24px;
    max-width: 100%;
}

.thankyou-card h1{
    font-size: 30px;
}

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

.thankyou-btn{
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 700;
}

/* ---- PROCESS ---- */
.process-item,
.process-item.reverse{
    flex-direction: column;
    gap: 24px;
    text-align: center;
    margin: 30px auto;
}

.process-img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.process-img img{
    width: 100%;
    max-width: 260px;
    max-height: 260px;
    border-radius: 16px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.process-img img[style*="border-radius: 50%"]{
    border-radius: 50%;
    width: 240px;
    height: 240px;
    max-width: 240px;
    max-height: 240px;
}

.process-content h3{
    font-size: 24px;
    text-align: center;
}

.process-content p{
    font-size: 16px;
    text-align: center;
}

/* ---- STORY ---- */
.story-container{
    flex-direction: column;
    text-align: center;
    gap: 30px;
}

.logo-card{
    padding: 30px;
}

.story-logo img{
    max-width: 200px;
}

.story-main-title{
    font-size: 26px;
}

.story-text p{
    font-size: 16px;
}

/* ---- HELP ---- */
.help-container{
    grid-template-columns: 1fr;
    gap: 30px;
}

.help-left{
    text-align: center;
}

.help-left h3{
    font-size: 22px;
}

.help-left p{
    font-size: 16px;
}

.contact-item{
    justify-content: center;
    font-size: 17px;
}

/* ---- FAQ ---- */
.faq-section details{
    padding: 18px 20px;
}

.faq-section summary{
    font-size: 17px;
}

.faq-section p{
    font-size: 15px;
}

/* ---- TESTIMONIALS ---- */
.testimonial-grid{
    grid-template-columns: 1fr;
}

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

/* ---- MISC ---- */
.section{
    padding: 34px 14px;
}

.footer-container{
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px;
    text-align: center;
}

.footer-container h4{
    font-size: 18px;
}

.footer-container p{
    font-size: 15px;
}

.footer-bottom{
    font-size: 14px;
    padding: 0 16px;
    margin-top: 30px;
}

.orders-table th,
.orders-table td{
    padding: 10px 6px;
    font-size: 13px;
}

.policy-modal-box{
    width: 95%;
    height: 88%;
    padding: 22px 18px;
}

.policy-modal-box h1{
    font-size: 22px;
}

.policy-modal-box h3{
    font-size: 16px;
}

.announcement-track span{
    font-size: 14px;
}

.platform-track img{
    height: 50px;
}

}


@media (max-width:480px){
    html body .product-grid{
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 14px !important;
    }
}


/* @media (max-width:480px){
    html body .product-grid{
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 0 14px !important;
    }
} */
