* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --header-height-desktop: 80px;
    --header-height-mobile: 60px;
    --max-width: 1400px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height-desktop);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
    }
}

.header-logo {
    padding: 10px 0;
}

.header-logo img {
    height: calc(var(--header-height-desktop) - 20px);
    max-height: 60px;
    width: auto;
    display: block;
}

.header-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.header-logo-text:hover {
    color: #3498db;
}

.main-content {
    margin-top: var(--header-height-desktop);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.test-widget {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.test-widget h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.widget-content {
    font-size: 16px;
    color: #555;
}

.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.white-text {
    color: #FFFFFF !important;
}

.small-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.first-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 76px;
    letter-spacing: 0.02em;
    color: #FFBB58;
    margin-bottom: 40px;
    max-width: 791px;
}

.cta-button {
    display: inline-block;
    background: #FFBB58;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    text-align: center; 
    letter-spacing: 0.05em;
    color: #141414 !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #FFBB58;
    color: #141414 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 187, 88, 0.4);
    text-decoration: none !important;
}

.cta-button:active {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero-section {
        min-height: 70vh;
        padding: 60px 20px;
    }
    
    .first-title {
        font-size: 48px;
        line-height: 56px;
        max-width: 600px;
    }
    
    .small-title {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: var(--header-height-mobile);
    }
    
    .header-logo img {
        height: calc(var(--header-height-mobile) - 20px);
        max-height: 40px;
    }
    
    .header-logo-text {
        font-size: 20px;
    }
    
    .main-content {
        margin-top: var(--header-height-mobile);
    }
    
    .container {
        padding: 0 15px;
    }
    
    .test-widget {
        padding: 20px;
    }
    
    .test-widget h2 {
        font-size: 24px;
    }
    
    .hero-section {
        align-items: flex-end;
        min-height: 85vh;
        padding: 40px 15px;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .small-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 15px;
    }
    
    .first-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 13px;
        width: 90%;
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        align-items: flex-end;
        min-height: 80vh;
        padding: 30px 15px;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .small-title {
        font-size: 19px;
        line-height: 22px;
    }
    
    .first-title {
        font-size: 32px;
        line-height: 36px;
    }
    
    .cta-button {
        padding: 12px 24px;
        height: 48px;
        font-size: 14px;
        line-height: 19px;
        width: 100%;
        display: block;
        text-align: center;
    }
}

.tickets-section {
    background: #FFFFFF;
    padding: 80px 20px;
    display: flex;
    align-items: center;
}

.quote-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 120px;
}

.image-side {
    flex-shrink: 0;
    width: 480px;
    height: 440px;
}

.artist-photo {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #433ECD;
    mix-blend-mode: soft-light;
    border-radius: 8px;
}

.text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.title-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 76px;
    color: #44988E;
    margin-bottom: 50px;
}

.black-text {
    color: #141414;
}

.quote-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.background-quote {
    position: absolute;
    left: -80px;
    top: -20px;
    width: 124px;
    height: 124px;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.quote-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #141414;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    max-width: 691px;
}

.quote-author {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #141414;
    position: relative;
    z-index: 2;
}

@media (max-width: 1400px) {
    .quote-container {
        gap: 80px;
    }
}

@media (max-width: 1200px) {
    .quote-container {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    
    .image-side {
        width: 400px;
        height: 360px;
    }
    
    .title-text {
        font-size: 48px;
        line-height: 56px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .tickets-section {
        padding: 60px 15px;
    }
    
    .quote-container {
        gap: 40px;
    }
    
    .image-side {
        width: 320px;
        height: 280px;
    }
    
    .title-text {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 30px;
    }
    
    .background-quote {
        width: 100px;
        height: 100px;
        top: -20px;
        left: -40px;
    }
    
    .quote-text {
        font-size: 18px;
        line-height: 26px;
    }
    
    .quote-author {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 480px) {
    .tickets-section {
        padding: 40px 15px;
    }
    
    .image-side {
        width: 280px;
        height: 240px;
    }
    
    .title-text {
        font-size: 24px;
        line-height: 32px;
    }
    
    .quote-text {
        font-size: 16px;
        line-height: 24px;
    }
    
    .quote-author {
        font-size: 16px;
        line-height: 24px;
    }
    
    .background-quote {
        width: 80px;
        height: 80px;
        top: -15px;
        left: -30px;
    }
}

.ukraine-tour-section {
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 80px 20px;
    position: relative;
}

.concert-list-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.main-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 76px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 60px;
}

.events-list {
    max-width: 100%;
    margin: 0 auto;
}

.event-item {
    background: transparent;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.event-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(217, 217, 217, 0.1);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 40px;
    min-width: 100px;
    gap: 5px;
}

.date-number {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 64px;
    color: #FFFFFF;
    margin: 0;
}

.date-month {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    color: #FFBB58;
    margin: 0;
}

.event-details {
    flex: 1;
}

.event-city {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 64px;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

.event-venue {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    color: #FFFFFF;
    margin: 0;
}

.ticket-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF !important;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.ticket-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none !important;
}

.ticket-btn:hover .arrow {
    transform: translateX(3px);
}

.arrow {
    transition: transform 0.3s ease;
}

.ticket-text {
    display: inline;
}

@media (max-width: 768px) {
    .ukraine-tour-section {
        padding: 20px 10px;
    }
	
	.event-date {
		min-width: 75px;
	}
    
    .events-list {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .main-title {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 40px;
    }
    
    .event-item {
        flex-direction: row;
        text-align: left;
        padding: 12px 0;
    }
    
    .event-date {
        margin-right: 0;
    }
    
    .date-number {
        font-size: 32px;
        font-weight: 700;
        line-height: 38px;
    }
    
    .date-month {
        font-size: 16px;
        font-weight: 700;
        line-height: 20px;
    }
    
    .event-city {
        font-size: 32px;
        font-weight: 700;
        line-height: 38px;
        margin-bottom: 8px;
    }
    
    .event-venue {
        font-size: 16px;
        font-weight: 700;
        line-height: 20px;
    }
    
    .event-details {
        margin-bottom: 0;
    }
    
    .ticket-btn {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        padding: 0;
        gap: 0;
        justify-content: center;
    }
    
    .ticket-text {
        display: none;
    }
}

/* Language Dropdown Styles - append to style.css */

.header-container {
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
}

.language-dropdown {
    position: relative;
    margin-left: auto;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    justify-content: center;
}

.lang-dropdown-btn:hover {
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.05);
}

.lang-dropdown-btn.active {
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.lang-dropdown-btn svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.lang-dropdown-btn.active svg {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 120px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.lang-dropdown-item:hover {
    background: rgba(52, 152, 219, 0.05);
    border-left-color: #3498db;
}

.lang-dropdown-item.active {
    background: rgba(52, 152, 219, 0.1);
    border-left-color: #3498db;
    color: #3498db;
    font-weight: 600;
}

@media (max-width: 768px) {
    .lang-dropdown-btn {
        padding: 8px 14px;
        font-size: 13px;
        min-width: 70px;
        border-width: 1.5px;
    }
    
    .lang-dropdown-menu {
        min-width: 100px;
        right: -10px;
    }
    
    .lang-dropdown-item {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .language-dropdown {
        margin-left: 10px;
    }
    
    .lang-dropdown-btn {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 60px;
    }
    
    .lang-dropdown-btn svg {
        width: 10px;
        height: 7px;
    }
}

.instagram-slider-section {
    background: #FFBB58;
    padding: 80px 20px 140px 20px;
    position: relative;
}

.instagram-slider-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.instagram-slider-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 56px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 60px;
}

.instagram-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.instagram-slider {
    flex: 1;
    position: relative;
    clip-path: inset(0 0 -150px 0);
}

.instagram-slider-inner {
    overflow: hidden;
    position: relative;
}

.instagram-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
    padding-bottom: 60px;
    align-items: flex-start;
}

.instagram-slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    position: relative;
    transition: opacity 0.4s ease-in-out;
    opacity: 0.5;
    margin-bottom: 30px;
}

.instagram-slide.center-slide {
    opacity: 1;
}

.instagram-embed-wrapper {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 725px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.instagram-embed-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(255, 187, 88, 0.5), rgba(255, 187, 88, 0.5));
    pointer-events: none;
    border-radius: 8px;
    z-index: 1;
}

.instagram-slide.center-slide .instagram-embed-wrapper::after {
    background: linear-gradient(0deg, rgba(255, 187, 88, 0.15), rgba(255, 187, 88, 0.15));
}

.instagram-embed-wrapper iframe,
.instagram-embed-wrapper .instagram-media,
.instagram-embed-wrapper blockquote {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    border-radius: 8px !important;
    margin: 0 !important;
    border: 0 !important;
    position: relative;
    z-index: 0;
}

.instagram-post-status {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    z-index: 10;
    white-space: nowrap;
}

.instagram-post-status.status-completed {
    background: #FFFFFF;
    color: #44988E;
}

.instagram-post-status.status-active {
    background: #44988E;
    color: #FFFFFF;
}

.slider-nav {
    width: 60px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 20;
    align-self: center;
}

.slider-nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-nav svg {
    width: 60px;
    height: 64px;
}

@media (max-width: 1200px) {
    .instagram-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    
    .instagram-embed-wrapper {
        height: 700px;
    }
}

@media (max-width: 768px) {
    .instagram-slider-section {
        padding: 60px 15px 120px 15px;
    }
    
    .instagram-slider-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 40px;
    }
    
    .instagram-slider-wrapper {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .instagram-slider {
        clip-path: inset(0 0 -100px 0);
    }
    
    .instagram-slider-track {
        gap: 0;
        padding-bottom: 50px;
    }
    
    .instagram-slide {
        flex: 0 0 100%;
        min-width: 100%;
        opacity: 1 !important;
        margin-bottom: 20px;
    }
    
    .instagram-slide .instagram-embed-wrapper::after {
        background: linear-gradient(0deg, rgba(255, 187, 88, 0.15), rgba(255, 187, 88, 0.15)) !important;
    }
    
    .instagram-embed-wrapper {
        height: 650px;
    }
    
    .slider-nav {
        width: 48px;
        height: 48px;
    }
    
    .slider-nav svg {
        width: 40px;
        height: 40px;
    }
    
    .instagram-post-status {
        bottom: -25px;
        padding: 8px 18px;
        font-size: 14px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav svg {
        width: 32px;
        height: 32px;
    }
    
    .instagram-embed-wrapper {
        height: 600px;
    }
    
    .instagram-post-status {
        bottom: -22px;
        padding: 6px 16px;
        font-size: 13px;
        line-height: 24px;
    }
}

/* Footer Widget Styles */

.site-footer {
    background-color: #141414;
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    padding: 50px 0;
    width: 100%;
}

.site-footer a {
    text-decoration: none !important;
}

.site-footer a:hover {
    text-decoration: none !important;
}

.footer-container {
    max-width: var(--max-width, 1400px);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-branding {
    flex: 1;
}

.footer-title {
    font-weight: 800;
    font-size: 40px;
    line-height: 54px;
    margin: 0 0 5px 0;
    color: #FFFFFF;
    text-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
}

.footer-copyright {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    margin: 0;
    color: #FFFFFF;
}

.footer-social {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #FFFFFF;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-icon:hover {
    background-color: #F5F5F5;
    transform: translateY(-2px);
}

.social-icon-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon-wrapper svg {
    max-width: 100%;   /* Максимум 48x48 */
    max-height: 100%;
    width: auto;       /* Зберігає оригінальний розмір */
    height: auto;
}

.footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 20px;
}

.contact-group {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #FFFFFF;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.contact-icon {
    margin-right: 8px;
    min-width: 16px;
    display: flex;
    align-items: center;
}

.contact-icon svg {
    width: 16px;
    height: 16px;
}

.contact-content {
    display: flex;
    align-items: center;
    gap: 4px;
}

.contact-label {
    color: #FFFFFF;
}

.contact-item a {
    color: #1E90FF;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1E90FF;
}

.footer-legal {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #FFFFFF;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

@media (min-width: 481px) and (max-width: 768px) {
    .site-footer {
        padding: 30px 0;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-title {
        font-size: 24px;
        line-height: 33px;
    }
    
    .footer-copyright {
        font-size: 14px;
    }
    
    .footer-contacts {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }
    
    .contact-group {
        font-size: 14px;
        width: 100%;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-legal {
        font-size: 14px;
        text-align: center;
        white-space: normal;
    }
}

@media (max-width: 480px) {
	.site-footer {
        padding: 30px 0;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-title {
        font-size: 24px;
        line-height: 33px;
    }
    
    .footer-copyright {
        font-size: 14px;
    }
    
    .footer-contacts {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }
    
    .contact-group {
        font-size: 12px;
        width: 100%;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-legal {
        font-size: 14px;
        text-align: center;
        white-space: normal;
    }
}

/* Fix 1: Color tooltip centering */
.color-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: #2c3e50;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
}

.color-square:hover + .color-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.zoom-result {
    position: absolute;
    left: calc(100% + 20px);
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 99999;
}

/* Fix 3: Price currency styling */
.product-price .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 20px;
    margin-bottom: 5px;
    white-space: nowrap;
}

.product-price .original-price .price-currency {
    font-size: 16px;
    font-weight: 400;
    text-decoration: line-through;
}

.product-price .discount-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    white-space: nowrap;
}

.product-price .discount-price .price-currency {
    font-size: 24px;
    font-weight: 600;
}

/* Fix 4: Toast notification styles */
.toast-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10001;
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.toast-notification.success {
    border-left: 4px solid #27ae60;
}

.toast-notification.error {
    border-left: 4px solid #e74c3c;
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-notification.success .toast-icon {
    background: #d5f4e6;
    color: #27ae60;
}

.toast-notification.error .toast-icon {
    background: #fadbd8;
    color: #e74c3c;
}

.toast-icon svg {
    width: 20px;
    height: 20px;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 4px;
}

.toast-message {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    color: #95a5a6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.toast-close:hover {
    background: #ecf0f1;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .toast-notification {
        right: 10px;
        left: 10px;
        min-width: unset;
        max-width: unset;
    }
}

.main-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #f8f9fa;
    border-radius: 16px;
    overflow: visible;
    margin-bottom: 20px;
    cursor: crosshair;
    z-index: 1;
}

.product-container {
    max-width: var(--max-width);
    width: 100%;
    margin: 80px auto 60px;
    padding: 0 20px;
}

.main-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.zoom-modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    touch-action: pan-x pan-y pinch-zoom;
}

.zoom-result img {
    position: absolute;
    max-width: none;
    object-fit: cover;
}

.zoom-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.product-gallery {
    position: sticky;
    top: 20px;
    z-index: 1;
}

.zoom-modal-nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.3);
}

.zoom-modal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.zoom-modal-nav svg {
    width: 28px;
    height: 28px;
}

.zoom-modal-nav-prev {
    left: 20px;
}

.zoom-modal-nav-next {
    right: 20px;
}

@media (max-width: 1600px) {
    .zoom-result {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 1400px) {
    .zoom-result {
        display: none !important;
    }
    
    .zoom-lens {
        display: none !important;
    }
    
    .main-image-container {
        cursor: pointer;
    }
}

@media (max-width: 968px) {
    .product-container {
        max-width: var(--max-width);
        width: 100%;
        margin: calc(var(--header-height-mobile, 60px) + 40px) auto 40px;
        padding: 0 20px;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
    }
    
    .main-image-container {
        cursor: pointer;
    }
    
    .product-name {
        font-size: 28px;
    }
    
    .product-price-row {
        background: #f8f9fa;
        padding: 16px;
        border-radius: 12px;
        gap: 0;
        flex-direction: column;
    }
    
    .product-price {
        width: 100%;
        padding-bottom: 12px;
        margin-bottom: 12px;
        border-bottom: 1px solid #e9ecef;
    }
    
    .product-price.has-discount {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .original-price {
        font-size: 16px;
    }
    
    .discount-price {
        font-size: 32px;
    }
    
    .price-currency {
        font-size: 24px;
    }
    
    .product-price:not(.has-discount) {
        font-size: 32px;
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
    
    .product-stock {
        width: 100%;
        justify-content: center;
        background: transparent;
        padding: 0;
    }
    
    .product-actions {
        margin-bottom: 24px;
    }
    
    .add-to-cart-btn {
        width: 100%;
        justify-content: center;
    }
    
    .description-block {
        padding: 24px;
        margin-top: 40px;
    }
    
    .description-title {
        font-size: 24px;
    }
    
    .cart-content {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .cart-item {
        grid-template-columns: 60px 1fr auto;
        gap: 12px;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-actions {
        grid-template-columns: 1fr;
    }
    
    .zoom-modal-nav {
        display: flex;
    }
}

@media (max-width: 768px) {
    .product-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .product-container {
        margin-top: calc(var(--header-height-mobile, 60px) + 20px);
        padding: 0 15px;
    }
    
    .original-price {
        font-size: 14px;
    }
    
    .discount-price {
        font-size: 28px;
    }
    
    .price-currency {
        font-size: 20px;
    }
    
    .product-price:not(.has-discount) {
        font-size: 28px;
    }
    
    .zoom-modal-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
    }
    
    .zoom-modal-nav {
        width: 48px;
        height: 48px;
    }
    
    .zoom-modal-nav svg {
        width: 24px;
        height: 24px;
    }
    
    .zoom-modal-nav-prev {
        left: 10px;
    }
    
    .zoom-modal-nav-next {
        right: 10px;
    }
}

.cart-item-options {
    font-size: 12px;
    color: #7f8c8d;
    margin: 6px 0 2px 0;
    line-height: 1.5;
}

.cart-option-label {
    font-weight: 600;
    color: #2c3e50;
}

.cart-item-sku {
    font-size: 12px;
    color: #95a5a6;
    margin: 2px 0;
}

.cart-item-name {
    font-weight: 600;
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 4px;
}

.cart-item-price {
    font-weight: 700;
    font-size: 15px;
    color: #3498db;
    margin-top: 4px;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    padding: 4px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    transition: all 0.2s;
}

.quantity-btn:hover:not(:disabled) {
    background: #3498db;
    color: white;
}

.quantity-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.remove-btn {
    padding: 6px 12px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
}

.remove-btn:hover {
    background: #c0392b;
}

@media (max-width: 968px) {
    .cart-item {
        grid-template-columns: 60px 1fr auto;
        gap: 12px;
        padding: 12px;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-name {
        font-size: 13px;
    }
    
    .cart-item-options {
        font-size: 11px;
    }
    
    .cart-item-price {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cart-item {
        grid-template-columns: 50px 1fr;
        gap: 10px;
    }
    
    .cart-item-image {
        width: 50px;
        height: 50px;
    }
    
    .cart-item-controls {
        grid-column: 2;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .quantity-control {
        padding: 2px;
    }
    
    .quantity-btn {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
    
    .quantity-value {
        min-width: 24px;
        font-size: 13px;
    }
    
    .remove-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
}

.product-custom-fields {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
}

.custom-field-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.2s ease;
}

.custom-field-item:last-child {
    border-bottom: none;
}

.custom-field-item:hover {
    background: #f8f9fa;
}

.custom-field-item:first-child {
    padding-top: 0;
}

.custom-field-name {
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 20px;
    background: #f8f9fa;
    border-right: 1px solid #e9ecef;
}

.custom-field-value {
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
    padding: 16px 20px;
    text-align: left;
}

@media (max-width: 768px) {
    .product-custom-fields {
        margin-bottom: 24px;
        border-radius: 8px;
    }
    
    .custom-field-item {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .custom-field-name {
        padding: 12px 16px 8px;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        font-size: 13px;
    }
    
    .custom-field-value {
        padding: 8px 16px 12px;
        font-size: 14px;
        background: #ffffff;
    }
}

@media (max-width: 480px) {
    .custom-field-name {
        padding: 10px 14px 6px;
        font-size: 12px;
    }
    
    .custom-field-value {
        padding: 6px 14px 10px;
        font-size: 13px;
    }
}

.products-list-widget {
    padding: 60px 0;
    background: #f8f9fa;
}

.products-list-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.products-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr !important;
    }
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #f0f0f0;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.9rem;
}

.product-label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 1;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: #667eea;
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

.product-price-old {
    font-size: 1.1rem;
    color: #95a5a6;
    text-decoration: line-through;
}

.products-empty {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

.products-empty p {
    font-size: 1.2rem;
    margin: 0;
}

.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.payment-modal.active {
    display: flex;
}

.payment-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.payment-modal-content {
    position: relative;
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: paymentModalSlideUp 0.3s ease;
    z-index: 1;
}

@keyframes paymentModalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.payment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon-success {
    background: #d4edda;
    color: #27ae60;
}

.payment-icon-failed {
    background: #fadbd8;
    color: #e74c3c;
}

.payment-modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.payment-order-number {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.payment-order-number strong {
    color: #2c3e50;
    font-weight: 700;
}

.payment-modal-content p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.payment-reason {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 12px 16px;
    color: #856404;
    font-weight: 500;
    margin-top: 20px;
    display: none;
}

.payment-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

.payment-modal-content button.btn,
.payment-modal-content a.btn,
.payment-modal-content .btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.5;
    font-family: inherit;
}

.payment-modal-content button.btn-primary,
.payment-modal-content a.btn-primary,
.payment-modal-content .btn-primary {
    background: #3498db;
    color: white;
}

.payment-modal-content button.btn-primary:hover,
.payment-modal-content a.btn-primary:hover,
.payment-modal-content .btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.payment-modal-content button.btn-secondary,
.payment-modal-content a.btn-secondary,
.payment-modal-content .btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.payment-modal-content button.btn-secondary:hover,
.payment-modal-content a.btn-secondary:hover,
.payment-modal-content .btn-secondary:hover {
    background: #d5dbdb;
    transform: translateY(-2px);
}

.payment-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

.payment-actions button.btn,
.payment-actions a.btn,
.payment-actions .btn {
    min-width: 140px;
}

@media (max-width: 768px) {
    .payment-modal-content {
        margin: 20px;
        padding: 40px 30px;
        width: calc(100% - 40px);
    }
    
    .payment-modal-content h2 {
        font-size: 24px;
    }
    
    .payment-icon {
        width: 64px;
        height: 64px;
    }
    
    .payment-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .payment-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .payment-actions .btn {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .payment-modal-content {
        padding: 30px 20px;
    }
    
    .payment-modal-content h2 {
        font-size: 20px;
    }
    
    .payment-order-number {
        font-size: 16px;
    }
    
    .payment-modal-content p {
        font-size: 14px;
    }
}

.footer-legal {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #FFFFFF;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.footer-separator {
    display: inline-block;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-link:hover {
    text-decoration: underline;
    color: #F5F5F5;
}