/*
Theme Name: RQMEE Store
Theme URI: https://rqmee.com
Author: RQMEE
Description: Lightweight custom store theme.
Version: 1.0.0
Text Domain: rqmee-store
*/

:root {
    --rqmee-container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    direction: rtl;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #fff;
    color: #222;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.rqmee-container {
    width: min(100% - 32px, var(--rqmee-container));
    margin-inline: auto;
}

.rqmee-site-main {
    min-height: 60vh;
}

@media (max-width: 767px) {
    .rqmee-container {
        width: min(100% - 24px, var(--rqmee-container));
    }
}