/*
Theme Name: WC Project Storefront
Theme URI: https://example.com/
Author: Codex
Description: Lightweight custom WooCommerce storefront for wc-project.
Version: 0.1.0
Text Domain: wc-project-storefront
*/

body {
    background: #fffdf9;
    color: #2c241c;
}

.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1 0 auto;
}

.wcps-content-shell,
.wcps-site-footer__inner {
    margin: 0 auto;
    max-width: min(1240px, calc(100vw - 48px));
}

.wcps-content-shell {
    padding: 2rem 0 3rem;
}

.wcps-entry {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(169, 106, 43, 0.08);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(55, 34, 18, 0.06);
    margin-bottom: 1rem;
    padding: 1.2rem;
}

/* Long Russian words (e.g. "конфиденциальности") must wrap inside the card
   instead of overflowing and forcing horizontal scroll on narrow screens. */
.wcps-entry .entry-title {
    font-size: clamp(1.6rem, 6vw, 2.6rem);
    line-height: 1.15;
    overflow-wrap: break-word;
    hyphens: auto;
}

.wcps-entry .entry-content {
    overflow-wrap: break-word;
}

.wcps-entry .entry-content h2,
.wcps-entry .entry-content h3 {
    overflow-wrap: break-word;
    hyphens: auto;
}

.site-footer {
    padding: 0;
}
