/* ===== COOP AGRI FARM SHOP — PUBLIC PAGE ===== */

.shop-page {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #faf7f4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ---- Header ---- */
.shop-header {
    background: white;
    border-bottom: 1px solid #e8dfd5;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.shop-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
.shop-lang-toggle {
    display: flex;
    gap: 4px;
}
.shop-lang-btn {
    border: 1px solid #e8dfd5;
    background: white;
    color: #6b5b4a;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
    line-height: 1.4;
}
.shop-lang-btn:hover,
.shop-lang-active {
    background: #9e4b13 !important;
    color: white !important;
    border-color: #9e4b13 !important;
}
.shop-login-btn {
    background: #9e4b13;
    color: white !important;
    border-radius: 20px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
}
.shop-login-btn:hover {
    background: #7a3a0f;
    color: white !important;
}

/* ---- Main ---- */
.shop-main {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px 48px;
    flex: 1;
}

/* ---- Category strip ---- */
.shop-category-strip {
    padding: 12px 0 4px;
}

/* ---- Product grid ---- */
.shop-grid-wrap {
    padding: 8px 0 16px;
}

/* ---- How to order section ---- */
.shop-how-section {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    margin-top: 48px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.shop-steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 767px) {
    .shop-steps-row {
        grid-template-columns: 1fr;
    }
    .shop-header-inner {
        padding: 0 16px;
    }
}
.shop-step-card {
    text-align: center;
    padding: 24px 16px;
    border-radius: 10px;
    background: #faf7f4;
}
.shop-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9e4b13, #c46020);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: white;
}

/* ---- Footer ---- */
.shop-footer {
    background: #2a1a0e;
    padding: 36px 24px;
    text-align: center;
    margin-top: auto;
}
.shop-footer-inner {
    max-width: 600px;
    margin: 0 auto;
}
