:root {
    --primary-color: #f8f9fa;
    --secondary-color: #e6b422;
    --accent-color: #c77d4a;
    --text-color: #1e1a1d;
    --hover-color: #d4a02b;
    --bg-color: #fef9f0;
    --card-bg: #ffffff;
    --transition: all 0.3s ease;
    --footer-gradient: linear-gradient(135deg, #2a2428 0%, #1e1a1d 100%);
    --font-main: 'Poppins', 'Segoe UI', system-ui, sans-serif;
    --font-heading: 'Poppins', 'Segoe UI', system-ui, sans-serif;
    --border-radius: 28px;
    --shadow-sm: 0 6px 14px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 24px rgba(230, 180, 34, 0.12);
    --shadow-hover: 0 20px 30px -12px rgba(230, 180, 34, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
    color: var(--text-color);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 16px;
    background-image: radial-gradient(circle at 10% 20%, rgba(230, 180, 34, 0.05) 0%, transparent 60%);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(254, 249, 240, 0.96);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(230, 180, 34, 0.2);
    padding: 12px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 55px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-nav-list {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav-list li a {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #1e1a1d;
    border-radius: 40px;
    transition: all 0.2s ease;
}

.header-nav-list li a:hover {
    color: #e6b422;
}

.header-nav-list li a.active {
    color: #e6b422;
    position: relative;
}

.header-nav-list li a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #e6b422;
    border-radius: 2px;
}

.header-mobile-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.header-mobile-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1e1a1d;
    margin: 5px 0;
    transition: all 0.2s ease;
    border-radius: 2px;
}

main {
    padding: 40px;
    max-width: 1400px;
    margin: 100px auto 0;
    min-height: 70vh;
}

h1 {
    font-size: 42px;
    margin-bottom: 44px;
    color: #2a2428;
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(230, 180, 34, 0.3);
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 4px;
}

h2 {
    font-size: 32px;
    margin: 48px 0 32px;
    color: #2a2428;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.cms-sis-styles-gallery-grid {
    column-count: 4;
    column-gap: 28px;
    margin: 40px 0;
}

.cms-sis-styles-gallery-card {
    background: transparent;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 28px;
    break-inside: avoid;
    position: relative;
}

.cms-sis-styles-gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
    transition: box-shadow 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.cms-sis-styles-gallery-card:hover img {
    box-shadow: var(--shadow-hover);
}

.cms-sis-styles-gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 18px;
    background: linear-gradient(to top, rgba(30, 26, 29, 0.8) 0%, rgba(30, 26, 29, 0.3) 60%, transparent 100%);
    text-align: center;
    pointer-events: none;
}

.cms-sis-styles-gallery-title {
    font-size: 15px;
    margin: 0;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-block;
    padding: 6px 18px;
    background: rgba(230, 180, 34, 0.85);
    border-radius: 60px;
    backdrop-filter: blur(6px);
    color: #1e1a1d;
}

.cms-sis-styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin: 40px 0;
}

.cms-sis-styles-item {
    background: white;
    border-radius: 80px;
    padding: 14px 20px;
    transition: var(--transition);
    border: 1px solid rgba(230, 180, 34, 0.25);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.cms-sis-styles-item:hover {
    border-color: var(--secondary-color);
    background: #fffcf7;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cms-sis-styles-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    display: block;
    font-size: 15px;
}

.cms-sis-styles-link:hover {
    color: var(--accent-color);
}

.cms-sis-styles-gallery-grid-cat {
    column-count: 3;
    column-gap: 28px;
    margin: 40px 0;
}

.cms-sis-styles-gallery-card-cat {
    background: transparent;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 28px;
    break-inside: avoid;
    position: relative;
}

.cms-sis-styles-gallery-card-cat img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
    transition: box-shadow 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.cms-sis-styles-gallery-card-cat:hover img {
    box-shadow: var(--shadow-hover);
}

.cms-sis-styles-gallery-info-cat {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(230, 180, 34, 0.4);
}

.cms-sis-styles-gallery-title-cat {
    font-size: 15px;
    margin: 0;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
	text-align: center;
}

.cms-sis-styles-info-section {
    background: white;
    padding: 32px 38px;
    border-radius: 48px;
    margin: 48px 0;
    border: 1px solid rgba(230, 180, 34, 0.2);
    box-shadow: var(--shadow-sm);
}

.cms-sis-styles-info-section h3 {
    color: var(--secondary-color);
    margin-bottom: 18px;
    font-size: 24px;
}

.cms-sis-styles-map-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
    margin: 40px 0;
}

.cms-sis-styles-map-link {
    color: #2a2428;
    text-decoration: none;
    display: block;
    padding: 16px 24px;
    background: white;
    border-radius: 80px;
    transition: var(--transition);
    border: 1px solid rgba(230, 180, 34, 0.25);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.cms-sis-styles-map-link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #1e1a1d;
}

.pagination-container {
    margin: 48px 0;
    padding: 32px 0;
    border-top: 1px solid rgba(230, 180, 34, 0.2);
    border-bottom: 1px solid rgba(230, 180, 34, 0.2);
    text-align: center;
}

.pagination-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.pagination-link {
    display: inline-block;
    padding: 12px 22px;
    background: white;
    border: 1.5px solid rgba(230, 180, 34, 0.4);
    border-radius: 60px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.pagination-link:hover,
.pagination-link.active {
    background: var(--secondary-color);
    color: #1e1a1d;
    border-color: var(--secondary-color);
}

footer {
    background: var(--footer-gradient);
    padding: 60px 40px 40px;
    margin-top: 80px;
    border-top: 4px solid var(--secondary-color);
    color: #e0dad5;
}

.footer-container-cms-sis-styles {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.cms-sis-styles-footer-links-col {
    flex: 1 1 240px;
    min-width: 200px;
}

.cms-sis-styles-footer-links-col h3 {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(230, 180, 34, 0.3);
}

.cms-sis-styles-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cms-sis-styles-footer-link {
    color: #cfc8c2;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    padding: 4px 0;
    display: inline-block;
    width: fit-content;
}

.cms-sis-styles-footer-link:hover {
    color: var(--secondary-color);
    transform: translateX(6px);
}

.copyright {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(230, 180, 34, 0.25);
    font-size: 13px;
    color: #b3aaa3;
    text-align: left;
}

.cms-sis-styles-banner {
    display: block;
    width: 100%;
    max-width: 728px;
    height: 90px;
    margin: 0 auto 20px;
    background: linear-gradient(115deg, #fae8cf, #f7e0c2);
    border-radius: 60px;
    border: 1px solid rgba(230, 180, 34, 0.3);
    text-align: center;
    line-height: 90px;
    color: var(--secondary-color);
    font-weight: 600;
}

.cms-sis-styles-gallery-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 26, 29, 0.96);
    backdrop-filter: blur(24px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.cms-sis-styles-slider-img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 32px;
}

.cms-sis-styles-slider-close,
.cms-sis-styles-slider-prev,
.cms-sis-styles-slider-next {
    position: fixed;
    background: #1e1a1d;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    width: 54px;
    height: 54px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.cms-sis-styles-slider-close {
    top: 25px;
    right: 25px;
    font-size: 22px;
}

.cms-sis-styles-slider-prev {
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.cms-sis-styles-slider-next {
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.cms-sis-styles-slider-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #f0e8e2;
    background: #2a2428;
    padding: 10px 24px;
    border-radius: 60px;
    border: 1px solid var(--secondary-color);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #ece3db;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 12px;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .header-mobile-btn {
        display: block;
    }
    
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #1e1a1d;
        padding: 80px 20px 30px;
        transition: right 0.3s ease;
        z-index: 1002;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    }
    
    .header-nav.active {
        right: 0;
    }
    
    .header-nav-list {
        flex-direction: column;
        gap: 12px;
    }
    
    .header-nav-list li a {
        display: block;
        padding: 12px 20px;
        color: #f0e8e2;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50px;
        text-align: center;
    }
    
    .header-nav-list li a:hover,
    .header-nav-list li a.active {
        color: #1e1a1d;
        background: #e6b422;
    }
    
    .header-nav-list li a.active::after {
        display: none;
    }
    
    .header-mobile-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .header-mobile-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .header-mobile-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .cms-sis-styles-gallery-grid,
    .cms-sis-styles-gallery-grid-cat {
        column-count: 2;
        gap: 20px;
    }
    
    main {
        margin-top: 80px;
        padding: 25px;
    }
    
    h1 {
        font-size: 34px;
    }
    
    h2 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .cms-sis-styles-gallery-grid,
    .cms-sis-styles-gallery-grid-cat {
        column-count: 1;
    }
    
    .cms-sis-styles-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 30px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    main {
        padding: 20px;
    }
    
    .footer-container-cms-sis-styles {
        flex-direction: column;
        gap: 30px;
    }
    
    .cms-sis-styles-map-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .header-logo img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .cms-sis-styles-map-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.copyright {
    background-color: transparent;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    padding: 20px 15px;
}

.copyright,
.copyright p,
.copyright a,
.copyright span {
    color: #ffffff;
}

.copyright p {
    margin: 0 0 10px 0;
    opacity: 0.8;
}

.copyright p:last-child {
    margin-bottom: 0;
    opacity: 1;
    font-weight: 500;
}


.cms-sis-styles-featured-block {
    margin: 48px 0;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(230, 180, 34, 0.2);
}

.cms-sis-styles-featured-block h2 {
    margin: 0 0 20px 0;
    font-size: 32px;
    text-align: center;
    color: #2a2428;
}

.cms-sis-styles-featured-block h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.cms-sis-styles-featured-intro {
    text-align: center;
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(230, 180, 34, 0.2);
}

.cms-sis-styles-sponsored-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 40px;
    padding: 20px;
    background: rgba(230, 180, 34, 0.05);
    border-radius: 60px;
}

.cms-sis-styles-sponsored-link {
    display: inline-block;
    transition: var(--transition);
}

.cms-sis-styles-sponsored-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.cms-sis-styles-featured-models {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.cms-sis-styles-featured-item {
    background: var(--bg-color);
    border-radius: 32px;
    padding: 28px;
    transition: var(--transition);
    border: 1px solid rgba(230, 180, 34, 0.15);
}

.cms-sis-styles-featured-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.cms-sis-styles-featured-item h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.cms-sis-styles-featured-image {
    text-align: center;
    margin-bottom: 24px;
}

.cms-sis-styles-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cms-sis-styles-featured-item:hover .cms-sis-styles-featured-image img {
    box-shadow: var(--shadow-hover);
}

.cms-sis-styles-featured-text p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.cms-sis-styles-featured-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cms-sis-styles-featured-block {
        padding: 24px;
    }
    
    .cms-sis-styles-featured-block h2 {
        font-size: 26px;
    }
    
    .cms-sis-styles-featured-item {
        padding: 20px;
    }
    
    .cms-sis-styles-featured-item h3 {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .cms-sis-styles-featured-block {
        padding: 20px;
    }
    
    .cms-sis-styles-sponsored-banner {
        padding: 15px;
    }
    
    .cms-sis-styles-sponsored-link img {
        max-width: 180px;
        height: auto;
    }
}

.cms-sis-styles-featured-posts {
    margin: 60px 0;
}

.cms-sis-styles-featured-posts h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.cms-sis-styles-featured-posts h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.cms-sis-styles-featured-post {
    display: flex;
    gap: 40px;
    background: var(--card-bg);
    border-radius: 32px;
    margin-bottom: 48px;
    padding: 32px;
    transition: var(--transition);
    border: 1px solid rgba(230, 180, 34, 0.2);
    box-shadow: var(--shadow-sm);
}

.cms-sis-styles-featured-post:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.featured-post-image {
    flex: 0 0 280px;
}

.featured-post-image a {
    display: block;
    overflow: hidden;
    border-radius: 24px;
}

.featured-post-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: transform 0.4s ease;
}

.featured-post-image a:hover img {
    transform: scale(1.03);
}

.featured-post-content {
    flex: 1;
}

.featured-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.featured-post-category {
    background: var(--secondary-color);
    color: #1e1a1d;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-post-name {
    color: #8a7a6e;
    font-size: 14px;
    font-weight: 500;
}

.featured-post-content h3 {
    font-size: 26px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.featured-post-content p {
    margin-bottom: 18px;
    line-height: 1.7;
    color: #3a2e2a;
}

.featured-post-link {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 28px;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.featured-post-link:hover {
    background: var(--secondary-color);
    color: #1e1a1d;
}

@media (max-width: 992px) {
    .cms-sis-styles-featured-post {
        flex-direction: column;
        gap: 24px;
    }
    
    .featured-post-image {
        flex: 0 0 auto;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .featured-post-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .cms-sis-styles-featured-posts {
        margin: 40px 0;
    }
    
    .cms-sis-styles-featured-posts h2 {
        font-size: 30px;
        margin-bottom: 32px;
    }
    
    .cms-sis-styles-featured-post {
        padding: 24px;
        margin-bottom: 32px;
    }
    
    .featured-post-image {
        max-width: 100%;
    }
    
    .featured-post-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .cms-sis-styles-featured-posts h2 {
        font-size: 26px;
    }
    
    .featured-post-content h3 {
        font-size: 20px;
    }
    
    .featured-post-link {
        padding: 8px 24px;
        font-size: 13px;
    }
}