/* Shop General Styles - Migrated from MestoPivo.Web.Net10 */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&family=Unbounded:wght@200..900&display=swap');

/* ===== GLOBAL STYLES ===== */
html, body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e1e1e;
    color: #ffffff;
    min-height: 100vh;
}
body {
    display: flex;
    flex-direction: column;
}

* {
    box-sizing: border-box;
}

h1:focus {
    outline: none;
}

/* Main content wrapper */
main {
    flex: 1 0 auto;
    width: 100%;
    background-color: #1a1a1a;
}

/* Button Styles */
.btn-outline {
    border-radius: 4px;
    border-style: solid;
    border-color: #ffc75b;
    border-width: 1px;
    padding: 16px 44px 16px 44px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    color: #ffffff;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    background: none;
    text-decoration: none;
    cursor: pointer;
}

.btn-outline:hover {
    color: #1e1e1e;
    background: #ffc75b;
}

.btn-outline-black {
    display: flex;
    padding: 1rem 2.75rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: 0.25rem;
    border: 1px solid #1E1E1E;
    color: #1E1E1E;
    font-family: Montserrat;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background: none;
    text-decoration: none;
    cursor: pointer;
}

/* ===== HEADER STYLES ===== */
.header {
    --header-bg: #282828;
    --header-text-gray: #8b8b8b;
    --header-text-light-gray: #989898;
    --header-accent: #ffc75b;
    --header-font-mont: 'Montserrat', sans-serif;
    --container-max-width: 84.375rem; /* 1350px */
    font-size: 16px;
}

.header {
    background: var(--header-bg);
    width: 100%;
    box-sizing: border-box;
    font-family: var(--header-font-mont);
}

.header__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 1.25rem;
    box-sizing: border-box;
}

/* Desktop Header */
@media (min-width: 48rem) {
    .header__mobile {
        display: none;
    }

    .header__desktop {
        display: block;
    }

    .header__top-bar {
        background: var(--header-bg);
        padding: 1.25rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .header__top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__contact-group {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    .header__contact-item {
        display: flex;
        gap: 0.75rem;
        align-items: center;
    }

    .header__icon {
        width: 1.25rem;
        height: 1.25rem;
        flex-shrink: 0;
    }

    .header__contact-text {
        color: var(--header-text-gray);
        font-size: 0.75rem;
        font-weight: 500;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .header__logo-menu {
        background: var(--header-bg);
        padding: 1.25rem 0;
    }

    .header__logo-menu-row {
        display: flex;
        gap: 4.625rem;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .header__logo {
        width: 9.3125rem;
        height: auto;
        object-fit: cover;
        flex-shrink: 0;
    }

    .header__nav {
        display: flex;
        gap: 2.5rem;
        align-items: center;
        flex-wrap: wrap;
        flex: 1;
    }

    .header__nav-item {
        color: var(--header-text-light-gray);
        font-size: 0.875rem;
        font-weight: 500;
        text-transform: uppercase;
        text-decoration: none;
        padding: 0.25rem 0;
        position: relative;
        transition: color 0.2s ease;
        cursor: pointer;
        white-space: nowrap;
    }

    .header__nav-item:hover {
        color: var(--header-accent);
    }

    .header__nav-item.active {
        color: var(--header-accent);
        border-bottom: 1px solid var(--header-accent);
    }

    /* Кнопка личного кабинета */
    /* Используем .btn .btn-secondary .btn-sm из components.css */
    .header__account-btn {
        text-transform: uppercase;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .header__account-btn svg {
        flex-shrink: 0;
    }

    /* Dropdown menu styles */
    .header__nav-item-dropdown {
        position: relative;
    }

    /* Невидимая зона для комфортной навигации */
    .header__nav-item-dropdown::before {
        content: '';
        position: absolute;
        top: 100%;
        left: -1rem;
        right: -1rem;
        height: 0.5rem;
        background: transparent;
        z-index: 999;
    }

    .header__dropdown-content {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        background: var(--header-bg);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 0.25rem;
        min-width: 12rem;
        padding: 0.5rem 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        z-index: 1000;
    }

    .header__nav-item-dropdown:hover .header__dropdown-content,
    .header__nav-item-dropdown:hover::before {
        display: block;
    }

    .header__dropdown-item {
        display: block;
        padding: 0.75rem 1.25rem;
        color: var(--header-text-light-gray);
        font-size: 0.875rem;
        font-weight: 500;
        text-transform: uppercase;
        text-decoration: none;
        transition: background 0.2s ease, color 0.2s ease;
        white-space: nowrap;
    }

    .header__dropdown-item:hover {
        background: rgba(255, 168, 0, 0.1);
        color: var(--header-accent);
    }
}

/* Mobile Header */
@media (max-width: 47.9375rem) {
    .header__desktop {
        display: none;
    }

    .header__mobile {
        display: block;
        background: var(--header-bg);
    }

    .header__mobile-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.25rem;
        background: var(--header-bg);
        max-width: var(--container-max-width);
        margin: 0 auto;
    }

    .header__burger {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header__mobile-menu {
        background: var(--header-bg);
        padding: 1rem 0 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        animation: slideDown 0.3s ease;
    }

    .header__mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .header__mobile-nav-item {
        color: var(--header-text-light-gray);
        font-size: 1rem;
        font-weight: 500;
        text-transform: uppercase;
        text-decoration: none;
        padding: 0.5rem 0;
        transition: color 0.2s ease;
        display: block;
    }

    .header__mobile-nav-item.active {
        color: var(--header-accent);
    }

    .header__mobile-nav-item.active .header__mobile-nav-link {
        border-bottom: 1px solid var(--header-accent);
    }

    .header__mobile-contacts {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .header__mobile-contact {
        display: flex;
        gap: 0.75rem;
        align-items: center;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-1rem);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ===== FOOTER STYLES ===== */
.footer {
    --footer-bg: #282828;
    --footer-text-gray: #8b8b8b;
    --footer-text-light-gray: #989898;
    --footer-font-mont: 'Montserrat', sans-serif;
    --container-max-width: 84.375rem;
    font-size: 16px;
}

.footer {
    background: var(--footer-bg);
    width: 100%;
    box-sizing: border-box;
    font-family: var(--footer-font-mont);
    padding: 2rem 0;
}

.footer__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 1.25rem;
    box-sizing: border-box;
}

@media (min-width: 48rem) {
    .footer__content {
        display: flex;
        flex-direction: row;
        gap: 17.0625rem;
        align-items: center;
        justify-content: flex-start;
    }

    .footer__info {
        display: flex;
        flex-direction: column;
        gap: 1.75rem;
        width: 15.3125rem;
        flex-shrink: 0;
    }

    .footer__logo-block {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        width: 100%;
    }

    .footer__logo {
        width: 100%;        
        object-fit: cover;
    }

    .footer__contacts-row {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
        width: 100%;
    }

    .footer__contact-item {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
        text-decoration:none;
    }

    .footer__icon {
        flex-shrink: 0;
        width: 1.25rem;
        height: 1.25rem;
        aspect-ratio: 1;
    }

    .footer__contact-text {
        color: var(--footer-text-gray);
        font-size: 0.75rem;
        font-weight: 500;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .footer__contacts-block {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        justify-content: center;
    }

    .footer__menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 26.625rem;
        gap: 2.5rem;
    }

    .footer__menu-col {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer__link {
        color: var(--footer-text-light-gray);
        font-size: 0.875rem;
        font-weight: 500;
        text-transform: uppercase;
        text-decoration: none;
        transition: color 0.2s ease;
        white-space: nowrap;
    }

    .footer__link:hover {
        color: var(--footer-text-gray);
    }
}

@media (max-width: 47.9375rem) {
    .footer__content {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .footer__info {
        display: flex;
        flex-direction: column;
        gap: 1.75rem;
        width: 100%;
    }

    .footer__logo-block {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        width: 100%;
    }

    .footer__logo {
        width: 15.3125rem;        
        object-fit: cover;
    }

    .footer__contacts-row {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .footer__contact-item {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
        text-decoration: none;
    }

    .footer__icon {
        flex-shrink: 0;
        width: 1.25rem;
        height: 1.25rem;
        aspect-ratio: 1;
    }

    .footer__contact-text {
        color: var(--footer-text-gray);
        font-size: 0.75rem;
        font-weight: 500;
        text-transform: uppercase;
    }

    .footer__contacts-block {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        justify-content: center;
    }

    .footer__menu {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        width: 100%;
    }

    .footer__menu-col {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer__link {
        color: var(--footer-text-light-gray);
        font-size: 0.875rem;
        font-weight: 500;
        text-transform: uppercase;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer__link:hover {
        color: var(--footer-text-gray);
    }
}

.shop-footer a:hover {
    color: white;
}

.shop-footer .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Buttons - From MestoPivo */
.btn-outline {
    border-radius: 4px;
    border-style: solid;
    border-color: var(--shop-primary);
    border-width: 1px;
    padding: 16px 44px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    color: #ffffff;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    background: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-outline:hover {
    color: var(--shop-dark);
    background: var(--shop-primary);
}

.btn-outline-black {
    display: flex;
    padding: 1rem 2.75rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: 0.25rem;
    border: 1px solid var(--shop-dark);
    color: var(--shop-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-outline-black:hover {
    background: var(--shop-dark);
    color: white;
}

.btn-hero {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-hero:hover {
    background: white;
    color: var(--shop-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--shop-secondary);
    margin: 0;
}

/* Form Validation - From MestoPivo */
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Mobile Dropdown Menu Styles */
.header__mobile-dropdown {
    display: flex;
    flex-direction: column;
}

.header__mobile-dropdown-toggle {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__mobile-dropdown-toggle::after {
    content: '▼';
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.header__mobile-dropdown.active .header__mobile-dropdown-toggle::after {
    transform: rotate(180deg);
}

.header__mobile-dropdown-content {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.header__mobile-dropdown.active .header__mobile-dropdown-content {
    display: flex;
}

.header__mobile-dropdown-item {
    color: var(--header-text-light-gray);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    display: block;
}

.header__mobile-dropdown-item:hover {
    color: var(--header-accent);
}

/* Mobile Account Button */
.header__mobile-account-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--header-accent, #ffc75b);
    border-radius: 0.25rem;
    color: var(--header-accent, #ffc75b);
    font-family: var(--header-font-mont, 'Montserrat', sans-serif);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.header__mobile-account-btn:hover {
    background: var(--header-accent, #ffc75b);
    color: #1e1e1e;
}

.header__mobile-account-btn svg {
    flex-shrink: 0;
}


.container {
    max-width: 84.375rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.frame-2085660344 {
    background: #282828;
    height: 7.5rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}



.image-297 {
    width: 567.84px;
    height: 567.84px;
    position: absolute;
    left: 745.32px;
    top: -288px;
    transform-origin: 0 0;
    transform: rotate(37.836deg) scale(1, 1);
    filter: blur(5px);
    object-fit: cover;
    aspect-ratio: 1;
}

.image-298 {
    width: 18.19175rem;
    height: 18.19175rem;
    transform: rotate(-50.000deg) scale(1, 1);
    filter: blur(5px);
    position: absolute;
    right: -5rem;
    top: -204px;
    object-fit: cover;
    aspect-ratio: 1;
}

