/* =========================
   GENERAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Tahoma, sans-serif;
    background: #faf9f5;
    color: #1d1d1d;
}

a {
    text-decoration: none;
}


/* =========================
   HEADER
========================= */

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    height: 95px;
    margin: auto;
    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo img {
    width: 125px;
    height: 70px;
    object-fit: contain;
    display: block;
}


/* NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav a {
    color: #222;
    font-size: 16px;
    font-weight: 600;
    padding: 35px 0 12px;
    position: relative;
}

.main-nav a:hover {
    color: #075c3b;
}

.main-nav a.active {
    color: #075c3b;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;

    width: 100%;
    height: 2px;

    background: #c99a2e;
}


/* HEADER ACTIONS */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    direction: ltr;
}

.icon-btn,
.cart-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 23px;
}

.language-select {
    padding: 8px 10px;
    border: 1px solid #dddddd;
    border-radius: 7px;
    background: white;
    cursor: pointer;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -9px;
    right: -9px;

    width: 19px;
    height: 19px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #075c3b;
    color: white;

    border-radius: 50%;
    font-size: 11px;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 620px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            #faf9f5 0%,
            #f4f0e5 100%
        );

    padding: 65px 25px;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}


/* HERO TEXT */

.hero-content {
    max-width: 520px;
}

.hero-small-title {
    display: inline-block;

    color: #b88a24;
    font-size: 16px;
    font-weight: 600;

    margin-bottom: 18px;
}

.hero-content h1 {
    color: #064d33;

    font-size: 52px;
    line-height: 1.25;

    margin-bottom: 20px;
}

.hero-content h1 span {
    display: block;
    color: #c39227;
    font-size: 37px;
    margin-top: 8px;
}

.hero-content p {
    color: #666;
    font-size: 17px;
    line-height: 1.9;

    margin-bottom: 28px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 27px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;

    padding: 13px 27px;

    border-radius: 7px;

    font-size: 15px;
    font-weight: bold;

    transition: 0.25s;
}

.btn-primary {
    background: #075c3b;
    color: white;
    border: 2px solid #075c3b;
}

.btn-primary:hover {
    background: #06462f;
    border-color: #06462f;
}

.btn-secondary {
    background: transparent;
    color: #075c3b;
    border: 2px solid #075c3b;
}

.btn-secondary:hover {
    background: #075c3b;
    color: white;
}


/* FEATURES */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    color: #555;
    font-size: 14px;
}


/* =========================
   HERO IMAGE
========================= */

.hero-image {
    position: relative;
}

.image-frame {
    width: 100%;
    height: 480px;

    overflow: hidden;

    border-radius: 22px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.16);
}

.image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* STORE BADGE */

.hero-badge {
    position: absolute;

    bottom: 25px;
    right: -25px;

    background: white;

    padding: 15px 23px;

    border-radius: 10px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);

    display: flex;
    flex-direction: column;

    direction: ltr;
}

.hero-badge strong {
    color: #075c3b;
    font-size: 17px;
}

.hero-badge span {
    color: #888;
    font-size: 12px;
    margin-top: 4px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 850px) {

    .header-container {
        height: auto;
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 18px;
    }

    .main-nav a {
        padding: 10px 0;
        font-size: 14px;
    }

    .hero {
        padding: 45px 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content h1 span {
        font-size: 28px;
    }

    .hero-buttons,
    .hero-features {
        justify-content: center;
    }

    .image-frame {
        height: 380px;
    }

    .hero-badge {
        right: 15px;
    }
}
/* =========================
   CATEGORIES SECTION
========================= */

.categories {
    background: #ffffff;
    padding: 90px 25px;
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* SECTION TITLE */

.section-heading {
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading > span {
    display: inline-block;
    color: #c39227;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-heading h2 {
    color: #064d33;
    font-size: 36px;
    margin-bottom: 14px;
}

.section-heading p {
    color: #777;
    font-size: 16px;
    line-height: 1.8;
}


/* CATEGORIES GRID */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* CATEGORY CARD */

.category-card {
    background: #faf9f5;
    border: 1px solid #eee9dc;
    border-radius: 16px;

    padding: 30px 25px;

    color: #222;

    min-height: 235px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-7px);

    border-color: #c39227;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);
}


/* ICON */

.category-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f0eadb;

    border-radius: 50%;

    font-size: 27px;

    margin-bottom: 20px;
}


/* CATEGORY TEXT */

.category-card h3 {
    color: #075c3b;
    font-size: 20px;
    margin-bottom: 10px;
}

.category-card p {
    color: #777;

    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 20px;
}


/* CATEGORY LINK */

.category-link {
    color: #b88a24;

    font-size: 14px;
    font-weight: bold;

    margin-top: auto;
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .categories {
        padding: 60px 18px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 210px;
    }

}

/* =========================================
   FEATURED PRODUCTS
========================================= */

.featured-products {
    padding: 90px 25px;
    background: #f8f6ef;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Products Grid */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

/* Product Card */

.product-card {
    background: #ffffff;
    border: 1px solid #ebe5d7;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.09);
}

/* Product Image */

.product-image {
    position: relative;
    height: 310px;
    background: #f7f7f7;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    box-sizing: border-box;
    transition: 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

/* Badge */

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;

    background: #006b49;
    color: #ffffff;

    padding: 7px 12px;
    border-radius: 20px;

    font-size: 12px;
    font-weight: bold;
}

/* Product Info */

.product-info {
    padding: 20px;
}

.product-category {
    display: block;
    color: #c99321;
    font-size: 13px;
    margin-bottom: 8px;
}

.product-info h3 {
    margin: 0 0 20px;
    color: #005b40;
    font-size: 20px;
}

/* Bottom */

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-price {
    font-size: 14px;
    font-weight: bold;
    color: #555555;
}

/* Add Cart Button */

.add-cart-btn {
    border: none;
    background: #006b49;
    color: #ffffff;

    padding: 10px 14px;
    border-radius: 8px;

    cursor: pointer;
    font-family: inherit;
    font-weight: bold;

    transition: 0.3s ease;
}

.add-cart-btn:hover {
    background: #c99321;
}

/* More Products */

.products-more {
    text-align: center;
    margin-top: 45px;
}

.products-more .btn-secondary {
    display: inline-block;
}


/* =========================================
   PRODUCTS RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .featured-products {
        padding: 60px 18px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 330px;
    }

}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    padding: 90px 25px;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-content {
    text-align: right;
}

.about-small-title {
    display: inline-block;
    color: #c99321;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-content h2 {
    color: #005b3f;
    font-size: 36px;
    line-height: 1.4;
    margin: 0 0 20px;
}

.about-content p {
    color: #666;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.about-features span {
    background: #f8f5ed;
    border: 1px solid #eee3ca;
    padding: 12px 15px;
    border-radius: 10px;
    color: #005b3f;
    font-size: 14px;
    font-weight: 600;
}

.about-image {
    width: 100%;
    height: 430px;
    border-radius: 22px;
    overflow: hidden;
    background: #f8f5ed;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}


/* =========================================================
   FOOTER
========================================================= */

.main-footer {
    background: #004d36;
    color: #ffffff;
    padding: 65px 25px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 45px;
    align-items: start;
}

.footer-column {
    min-width: 0;
}

.footer-logo {
    display: block;
    width: 120px;
    height: 90px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.9;
    margin: 0 0 20px;
}

.footer-column h3 {
    color: #d6a331;
    font-size: 18px;
    margin: 0 0 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-column > a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s ease;
}

.footer-column > a:hover {
    color: #d6a331;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 12px;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #d6a331;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: 0.2s ease;
}

.footer-social a:hover {
    background: #d6a331;
    border-color: #d6a331;
    color: #003f2d;
}

.footer-bottom {
    max-width: 1200px;
    margin: 45px auto 0;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}


/* =========================================================
   ABOUT + FOOTER RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        text-align: center;
    }

    .about-image {
        height: 350px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .about-section {
        padding: 60px 18px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 280px;
    }

    .main-footer {
        padding: 50px 18px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Homepage structural and responsive repairs */
img { max-width: 100%; }
button, input, select { font: inherit; }
section { scroll-margin-top: 80px; }
.main-header { position: sticky; top: 0; }
.main-nav a { white-space: nowrap; }
.hero-container > *, .about-container > *, .product-card, .category-card { min-width: 0; }
.search-panel { max-width: 1200px; margin: auto; padding: 0 25px 16px; display: flex; align-items: center; gap: 10px; }
.search-panel[hidden] { display: none; }
.search-panel input { min-width: 0; flex: 1; padding: 9px 12px; border: 1px solid #ddd; border-radius: 8px; }
.search-panel button { padding: 9px 18px; border: 0; border-radius: 8px; background: #075c3b; color: #fff; }
.image-frame { height: auto; aspect-ratio: 1.12; max-height: 480px; }
.products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-image { height: auto; aspect-ratio: 1; }
.about-image { height: auto; min-height: 280px; display: grid; place-items: center; padding: 30px; }
.about-image img { width: min(100%, 230px); height: auto; max-height: 230px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-brand p { margin: 0; }
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.footer-bottom span { color: rgba(255,255,255,.65); }
@media (max-width: 1100px) {
    .header-container { height: auto; min-height: 85px; padding-block: 12px; flex-wrap: wrap; }
    .main-nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; gap: 12px 22px; }
    .main-nav a { padding: 8px 0; }
}
@media (max-width: 700px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-content { max-width: none; text-align: center; }
    .hero-buttons, .hero-features { justify-content: center; flex-wrap: wrap; }
    .hero-content h1 { font-size: clamp(32px, 8vw, 42px); }
    .hero-content h1 span { font-size: .72em; }
    .image-frame { aspect-ratio: 1.25; }
    .about-container { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
    .header-container, .hero-container, .categories-container, .products-container, .about-container, .footer-container, .footer-bottom { width: calc(100% - 32px); padding-inline: 0; }
    .logo img { width: 95px; height: 58px; }
    .header-actions { gap: 5px; }
    .main-nav { gap: 4px 15px; }
    .main-nav a { font-size: 13px; }
    .categories-grid, .products-grid, .footer-container { grid-template-columns: 1fr; }
    .product-image { aspect-ratio: 1.2; }
    .footer-column { align-items: center; }
    .search-panel { flex-wrap: wrap; }
.search-panel label { width: 100%; }
}

/* Shop, product and cart pages */
.shop-page { min-height: 55vh; padding: 55px 20px 85px; background: #faf9f5; }
.header-actions .icon-btn, .header-actions .cart-btn { display: inline-flex; align-items: center; justify-content: center; }
.shop-container { max-width: 1200px; margin: 0 auto; min-width: 0; }
.shop-intro { max-width: 760px; margin-bottom: 32px; }
.shop-intro span { color: #b88a24; font-weight: 700; }
.shop-intro h1, .product-detail h1 { color: #064d33; font-size: clamp(30px, 4vw, 44px); line-height: 1.3; margin: 8px 0 12px; }
.shop-intro p, .detail-content > p { color: #666; line-height: 1.9; }
.shop-filters { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; background: #fff; padding: 18px; border: 1px solid #ebe5d7; border-radius: 16px; }
.shop-filters input, .shop-filters select { min-height: 43px; min-width: 0; border: 1px solid #d9ddd8; border-radius: 8px; padding: 8px 12px; background: #fff; }
.shop-filters input { flex: 1 1 220px; }
.shop-filters select { flex: 1 1 175px; }
.shop-filters button { min-height: 43px; padding: 8px 24px; background: #075c3b; color: #fff; border: 0; border-radius: 8px; font-weight: 700; }
.shop-category-links { display: flex; flex-wrap: wrap; gap: 9px; margin: 23px 0; }
.shop-category-links a { padding: 7px 14px; background: #fff; border: 1px solid #e4dfd2; border-radius: 30px; color: #075c3b; font-size: 14px; }
.shop-category-links a.selected, .shop-category-links a:hover { background: #075c3b; color: #fff; border-color: #075c3b; }
.result-count { color: #66736b; margin: 0 0 16px; font-size: 14px; }
.shop-grid { margin-top: 0; }
.shop-grid .product-card { display: flex; flex-direction: column; }
.shop-grid .product-image { display: block; }
.shop-grid .product-info { display: flex; flex-direction: column; flex: 1; }
.shop-grid .product-info h3 { margin-bottom: 9px; }
.shop-grid .product-price { margin-bottom: 17px; }
.shop-card-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.view-product-btn { display: inline-flex; align-items: center; padding: 8px 13px; border: 1px solid #075c3b; border-radius: 8px; color: #075c3b; font-size: 14px; font-weight: 700; }
.view-product-btn:hover { background: #edf4ef; }
.home-product-link { display: inline-block; color: #b88a24; font-size: 13px; font-weight: 700; margin: -10px 0 16px; }
.shop-empty { padding: 45px 20px; text-align: center; background: #fff; border-radius: 16px; }
.shop-empty h2 { color: #064d33; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; color: #66736b; font-size: 14px; margin-bottom: 28px; }
.breadcrumbs a:hover, .detail-back a:hover { color: #b88a24; }
.product-detail { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: center; gap: clamp(28px,5vw,65px); }
.detail-image { background: #fff; border: 1px solid #ebe5d7; border-radius: 20px; padding: 25px; aspect-ratio: 1; display: grid; place-items: center; min-width: 0; }
.detail-image img { width: 100%; height: 100%; object-fit: contain; }
.detail-content { min-width: 0; }
.detail-content .product-category { font-size: 15px; }
.detail-price { color: #075c3b !important; font-weight: 700; font-size: 20px; }
.detail-quantity { display: flex; align-items: center; gap: 12px; margin: 25px 0; }
.detail-quantity input { width: 84px; padding: 8px; border: 1px solid #d9ddd8; border-radius: 8px; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.detail-actions .add-cart-btn, .whatsapp-order { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 10px 20px; border-radius: 9px; font-weight: 700; }
.whatsapp-order { color: #fff; background: #16834e; }
.whatsapp-order:hover { background: #126b40; }
.detail-note { font-size: 13px; }
.detail-back { margin-top: 30px; color: #075c3b; font-weight: 700; }
.cart-items { display: grid; gap: 12px; }
.cart-row { display: grid; grid-template-columns: 95px minmax(0,1fr) auto; align-items: center; gap: 18px; background: #fff; border: 1px solid #ebe5d7; border-radius: 14px; padding: 12px; }
.cart-row img { width: 95px; height: 95px; object-fit: contain; }
.cart-row a { color: #075c3b; font-weight: 700; }
.cart-row p { margin: 5px 0; color: #666; }
.cart-row-controls { display: flex; align-items: center; gap: 12px; }
.cart-row-controls label { display: flex; align-items: center; gap: 8px; }
.cart-row-controls input { width: 60px; padding: 5px; border: 1px solid #ddd; border-radius: 6px; }
.cart-row-controls button { border: 0; background: transparent; color: #a33; }
.cart-empty { padding: 35px; background: #fff; border-radius: 14px; }
.cart-total { margin-top: 18px; padding: 16px 20px; background: #fff; border: 1px solid #ebe5d7; border-radius: 12px; color: #075c3b; font-size: 20px; font-weight: 700; }
.cart-total[hidden] { display: none; }
.cart-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
@media (max-width: 700px) { .product-detail { grid-template-columns: 1fr; } .detail-image { max-height: 420px; } .cart-row { grid-template-columns: 75px minmax(0,1fr); } .cart-row img { width: 75px; height: 75px; } .cart-row-controls { grid-column: 1 / -1; justify-content: flex-end; } }
@media (max-width: 480px) { .shop-page { padding: 40px 16px 60px; } .shop-filters label { width: 100%; } .shop-filters button { width: 100%; } .shop-grid { grid-template-columns: 1fr; } }

/* Checkout and administration */
.featured-products .product-card { display: flex; flex-direction: column; }
.featured-products .product-info { display: flex; flex-direction: column; flex: 1; }
.featured-products .shop-card-actions { margin-top: auto; }
.checkout-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(290px,.8fr); align-items: start; gap: 26px; }
.checkout-form, .checkout-summary, .order-summary, .admin-panel { background: #fff; border: 1px solid #ebe5d7; border-radius: 16px; padding: 28px; box-shadow: 0 10px 28px rgba(4,61,44,.05); }
.checkout-form, .admin-form { display: grid; gap: 11px; }
.checkout-form h2, .checkout-summary h2, .order-summary h2, .admin-panel h2 { color: #064d33; font-size: 22px; margin: 0 0 12px; }
.checkout-form label, .admin-form label { color: #064d33; font-weight: 700; }
.checkout-form input, .checkout-form select, .checkout-form textarea, .admin-form input:not([type=checkbox]):not([type=file]), .admin-form select, .admin-form textarea { width: 100%; min-width: 0; border: 1px solid #d9ddd8; border-radius: 9px; padding: 10px 12px; background: #fff; color: #222; }
.checkout-form button { justify-self: start; cursor: pointer; }
.checkout-form button:disabled { opacity: .5; cursor: not-allowed; }
.checkout-summary p, .order-summary p { color: #4d5e53; }
.checkout-totals { border-top: 1px solid #e9e7dc; margin-top: 22px; }
.checkout-totals p { display: flex; justify-content: space-between; gap: 15px; }
.grand-total { color: #075c3b !important; font-size: 20px; font-weight: 700; }
.payment-note { background: #f4f7ef; border-radius: 9px; padding: 10px 14px; }
.form-errors { background: #fff2f0; color: #922; border: 1px solid #f2c5bf; border-radius: 10px; padding: 12px 18px; margin-bottom: 20px; }
.form-errors p { margin: 4px 0; }
.order-confirmation { max-width: 760px; }
.order-confirmation h1 { color: #064d33; margin: 0 0 14px; line-height: 1.4; }
.order-confirmation > p { margin: 8px 0; line-height: 1.8; }
.success-mark { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #16834e; font-size: 34px; margin-bottom: 18px; }
.order-summary { margin-top: 24px; }
.order-summary p { margin: 10px 0; line-height: 1.8; }
.sample-price-label { display: inline-block; margin-inline-start: 8px; padding: 3px 8px; border-radius: 999px; background: #fff3d8; color: #795000; font-size: 12px; font-weight: 700; vertical-align: middle; }
.sample-price-notice { padding: 12px 16px; border: 1px solid #e9d49b; border-radius: 10px; background: #fff9e9; color: #6c4c08; line-height: 1.7; }
.admin-body { background: #faf9f5; }
.admin-container { width: min(100% - 36px,1200px); margin-inline: auto; }
.admin-header { background: #064d33; color: #fff; }
.admin-header .admin-container { display: flex; align-items: center; gap: 22px; min-height: 78px; }
.admin-header img { width: 80px; max-height: 60px; object-fit: contain; background: #fff; border-radius: 8px; padding: 3px; }
.admin-header nav { display: flex; flex-wrap: wrap; gap: 15px; margin-inline-end: auto; }
.admin-header a:hover { color: #e0bc73; }
.admin-header button { background: transparent; color: #fff; border: 1px solid #96b7a4; border-radius: 8px; padding: 7px 12px; }
.admin-main { padding-block: 35px 75px; }
.admin-main h1 { color: #064d33; margin-top: 0; }
.admin-auth { width: min(100% - 32px,440px); margin: 8vh auto; background: #fff; border: 1px solid #ebe5d7; border-radius: 18px; padding: 30px; }
.admin-auth img { width: 105px; max-height: 90px; object-fit: contain; }
.admin-auth h1 { color: #064d33; font-size: 26px; }
.admin-auth form, .admin-auth label { display: grid; gap: 9px; }
.admin-auth form { gap: 18px; }
.admin-auth input { width: 100%; border: 1px solid #d9ddd8; border-radius: 9px; padding: 10px 12px; }
.admin-auth button { cursor: pointer; }
.admin-stats { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.admin-stats a { display: grid; gap: 8px; background: #fff; border: 1px solid #ebe5d7; border-radius: 14px; padding: 22px; }
.admin-stats strong { color: #075c3b; font-size: 32px; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0; }
.admin-table-wrap { overflow-x: auto; background: #fff; border: 1px solid #ebe5d7; border-radius: 14px; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 650px; }
.admin-table th, .admin-table td { padding: 12px 15px; text-align: right; border-bottom: 1px solid #eee; }
.admin-table th { color: #064d33; background: #f5f4ee; }
.admin-table a, .admin-main > p a { color: #075c3b; font-weight: 700; }
.admin-thumb { width: 60px; height: 60px; object-fit: contain; }
.admin-preview { max-width: 150px; max-height: 150px; object-fit: contain; }
.admin-form { max-width: 650px; background: #fff; border: 1px solid #ebe5d7; border-radius: 14px; padding: 25px; }
.admin-form label:not(.admin-check) { display: grid; gap: 6px; }
.admin-form input[type=file] { width: 100%; }
.admin-check { display: flex; align-items: center; gap: 8px; }
.admin-notice { padding: 12px 16px; border: 1px solid #a8cbb4; background: #eef8f0; color: #075c3b; border-radius: 9px; }
.admin-order-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; margin-bottom: 22px; }
.admin-status { display: flex; align-items: end; flex-wrap: wrap; }
.admin-pagination { display: flex; align-items: center; gap: 16px; margin-top: 20px; }
.admin-pagination a { color: #075c3b; font-weight: 700; }
@media (max-width: 750px) { .checkout-grid, .admin-order-grid { grid-template-columns: 1fr; } .admin-header .admin-container { flex-wrap: wrap; padding-block: 12px; } .admin-header nav { order: 3; width: 100%; } .admin-stats { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .checkout-form, .checkout-summary, .order-summary, .admin-panel, .admin-auth { padding: 20px; } }
html[dir="ltr"] .about-content { text-align: left; }
html[dir="ltr"] .footer-container, html[dir="ltr"] .footer-bottom { text-align: left; }
html[dir="ltr"] .hero-badge { right: 18px; }
