/*
Theme Name: Granite Forever
Theme URI: https://www.graniteforever.com
Author: Granite Forever Team
Author URI: https://www.graniteforever.com
Description: Premium WordPress theme for Granite Forever — luxury stone countertops in Southwest Florida. Features include slideshow, advantages grid, stone collections, pricing tables, before/after slider, and Google Reviews integration.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: graniteforever
*/

/* ==========================================================================
   Root Variables & Base Styles
   ========================================================================== */

:root {
    --primary: #f7be4e;
    --primary-2: #282828;
    --primary_hover: #f7be4e;
    --sub-heading-color: #f7be4e;
    --sub-background: #282828;
    --heading-color: 40, 40, 40;
    --color-body: 40, 40, 40;
    --background: 255, 255, 255;
    --secondary-background: 245, 245, 245;
    --border-color: 220, 221, 227;
    --border-color-darker: 40, 40, 40;
    --success-color: 46, 158, 123;
    --success-background: 213, 236, 229;
    --error-color: 222, 42, 42;
    --error-background: 253, 240, 240;
    --primary-button-background: 247, 190, 78;
    --primary-button-text-color: 255, 255, 255;
    --secondary-button-background: 0, 0, 0;
    --secondary-button-text-color: 255, 255, 255;
    
    /* Typography */
    --hd-font-family: "Oswald", sans-serif;
    --body-font-family: "Plus Jakarta Sans", sans-serif;
    
    /* Container */
    --container-max-width: 1440px;
    --container-distance: 15px;
    --container-max-width-minus-gutters: calc(var(--container-max-width) - (var(--container-distance)) * 2);
    --container-outer-width: max(calc((100vw - var(--container-max-width-minus-gutters)) / 2), var(--container-distance));
    --container-outer-margin: var(--container-outer-width);
    --container-inner-width: calc(100vw - var(--container-outer-width) * 2);
    
    /* Grid */
    --grid-column-count: 20;
    --grid-gap: 0px;
    
    /* Font sizes */
    --base-font-size: 16px;
    --h1-font-size: 72px;
    --h2-font-size: 60px;
    --h3-font-size: 48px;
    --h4-font-size: 36px;
    --h5-font-size: 28px;
    --h6-font-size: 24px;
    
    /* Button */
    --button-height: 50px;
    --button-border-radius: 0px;
    
    /* Form */
    --form-input-field-height: 84px;
}

.site-branding {
    order: 1;
}
.header__inline-wrapper {
    order: 2;
}
.header__secondary-links {
    order: 3;
}

.header__secondary-links {
   display: flex;
   align-items: flex-end;
   gap: 0.5em;
}

.show-mobile { display: none; }

@media screen and (max-width: 1199px) {
    :root {
        --h1-font-size: 50px;
        --h2-font-size: 38px;
        --h3-font-size: 32px;
        --h4-font-size: 28px;
        --h5-font-size: 24px;
        --h6-font-size: 18px;
    }

.header__inline-wrapper {
    order: 1;
}
.site-branding {
    order: 2;
}
.header__secondary-links {
    order: 3;
}

}

@media screen and (max-width: 767px) {
    :root {
        --container-distance: 15px;
        --grid-column-count: 10;
        --h1-font-size: 40px;
        --h2-font-size: 32px;
        --h3-font-size: 32px;
        --h4-font-size: 26px;
        --h5-font-size: 22px;
        --h6-font-size: 18px;
        --button-height: 42px;
        --form-input-field-height: 56px;
    }

.header-contact_button .button {
    font-size: 12px;
    padding: 0 12px;
}

.header__inline-wrapper {
    order: 1;
}
.site-branding {
    order: 2;
}
.header__secondary-links {
    order: 3;
}

}

/* ==========================================================================
   Base Styles
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--body-font-family);
    font-size: var(--base-font-size);
    font-weight: 400;
    line-height: 1.5;
    color: rgb(var(--color-body));
    background-color: rgb(var(--background));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--hd-font-family);
    font-weight: 500;
    margin: 0 0 0.5em;
    line-height: 1.2;
    color: rgb(var(--heading-color));
}

.h1 { font-size: var(--h1-font-size); }
.h2 { font-size: var(--h2-font-size); }
.h3 { font-family: var(--hd-font-family); font-size: var(--h3-font-size); }
.h4 { font-size: var(--h4-font-size); }
.h5 { font-size: var(--h5-font-size); }
.h6 { font-size: var(--h6-font-size); }

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-hover);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-distance);
    width: 100%;
}

.container-fluid {
    width: 100%;
    padding: 0 var(--container-distance);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(-1 * var(--container-distance));
}

[class*="col-"] {
    padding: 0 var(--container-distance);
}

.col-xl-33 { width: 33.333%; }
.col-xl-40 { width: 40%; }
.col-xl-50 { width: 50%; }
.col-md-50 { width: 50%; }
.col-lg-50 { width: 50%; }
.col-25 { width: 25%; }
.col-33 { width: 33.333%; }
.col-50 { width: 50%; }
.col-100 { width: 100%; }

@media (min-width: 768px) {
    .col-md-50 { width: 50%; }
}

@media (min-width: 992px) {
    .col-lg-50 { width: 50%; }
}

@media (min-width: 1200px) {
    .col-xl-33 { width: 33.333%; }
    .col-xl-40 { width: 40%; }
    .col-xl-50 { width: 50%; }

}

/* ==========================================================================
   Buttons
   ========================================================================== */

.button, .btn-base {
    line-height: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: var(--button-height);
    padding: 0 30px;
    font-family: var(--hd-font-family);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--button-border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--primary);
    color: #282828;
}

.button:hover, .btn-base:hover {
    background-color: #282828;
    color: #ffffff;
}

.button--primary {
    background-color: rgb(var(--primary-button-background));
    color: rgb(var(--primary-button-text-color));
}



/* ==========================================================================
   Header Styles
   ========================================================================== */

.site-header {
    background-color: #282828;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #282828;
}

.header_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.header__inline-wrapper {
    display: flex;
    align-items: center;
}

.header__linklist {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.header__linklist a {
    color: #ffffff;
    font-family: var(--hd-font-family);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.header__linklist a:hover,
.header__linklist a.active {
    color: var(--primary);
}

.site-branding {
    text-align: center;
}

.site-branding img {
    max-width: 250px;
    height: auto;
}

@media (max-width: 767px) {
    .site-branding img {
        max-width: 180px;
    }

.header-contact_button .button {
    font-size: 16px;
    padding: 0 16px;
}

}

.header-contact_button .button {
    font-size: 18px;
    padding: 0 16px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle svg {
    stroke: #ffffff;
}

@media (max-width: 1199px) {
    .header__linklist {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .header_wrapper {
        gap: 20px;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: #282828;
    z-index: 1000;
    transition: left 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    color: #ffffff;
    font-family: var(--hd-font-family);
    font-size: 18px;
    text-transform: uppercase;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

/* ==========================================================================
   Slideshow Section
   ========================================================================== */

.slideshow-section {
    background-color: #f1f4f6;
}

.slideshow {
    position: relative;
    overflow: hidden;
}

.slideshow__slide {
    position: relative;
    height: 700px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 767px) {
    .slideshow__slide {
        height: 600px;
    }
}

.slideshow__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshow__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow__text-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
}

.slideshow__text-wrapper--middle {
    align-items: center;
}

.slideshow__text-wrapper .container {
    width: 100%;
}

.content-box {
    max-width: 800px;
}

.content-box--text-left {
    text-align: left;
}

.content-box--large {
    max-width: 900px;
}

.slideshow__text-wrapper h3.heading.p {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #ffffff;
}

.slideshow__text-wrapper h1.heading.h1 {
    font-size: 90px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffff;
}

@media (max-width: 991px) {
    .slideshow__text-wrapper h1.heading.h1 {
        font-size: 50px;
        line-height: 1.2;
    }
}

@media (max-width: 767px) {
    .slideshow__text-wrapper h1.heading.h1 {
        font-size: 36px;
    }
}

.slideshow__text-wrapper .description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f5f5f5;
}

.button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Advantages Section
   ========================================================================== */

.advantages-section {
    padding: 80px 0;
    background: #ffffff;
}

.advantages-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
    padding: 0 20px;
}

.adv-item {
    position: relative;
    padding-left: 60px;
}

.adv-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 45px;
    font-weight: 300;
    color: #d0d0d0;
    font-family: var(--hd-font-family);
}

.adv-item h4 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #282828;
    font-family: var(--hd-font-family);
}

.adv-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

.adv-item:hover {
    transform: translateY(-4px);
    transition: 0.3s ease;
}

@media (max-width: 768px) {
    .advantages-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantages-section {
        padding: 60px 0;
    }
    
    .adv-number {
        font-size: 26px;
    }
    
    .adv-item h4 {
        font-size: 24px;
    }
}

/* ==========================================================================
   Section Header
   ========================================================================== */

.section__header {
    margin-bottom: 60px;
    text-align: center;
}

.section__header .heading {
    margin-bottom: 15px;
}

.section__header .subheading {
    color: var(--primary);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .section__header {
        margin-bottom: 40px;
    }
}

/* ==========================================================================
   Banner Grid Section
   ========================================================================== */

.banner-grid {
    padding: 80px 0;
    background: #ffffff;
}

.banner-content {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.banner-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
}

.banner-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.banner-content:hover .banner-image:before {
    opacity: 1;
}

.banner-content:hover img.banner-list-image {
    transform: scale(1.05);
}

.banner-list-image {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 20px;
}

.banner-text .heading-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.banner-text .heading-center.p {
    font-size: 18px;
    margin-bottom: 20px;
}

.banner-grid .row {
    row-gap: 1em;
}

.wrapper-button {
    margin-top: 20px;
}

@media (max-width: 991px) {
    .banner-text .heading-title {
        font-size: 32px;
    }
    
    .banner-text .heading-center.p {
        font-size: 14px;
    }
}

/* ==========================================================================
   Pricing Compare Section
   ========================================================================== */

.pricing-compare {
    padding: 80px 0;
    background: #ffffff;
}

.product-tabs__content {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
}

.pricing_description-right {
    flex: 1;
    min-width: 250px;
}

.box_content-price {
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.box_content-price:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.box_content-price .heading.h5 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #282828;
}

.box_content-price .description2 {
    font-size: 18px;
    margin-bottom: 30px;
}

.box_content-price .description2 span {
    font-size: 60px;
    font-weight: 500;
    line-height: 68px;
    color: var(--primary);
    display: inline-block;
    font-family: 'Oswald';
    /*margin-top: 10px;*/
}

/* ==========================================================================
   Before/After Slider
   ========================================================================== */

.before-after-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.before-after-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 0 0.65vw;
    padding-bottom: 20px;
}

.ba-slide {
    flex: 0 0 50%;
}

.ba-slide widgetic,
.ba-slide .wdgtc-wrap,
.ba-slide .wdgtc-holder {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

@media (max-width: 640px) {
    .ba-slide {
        flex: 0 0 100%;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
    padding: 80px 0;
    background: #ffffff;
}

.reputon-google-reviews-widget {
    margin: 0 auto;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

.footer-top {
    background-color: #282828;
    padding: 10px 0 10px; /*30*/
}

.footer_logo-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f7be4e;
    margin-bottom: 30px; /* 60*/
}

.logo-footer img {
    max-width: 325px;
    height: auto;
}

.linklist {
    display: flex;
    gap: 45px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.linklist__item a {
    color: #ffffff;
    font-family: var(--hd-font-family);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.linklist__item a:hover {
    color: var(--primary);
}

.footer-top_content {
    padding: 0 0 30px;
}

.info-content-text1 {
    color: #f6f6f6;
    font-size: 16px;
    margin-bottom: 10px;
}

.info-content-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.info-content-text a {
    color: #ffffff;
    text-decoration: none;
}

.info-content-text a:hover {
    color: var(--primary);
}

@media (max-width: 1199px) {
    .footer_logo-list {
        flex-direction: column;
        text-align: center;
        padding-bottom: 30px;
        margin-bottom: 20px; /*40*/
    }
    
    .footer-top_content {
        text-align: center !important;
    }
    
    .footer-top_content.text-right {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .linklist {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .info-content-text {
        font-size: 20px;
    }

    .footer_logo-list {
        margin-bottom: 10px; /*30*/
    }
}

/* ==========================================================================
   Copyright Section
   ========================================================================== */

.copyright {
    background-color: #282828;
    padding: 20px 0;
    border-top: 1px solid rgba(247,190,78,0.3);
}

.copyright__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #f6f6f6;
    margin: 0;
    font-size: 14px;
}

.social-copyright {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-media__link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.social-media__link:hover {
    color: var(--primary);
}

.social-media__link svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 767px) {
    .copyright__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright p {
        margin-bottom: 10px;
    }
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-30 { margin-bottom: 30px; }
.mb-60 { margin-bottom: 60px; }
.mt-0 { margin-top: 0; }
.my-0 { margin-top: 0; margin-bottom: 0; }

.hidden { display: none; }


/*price front-page home*/
.pricing-compare .product-content {
   margin: 0;
}
.pricing-compare .product-tabs__content {
   display: flex;
}
h3.heading.h5 {
   font-family: var(--hd-font-family);
   font-size: 28px;
   font-weight: 500;
   line-height: 36px;
   margin-top: 0;
   margin-bottom: 8px;
   transition: all 0.4s;
}
@media (max-width: 1199px) {
   .pricing-compare .product-tabs__content {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      row-gap: 30px;
      padding: 30px 15px;
   }
}
.pricing-compare .product-content__tabs {
   margin: 0;
   width: 100%;
}
.pricing_description-left .ap-navtabs {
   margin-top: 28px;
}
@media (min-width: 1000px) {
   .pricing_description-left {
      width: 50%;
   }
}
.pricing-compare .ap-navtabs[arrows] .ap-navtabs__scroller {
   width: fit-content;
}
.pricing-compare .ap-navtabs[arrows] .ap-navtabs__item-list {
   gap: 0;
}
.pricing-compare .ap-navtabs[arrows] .ap-navtabs__item-list:after {
   display: none;
}
.pricing-compare .ap-navtabs__item-list {
   height: 36px;
   border-radius: 9px;
   border: 1px solid #ffffff;
   background: #ffffff8a;
   box-shadow: none;
   justify-content: flex-start;
}
.pricing-compare .ap-navtabs__position {
   background: none;
}
.pricing-compare .ap-navtabs__item {
   font-size: 14px;
   font-weight: 600;
   text-transform: capitalize;
   letter-spacing: 0;
   color: #121212;
   padding: 6px 25px;
}
.pricing-compare .ap-navtabs__item[ap-expanded-aria="true"] {
   background: linear-gradient(135deg, #336aea, #9d57f5);
   border-radius: 9px;
   color: #fff;
}
.pricing_description-left h3.heading.h2 {
   margin: 22px 0 30px;
}
@media (min-width: 1000px) {
   .desc_text-ctn p {
      width: 520px;
      margin-bottom: 36px;
   }
}
.desc_text-ctn li {
   font-size: 18px;
   font-weight: 600;
   line-height: 36px;
   display: flex;
   align-items: center;
   gap: 11px;
   color: #121212;
}
.desc_text-ctn li:before {
   display: block;
   content: "";
   background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2210%22%20viewBox%3D%220%200%2014%2010%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M13.7188%200.28125C13.9062%200.489583%2014%200.729167%2014%201C14%201.27083%2013.9062%201.51042%2013.7188%201.71875L5.71875%209.71875C5.51042%209.90625%205.27083%2010%205%2010C4.72917%2010%204.48958%209.90625%204.28125%209.71875L0.28125%205.71875C0.09375%205.51042%200%205.27083%200%205C0%204.72917%200.09375%204.48958%200.28125%204.28125C0.489583%204.09375%200.729167%204%201%204C1.27083%204%201.51042%204.09375%201.71875%204.28125L5%207.59375L12.2812%200.28125C12.4896%200.09375%2012.7292%200%2013%200C13.2708%200%2013.5104%200.09375%2013.7188%200.28125Z%22%20fill%3D%22url(%23paint0_linear_480_346)%22%2F%3E%0A%3Cdefs%3E%0A%3ClinearGradient%20id%3D%22paint0_linear_480_346%22%20x1%3D%22-2%22%20y1%3D%22-3%22%20x2%3D%2211.8761%22%20y2%3D%2212.8584%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0A%3Cstop%20stop-color%3D%22%23336AEA%22%2F%3E%0A%3Cstop%20offset%3D%221%22%20stop-color%3D%22%239D57F5%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A");
   width: 16px;
   height: 14px;
   background-repeat: no-repeat;
}
.pricing_description-right .product-tabs__tab-item-content {
   display: flex;
   gap: 30px;
}
.box_content-price {
   width: 100%;
   padding: 45px;
   border: 1px solid #ffffff;
   transition: all 0.4s;
}
.box_content-price .heading.heading--small {
   font-size: 16px;
   font-weight: 600;
   line-height: 24px;
   text-transform: math-auto;
   margin: 12px 0 28px;
}
.box_content-price .description1 {
   font-size: 16px;
   font-weight: 400;
   line-height: 24px;
   transition: all 0.4s;
}
.box_content-price .description1 span {
   font-size: 50px;
   line-height: 55px;
   background: var(--primary-gradient);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}
.box_content-price .description2 {
   padding: 30px 0;
   font-family: var(--hd-font-family);
   font-size: 16px;
   font-weight: 400;
   line-height: 24px;
   border-bottom: 1px solid #a4a4a4;
   transition: all 0.4s;
}
.box_content-price .description2 span {
   font-size: 60px;
   font-weight: 500;
   line-height: 68px;
   color: var(--primary);
}
.description3 ul {
   margin: 30px 0 0 !important;
   border-bottom: 1px solid #a4a4a4;
   transition: all 0.4s;
   padding: 0;
}
.description3 ul li {
   display: flex;
   gap: 16px;
   align-items: center;
   font-size: 18px;
   font-weight: 400;
   line-height: 26px;
   padding-bottom: 30px !important;
}
.description3 ul li strong {
   font-weight: 400;
   color: #a4a4a4;
}
.description3 ul li:before {
   display: block;
   content: "";
   background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0_720_886)%22%3E%0A%3Cpath%20d%3D%22M12.3701%204.75896C12.0209%204.40588%2011.452%204.40142%2011.0973%204.74904L4.44483%2011.324L1.55292%208.33011C1.208%207.97062%200.636985%207.95882%200.277533%208.30374C-0.0819574%208.64866%20-0.0937568%209.21968%200.25116%209.57913C0.252723%209.58073%200.254247%209.58233%200.25581%209.58393L3.78187%2013.2381C3.95062%2013.4102%204.18125%2013.5077%204.42232%2013.5087H4.43225C4.66874%2013.5079%204.89551%2013.4143%205.06367%2013.248L12.362%206.03173C12.7146%205.68205%2012.7182%205.11314%2012.3701%204.75896Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M9.19404%2013.2381C9.36236%2013.4098%209.59225%2013.5072%209.83269%2013.5087H9.84261C10.0791%2013.5079%2010.3059%2013.4143%2010.474%2013.248L17.7724%206.03173C18.1032%205.65923%2018.0694%205.08911%2017.6969%204.7583C17.3593%204.45839%2016.8518%204.45444%2016.5095%204.74904L9.85973%2011.324L9.62249%2011.0777C9.27761%2010.7182%208.70659%2010.7064%208.3471%2011.0513C7.98761%2011.3962%207.97577%2011.9672%208.32069%2012.3267C8.32225%2012.3283%208.32381%2012.3299%208.32538%2012.3315L9.19404%2013.2381Z%22%20fill%3D%22black%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0_720_886%22%3E%0A%3Crect%20width%3D%2218%22%20height%3D%2218%22%20fill%3D%22white%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A");
   width: 18px;
   height: 18px;
   background-repeat: no-repeat;
   transition: all 0.4s;
}
.box_content-price .description2 ul,
.box_content-price .description2 li {
   padding: 0 !important;
   margin: 0;
}
.box_content-price .btn-base {
   color: #fff;
   background: var(--primary_hover);
   padding: 16px 45px !important;
   width: fit-content;
   display: flex;
   margin: 30px auto 0;
   transition: all 0.4s;
}
.box_content-price .btn-base:hover {
   color: #fff;
}
.box_content-price:hover {
   background: #000 !important;
   box-shadow: 0 4px 30px #0000001a;
}
.box_content-price:hover h3.heading.h5 {
   color: #fff;
}
.box_content-price:hover .description1 {
   color: #a4a4a4;
}
.box_content-price:hover .description2,
.box_content-price:hover .description3,
.box_content-price:hover .description3 ul li {
   color: #fff !important;
}
.box_content-price:hover .btn-base {
   background: var(--primary);
}
.box_content-price:hover .description3 ul li:before {
   display: block;
   content: "";
   background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0_720_918)%22%3E%0A%3Cpath%20d%3D%22M12.3701%204.75896C12.0209%204.40588%2011.452%204.40142%2011.0973%204.74904L4.44483%2011.324L1.55292%208.33011C1.208%207.97062%200.636985%207.95882%200.277533%208.30374C-0.0819574%208.64866%20-0.0937568%209.21968%200.25116%209.57913C0.252723%209.58073%200.254247%209.58233%200.25581%209.58393L3.78187%2013.2381C3.95062%2013.4102%204.18125%2013.5077%204.42232%2013.5087H4.43225C4.66874%2013.5079%204.89551%2013.4143%205.06367%2013.248L12.362%206.03173C12.7146%205.68205%2012.7182%205.11314%2012.3701%204.75896Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M9.19404%2013.2381C9.36236%2013.4098%209.59225%2013.5072%209.83269%2013.5087H9.84261C10.0791%2013.5079%2010.3059%2013.4143%2010.474%2013.248L17.7724%206.03173C18.1032%205.65923%2018.0694%205.08911%2017.6969%204.7583C17.3593%204.45839%2016.8518%204.45444%2016.5095%204.74904L9.85973%2011.324L9.62249%2011.0777C9.27761%2010.7182%208.70659%2010.7064%208.3471%2011.0513C7.98761%2011.3962%207.97577%2011.9672%208.32069%2012.3267C8.32225%2012.3283%208.32381%2012.3299%208.32538%2012.3315L9.19404%2013.2381Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0_720_918%22%3E%0A%3Crect%20width%3D%2218%22%20height%3D%2218%22%20fill%3D%22white%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A");
   width: 18px;
   height: 18px;
   background-repeat: no-repeat;
}

/*price*/

/* ==========================================================================
   Banner Carousel Styles - With Hover Buttons
   ========================================================================== */

.banner-carousel-section {
    padding: 40px 0;
    background: #ffffff;
    overflow: visible;
    position: relative;
}

.banner-carousel {
    position: relative;
    width: 100%;
    overflow: visible;
}

.banner-carousel-flex {
    position: relative;
    overflow: visible;
}

.scroller {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.banner-carousel-grid {
    display: flex;
    gap: 10px; /* Уменьшен gap до 10px */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.banner-carousel-item {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px; /* Почти незаметное скругление */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.banner-carousel-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px; /* Почти незаметное скругление */
}

.banner-carousel-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-carousel-item:hover .banner-carousel-img {
    transform: scale(1.05);
}

/* Кнопки навигации - появляются при наведении на края */
.carousel-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.carousel-nav-button--prev {
    left: -24px;
}

.carousel-nav-button--next {
    right: -24px;
}

/* Показываем кнопки при наведении на крайние слайды */
.banner-carousel-item:first-child:hover ~ .carousel-nav-button--prev,
.banner-carousel-item:first-child:hover ~ * .carousel-nav-button--prev,
.banner-carousel-item:first-child:hover + .carousel-nav-button--prev {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Альтернативный способ - показываем кнопки при наведении на всю секцию */
.banner-carousel-section:hover .carousel-nav-button {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Дополнительно: показываем кнопки при наведении на левую/правую область */
.banner-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.banner-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.banner-carousel:hover .carousel-nav-button--prev {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.banner-carousel:hover .carousel-nav-button--next {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.carousel-nav-button:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

.carousel-nav-button:hover svg path {
    fill: #ffffff;
}

.carousel-nav-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-nav-button svg {
    width: 14px;
    height: 14px;
    display: block;
}

.carousel-nav-button svg path {
    fill: #282828;
    transition: fill 0.3s ease;
}

/* Скрываем старые кнопки */
.carousel-arrow,
.ap-button-nextprev {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-nav-button {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav-button--prev {
        left: -16px;
    }
    
    .carousel-nav-button--next {
        right: -16px;
    }
    
    .banner-carousel::before,
    .banner-carousel::after {
        width: 40px;
    }
}

@media (max-width: 480px) {

.header_wrapper {
    gap: 10px;
}

.hide-mobile { display: none; }
.show-mobile { display: block; }

.header-contact_button .button {
    font-size: 12px;
    padding: 0 6px;
}

/*.header-contact_button:nth-child(2) {
    word-break: break-all;
}*/
    
    .banner-carousel-grid {
        gap: 8px;
    }
    
    .carousel-nav-button {
        width: 36px;
        height: 36px;
    }
    
    .carousel-nav-button--prev {
        left: -12px;
    }
    
    .carousel-nav-button--next {
        right: -12px;
    }
    
    .carousel-nav-button svg {
        width: 10px;
        height: 10px;
    }

   .header-contact_button .button {
       font-size: 12px;
       padding: 0 4px;
   }

}

/* Убираем горизонтальный скролл у body */
body {
    overflow-x: hidden;
}

/* ==========================================================================
   Footer Menu Styles
   ========================================================================== */

/* Стили для нижнего меню - шрифт Oswald как в верхнем меню */
.linklist {
    display: flex;
    gap: 45px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-start; /* Выравнивание по левому краю */
}

.linklist .linklist__item a,
.linklist li a {
    font-family: var(--hd-font-family); /* Oswald шрифт */
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    transition: color 0.3s ease;
}

.linklist .linklist__item a:hover,
.linklist li a:hover {
    color: var(--primary);
}

/* Мобильная версия футера - элементы по одному в строку */
@media (max-width: 767px) {
    /* Контейнер с информационными блоками */
    .footer-top .row {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    /* Каждый блок занимает всю ширину и идет вертикально */
    .footer-top .col-xl-33 {
        width: 100%;
        margin-bottom: 10px; /*30*/
    }
    
    /* Последний блок без отступа */
    .footer-top .col-xl-33:last-child {
        margin-bottom: 0;
    }
    
    /* Контент внутри блоков */
    .footer-top_content {
        text-align: center !important;
        padding: 0;
    }
    
    /* Заголовки Call Us, Send Email, Location */
    .info-content-text1 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    /* Текст телефона, email, адреса */
    .info-content-text {
        font-size: 18px;
    }
    
    /* Меню в футере на мобиле - центрируем */
    .linklist {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .linklist li a {
        font-size: 14px;
    }
}

@media (min-width: 481px) and (max-width: 510px) {
.header_wrapper {
    gap: 6px;
}

.header-contact_button .button {
    font-size: 10px;
    padding: 0 6px;
}
}

/* Планшетная версия */
@media (min-width: 768px) and (max-width: 991px) {
    .footer-top .row {
        display: flex;
        flex-wrap: wrap;
    }
    
    .footer-top .col-md-50 {
        width: 50%;
    }
    
    .footer-top_content.text-left,
    .footer-top_content.text-right {
        text-align: center !important;
    }
}


/* ==========================================================================
   Page Styles (based on about-us.html)
   ========================================================================== */

/* Page Hero Section */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-hero__content {
    position: relative;
    z-index: 2;
/*    max-width: 800px;
    padding: 0 var(--container-distance);*/
    text-align: center;
}

.page-hero__title {
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Page Header (without hero image) */
.page-header {
    background-color: #f5f5f5;
    padding: 30px 0; /*60*/
    text-align: center;
}

.page-header__title {
    margin: 0;
}

/* Page Content */
.page-content {
    padding: 60px 0;
    background: #ffffff;
}
 
.archive-content {
    padding: 60px 0 30px 0;
    background: #ffffff;
}

.entry-content {
    max-width: 100%;
}

.entry-content > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Headings within content */
.entry-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: var(--hd-font-family);
    font-size: 32px;
    font-weight: 500;
    color: #282828;
}

.entry-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: var(--hd-font-family);
    font-size: 24px;
    font-weight: 500;
    color: #282828;
}

.entry-content h4 {
    margin-top: 25px;
    margin-bottom: 12px;
    font-family: var(--hd-font-family);
    font-size: 20px;
    font-weight: 500;
    color: #282828;
}

/* Paragraphs */
.entry-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

/* Lists */
.entry-content ul,
.entry-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.entry-content li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

.entry-content ul li {
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

.entry-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Blockquotes */
.entry-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: #f5f5f5;
    border-left: 4px solid var(--primary);
    font-style: italic;
}

.entry-content blockquote p {
    margin-bottom: 0;
}

/* Images within content */
.entry-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
}

/* Buttons within content 
.entry-content .button,
.entry-content .btn-base {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: var(--button-height);
    padding: 0 30px;
    font-family: var(--hd-font-family);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--button-border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--primary);
    color: #282828;
    text-decoration: none;
}                         */

.entry-content .button:hover,
.entry-content .btn-base:hover {
    background-color: #282828;
    color: #ffffff;
}

/* Tables */
.entry-content table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.entry-content th,
.entry-content td {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.entry-content th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* Service blocks (matching about-us.html sections) */
.entry-content .service-block {
    margin: 40px 0;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 8px;
}

.entry-content .service-block h3 {
    margin-top: 0;
}

.entry-content .service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
}

.entry-content .service-list li {
    padding-left: 25px;
}

@media (max-width: 768px) {
    .entry-content .service-list {
        grid-template-columns: 1fr;
    }
}

/* Image gallery grid */
.entry-content .image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.entry-content .image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 0;
}

@media (max-width: 768px) {
    .entry-content .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .entry-content .image-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .page-hero {
        min-height: 50vh;
    }
    
    .page-hero__title {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 30px 0; /*40*/
    }
    
    .page-header__title {
        font-size: 36px;
    }
    
    .page-content {
        padding: 40px 0;
    }
    
    .entry-content h2 {
        font-size: 28px;
    }
    
    .entry-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 40vh;
    }
    
    .page-hero__title {
        font-size: 32px;
    }
    
    .page-header__title {
        font-size: 28px;
    }
}

/* Page Links (pagination within content) */
.page-links {
    margin: 40px 0;
    padding: 20px;
    background: #f5f5f5;
    text-align: center;
}

.page-links a,
.page-links span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    background: #ffffff;
    color: #282828;
    text-decoration: none;
    border-radius: 4px;
}

.page-links span {
    background: var(--primary);
    color: #282828;
}

.page-links a:hover {
    background: var(--primary);
    color: #282828;
}

/* Entry Footer */
.entry-footer {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.edit-link a {
    color: var(--primary);
    text-decoration: none;
}

.edit-link a:hover {
    text-decoration: underline;
}

/* Posted on date styles */
.posted-on {
    display: inline-block;
    font-size: 14px;
    color: #666;
}

.posted-on .entry-date {
    font-weight: 400;
}

.posted-on .updated {
    display: none;
}

/* Optional: show updated date for modified posts */
.single .posted-on .updated {
    display: inline;
}

.single .posted-on .published {
    display: none;
}

.single .posted-on .updated:before {
    content: 'Updated: ';
    font-weight: 500;
}

/* ==========================================================================
   Blog Archive Styles
   ========================================================================== */

/* Archive Header */
.archive-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: #f5f5f5;
}

.archive-title {
    margin-bottom: 15px;
}

.archive-description {
    color: #666;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Blog Post Card */
.blog-post {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-post__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Blog Post Thumbnail */
.blog-post__thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 550 / 367;
}

.blog-post__thumbnail-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.blog-post__thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .blog-post__thumbnail-image {
    transform: scale(1.05);
}

.blog-post__thumbnail-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.blog-post:hover .blog-post__thumbnail-arrow {
    opacity: 1;
    transform: scale(1);
}

.blog-post__thumbnail-arrow svg {
    width: 18px;
    height: 14px;
}

.blog-post__thumbnail-arrow svg path {
    stroke: #282828;
}

/* Blog Post Content */
.blog-post__content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-post__title {
    margin-bottom: 0px;
    font-size: 22px;
    line-height: 1.3;
}

.blog-post__title a {
    color: #282828;
    transition: color 0.3s ease;
}

.blog-post__title a:hover {
    color: var(--primary);
}

.blog-post__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #888;
}

.blog-post__meta .posted-on {
    color: #888;
}

.post-categories {
    display: inline-flex;
    gap: 5px;
}

.post-categories a {
    color: var(--primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-categories a:hover {
    text-decoration: underline;
}

.blog-post__excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-post__footer {
    margin-top: auto;
}

.read-more {
    font-size: 12px !important;
    padding: 8px 20px !important;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.nav-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #f5f5f5;
    color: #282828;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.page-numbers.current {
    background: var(--primary);
    color: #282828;
}

.page-numbers:hover:not(.current) {
    background: #e0e0e0;
}

/* ==========================================================================
   Single Post Styles
   ========================================================================== */

/* Post Hero */
.post-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 50px;
}

.post-hero__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.post-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.post-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 60px 0;
}

.post-hero__title {
    color: #ffffff;
    margin-bottom: 20px;
}

.post-hero__meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
}

.post-hero__meta .posted-on {
    color: #ffffff;
}

.post-hero__meta .post-categories a {
    color: var(--primary);
}

/* Post Header (without hero) */
.post-header {
    background: #f5f5f5;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.post-title {
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #888;
}

.post-meta .posted-on {
    color: #888;
}

/* Post Content */
.post-content {
    padding: 0 0 60px;
}

.entry-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Post Footer */
.post-footer {
    max-width: 800px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.tags-label {
    font-weight: 600;
    color: #282828;
}

.post-tags a {
    display: inline-block;
    padding: 5px 12px;
    background: #f5f5f5;
    color: #666;
    font-size: 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background: var(--primary);
    color: #282828;
}

/* Post Navigation */
.post-navigation {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-previous a,
.nav-next a {
    display: block;
    color: #282828;
    transition: color 0.3s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: var(--primary);
}

.nav-subtitle {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
}

.nav-title {
    font-size: 16px;
    font-weight: 500;
}

/* Comments */
.comments-area {
    max-width: 800px;
    margin: 60px auto 0;
}

.comments-title {
    margin-bottom: 30px;
    font-size: 24px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.comment-meta {
    margin-bottom: 15px;
}

.comment-author {
    font-weight: 600;
    color: #282828;
}

.comment-metadata {
    font-size: 12px;
    color: #888;
}

.comment-content {
    color: #666;
    line-height: 1.6;
}

.reply {
    margin-top: 15px;
}

.comment-reply-link {
    font-size: 12px;
    color: var(--primary);
}

/* Comment Form */
.comment-respond {
    margin-top: 40px;
}

.comment-reply-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.comment-form {
    display: grid;
    gap: 20px;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    width: 100%;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input,
.comment-form-comment textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: var(--body-font-family);
}

.comment-form-comment textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    margin-top: 20px;
}

.submit {
    background: var(--primary);
    color: #282828;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit:hover {
    background: #282828;
    color: #ffffff;
}

/* ==========================================================================
   Blog Responsive
   ========================================================================== */

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .archive-header {
        margin-bottom: 40px;
        padding: 30px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-post__title {
        font-size: 20px;
    }
    
    .post-hero {
        min-height: 40vh;
    }
    
    .post-hero__title {
        font-size: 32px;
    }
    
    .post-header {
        padding: 40px 0;
    }
    
    .post-title {
        font-size: 32px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-previous,
    .nav-next {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .blog-post__content {
        padding: 20px;
    }
    
    .blog-post__title {
        font-size: 18px;
    }
    
    .post-hero__title {
        font-size: 28px;
    }
    
    .post-title {
        font-size: 28px;
    }
}
/* ==========================================================================
   Archive Header Full Width Fix
   ========================================================================== */

/* Archive header - на всю ширину */
.archive-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 0;
    background: #f5f5f5;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Контент внутри archive-header выравниваем по центру с отступами контейнера */
.archive-header .container,
.archive-header .archive-title,
.archive-header .archive-description {
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--container-distance);
}

/* ==========================================================================
   Post Hero Full Width Fix
   ========================================================================== */

/* Post hero - на всю ширину */
.post-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 40px;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Контент внутри post-hero выравниваем по центру */
.post-hero .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-distance);
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ==========================================================================
   Page Hero Full Width Fix (для about-us и price страниц)
   ========================================================================== */

/* Page hero - на всю ширину */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Контент внутри page-hero */
.page-hero .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-distance);
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Restore Container Padding for Content
   ========================================================================== */

/* Возвращаем отступы для основного контента */
.site-main .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-distance);
}

/* Для страницы архива - контент внутри .container */
.archive .site-main .container,
.blog .site-main .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-distance);
}

/* Для страницы single - контент внутри .container */
.single .site-main .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-distance);
}

/* Пост навигация и комментарии */
.single .post-navigation,
.single .comments-area {
    max-width: var(--container-max-width);
    margin: 40px auto 0;
    padding: 0 var(--container-distance);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 767px) {
    .archive-header {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .post-hero {
        min-height: 40vh;
        margin-bottom: 30px;
    }
    
    .site-main .container {
        padding: 0 15px;
    }
}


/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

.contact-page-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0 80px;
}

/* Contact Info */
.contact-info {
    text-align: center;
    margin-bottom: 50px;
}

.contact-info__title {
    font-family: var(--hd-font-family);
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #282828;
}

.contact-info__text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.contact-info__text a {
    color: var(--primary);
    text-decoration: none;
    font-size: 2em;
    font-weight: bold;
}

.contact-info__text a:hover {
    text-decoration: underline;
}

/* Contact Form 7 Styling */
.contact-form-wrapper {
    margin-bottom: 50px;
}

/* Style CF7 form to match theme */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-form label {
    display: block;
    font-family: var(--hd-font-family);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #282828;
}

.wpcf7-list-item {
   display: flex;
   align-items: center;
}

.wpcf7-form label:nth-child(1) {
    display: flex;
    line-height: 1.2;
    gap: 10px;
}

.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--body-font-family);
    font-size: 16px;
    transition: all 0.3s ease;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(247, 190, 78, 0.2);
}

.wpcf7-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* File upload button styling */
.wpcf7-form input[type="file"] {
    padding: 10px;
    background: #f5f5f5;
    border: 1px dashed #ccc;
    cursor: pointer;
}

.wpcf7-form input[type="file"]::-webkit-file-upload-button {
    background: var(--primary);
    color: #282828;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--hd-font-family);
    font-weight: 500;
}

.wpcf7-form input[type="submit"],
.wpcf7-form .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #282828;
    font-family: var(--hd-font-family);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    align-self: flex-start;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-form .wpcf7-submit:hover {
    background: #282828;
    color: #ffffff;
}

/* Address & Map */
.contact-address-map {
    text-align: center;
}

.contact-address {
    margin-bottom: 20px;
}

.contact-address > div.h3 {
    margin-bottom: 20px;
}

.contact-address p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-page-wrapper {
       padding: 30px 0 60px;
    }
    
    .contact-info__title {
        font-size: 32px;
    }
    
    .contact-info__text p {
        font-size: 14px;
    }

    .contact-form-wrapper {
       margin-top: 30px;
    }

    .wpcf7-form input[type="submit"],
    .wpcf7-form .wpcf7-submit {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .header-contact_button .button {
        font-size: 13px;
        padding: 0 11px;
    }

    .contact-info__title {
        font-size: 28px;
    }
    
    .contact-map iframe {
        height: 250px;
    }
}

/* Modern Contact Form 7 Styles */
.contact-form-modern {
    max-width: 100%;
    margin: 0 auto;
}

.contact-form-modern .form-row {
    margin-bottom: 20px;
}

.contact-form-modern .form-row:last-child {
    margin-bottom: 0px !important;
} 

.contact-form-modern .form-row:nth-child(4) p {
    display: flex;
    align-items: center;
}

.contact-form-modern .form-row.two-columns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-form-modern .form-field {
    flex: 1;
    min-width: 0;
}

.contact-form-modern .form-field.full-width {
    width: 100%;
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: #f7be4e;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(247, 190, 78, 0.2);
}

.contact-form-modern textarea {
    min-height: 120px;
    resize: vertical;
}

/* Phone hint */
.contact-form-modern .phone-hint {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
}

/* Upload button */
.contact-form-modern .upload-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-form-modern .upload-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #495057;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-modern .upload-button svg {
    stroke: #495057;
}

.contact-form-modern .upload-button:hover {
    background: #fff;
    border-color: #f7be4e;
}

.contact-form-modern .file-name {
    font-size: 14px;
    color: #6c757d;
    margin-left: 15px;
}

/* Checkboxes */
.contact-form-modern .checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-modern .checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

/* Submit button */
.contact-form-modern .submit-button {
    display: inline-block;
    background: #f7be4e;
    color: #282828;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form-modern .submit-button:hover {
    background: #282828;
    color: #ffffff;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-modern .form-row.two-columns {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form-modern .upload-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-form-modern .submit-button {
        width: 100%;
        text-align: center;
    }
}


.page-natural-stone > .page-hero, .page-quartz > .page-hero, 
.page-template-page-natural-stone > .page-hero, .page-template-page-quartz > .page-hero {
    min-height: 40vh !important;
}

.page-natural-stone .page-hero, .page-quartz .page-hero, 
.page-template-page-natural-stone .page-hero, .page-template-page-quartz .page-hero {
    min-height: 40vh !important;
}

@media (max-width: 767px) {    
    .page-natural-stone .page-hero, .page-quartz  .page-hero, 
.page-template-page-natural-stone .page-hero, .page-template-page-quartz  .page-hero {
        min-height: 20vh !important;
    }

    .mobile-hidden {
       visibility: hidden;
       display: none;
    }

}    

@media (max-width: 360px) {    
.header_wrapper {
    gap: 5px;
}

.header-contact_button .button {
    font-size: 10px;
    padding: 0 8px;
}

}

.grecaptcha-badge {
visibility: hidden !important;
}
