/*
 Theme Name:   PotolkovStyle
 Theme URI:    https://potolkovstyle.ru
 Description:  Дочерняя тема Hello Elementor для сайта PotolkovStyle — натяжные потолки в Москве
 Author:       PotolkovStyle
 Author URI:   https://potolkovstyle.ru
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  potolkovstyle
*/

/* ========== GLOBAL STYLES ========== */

:root {
    --ps-primary: #FF8562;
    --ps-primary-hover: #e06d4d;
    --ps-dark: #111111;
    --ps-dark-2: #222222;
    --ps-mauve: #754F5B;
    --ps-light-blue: #C7D2E9;
    --ps-white: #FFFFFF;
    --ps-bg-dark: #1a1a2e;
    --ps-bg-section: #f5f7fb;
    --ps-font-main: 'Montserrat', 'Arial', sans-serif;
    --ps-font-heading: 'Montserrat', 'Arial', sans-serif;
}

body {
    font-family: var(--ps-font-main);
    color: var(--ps-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ps-font-heading);
    font-weight: 700;
    color: var(--ps-dark);
}

/* ========== HEADER ========== */

.site-header {
    background: var(--ps-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-contacts {
    font-size: 14px;
    color: var(--ps-dark-2);
}

.header-phone {
    font-weight: 700;
    font-size: 18px;
    color: var(--ps-dark);
    text-decoration: none;
}

.header-phone:hover {
    color: var(--ps-primary);
}

/* ========== BUTTONS ========== */

.ps-btn-primary {
    background: var(--ps-primary) !important;
    color: var(--ps-white) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 14px 32px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.ps-btn-primary:hover {
    background: var(--ps-primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 133, 98, 0.4) !important;
}

.ps-btn-outline {
    background: transparent !important;
    color: var(--ps-primary) !important;
    border: 2px solid var(--ps-primary) !important;
    border-radius: 8px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.ps-btn-outline:hover {
    background: var(--ps-primary) !important;
    color: var(--ps-white) !important;
}

/* ========== HERO SECTION ========== */

.ps-hero {
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.ps-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.6) 100%);
}

.ps-hero h1 {
    color: var(--ps-white);
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
}

.ps-hero h1 span {
    color: var(--ps-primary);
}

/* ========== CALCULATOR ========== */

.ps-calculator {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.15);
}

.ps-calculator input[type="text"],
.ps-calculator input[type="tel"],
.ps-calculator input[type="email"] {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--ps-white);
    font-size: 15px;
    width: 100%;
}

.ps-calculator input::placeholder {
    color: rgba(255,255,255,0.6);
}

/* ========== PRICE TABLE ========== */

.ps-price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.ps-price-table tr:nth-child(even) {
    background: var(--ps-bg-section);
}

.ps-price-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.ps-price-table td:last-child {
    font-weight: 700;
    color: var(--ps-primary);
    font-size: 20px;
    text-align: right;
}

/* ========== PROMOTIONS ========== */

.ps-promo-card {
    background: linear-gradient(135deg, var(--ps-bg-dark) 0%, #2d2d5e 100%);
    border-radius: 16px;
    padding: 30px;
    color: var(--ps-white);
    transition: transform 0.3s ease;
}

.ps-promo-card:hover {
    transform: translateY(-5px);
}

/* ========== FEATURES / BENEFITS ========== */

.ps-feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ps-feature-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.ps-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 133, 98, 0.1);
    color: var(--ps-primary);
    font-size: 28px;
}

/* ========== ADVANTAGES ========== */

.ps-advantage-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--ps-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.ps-advantage-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.ps-advantage-card img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

/* ========== REVIEWS ========== */

.ps-review-card {
    background: var(--ps-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.ps-review-card h4 {
    margin-bottom: 12px;
    color: var(--ps-dark);
}

.ps-review-card p {
    color: #666;
    line-height: 1.7;
}

/* ========== FAQ ACCORDION ========== */

.ps-faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.ps-faq-question {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.ps-faq-question:hover {
    background: var(--ps-bg-section);
}

.ps-faq-answer {
    padding: 0 24px 20px;
    color: #666;
    line-height: 1.7;
}

/* ========== ABOUT / STATS ========== */

.ps-stat-item {
    text-align: center;
    padding: 20px;
}

.ps-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--ps-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.ps-stat-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== FOOTER ========== */

.ps-footer {
    background: var(--ps-bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.ps-footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ps-footer a:hover {
    color: var(--ps-primary);
}

.ps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
}

/* ========== SOCIAL ICONS ========== */

.ps-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,133,98,0.15);
    color: var(--ps-primary);
    transition: all 0.3s ease;
    margin-right: 8px;
}

.ps-social-link:hover {
    background: var(--ps-primary);
    color: var(--ps-white);
}

/* ========== CATALOG CARDS ========== */

.ps-catalog-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: var(--ps-white);
}

.ps-catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.ps-catalog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ps-catalog-card-body {
    padding: 20px;
}

.ps-catalog-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

/* ========== FORMS ========== */

.ps-form input[type="text"],
.ps-form input[type="tel"],
.ps-form input[type="email"],
.ps-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--ps-font-main);
    transition: border-color 0.3s ease;
}

.ps-form input:focus,
.ps-form textarea:focus {
    border-color: var(--ps-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 133, 98, 0.15);
}

/* ========== COOKIE BANNER ========== */

.ps-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ps-dark);
    color: var(--ps-white);
    padding: 16px 24px;
    z-index: 9999;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
    .ps-hero h1 {
        font-size: 28px;
    }

    .ps-stat-number {
        font-size: 36px;
    }

    .ps-advantage-card {
        flex-direction: column;
        text-align: center;
    }

    .ps-price-table td {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ps-hero h1 {
        font-size: 24px;
    }

    .ps-calculator {
        padding: 20px;
    }
}

/* Hide page title on homepage */
.page-id-7 .entry-title,
.page-id-7 .page-header,
.page-id-7 header.entry-header,
.page-id-7 .elementor-page-title,
body.page-id-7 h1.entry-title {
  display: none !important;
}

/* Full width content */
.page-id-7 .site-content,
.page-id-7 .entry-content,
.page-id-7 .page-content,
.page-id-7 .site-main,
.page-id-7 article {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.page-id-7 .site-content > .container,
.page-id-7 .content-area {
  max-width: 100% !important;
  padding: 0 !important;
}


/* ===== PS shared content system (psh base + psc category) ===== */
.psh{--g:#C4A35A;--g2:#D4B870;--dark:#26262b;--ink:#2f2f2f;--muted:#6d6d72;--line:#e8e3da;--soft:#faf8f5;--soft2:#f3ede4;font-family:Montserrat,'Segoe UI',Arial,sans-serif;color:var(--ink);line-height:1.6}
.psh *{box-sizing:border-box}
.psh svg.ic{width:1em;height:1em;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;vertical-align:-.125em}
.psh .wrap{max-width:1300px;margin:0 auto;padding:0 30px}
.psh section{padding:64px 0}
.psh h2{font-size:32px;font-weight:800;color:#2a2a2f;line-height:1.2;letter-spacing:-.3px}
.psh .lead{font-size:16px;color:var(--muted);max-width:680px;margin:14px auto 0}
.psh .center{text-align:center}
.psh .eyebrow{display:inline-block;font-size:12px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:var(--g);margin-bottom:12px}
.psh .btn{display:inline-block;text-decoration:none;font-weight:700;font-size:13px;letter-spacing:.8px;text-transform:uppercase;border-radius:4px;padding:15px 34px;cursor:pointer;border:1px solid transparent;transition:all .25s}
.psh .btn-gold{background:var(--g);color:#fff}
.psh .btn-gold:hover{background:var(--g2)}
.psh .btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.5)}
.psh .btn-ghost:hover{background:#fff;color:var(--dark)}
.psh .btn-dark{background:#2a2a2f;color:#fff}
.psc-hero{position:relative;background:linear-gradient(120deg,#201f26,#2c2a33 60%,#3a3542);color:#fff;overflow:hidden}
.psc-hero::after{content:"";position:absolute;right:-120px;top:-120px;width:420px;height:420px;border-radius:50%;background:radial-gradient(circle,rgba(196,163,90,.22),transparent 70%)}
.psc-hero .wrap{position:relative;z-index:2;display:grid;grid-template-columns:1.15fr .85fr;gap:50px;align-items:center;padding-top:54px;padding-bottom:54px}
.psc-crumb{font-size:12px;color:rgba(255,255,255,.55);margin-bottom:18px}
.psc-crumb a{color:rgba(255,255,255,.55);text-decoration:none}
.psc-crumb a:hover{color:var(--g)}
.psc-hero h1{font-size:40px;line-height:1.15;font-weight:800;color:#fff;letter-spacing:-.5px}
.psc-hero .sub{margin-top:18px;font-size:16px;color:rgba(255,255,255,.8);max-width:520px}
.psc-badge{display:inline-flex;align-items:baseline;gap:8px;margin:22px 0 26px;padding:12px 22px;border:1px solid rgba(196,163,90,.5);border-radius:40px;background:rgba(196,163,90,.12)}
.psc-badge b{font-size:26px;font-weight:800;color:var(--g)}
.psc-badge span{font-size:13px;color:rgba(255,255,255,.7)}
.psc-hero-cta{display:flex;gap:14px;flex-wrap:wrap}
.psc-calc{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.14);border-radius:18px;padding:30px;backdrop-filter:blur(8px)}
.psc-calc h3{color:#fff;font-size:20px;margin-bottom:6px}
.psc-calc p.hint{color:rgba(255,255,255,.6);font-size:13px;margin-bottom:18px}
.psc-calc label{display:block;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:rgba(255,255,255,.55);margin-bottom:7px}
.psc-calc input{width:100%;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.28);border-radius:9px;padding:13px 16px;color:#fff;font-size:16px;font-family:inherit;margin-bottom:16px}
.psc-calc input::placeholder{color:rgba(255,255,255,.5)}
.psc-calc input:focus{outline:none;border-color:var(--g)}
.psc-out{display:flex;align-items:baseline;justify-content:space-between;background:rgba(196,163,90,.14);border:1px dashed rgba(196,163,90,.5);border-radius:10px;padding:14px 18px;margin-bottom:18px}
.psc-out .lbl{font-size:13px;color:rgba(255,255,255,.7)}
.psc-out .val{font-size:26px;font-weight:800;color:var(--g)}
.psc-2col{display:grid;grid-template-columns:1.4fr .9fr;gap:44px;align-items:start}
.psc-2col p{font-size:15px;color:#4a4a52;margin-bottom:16px}
.psc-facts{background:var(--soft);border:1px solid var(--line);border-radius:16px;padding:28px}
.psc-facts h3{font-size:17px;margin-bottom:16px;color:#2a2a2f}
.psc-facts ul{list-style:none;margin:0;padding:0}
.psc-facts li{display:flex;gap:10px;align-items:flex-start;font-size:14px;color:#4a4a52;margin-bottom:12px}
.psc-facts li .ic{color:var(--g);flex-shrink:0;margin-top:3px}
.psc-grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:44px;text-align:left}
.psc-card{background:#fff;border:1px solid var(--line);border-radius:14px;padding:30px 26px;transition:all .28s}
.psc-card:hover{transform:translateY(-4px);box-shadow:0 14px 34px rgba(0,0,0,.09)}
.psc-card .ci{width:54px;height:54px;border-radius:13px;background:rgba(196,163,90,.12);color:var(--g);display:flex;align-items:center;justify-content:center;font-size:24px;margin-bottom:16px}
.psc-card h3{font-size:18px;margin-bottom:9px;color:#2a2a2f}
.psc-card p{font-size:14px;color:var(--muted)}
.psc-gal{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:44px}
.psc-gal a,.psc-gal div.cell{position:relative;border-radius:14px;overflow:hidden;height:210px;display:flex;align-items:flex-end;color:#fff;text-decoration:none}
.psc-gal .ov{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0) 55%)}
.psc-gal .cap{position:relative;z-index:2;padding:18px;font-weight:700;font-size:15px}
.psc-incl-wrap{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;margin-top:20px}
.psc-incl{list-style:none;margin:0;padding:0}
.psc-incl li{display:flex;gap:12px;align-items:flex-start;font-size:15px;color:#3a3a42;margin-bottom:14px}
.psc-incl li .ic{color:var(--g);flex-shrink:0;margin-top:3px}
.psc-pricebox{background:#2a2a2f;color:#fff;border-radius:16px;padding:36px;text-align:center}
.psc-pricebox .from{font-size:13px;color:rgba(255,255,255,.6);text-transform:uppercase;letter-spacing:1px}
.psc-pricebox .num{font-size:46px;font-weight:800;color:var(--g);line-height:1.1;margin:6px 0 4px}
.psc-pricebox .u{font-size:14px;color:rgba(255,255,255,.7);margin-bottom:22px}
.psc-rooms{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin-top:34px}
.psc-rooms a{padding:11px 22px;border:1px solid var(--line);border-radius:40px;text-decoration:none;color:#3a3a42;font-size:14px;font-weight:500;transition:all .25s}
.psc-rooms a:hover{border-color:var(--g);color:var(--g)}
.psc-faq-wrap{max-width:860px;margin:40px auto 0;text-align:left}
.psh-faq{border:1px solid var(--line);border-radius:12px;margin-bottom:12px;overflow:hidden;background:#fff}
.psh-faq-q{padding:20px 24px;font-weight:600;font-size:16px;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:16px;color:#2a2a2f}
.psh-faq-q:hover{color:var(--g)}
.psh-faq-q .pm{color:var(--g);font-size:24px;line-height:1;transition:transform .3s;flex-shrink:0}
.psh-faq.open .psh-faq-q .pm{transform:rotate(45deg)}
.psh-faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease}
.psh-faq-a div{padding:0 24px 22px;color:var(--muted);font-size:14px}
.psc-cta{background:linear-gradient(120deg,#201f26,#332f3b);color:#fff}
.psc-cta .wrap{display:grid;grid-template-columns:1fr .9fr;gap:50px;align-items:center}
.psc-cta h2{color:#fff}
.psc-cta p{color:rgba(255,255,255,.75);margin-top:14px;font-size:15px}
.psc-form{background:#fff;border-radius:16px;padding:34px;text-align:left}
.psc-form h3{color:#2a2a2f;font-size:22px;margin-bottom:6px}
.psc-form .fh{font-size:13px;color:var(--muted);margin-bottom:20px}
.psc-form input{width:100%;border:1px solid #ddd;border-radius:9px;padding:14px 16px;font-size:15px;font-family:inherit;margin-bottom:14px}
.psc-form input:focus{outline:none;border-color:var(--g);box-shadow:0 0 0 3px rgba(196,163,90,.15)}
.psc-form button{width:100%;border:none}
.psc-form .pol{font-size:11px;color:var(--muted);text-align:center;margin-top:14px}
.psc-form .pol a{color:var(--g)}
.ps-floating-buttons{position:fixed;right:22px;bottom:22px;z-index:9998;display:none;flex-direction:column;gap:12px}
.ps-floating-buttons a{width:54px;height:54px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;box-shadow:0 6px 18px rgba(0,0,0,.25);text-decoration:none;font-size:24px}
.psh-fab-wa{background:#25D366}.psh-fab-tg{background:#29a9eb}.psh-fab-ph{background:#C4A35A}
@media(max-width:1024px){.psc-hero .wrap,.psc-2col,.psc-incl-wrap,.psc-cta .wrap{grid-template-columns:1fr}.psc-grid3,.psc-gal{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.psh section{padding:44px 0}.psh .wrap{padding:0 18px}.psh h2{font-size:25px}.psc-hero h1{font-size:29px}.psc-grid3,.psc-gal{grid-template-columns:1fr}}