html,
body {
    box-sizing: border-box;
    margin: 0 auto;
    font-family: var(--font-family-gilroy);
}

body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb {
    visibility: hidden;
}

/* Header */

.site-header {
    position: sticky;
    top: -44px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-around;
    width: 100%;
    border-bottom: 1px solid rgba(185, 195, 206, 0.4);
}

.header-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    background-color: #1c1c1c;
}

.header-top__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
}

.header-top__left,
.header-top__right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.8em;
}

.language-btn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: none;
    width: 100%;
    height: 20px;
    gap: .5em;
    background: transparent;
}

.language-btn::after {
    content: none;
}

.language-btn > img {
    width: 20px;
    height: 20px;
}

.language-btn-text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    text-align: center;
    color: #fff;
}

.language-btn-arrow {
    stroke-width: 2px;
    stroke: #fff;
}

.dropdown-menu {
    min-width: 100%;
    background-color: #1c1c1c;
    border-radius: 8px;
    padding: 0;
    margin-top: 0.5rem;
}
  
.dropdown-item {
    color: #fff;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
}
  
.dropdown-item:hover {
    background-color: rgba(143, 143, 143, 0.91);
}

.header-top__menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 1.8em;
}

.header-top__item-new > a {
    color: #e41d2f;
}

.header-top__item-new > a:hover {
    color: #b81f2c;
}

.header-top__item > a {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    text-align: center;
    color: #fff;
}

.header-top__item > a:hover {
    color: #d6d6d6;
}

.header-top__right-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    text-align: center;
    color: #fff;
}

.header-top__right-links:hover {
    color: #d6d6d6;
}

.header-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    background-color: #fff;
}

.header-main__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px 10px;
}

.header-main__nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
}

.mobile-menu-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 10px;
    border: 1px solid #c2c6d2;
    border-radius: 30px;
}

.search-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 200px;
    height: 40px;
    padding: 5px 5px 5px 0px;
    gap: .5em;
    border: 1px solid #c2c6d2;
    border-radius: 30px;
    background-color: rgba(194, 198, 210, 0.5);
    overflow: hidden;
}

.search-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    padding: 10px;
    width: 50px;
    height: 40px;
    background-color: #1c1c1c;
}

.search-input {
    flex-grow: 1;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 12px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #585b64;
}

.header-main__nav-links {
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    gap: .5em;
    padding: 0;
    margin: 0;
}
  
.header-main__nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px 9px 12px;
    border-radius: 30px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease-in-out;
}
  
.header-main__nav-link:hover {
    background-color: #d7d8de;
}

.separator {
    background-color: #000;
    height: 22px;
    width: 2px;
}

.header-main__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: .5em;
}

.availability-btn,
.header-phone,
.call-me-back-btn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    gap: .5em;
    height: 40px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
}

.availability-btn::after {
    content: none;
}

.availability-dropdown-menu {
    display: none;
    min-width: 220px;
    width: 100%;
    border-radius: 8px;
    border: none;
    padding: 18px;
    margin: 0;
    gap: .5em;
    box-shadow: 0 0 42px 0 rgba(0, 0, 0, 0.25);
    background: #fff;
}

.availability-dropdown-menu.show {
    display: flex;
    flex-direction: column;
} 

.availability-dropdown-item {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
}

.dropdown-item-name {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: rgba(0, 0, 0, 0.5);
}

.availability-dropdown-link {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 3px 4px 3px 2px;
    gap: 3px;
    border-radius: 8px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #000;
}

.availability-dropdown-link:hover {
    background-color: #d7d8de;
}

.availability-btn,
.header-phone {
    background-color: #d7d8de;
    color: #000;
}

.availability-btn-arrow {
    stroke-width: 2px;
    stroke: rgba(0, 0, 0, 0.5);
}

.call-me-back-btn {
    background: #e41d2f;
    color: #fff;
}

.call-me-back-btn img {
    height: 1em;
    width: auto;
    display: inline-block;
    vertical-align: middle; 
}


/* Mobile Menu */

.offcanvas.mobile-menu {
    top: 0 !important;
    height: 100%;
    background: #f8f9fa;
}
  
.mobile-menu__header.offcanvas-header {
    font-size: 20px;
    font-weight: 600;
    color: #1c1c1c;
}
  
.mobile-menu__body.offcanvas-body {
    padding: 0;
    overflow-y: auto;
}
  
.mobile-menu__nav {
    display: flex;
    flex-direction: column;
}
  
.mobile-menu__section {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #fff;
}
  
.mobile-menu__subtitle {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1c1c1c;
}
  
.mobile-menu__link {
    margin-bottom: 8px;
}
  
.mobile-menu__link a {
    font-size: 16px;
    font-weight: 600;
    color: #1c1c1c;
    text-decoration: none;
}

.mobile-menu__link--contacts, 
.mobile-menu__link--offices {
    font-size: 16px;
    font-weight: 600;
    color: #1c1c1c;
    text-decoration: none;
    margin: 0;
}
  
.mobile-menu__highlight {
    color: #e41d2f;
}
  
.mobile-menu__collapse-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    padding: 0;
}
  
.mobile-menu__collapse-body {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}
  
.mobile-menu__collapse-body a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: #000;
    text-decoration: none;
}
  
.availability-collapse__block {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
  
.availability-collapse__block:last-child {
    border-bottom: none;
}
  
.availability-collapse__block strong {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}
  
.availability-collapse__block a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #000;
    margin-bottom: 4px;
}
  
.mobile-menu__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
  
.mobile-menu__phone {
    font-weight: 700;
    font-size: 16px;
    color: #000;
    text-decoration: none;
}
  
.mobile-menu__callback {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    color: #e41d2f;
}

/* Contacts */
  
.page-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: 2em 4em 6em 4em;
    gap: 2em;
}

.contact-title {
    font-weight: 600;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #000;
    margin: 0;
}

.contact-block {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 4em;
}

.contact-form {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
}

/* Contact Form */

.wpcf7-form {
    max-width: 500px;
    margin: 0 auto;
    background: #d7d8de;
    border-radius: 20px;
    padding: 40px;
}

.callback-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 1em;
}

.callback-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -0.04em;
    text-align: center;
    color: #000;
}

.main-fields {
    display: flex    ;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    gap: 5px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #000;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form input:focus-visible,
.wpcf7-form textarea:focus-visible {
	outline: none;              
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
	border: 2px solid rgb(0 0 0 / 39%);
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: rgba(18, 18, 18, 0.3);
}

.wpcf7-form > label {
    display: none;
}

.region-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1em;
}

.region-label {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 3px;
}

.region-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #121212;
}

.region-sub {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: rgba(18, 18, 18, 0.5);
}

.region-options {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.region-options .wpcf7-form-control-wrap {
    width: 100%;
}

.region-options .wpcf7-radio {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 5px;
}

.region-options .wpcf7-list-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.region-options .wpcf7-list-item label {
    width: 100%;
}

.region-options input[type="radio"] {
    display: none;
}

.region-options .wpcf7-list-item-label {
    display: flex;    
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1em 2em;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #121212;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
}

.region-options input[type="radio"]:checked + .wpcf7-list-item-label {
    border-color: #e14c5b;
    box-shadow: 0 0 0 2px rgba(225,76,91,.2);
}

.field-last input[type="text"] {
    text-align: left;
}

.callback-submit {
    width: 100%;
    padding: 17px 21px;
    background-color: #e41d2f;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease;
}

.callback-submit:hover {
    background-color: #b81f2c;
}

.wpcf7-spinner {
    display: none;
}

/* Shop */

.shop-wrapper.parent {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, auto);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
    
.shop-wrapper.parent .div1 { 
    grid-area: 1 / 1 / 6 / 2; 
    position: relative;
}

.shop-wrapper.parent .div2 { 
    grid-area: 1 / 2 / 2 / 6;
}

.shop-wrapper.parent .div3 { 
    grid-area: 2 / 2 / 5 / 6; 
    padding: 30px 30px 0 0;
}

.shop-wrapper.parent .div4 { 
    grid-area: 5 / 2 / 6 / 6; 
    padding: 0 2em 0 0;
}

/*УДАЛИТЬ ПРИ ВОЗВРАЩЕНИИ SHOP-HEADER*/
.shop-wrapper.parent.no-hero .div4 {
    grid-area: 2 / 2 / 6 / 6;
    padding: 2em 2em 0 0;
}
/*УДАЛИТЬ ПРИ ВОЗВРАЩЕНИИ SHOP-HEADER*/

.shop-wrapper.parent.is-collection-view {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, auto);
    padding: 0 0 5em 0;
}

.shop-wrapper.parent.is-collection-view .div1 { 
    grid-area: 1 / 1 / 6 / 2;
}

.shop-wrapper.parent.is-collection-view .div2 {
    grid-area: 1 / 2 / 2 / 6;    
    padding: 0 20px 0 30px;
}

.shop-wrapper.parent.is-collection-view .div3 {
    grid-area: 2 / 2 / 6 / 5;
    padding: 0;
}

.shop-wrapper.parent.is-collection-view .div4 {
    grid-area: 2 / 5 / 6 / 6;
    padding: 20px;
}

/* Footer */

.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px;
    border-top: 1px solid #b9c3ce
}  

.footer-container {
    display: flex    ;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 60px 200px;
    gap: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
  
.footer-subscribe {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    width: 660px;
    height: 734px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}
  
.footer-subscribe-inner {
    background: rgba(28, 28, 28, 0.95);
    border-radius: 5px;
    padding: 30px;
    width: 100%;
    max-width: 420px;
    color: #fff;
    text-align: left;
}
  
.footer-subscribe-inner h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #fff;
}
  
.footer-subscribe-inner p {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.04em;
    color: #fff;
}
  
.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.subscribe-form-email {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 17px 24px;
    width: 100%;
    height: 50px;
    backdrop-filter: blur(24px);
    background-color: #1c1c1c;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}
  
.subscribe-form-submit {
    border: 1px solid rgba(13, 13, 13, 0.11);
    border-radius: 10px;
    padding: 17px 24px;
    width: 100%;
    height: 50px;
    backdrop-filter: blur(24px);
    background-color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #0d0d0d;
}
  
.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.footer-logo > img {
    width: 100%;
}
  
.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 0px;
}
  
.footer-col h4 {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}
  
.footer-link {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.04em;
    color: #fff;
}

.footer-link:hover {
    color: #d6d6d6;
}

.see-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #E41D2F;
    transition: color 0.2s ease-in-out;
}

.see-all-link:hover {
    color: #b81f2c;
}

.see-all-link img {
    transition: transform 0.2s ease-in-out;
}

.see-all-link:hover img {
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 0px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
  
.footer-contacts h4 {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

.footer-legal {
    display: flex;
    gap: 16px;
    font-size: 12px;
    justify-content: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 0px;
}
  
.footer-legal-link {
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.04em;
    color: #fff;
}

.footer-legal-link:hover {
    color: #d6d6d6;
}

/* Admin Bar */

body.admin-bar .site-header {
	top: 30px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .site-header {
		top: 30px;
	}
}

/* Test */

.no-results-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 40px 20px;
}

.no-results-content {
    text-align: center;
    max-width: 500px;
}

.no-results-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
    opacity: 0.5;
}

.no-results-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.no-results-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.no-results-actions {
    margin-bottom: 40px;
}

.popular-collections-suggestion {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.popular-collections-suggestion h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.popular-collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.popular-collection-card {
    display: block;
    text-align: center;
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.popular-collection-card:hover {
    border-color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.popular-collection-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 12px;
}

.popular-collection-card span {
    display: block;
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 768px) {
    .popular-collections-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .no-results-icon {
        width: 80px;
        height: 80px;
    }
    
    .no-results-title {
        font-size: 20px;
    }
}