@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

/* Root font sizes for responsive typography */
:root {
    --font-size-base: 14px;
    --font-size-lg: 16px;
    --container-max-width: 1367px;
}

/* Responsive container */
.container-fluid {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Header Styles */
.top-header {
    background-color: #ECECEC;
    color: #6B6B6B;
    padding: 10px 0;
    font-family: 'Montserrat', sans-serif;
}

.top-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left menu */
.top-header__menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.top-header__menu a {
    color: #6B6B6B;
    text-decoration: none;
    font-weight: 400;
    font-size: var(--font-size-base);
    line-height: 140%;
    letter-spacing: 0;
    transition: color 0.3s;
}

.top-header__menu a:hover {
    color: #2E2828;
}

/* Right section */
.top-header__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* City selector */
.city-selector {
    display: flex;
    align-items: center;
    gap: 5px;
}

.city-selector select {
    border: none;
    background: transparent;
    color: #6B6B6B;
    cursor: pointer;
    font-weight: 400;
    font-size: var(--font-size-base);
    line-height: 140%;
    letter-spacing: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Phone */
.phone a {
    color: #6B6B6B;
    text-decoration: none;
    font-weight: 400;
    font-size: var(--font-size-base);
    line-height: 140%;
    letter-spacing: 0;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: #6B6B6B;
    text-decoration: none;
    transition: color 0.3s;
    font-size: var(--font-size-base);
    line-height: 140%;
}

.social-icons a:hover {
    color: #2E2828;
}

/* Language switcher */
.language-switcher {
    display: flex;
    gap: 5px;
    align-items: center;
}

.language-switcher a {
    color: #6B6B6B;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
    font-size: var(--font-size-lg);
    line-height: 148%;
    letter-spacing: 0;
}

.language-switcher a.active {
    color: #2E2828;
}

.language-switcher span {
    color: #6B6B6B;
    font-weight: 600;
    font-size: var(--font-size-lg);
    line-height: 148%;
}

/* Responsive styles */
@media (max-width: 1200px) {
    :root {
        --font-size-base: 12px;
        --font-size-lg: 14px;
    }

    .container-fluid {
        padding: 0 20px;
    }

    .top-header__menu ul {
        gap: 15px;
    }

    .top-header__right {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    :root {
        --font-size-base: 10px;
        --font-size-lg: 13px;
    }

    .top-header__menu ul {
        gap: 10px;
    }

    .top-header__right {
        gap: 10px;
    }
}

/* Hide on mobile */
@media (max-width: 991px) {
    .top-header {
        display: none;
    }
}

/* Global responsive typography */
body {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: calc(var(--font-size-base) * 2.5);
    line-height: 140%;
}

h2 {
    font-size: calc(var(--font-size-base) * 2);
    line-height: 140%;
}

h3 {
    font-size: calc(var(--font-size-base) * 1.75);
    line-height: 140%;
}

h4 {
    font-size: calc(var(--font-size-base) * 1.5);
    line-height: 140%;
}

h5 {
    font-size: calc(var(--font-size-base) * 1.25);
    line-height: 140%;
}

p, span, a, li, button, input, select, textarea {
    font-size: var(--font-size-base);
    line-height: 140%;
}

/* Main Header Styles */
.main-header {
    background-color: #2E2828;
    padding: 10px 32px;
    margin-top: 0;
}

.main-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.main-header__logo {
    flex-shrink: 0;
}

.main-header__logo img {
    height: 32px;
    width: auto;
}

/* Catalog Button */
.catalog-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 136%;
    letter-spacing: 0;
    cursor: pointer;
    padding: 0;
}

.catalog-btn i {
    font-size: 24px;
}

/* Search */
.main-header__search {
    flex-grow: 1;
    max-width: 800px;
}

.search-wrapper {
    position: relative;
    width: 100%;
}

.search-wrapper input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0;
}

.search-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    background: #FFD600;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn i {
    color: #2E2828;
    font-size: 18px;
}

/* Right Actions */
.main-header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.action-btn {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: opacity 0.3s;
    position: relative;
    display: flex;
    align-items: center;
}

.action-btn:hover {
    opacity: 0.8;
}

.action-btn .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF0000;
    color: #fff;
    font-size: 12px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.auth-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0;
}

.auth-links span {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

/* Mobile Header */
.mobile-header {
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-btn,
.mobile-search-btn,
.mobile-action-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 5px;
    cursor: pointer;
    position: relative;
}

.mobile-action-btn .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF0000;
    color: #fff;
    font-size: 12px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.mobile-logo img {
    height: 24px;
    width: auto;
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .main-header {
        padding: 10px 20px;
    }

    .main-header__inner {
        gap: 16px;
    }

    .catalog-btn {
        font-size: 16px;
    }

    .main-header__actions {
        gap: 16px;
    }
}

@media (max-width: 991px) {
    .main-header__inner > *:not(.mobile-header) {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .main-header {
        padding: 8px 16px;
    }
}

/* Search Styles Override */
#search input {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0;
    background: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    width: 100%;
}

/* Custom Cart Styles */
.custom-cart {
    display: none;
}

.cart-total {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .cart-total {
        display: none;
    }
}

/* Override default OpenCart cart styles */
#cart {
    display: none !important;
}

/* Navigation Header Styles */
.nav-header {
    background: #fff;
    border-bottom: 1px solid #F3F3F3;
    padding: 16px 0;
}

.nav-header__inner {
    display: flex;
    align-items: center;
    max-width:1367px !important;
    margin: 0 auto;

}

.nav-header__menu {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 32px;
}

.nav-header .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0;
    color: #2E2828;
    text-decoration: none;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.nav-header .nav-link:hover {
    opacity: 0.8;
}

.nav-header .nav-link--accent {
    color: #F2461D;
    font-weight: 600;

}

.nav-header .nav-link--accent:first-of-type {
    margin-left: 0;
}

.nav-divider {
    width: 2px;
    height: 24px;
    background: #ECECEC;
}

@media (max-width: 1200px) {
    .nav-header__menu {
        padding: 0 20px;
        gap: 24px;
    }
    
    .nav-divider {
        margin: 0 24px;
    }
    
    .nav-header .nav-link--accent {
        margin-left: 24px;
    }
}

/* Hide on mobile */
@media (max-width: 991px) {
    .nav-header {
        display: none;
    }
}

/* Hero Sliders Section */
.hero-sliders {
    padding: 32px 0;
    margin: 0;
    width: 100%;
    background: #fff;
}

.hero-sliders__inner {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* Main Slider */
.main-slider {
    width: 70%;
    height: 400px;
    position: relative;
    border-radius: 4px;
}

.main-slider .swiper {
    width: 100%;
    height: 100%;
}

.main-slider .swiper-wrapper {
    height: 100%;
}

.main-slider .swiper-slide {
    text-align: center;
    background: #fff;
}

.main-slider__item {
    width: 100%;
    height: 400px;
}

.main-slider__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Secondary Slider */
.secondary-slider {
    width: 30%;
    height: 400px;
    position: relative;
    border-radius: 4px;
}

.secondary-slider .swiper {
    width: 100%;
    height: 100%;
}

.secondary-slider .swiper-wrapper {
    height: 100%;
}

.secondary-slider .swiper-slide {
    text-align: center;
    background: #fff;
}

.secondary-slider__item {
    width: 100%;
    height: 400px;
}

.secondary-slider__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Pagination Styles */
.swiper-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 20px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-sliders {
        padding: 20px 0;
    }

    .hero-sliders__inner {
        flex-direction: column;
        gap: 16px;
    }

    .main-slider,
    .secondary-slider {
        width: 100%;
    }
}

/* Popular Categories Section */
.popular-categories {
    padding: 48px 0;
    background: #fff;
}

.popular-categories__inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.popular-categories__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.popular-categories__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 130%;
    letter-spacing: 0;
    color: #2E2828;
    margin: 0;
}

.popular-categories__link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 148%;
    color: #2E2828;
    text-decoration: none;
    transition: opacity 0.3s;
}

.popular-categories__link:hover {
    opacity: 0.8;
}

.popular-categories__link i {
    font-size: 14px;
}

.popular-categories__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.category-card {
    text-decoration: none;
    color: #2E2828;
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card__image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    background: #F9F9F9;
    margin-bottom: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    
}

.category-card__title {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 148%;
    color: #2E2828;
    text-align: center;
}

@media (max-width: 1200px) {
    .popular-categories__grid {
        gap: 16px;
    }

    .category-card__title {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .popular-categories {
        padding: 24px 0;
    }

    .popular-categories__inner {
        padding: 0 16px;
    }

    .popular-categories__header {
        margin-bottom: 24px;
    }

    .popular-categories__title {
        font-size: 20px;
    }

    .popular-categories__link {
        font-size: 14px;
    }

    .popular-categories__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .category-card__image {
        aspect-ratio: 1;
        margin-bottom: 8px;
    }

    .category-card__image img {
        padding: 12px;
    }

    .category-card__title {
        font-size: 12px;
        line-height: 140%;
    }
}

@media (max-width: 576px) {
    .popular-categories {
        padding: 20px 0;
    }

    .popular-categories__title {
        font-size: 18px;
    }

    .popular-categories__link {
        font-size: 12px;
    }

    .popular-categories__grid {
        gap: 8px;
    }

    .category-card__title {
        font-size: 11px;
    }
}

/* Return Policy Page Styles */
.return-policy {
    padding: 24px 0 48px;
    background: #fff;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin: 25px;
}

.breadcrumb-nav__inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-nav__link {
    color: #A6A5A5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.breadcrumb-nav__link:hover {
    color: #2E2828;
}

.breadcrumb-nav__separator {
    color: #A6A5A5;
    font-size: 12px;
}

.breadcrumb-nav__current {
    color: #A6A5A5;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
}

/* Container */
.return-policy__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* Title */
.return-policy__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 130%;
    color: #2E2828;
    margin: 0 0 40px;
}

/* Content Layout */
.return-policy__content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Left Navigation */
.return-policy__nav {
    position: sticky;
    top: 24px;
    align-self: start;
}

.return-policy__nav-header {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 148%;
    color: #2E2828;
    margin-bottom: 16px;
}

.return-policy__nav-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.return-policy__nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #6B6B6B;
    text-decoration: none;
    transition: color 0.3s;
    padding: 8px 0;
}

.return-policy__nav-link:hover,
.return-policy__nav-link.active {
    color: #2E2828;
}

.return-policy__nav-link i {
    margin-right: 12px;
    width: 20px;
    color: #2E2828;
}

.return-policy__nav-link.active i {
    color: #FFE817;
}

/* Content Sections */
.return-policy__section {
    margin-bottom: 48px;
}

.return-policy__section:last-child {
    margin-bottom: 0;
}

.return-policy__section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: #2E2828;
    margin: 0 0 24px;
}

.return-policy__section p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    color: #2E2828;
    margin: 0 0 16px;
}

.return-policy__section ul {
    padding-left: 20px;
    margin: 16px 0;
}

.return-policy__section li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    color: #2E2828;
    margin-bottom: 8px;
}

.return-policy__warning,
.return-policy__note {
    background: #FFF6F6;
    border-radius: 4px;
    padding: 24px;
    margin: 24px 0;
}

.return-policy__warning p:last-child,
.return-policy__note p:last-child {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .return-policy {
        padding: 16px 0 32px;
    }

    .return-policy__container {
        padding: 0 16px;
    }

    .return-policy__title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .return-policy__content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .return-policy__nav {
        position: static;
        margin-bottom: 24px;
    }

    .return-policy__section h2 {
        font-size: 20px;
    }

    .return-policy__section p,
    .return-policy__section li {
        font-size: 14px;
    }
}

/* Modal Auth Styles */
.modal-auth {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-auth.active {
    display: flex;
    opacity: 1;
}

.modal-auth__content {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-auth.active .modal-auth__content {
    transform: translateY(0);
}

.modal-auth__close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #C4C4C4;
}

.modal-auth__tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 30px;
}

.modal-auth__tab {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 134%;
    background: none;
    border: none;
    padding: 0 0 10px;
    color: #C4C4C4;
    cursor: pointer;
    position: relative;
}

.modal-auth__tab.active {
    color: #FD7200;
}

.modal-auth__tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FD7200;
}

.modal-auth__tab-content {
    display: none;
}

.modal-auth__tab-content.active {
    display: block;
}

.modal-auth .form-group {
    margin-bottom: 10px;
}

.modal-auth .form-group--flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-auth .form-control {
    width: 100%;
    padding: 8px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.modal-auth .password-wrapper {
    position: relative;
}

.modal-auth .password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #C4C4C4;
}

.modal-auth .checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #6B6B6B;
    font-family: 'Montserrat', sans-serif;
}

.modal-auth .forgot-password {
    color: #FD7200;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.modal-auth .btn-primary {
    width: 100%;
    background: #FD7200;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    margin-bottom: 10px;
    font-size: 16px;
}

.modal-auth .btn-primary:hover {
    background: #e66700;
}

.modal-auth__social {
    text-align: center;
}

.modal-auth__social p {
    color: #C4C4C4;
    margin: 20px 0;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.modal-auth__social p::before,
.modal-auth__social p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #E0E0E0;
}

.modal-auth__social p::before {
    left: 0;
}

.modal-auth__social p::after {
    right: 0;
}

.modal-auth .social-buttons {
    display: flex;
    gap: 10px;
}

.modal-auth .social-buttons button {
    flex: 1;
    padding: 10px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    background: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #2E2828;
    transition: all 0.3s ease;
}

.modal-auth .social-buttons button:hover {
    background: #f5f5f5;
}

.modal-auth .google-btn i {
    color: #DB4437;
}

.modal-auth .facebook-btn i {
    color: #4267B2;
}

/* Checkbox custom style */
.modal-auth .checkbox-container input {
    display: none;
}

.modal-auth .checkbox-container .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #E0E0E0;
    border-radius: 3px;
    display: inline-block;
    position: relative;
}

.modal-auth .checkbox-container input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #FD7200;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Mobile styles */
@media (max-width: 576px) {
    .modal-auth__content {
        margin: 15px;
        padding: 20px;
    }

    .modal-auth__tabs {
        gap: 20px;
    }

    .modal-auth__tab {
        font-size: 16px;
    }
}

.modal-auth .form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 134%;
    color: #2E2828;
    margin-bottom: 4px;
}

.modal-auth .form-group .checkbox-container {
    font-weight: 400;
    font-size: 14px;
}

.modal-auth .checkbox-container .checkbox-text {
    color: #6B6B6B;
}

.modal-auth .policy-link {
    color: #FD7200;
    text-decoration: none;
}

.modal-auth .policy-link:hover {
    text-decoration: underline;
}

.modal-auth .form-control {
    font-size: 16px;
    color: #2E2828;
}

.modal-auth .form-control::placeholder {
    color: #C4C4C4;
}

/* New Products Section */
.new-products {
    padding: 48px 0;
    background: #fff;
}

.new-products__inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.new-products__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.new-products__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 130%;
    color: #2E2828;
    margin: 0;
}

.new-products__link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 148%;
    color: #2E2828;
    text-decoration: none;
    transition: opacity 0.3s;
}

.new-products__link:hover {
    opacity: 0.8;
}

.new-products__content {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.new-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 75%;
    height: 100%;
}

.new-products__slider {
    width: 25%;
    height: 100% !important;
    border-radius: 4px;
    overflow: hidden;
}

.new-products__slider .swiper-wrapper,
.new-products__slider .swiper-slide {
    height: 100% !important;
}

.new-products__slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Card Styles */
.product-card {
    position: relative;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card__image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #F9F9F9;
}

.product-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #4CA30D;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 148%;
}

.product-card__favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #2E2828;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    z-index: 1;
}

.product-card__content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #fff;
}

.product-card__brand {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #A6A5A5;
    margin-bottom: 8px;
}

.product-card__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 146%;
    color: #2E2828;
    margin: 0 0 8px;
    flex-grow: 1;
}

.product-card__specs {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #A6A5A5;
    margin-bottom: 12px;
}

.product-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.product-card__rating i {
    color: #FFD600;
}

.product-card__reviews {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #A6A5A5;
}

.product-card__price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.price-new {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 136%;
    color: #2E2828;
}

.price-old {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #A6A5A5;
    text-decoration: line-through;
}

.product-card__button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 136%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    background: #FD7200;
    color: #fff;
}

.product-card__button.in-cart {
    background-color: #FFE3CC !important;
    color: #FD7200 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 136%;
    letter-spacing: 0;
}

.product-card__button .in-cart-text {
    display: none;
}

.product-card__button.in-cart .default-text {
    display: none;
}

.product-card__button.in-cart .in-cart-text {
    display: inline;
}

/* Mobile Styles */
@media (max-width: 991px) {
    .new-products {
        padding: 32px 0;
    }

    .new-products__inner {
        padding: 0 16px;
    }

    .new-products__header {
        margin-bottom: 24px;
    }

    .new-products__title {
        font-size: 22px;
    }

    .new-products__link {
        font-size: 14px;
    }

    .new-products__content {
        flex-direction: column;
        min-height: auto;
    }

    .new-products__grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .new-products__slider {
        display: none;
    }

    /* Product Card Mobile Styles */
    .product-card__badge {
        font-size: 14px;
        padding: 3px 6px;
    }

    .product-card__favorite {
        font-size: 18px;
    }

    .product-card__content {
        padding: 12px;
    }

    .product-card__brand {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .product-card__title {
        font-size: 14px;
        line-height: 130%;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-card__specs {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .product-card__rating {
        margin-bottom: 8px;
    }

    .product-card__rating i {
        font-size: 14px;
    }

    .product-card__reviews {
        font-size: 12px;
    }

    .product-card__price {
        margin-bottom: 12px;
    }

    .price-new {
        font-size: 16px;
    }

    .price-old {
        font-size: 14px;
    }

    .product-card__button {
        font-size: 14px;
        padding: 8px;
    }
}

/* Small Mobile Styles */
@media (max-width: 375px) {
    .new-products__grid {
        gap: 12px;
    }

    .product-card__content {
        padding: 10px;
    }

    .product-card__title {
        font-size: 13px;
    }

    .price-new {
        font-size: 14px;
    }

    .price-old {
        font-size: 12px;
    }

    .product-card__button {
        font-size: 13px;
        padding: 6px;
    }
}

/* Promotions Marquee */
.promotions-marquee {
    background: #FFE817;
    overflow: hidden;
    width: 100%;
    padding: 12px 0;
    margin: 50px 0;
}

.promotions-marquee__inner {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.promotions-marquee__content {
    display: flex;
    width: fit-content;
    animation: scroll 30s linear infinite;
}

.promotions-marquee__items {
    display: flex;
    gap: 32px;
    padding: 0 16px;
    white-space: nowrap;
}

.promotions-marquee__item {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0;
    color: #2E2828;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.promotions-marquee:hover .promotions-marquee__content {
    animation-play-state: paused;
}

/* Mobile styles */
@media (max-width: 991px) {
    .promotions-marquee {
        padding: 8px 0;
    }

    .promotions-marquee__items {
        gap: 24px;
    }

    .promotions-marquee__item {
        font-size: 14px;
    }
}

/* Promotions Section */
.promotions {
    padding: 48px 0;
    background: #fff;
}

.promotions__inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.promotions__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.promotions__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 130%;
    color: #2E2828;
    margin: 0;
}

.promotions__link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 148%;
    color: #2E2828;
    text-decoration: none;
    transition: opacity 0.3s;
}

.promotions__link:hover {
    opacity: 0.8;
}

.promotions__content {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.promotions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 75%;
    height: 100%;
}

.promotions__slider {
    width: 25%;
    height: 100% !important;
    border-radius: 4px;
    overflow: hidden;
}

.promotions__slider .swiper-wrapper,
.promotions__slider .swiper-slide {
    height: 100% !important;
}

.promotions__slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sale badge style */
.product-card__badge--sale {
    background: #F2461D;
}

/* Mobile Styles */
@media (max-width: 991px) {
    .promotions {
        padding: 32px 0;
    }

    .promotions__inner {
        padding: 0 16px;
    }

    .promotions__header {
        margin-bottom: 24px;
    }

    .promotions__title {
        font-size: 22px;
    }

    .promotions__link {
        font-size: 14px;
    }

    .promotions__content {
        flex-direction: column;
        min-height: auto;
    }

    .promotions__grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .promotions__slider {
        display: none;
    }
}

/* Small Mobile Styles */
@media (max-width: 375px) {
    .promotions__grid {
        gap: 12px;
    }
}

/* Room Lighting Section */
.room-lighting {
    padding: 48px 0 0;
    background: #fff;
}

.room-lighting__inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.room-lighting__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 130%;
    letter-spacing: 0;
    color: #2E2828;
    margin: 0 0 32px;
}

.room-lighting__slider {
    position: relative;
    margin: 0 -32px;
    padding: 0 32px;
}

.room-lighting__slider .swiper-wrapper {
    display: flex;
}

.room-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    width: 100%;
}

.room-card__image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.room-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-card__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0;
    color: #2E2828;
    text-align: center;
}

.room-lighting__slider .swiper-button-next {
    right: 0;
    color: #2E2828;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.room-lighting__slider .swiper-button-next::after {
    font-size: 16px;
}

/* Mobile Styles */
@media (max-width: 991px) {
    .room-lighting {
        padding: 32px 0 0;
    }

    .room-lighting__inner {
        padding: 0 16px;
    }

    .room-lighting__slider {
        margin: 0 -16px;
        padding: 0 16px;
    }

    .room-lighting__title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .room-card__title {
        font-size: 14px;
    }
}

/* Small Mobile Styles */
@media (max-width: 375px) {
    .room-lighting__slider {
        margin: 0 -12px;
        padding: 0 12px;
    }

    .room-card__title {
        font-size: 13px;
    }
}

/* Content Styles */
.content {
    padding: 48px 0;
}

.content__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 130%;
    color: #2E2828;
    margin: 0 0 32px;
}

.content__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

.content__sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
}

.content__menu {
    background: #F8F8F8;
    border-radius: 8px;
    padding: 24px;
}

.content__menu-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 148%;
    color: #2E2828;
    margin: 0 0 16px;
}

.content__menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content__menu-list li {
    margin-bottom: 12px;
}

.content__menu-list li:last-child {
    margin-bottom: 0;
}

.content__menu-list a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2E2828;
    text-decoration: none;
    transition: color 0.3s;
}

.content__menu-list a:hover {
    color: #FD7200;
}

.content__section {
    margin-bottom: 48px;
}

.content__section:last-child {
    margin-bottom: 0;
}

.content__section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: #2E2828;
    margin: 0 0 24px;
}

.content__section p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    color: #2E2828;
    margin: 0 0 16px;
}

.content__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.content__list li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    color: #2E2828;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.content__list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #FD7200;
    border-radius: 50%;
}

@media (max-width: 991px) {
    .content {
        padding: 32px 0;
    }

    .content__title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .content__inner {
        grid-template-columns: 1fr;
    }

    .content__sidebar {
        position: static;
    }

    .content__section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .content {
        padding: 24px 0;
    }

    .content__title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .content__menu {
        padding: 16px;
    }

    .content__section {
        margin-bottom: 32px;
    }

    .content__section-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .content__section p,
    .content__list li {
        font-size: 14px;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    visibility: hidden;
    opacity: 0;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
    visibility: visible;
    opacity: 1;
}

.mobile-menu__header {
    background: #2E2828;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu__close {
    background: #6B6B6B;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu__close i {
    font-size: 20px;
    color: #fff;
}

.mobile-menu__logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: auto;
}

.mobile-menu__logo img {
    height: 24px;
    width: auto;
}

.mobile-menu__lang {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.mobile-menu__lang a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 148%;
}

.mobile-menu__lang span {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.mobile-menu__content {
    padding: 16px;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu__link {
    color: #2E2828;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 148%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu__link i {
    font-size: 20px;
    color: #2E2828;
}

.mobile-menu__link--accent {
    color: #F2461D;
    font-weight: 600;
}

.mobile-menu__region {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
    margin: 8px 0;
}

.mobile-menu__region i {
    font-size: 20px;
    color: #2E2828;
}

.mobile-menu__region-select {
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #2E2828;
    padding: 4px;
    width: 100%;
}

.mobile-menu__link--contact {
    font-weight: 600;
    color: #2E2828;
}

.mobile-menu__social {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
    margin: 8px 0;
}

.mobile-menu__social-link {
    color: #2E2828;
    font-size: 20px;
    text-decoration: none;
}

.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__link .badge {
    background: #F2461D;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: auto;
}

.mobile-menu__auth {
    background: #3A3838;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.mobile-menu__auth-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 148%;
}

.mobile-menu__auth-separator {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

/* Cart Page Styles */
.cart-page {
    padding: 20px;
}

.cart-page__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 30px;
}

.cart-page__content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.cart-header {
    display: grid;
    grid-template-columns: 1fr 150px 150px;
    padding: 15px;
    background: #fff;
    border: 1px solid #E5E5E5;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0;
    color: #2E2828;
    text-align: center;
}

.cart-header__product {
    text-align: left;
    padding-left: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr 150px 150px;
    padding: 20px;
    border: 1px solid #E5E5E5;
    border-top: none;
    align-items: center;
}

.cart-item__product {
    display: flex;
    gap: 20px;
}

.cart-item__image {
    width: 100px;
    height: 100px;
    border: 1px solid #E5E5E5;
}

.cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item__details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-item__name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0;
    color: #2E2828;
    text-decoration: none;
}

.cart-item__manufacturer {
    color: #6B6B6B;
    font-size: 14px;
}

.remove-btn {
    background: none;
    border: none;
    color: #6B6B6B;
    padding: 0;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.remove-btn i {
    font-size: 16px;
}

.remove-btn:hover {
    color: #2E2828;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    width: fit-content;
    margin: 0 auto;
}

.quantity-control button {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 18px;
}

.quantity-control input {
    width: 40px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.cart-item__price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.price-old {
    color: #6B6B6B;
    text-decoration: line-through;
    font-size: 14px;
}

.price-new, .price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0;
    color: #2E2828;
}

.discount-badge {
    color: #FF3B30;
    font-weight: 500;
}

.cart-summary {
    background: #F9F9F9;
    padding: 20px;
    border-radius: 4px;
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.cart-summary__row.total {
    font-weight: 600;
    font-size: 18px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E5E5E5;
}

.cart-summary__checkout {
    display: block;
    width: 100%;
    padding: 15px;
    background: #FD7200;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    font-weight: 500;
}

.cart-empty {
    text-align: center;
    padding: 50px 20px;
}

.continue-shopping {
    display: inline-block;
    padding: 15px 30px;
    background: #FD7200;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
}

/* Страница оформления заказа */
.checkout-page {
  padding: 40px 0;
}

.checkout-page__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
  color: #2E2828;
  margin-bottom: 40px;
}

.checkout-page__content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
}

/* Секции формы */
.checkout-section {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.checkout-section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.checkout-section__number {
  width: 32px;
  height: 32px;
  background: #FD7200;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 600;
}

.checkout-section__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  color: #2E2828;
  margin: 0;
}

/* Поля формы */
.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

/* Способы доставки */
.delivery-methods {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.delivery-method {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.store-address {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
}

/* Сайдбар заказа */
.checkout-sidebar {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 24px;
}

.order-summary {
  margin-bottom: 24px;
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 16px;
}

.order-summary__row.total {
  font-weight: 600;
  font-size: 18px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E0E0E0;
}

/* Товары в заказе */
.order-items {
  margin-bottom: 24px;
}

.order-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #E0E0E0;
}

.order-item__image {
  position: relative;
  width: 80px;
  height: 80px;
}

.order-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.discount-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #FF3B30;
  color: #FFFFFF;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}

/* Кнопка подтверждения */
.checkout-submit {
  width: 100%;
  padding: 16px;
  background: #FD7200;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.checkout-submit:hover {
  background: #E66600;
}

.checkout-terms {
  font-size: 14px;
  color: #6B6B6B;
  text-align: center;
  margin-top: 16px;
}

.checkout-terms a {
  color: #FD7200;
  text-decoration: none;
}

/* Страница контактов */
.contacts-page {
    padding: 40px 0;
}

.contacts-page__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 140%;
    color: #2E2828;
    margin-bottom: 40px;
}

.contacts-page__content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
}

.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #FD7200;
}

.contact-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-card__header i {
    color: #FD7200;
    font-size: 24px;
}

.contact-card__city {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    color: #2E2828;
    margin: 0;
}

.contact-card__address {
    font-size: 14px;
    line-height: 140%;
    color: #2E2828;
    margin-bottom: 12px;
}

.contact-card__phone {
    font-size: 14px;
    line-height: 140%;
    color: #2E2828;
    margin-bottom: 12px;
}

.contact-card__hours {
    font-size: 14px;
    line-height: 140%;
    color: #6B6B6B;
}

.contacts-map {
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
}

/* Product Page Styles */
.product-page {
  padding: 40px 0;
}

.product-page__content {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Gallery */
.product-gallery {
  display: flex;
  gap: 20px;
}

.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-gallery__thumb {
  width: 80px;
  height: 80px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.product-gallery__thumb:hover,
.product-gallery__thumb.active {
  border-color: #FD7200;
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__main {
  flex-grow: 1;
}

.product-gallery__image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
}

.product-gallery__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__discount {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #F2461D;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  z-index: 1;
}

/* Product Info */
.product-info__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 130%;
  color: #2E2828;
  margin: 0 0 16px;
}

.product-info__rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.rating {
  color: #FFD600;
}

.product-info__reviews-link {
  color: #6B6B6B;
  text-decoration: none;
}

.product-info__sku {
  color: #6B6B6B;
}

.product-info__price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.price-old {
  color: #6B6B6B;
  text-decoration: line-through;
  font-size: 20px;
}

.price-new,
.price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #2E2828;
}

.product-info__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
}

.quantity-control__btn {
  width: 40px;
  height: 48px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 20px;
}

.quantity-control__input {
  width: 60px;
  height: 48px;
  border: none;
  text-align: center;
  font-size: 16px;
}

.btn-primary {
  height: 48px;
  padding: 0 32px;
  background: #FD7200;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background: #e66700;
}

.btn-wishlist {
  width: 48px;
  height: 48px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  background: none;
  cursor: pointer;
  font-size: 20px;
  color: #2E2828;
  transition: all 0.3s;
}

.btn-wishlist:hover {
  border-color: #FD7200;
  color: #FD7200;
}

.btn-wishlist.active {
  border-color: #FD7200;
  color: #FD7200;
}

/* Specs */
.product-info__specs {
  margin-bottom: 24px;
}

.spec-row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid #E0E0E0;
}

.spec-label {
  width: 200px;
  color: #6B6B6B;
}

.spec-value {
  flex-grow: 1;
  color: #2E2828;
}

.btn-more-specs {
  background: none;
  border: none;
  color: #FD7200;
  padding: 0;
  cursor: pointer;
  font-weight: 500;
}

/* Tabs */
.product-tabs {
  margin-bottom: 40px;
}

.product-tabs__header {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 32px;
}

.product-tabs__btn {
  background: none;
  border: none;
  padding: 16px 0;
  font-weight: 500;
  color: #6B6B6B;
  cursor: pointer;
  position: relative;
}

.product-tabs__btn.active {
  color: #2E2828;
}

.product-tabs__btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FD7200;
}

.product-tabs__pane {
  display: none;
}

.product-tabs__pane.active {
  display: block;
}

/* Reviews */
.reviews-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.reviews-summary__rating {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rating-big {
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.rating-stars {
  color: #FFD600;
  font-size: 20px;
}

.rating-count {
  color: #6B6B6B;
}

.review-item {
  padding: 24px 0;
  border-bottom: 1px solid #E0E0E0;
}

.review-item__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-item__author {
  font-weight: 500;
}

.review-item__date {
  color: #6B6B6B;
}

.review-item__rating {
  color: #FFD600;
  margin-bottom: 12px;
}

/* Video */
.product-video {
  margin-bottom: 40px;
}

.product-video__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #2E2828;
  margin: 0 0 24px;
}

/* Mobile Styles */
@media (max-width: 991px) {
  .product-page__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-gallery {
    flex-direction: column-reverse;
  }

  .product-gallery__thumbs {
    flex-direction: row;
    overflow-x: auto;
  }

  .product-info__title {
    font-size: 24px;
  }

  .price-new,
  .price {
    font-size: 24px;
  }

  .product-tabs__header {
    gap: 16px;
    overflow-x: auto;
  }
}

/* Auth Modal Styles */
#authModal .modal-content {
    border-radius: 8px;
}

#authModal .modal-header {
    border-bottom: none;
    padding: 24px 24px 0;
}

#authModal .modal-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #2E2828;
}

#authModal .modal-body {
    padding: 24px;
}

#authModal .form-label {
    font-weight: 500;
    color: #2E2828;
}

#authModal .form-control {
    height: 48px;
    border-radius: 4px;
}

#authModal .forgot-password {
    color: #6B6B6B;
    text-decoration: none;
}

#authModal .btn-primary {
    height: 48px;
    background: #FD7200;
    border: none;
    font-weight: 500;
}

#authModal .register-link {
    color: #FD7200;
    text-decoration: none;
    font-weight: 500;
}
a.btn{
    padding-top: 9px;
}

.product-card__favorite.active i {
  color: #FD7200 !important;
}
