/* ============================================================================
   TURKISH CYMBALS - MAIN STYLESHEET
   PHP 7.0.33 Compatible
   Modern, Clean, Professional Design
   ============================================================================ */

/* ============================================================================
   FONT FACES
   ============================================================================ */
@font-face {
    font-family: 'Luminari';
    src: url('../fonts/Luminari-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ============================================================================
   RESET & BASE STYLES
   ============================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ============================================================================
   HEADER STYLES
   ============================================================================ */

.main-header {
    width: 100%;
    position: relative;
    z-index: 1000;
    position: absolute;
    background-size: cover;
}

.header-container {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url();
}

/* Logo Styles */
.logo-wrapper {
    flex-shrink: 0;
    padding-left: 25px;
    padding-top: 19px;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 68px;
    width: auto;
    display: block;
}

/* Navigation Menu Styles */
.main-nav {
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);

    /* Safari desteği için */
    -webkit-backdrop-filter: blur(10px);
    height: 78px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-family: 'Google Sans', sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-item-dropdown .nav-link:hover::after,
.nav-item-dropdown .nav-link.active::after {
    width: 0;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    min-width: 250px;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-top: 2px solid #ffffff;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item-parent {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item-parent:last-child {
    border-bottom: none;
}

.dropdown-link-parent {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-link-parent:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 25px;
}

.dropdown-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #2a2a2a;
    min-width: 220px;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.dropdown-item-parent:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-item-sub {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-item-sub:last-child {
    border-bottom: none;
}

.dropdown-link-sub {
    display: block;
    padding: 10px 20px;
    color: #cccccc;
    text-decoration: none;
    font-family: 'Google Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.dropdown-link-sub:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding-left: 25px;
}

/* Search Button Styles */
.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 15px;
    transition: all 0.3s ease;
    color: #ffffff;
}

.search-btn:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.search-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block;
}

/* Hamburger Menu Button (Mobile) */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation States */
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

/* Tablet Styles (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .header-container {
        padding: 0 15px;
        height: 70px;
    }

    .logo-img {
        height: 45px;
    }

    .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }

    .search-btn {
        margin-left: 10px;
    }

    .search-icon {
        width: 18px;
        height: 18px;
    }
}

/* Mobile Styles (max-width: 767px) */
@media screen and (max-width: 767px) {
    .header-container {
        height: 70px;
        padding: 0 15px;
    }

    .logo-img {
        height: 40px;
    }

    /* Hide regular menu on mobile */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        max-height: 500px;
        padding: 20px 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 15px 25px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    /* Mobile Dropdown Menu */
    .dropdown-arrow {
        float: right;
        margin-top: 2px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        background-color: rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item-dropdown.active .dropdown-menu {
        max-height: 1000px;
    }

    .dropdown-item-parent {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-link-parent {
        padding: 12px 25px 12px 40px;
    }

    .dropdown-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown-item-parent.active .dropdown-submenu {
        max-height: 1000px;
    }

    .dropdown-link-sub {
        padding: 10px 25px 10px 55px;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(255, 255, 255, 0.05);
        padding-left: 30px;
    }

    /* Search button on mobile */
    .search-btn {
        margin-left: 10px;
        padding: 6px;
    }

    .search-icon {
        width: 18px;
        height: 18px;
    }

    /* Show hamburger button on mobile */
    .hamburger-btn {
        display: flex;
        margin-left: 10px;
    }
}

/* Small Mobile Styles (max-width: 480px) */
@media screen and (max-width: 480px) {
    .header-container {
        height: 65px;
        padding: 0 10px;
    }

    .logo-img {
        height: 35px;
    }

    .nav-link {
        padding: 12px 20px;
        font-size: 14px;
    }

    .search-btn {
        margin-left: 8px;
        padding: 5px;
    }

    .search-icon {
        width: 16px;
        height: 16px;
    }
}

/* ============================================================================
   HERO SLIDER STYLES
   ============================================================================ */

.hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    position: relative;
    height: 600px;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.slider-text-wrapper {
    max-width: 75%;
    color: #ffffff;
}

.slider-title {
    font-family: 'Luminari', serif;
    font-size: 78px;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-text {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #dc3545;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.slider-btn:hover {
    background-color: #c82333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.slider-btn:active {
    transform: translateY(0);
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #ffffff;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.slider-arrow-prev {
    left: 20px;
}

.slider-arrow-next {
    right: 20px;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background-color: #ffffff;
    width: 14px;
    height: 14px;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-empty {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    color: #666;
    font-family: 'Google Sans', sans-serif;
}

/* Slider Responsive Styles */
@media screen and (max-width: 1024px) {
    .slider-container {
        height: 500px;
    }

    .slider-content {
        padding: 0 60px;
    }

    .slider-title {
        font-size: 60px;
    }

    .slider-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .slider-container {
        height: 450px;
    }

    .slider-content {
        padding: 0 30px;
    }

    .slider-title {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .slider-text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .slider-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }

    .slider-arrow-prev {
        left: 10px;
    }

    .slider-arrow-next {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .slider-container {
        height: 400px;
    }

    .slider-content {
        padding: 0 20px;
    }

    .slider-title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .slider-text {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .slider-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
    }

    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 12px;
        height: 12px;
    }
}

/* ============================================================================
   MAIN CONTENT AREA (Placeholder)
   ============================================================================ */

.main-content {
    min-height: calc(100vh - 80px);
    padding: 0;
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================================================
   ARTISTS SECTION STYLES
   ============================================================================ */

.artists-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 30px;
}

.section-header {
    text-align: left;
    flex: 1;
}

.section-title {
    font-family: 'Luminari', serif;
    font-size: 48px;
    font-weight: normal;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-text {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.artist-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.artist-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.artist-image-wrapper {
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
}

.artist-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-image {
    transform: scale(1.05);
}

.artist-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.artist-card:hover .artist-name-overlay {
    background-color: rgba(0, 0, 0, 0.8);
}

.artist-name {
    font-family: 'Luminari', serif;
    font-size: 20px;
    font-weight: normal;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

.section-footer {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.see-all-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: #dc3545;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 255px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.see-all-btn:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.artists-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-family: 'Google Sans', sans-serif;
}

/* Artists Section Responsive */
@media screen and (max-width: 1024px) {
    .artists-section {
        padding: 60px 15px;
    }

    .section-header-wrapper {
        gap: 20px;
    }

    .section-title {
        font-size: 40px;
    }

    .section-text {
        font-size: 16px;
    }

    .artists-grid {
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .artists-section {
        padding: 50px 15px;
    }

    .section-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
        gap: 20px;
    }

    .section-header {
        text-align: left;
    }

    .section-footer {
        width: 100%;
        justify-content: flex-start;
    }

    .section-title {
        font-size: 32px;
    }

    .section-text {
        font-size: 15px;
    }

    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .artist-name {
        font-size: 16px;
    }

    .artist-name-overlay {
        padding: 15px 10px;
    }

    .see-all-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .artists-section {
        padding: 40px 10px;
    }

    .section-title {
        font-size: 28px;
    }

    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* ============================================================================
   ARTISTS PAGE STYLES
   ============================================================================ */

.artists-page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 110px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.artists-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 1;
    opacity: 0;
}

.artists-page-header>* {
    position: relative;
    z-index: 2;
}

.artists-page-title {
    font-family: 'Luminari', serif;
    font-size: 74px;
    color: #ffffff;
    margin-bottom: -23px;
    font-weight: normal;
    text-shadow: 1px 1px 1px #000;
}

.artists-page-text {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 1px 1px 1px #000;
}

.artists-alphabet-filter {
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.alphabet-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.alphabet-filter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    background-color: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.alphabet-filter-link:hover {
    background-color: #dc3545;
    color: #ffffff;
    border-color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.alphabet-filter-link.active {
    background-color: #dc3545;
    color: #ffffff;
    border-color: #dc3545;
}

.clear-filter-wrapper {
    text-align: center;
    margin-top: 20px;
}

.clear-filter-btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background-color: #6c757d;
    border-radius: 255px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.clear-filter-btn:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.artists-grid-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.artist-card-page {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.artist-link-page {
    display: block;
    text-decoration: none;
    color: inherit;
}

.artist-image-wrapper-page {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    /* 1:1 aspect ratio */
    overflow: hidden;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.artist-image-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-card-page:hover .artist-image-page {
    transform: scale(1.05);
}

.artist-name-overlay-page {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.artist-card-page:hover .artist-name-overlay-page {
    background-color: rgba(0, 0, 0, 0.8);
}

.artist-name-page {
    font-family: 'Luminari', serif;
    font-size: 20px;
    font-weight: normal;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

.artists-empty-page {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
}

/* Artists Page Responsive */
@media screen and (max-width: 1024px) {
    .artists-page-title {
        font-size: 40px;
    }

    .artists-page-text {
        font-size: 16px;
    }

    .artists-grid-page {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .alphabet-filter-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .artists-page-header {
        padding-top: 30px;
        margin-bottom: 30px;
    }

    .artists-page-title {
        font-size: 32px;
    }

    .artists-page-text {
        font-size: 15px;
    }

    .artists-alphabet-filter {
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .alphabet-filter-wrapper {
        gap: 8px;
    }

    .alphabet-filter-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .artists-grid-page {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .artist-name-page {
        font-size: 16px;
    }

    .artist-name-overlay-page {
        padding: 15px 10px;
    }
}

@media screen and (max-width: 480px) {
    .artists-page-header {
        padding-top: 20px;
        margin-bottom: 20px;
    }

    .artists-page-title {
        font-size: 28px;
    }

    .alphabet-filter-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .artists-grid-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* ============================================================================
   LATEST VIDEO SECTION STYLES
   ============================================================================ */

.latest-video-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.video-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.video-thumbnail-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
}

.video-link {
    display: block;
    text-decoration: none;
    position: relative;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-link:hover .video-thumbnail {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.video-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Google Sans', sans-serif;
    background-color: #1a1a1a;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(220, 53, 69, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-link:hover .video-play-overlay {
    background-color: rgba(220, 53, 69, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 40px;
    height: 40px;
    margin-left: 5px;
    /* Center the play icon */
}

.video-info-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-section-title {
    font-family: 'Luminari', serif;
    font-size: 48px;
    font-weight: normal;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.recent-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.recent-video-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.recent-video-item:hover {
    transform: translateY(-3px);
}

.recent-video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background-color: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
}

.recent-video-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Google Sans', sans-serif;
    font-size: 12px;
    background-color: #1a1a1a;
}

.recent-video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(220, 53, 69, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.recent-video-item:hover .recent-video-play-overlay {
    background-color: rgba(220, 53, 69, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.recent-play-icon {
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

.recent-video-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-top: 10px;
    text-align: center;
    line-height: 1.4;
}

.video-footer {
    margin-top: auto;
}

.view-all-videos-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: #dc3545;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 255px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-videos-btn:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 10001;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background-color: #ffffff;
    transform: rotate(90deg);
}

.video-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: #1a1a1a;
}

.video-modal-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.video-modal-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Latest Video Section Responsive */
@media screen and (max-width: 1024px) {
    .latest-video-section {
        padding: 60px 15px;
    }

    .video-content-wrapper {
        gap: 40px;
    }

    .video-section-title {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .recent-videos-grid {
        gap: 12px;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 767px) {
    .latest-video-section {
        padding: 50px 15px;
    }

    .video-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .video-thumbnail-wrapper {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }

    .video-info-wrapper {
        width: 100%;
        text-align: center;
    }

    .video-section-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .recent-videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }

    .recent-video-play-overlay {
        width: 40px;
        height: 40px;
    }

    .recent-play-icon {
        width: 20px;
        height: 20px;
    }

    .view-all-videos-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .video-modal-content {
        width: 95%;
    }
}

@media screen and (max-width: 480px) {
    .latest-video-section {
        padding: 40px 10px;
    }

    .video-section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .recent-videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 15px;
    }

    .recent-video-play-overlay {
        width: 35px;
        height: 35px;
    }

    .recent-play-icon {
        width: 18px;
        height: 18px;
    }

    .recent-video-title {
        font-size: 12px;
        margin-top: 6px;
    }

    .video-play-overlay {
        width: 60px;
        height: 60px;
    }

    .play-icon {
        width: 30px;
        height: 30px;
    }

    .video-modal-content {
        width: 98%;
    }

    .video-modal-close {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }

    .video-modal-close svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================================================
   VIDEOS PAGE STYLES
   ============================================================================ */

.videos-page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 110px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.videos-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 1;
    opacity: 0;
}

.videos-page-header>* {
    position: relative;
    z-index: 2;
}

.videos-page-title {
    font-family: 'Luminari', serif;
    font-size: 74px;
    color: #ffffff;
    margin-bottom: -23px;
    font-weight: normal;
    text-shadow: 1px 1px 1px #000;
}

.videos-page-text {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 1px 1px 1px #000;
}

.videos-grid-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.video-card-page {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.video-card-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-thumbnail-page {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.video-image-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card-page:hover .video-image-page {
    transform: scale(1.05);
}

.video-placeholder-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    background-color: #2a2a2a;
}

.video-play-overlay-page {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(220, 53, 69, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-card-page:hover .video-play-overlay-page {
    background-color: rgba(220, 53, 69, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon-page {
    width: 30px;
    height: 30px;
    margin-left: 3px;
}

.video-title-page {
    margin-top: 15px;
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

.videos-empty-page {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
}

/* Videos Page Responsive */
@media screen and (max-width: 1024px) {
    .videos-page-title {
        font-size: 40px;
    }

    .videos-page-text {
        font-size: 16px;
    }

    .videos-grid-page {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .videos-page-header {
        padding-top: 110px;
        margin-bottom: 30px;
    }

    .videos-page-title {
        font-size: 48px;
    }

    .videos-page-text {
        font-size: 15px;
    }

    .videos-grid-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .video-title-page {
        font-size: 14px;
    }

    .video-play-overlay-page {
        width: 60px;
        height: 60px;
    }

    .play-icon-page {
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 480px) {
    .videos-page-header {
        padding-top: 110px;
        margin-bottom: 20px;
    }

    .videos-page-title {
        font-size: 40px;
    }

    .videos-grid-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .video-play-overlay-page {
        width: 50px;
        height: 50px;
    }

    .play-icon-page {
        width: 20px;
        height: 20px;
    }
}

/* ============================================================================
   EVENTS SECTION STYLES
   ============================================================================ */

.events-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #ffffff;
}

.events-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 30px;
}

.events-header {
    flex: 1;
}

.events-section-title {
    font-family: 'Luminari', serif;
    font-size: 48px;
    font-weight: normal;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.events-section-text {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
}

.events-footer {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.see-all-events-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: #dc3545;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 255px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.see-all-events-btn:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: #f8f8f8;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #1a1a1a;
}

.event-date {
    flex-shrink: 0;
    text-align: center;
    min-width: 80px;
}

.event-days {
    font-family: 'Google Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 5px;
}

.event-month {
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.event-location {
    font-family: 'Google Sans', sans-serif;
    font-size: 15px;
    color: #666;
    font-weight: 400;
}

.event-city {
    color: #1a1a1a;
}

.event-separator {
    margin: 0 4px;
}

.event-country {
    color: #666;
}

.events-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-family: 'Google Sans', sans-serif;
}

/* Events Section Responsive */
@media screen and (max-width: 1024px) {
    .events-section {
        padding: 60px 15px;
    }

    .events-header-wrapper {
        gap: 20px;
        margin-bottom: 50px;
    }

    .events-section-title {
        font-size: 40px;
    }

    .events-section-text {
        font-size: 16px;
    }

    .events-grid {
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .events-section {
        padding: 50px 15px;
    }

    .events-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
        gap: 20px;
    }

    .events-footer {
        width: 100%;
        justify-content: flex-start;
    }

    .events-section-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .events-section-text {
        font-size: 15px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-card {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .event-date {
        min-width: auto;
        text-align: left;
    }

    .see-all-events-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .events-section {
        padding: 40px 10px;
    }

    .events-section-title {
        font-size: 28px;
    }

    .event-days {
        font-size: 28px;
    }

    .event-month {
        font-size: 14px;
    }

    .event-title {
        font-size: 18px;
    }

    .event-location {
        font-size: 14px;
    }
}

/* ============================================================================
   HIGHLIGHTED PRODUCTS CAROUSEL STYLES
   ============================================================================ */

.highlighted-products-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #ffffff;
}

.highlighted-products-header {
    text-align: center;
    margin-bottom: 50px;
}

.highlighted-products-title {
    font-family: 'Luminari', serif;
    font-size: 48px;
    font-weight: normal;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.products-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.products-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.products-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.product-carousel-item {
    flex: 0 0 calc(20% - 24px);
    min-width: calc(20% - 24px);
    scroll-snap-align: start;
}

.product-carousel-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.product-carousel-link:hover {
    transform: translateY(-5px);
}

.product-carousel-image-wrapper {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-carousel-link:hover .product-carousel-image {
    transform: scale(1.05);
}

.product-carousel-info {
    text-align: center;
}

.product-carousel-name {
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.product-carousel-category {
    font-family: 'Google Sans', sans-serif;
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(26, 26, 26, 0.8);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

.products-carousel-wrapper:hover .carousel-prev,
.products-carousel-wrapper:hover .carousel-next {
    opacity: 1;
    visibility: visible;
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: #dc3545;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev svg,
.carousel-next svg {
    width: 24px;
    height: 24px;
}

/* Highlighted Products Responsive */
@media screen and (max-width: 1024px) {
    .highlighted-products-section {
        padding: 60px 15px;
    }

    .highlighted-products-title {
        font-size: 40px;
    }

    .product-carousel-item {
        flex: 0 0 calc(25% - 22.5px);
        min-width: calc(25% - 22.5px);
    }

    .products-carousel {
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .highlighted-products-section {
        padding: 50px 15px;
    }

    .highlighted-products-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .product-carousel-item {
        flex: 0 0 calc(33.333% - 13.33px);
        min-width: calc(33.333% - 13.33px);
    }

    .products-carousel {
        gap: 15px;
    }

    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        opacity: 1;
        visibility: visible;
    }

    .carousel-prev {
        left: -20px;
    }

    .carousel-next {
        right: -20px;
    }

    .carousel-prev svg,
    .carousel-next svg {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 480px) {
    .highlighted-products-section {
        padding: 40px 10px;
    }

    .highlighted-products-title {
        font-size: 28px;
    }

    .product-carousel-item {
        flex: 0 0 calc(50% - 7.5px);
        min-width: calc(50% - 7.5px);
    }

    .products-carousel {
        gap: 10px;
    }

    .product-carousel-name {
        font-size: 14px;
    }

    .product-carousel-category {
        font-size: 12px;
    }
}

/* ============================================================================
   PRODUCT DETAIL PAGE STYLES
   ============================================================================ */

.product-page-header {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 110px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.product-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 1;
    opacity: 0;
}

.product-page-header .container {
    position: relative;
    z-index: 2;
}

.product-breadcrumb {
    margin-bottom: 20px;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    color: #666;
    text-align: left;
}

.product-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-breadcrumb a:hover {
    color: #dc3545;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #999;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 1px 1px 1px #000;
}

.product-page-title {
    font-family: 'Luminari', serif;
    font-size: 74px;
    color: #ffffff;
    margin-bottom: -23px;
    font-weight: normal;
    text-shadow: 1px 1px 1px #000;
    line-height: 1.2;
}

.product-page-main {
    min-height: calc(100vh - 80px);
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-detail-image-wrapper {
    width: 100%;
}

.product-detail-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.product-detail-image-placeholder {
    width: 100%;
    padding-top: 100%;
    background-color: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
}

.product-detail-info-wrapper {
    display: flex;
    flex-direction: column;
}

.product-detail-info {
    flex: 1;
}

.product-detail-category {
    margin-bottom: 15px;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    color: #666;
}

.product-category-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-category-link:hover {
    color: #dc3545;
}

.category-separator {
    margin: 0 5px;
    color: #999;
}

.product-detail-name {
    font-family: 'Google Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.product-detail-description {
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.product-detail-content {
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.product-detail-content p {
    margin-bottom: 15px;
}

.product-detail-content h1,
.product-detail-content h2,
.product-detail-content h3,
.product-detail-content h4,
.product-detail-content h5,
.product-detail-content h6 {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.product-detail-content ul,
.product-detail-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.product-detail-content li {
    margin-bottom: 8px;
}

/* Product Detail Page Responsive */
@media screen and (max-width: 1024px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }

    .product-page-title {
        font-size: 60px;
    }

    .product-detail-name {
        font-size: 32px;
    }
}

@media screen and (max-width: 767px) {
    .product-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
        margin-bottom: 30px;
    }

    .product-page-title {
        font-size: 48px;
    }

    .product-page-main {
        padding: 30px 15px;
    }

    .product-detail-wrapper {
        padding: 20px;
        gap: 30px;
    }

    .product-detail-name {
        font-size: 28px;
    }

    .product-detail-description,
    .product-detail-content {
        font-size: 15px;
    }

    .product-breadcrumb {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .product-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .product-page-title {
        font-size: 40px;
    }

    .product-detail-wrapper {
        padding: 15px;
    }

    .product-detail-name {
        font-size: 24px;
    }
}

/* Related Products Section */
.related-products-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.related-products-title {
    font-family: 'Luminari', serif;
    font-size: 36px;
    font-weight: normal;
    color: #1a1a1a;
    margin: 0 0 40px 0;
    text-align: center;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.related-product-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.related-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-product-image-wrapper {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background-color: #f8f8f8;
    overflow: hidden;
}

.related-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.related-product-card:hover .related-product-image {
    transform: scale(1.05);
}

.related-product-info {
    padding: 20px;
}

.related-product-name {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.related-product-category {
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Related Products Responsive */
@media screen and (max-width: 1024px) {
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .related-products-title {
        font-size: 32px;
    }
}

@media screen and (max-width: 767px) {
    .related-products-section {
        margin-top: 40px;
        padding-top: 40px;
    }

    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .related-products-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .related-product-info {
        padding: 15px;
    }

    .related-product-name {
        font-size: 16px;
    }

    .related-product-category {
        font-size: 13px;
    }
}

/* ============================================================================
   ARTIST DETAIL PAGE STYLES
   ============================================================================ */

.artist-page-header {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 110px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.artist-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 1;
    opacity: 0;
}

.artist-page-header .container {
    position: relative;
    z-index: 2;
}

.artist-breadcrumb {
    margin-bottom: 20px;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-align: left;
    text-shadow: 1px 1px 1px #000;
}

.artist-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 1px #000;
}

.artist-breadcrumb a:hover {
    color: #ffcccc;
}

.artist-page-title {
    font-family: 'Luminari', serif;
    font-size: 74px;
    color: #ffffff;
    margin-bottom: -23px;
    font-weight: normal;
    text-shadow: 1px 1px 1px #000;
    line-height: 1.2;
}

.artist-page-main {
    min-height: calc(100vh - 80px);
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.artist-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.artist-detail-image-wrapper {
    width: 100%;
}

.artist-detail-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.artist-detail-image-placeholder {
    width: 100%;
    padding-top: 100%;
    background-color: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
}

.artist-detail-info-wrapper {
    display: flex;
    flex-direction: column;
}

.artist-detail-info {
    flex: 1;
}

.artist-detail-name {
    font-family: 'Google Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.artist-detail-bio {
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.artist-detail-bio p {
    margin-bottom: 15px;
}

.artist-detail-bio h1,
.artist-detail-bio h2,
.artist-detail-bio h3,
.artist-detail-bio h4,
.artist-detail-bio h5,
.artist-detail-bio h6 {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.artist-detail-bio ul,
.artist-detail-bio ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.artist-detail-bio li {
    margin-bottom: 8px;
}

.artist-detail-bio a {
    color: #dc3545;
    text-decoration: none;
    transition: color 0.3s ease;
}

.artist-detail-bio a:hover {
    color: #c82333;
    text-decoration: underline;
}

.artist-detail-bio strong,
.artist-detail-bio b {
    font-weight: 700;
}

.artist-detail-bio em,
.artist-detail-bio i {
    font-style: italic;
}

.artist-detail-bio blockquote {
    border-left: 4px solid #dc3545;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #666;
}

/* Artist Detail Page Responsive */
@media screen and (max-width: 1024px) {
    .artist-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }

    .artist-page-title {
        font-size: 60px;
    }

    .artist-detail-name {
        font-size: 32px;
    }
}

@media screen and (max-width: 767px) {
    .artist-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
        margin-bottom: 30px;
    }

    .artist-page-title {
        font-size: 48px;
    }

    .artist-page-main {
        padding: 30px 15px;
    }

    .artist-detail-wrapper {
        padding: 20px;
        gap: 30px;
    }

    .artist-detail-name {
        font-size: 28px;
    }

    .artist-detail-bio {
        font-size: 15px;
    }

    .artist-breadcrumb {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .artist-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .artist-page-title {
        font-size: 40px;
    }

    .artist-detail-wrapper {
        padding: 15px;
    }

    .artist-detail-name {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .related-products-section {
        margin-top: 30px;
        padding-top: 30px;
    }

    .related-products-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .related-product-info {
        padding: 12px;
    }

    .related-product-name {
        font-size: 15px;
    }
}

/* ============================================================================
   PRODUCTS PAGE STYLES
   ============================================================================ */

.products-page-main {
    min-height: calc(100vh - 80px);
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.products-page-header {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 110px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.products-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 1;
    opacity: 0;
}

.products-page-header .container {
    position: relative;
    z-index: 2;
}

.products-page-header>* {
    position: relative;
    z-index: 2;
}

.products-page-title {
    font-family: 'Luminari', serif;
    font-size: 74px;
    color: #ffffff;
    margin-bottom: -23px;
    font-weight: normal;
    text-shadow: 1px 1px 1px #000;
    line-height: 1.2;
}

.products-page-count {
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin: 0;
    margin-top: 15px;
}

.products-filters-wrapper {
    margin-bottom: 40px;
}

.products-filters {
    max-width: 1400px;
    margin: 0 auto;
}

.filter-form {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    color: #1a1a1a;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.filter-select:hover {
    border-color: #dc3545;
}

.filter-select:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.products-grid-page {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.product-card-page {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-card-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-card-link-page {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card-image-wrapper-page {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background-color: #f8f8f8;
    overflow: hidden;
}

.product-card-image-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-page:hover .product-card-image-page {
    transform: scale(1.05);
}

.product-card-info-page {
    padding: 20px;
    text-align: center;
}

.product-card-name-page {
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.product-card-category-page {
    font-family: 'Google Sans', sans-serif;
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.products-empty {
    text-align: center;
    padding: 80px 20px;
    color: #666;
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
}

/* Pagination */
.products-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
}

.pagination-link {
    display: inline-block;
    padding: 10px 15px;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.pagination-link:hover {
    background-color: #dc3545;
    color: #ffffff;
    border-color: #dc3545;
    transform: translateY(-2px);
}

.pagination-link.active {
    background-color: #dc3545;
    color: #ffffff;
    border-color: #dc3545;
}

.pagination-prev,
.pagination-next {
    padding: 10px 20px;
}

/* Products Page Responsive */
@media screen and (max-width: 1024px) {
    .products-page-main {
        padding: 50px 15px;
    }

    .products-page-title {
        font-size: 60px;
    }

    .products-grid-page {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .products-page-main {
        padding: 40px 15px;
    }

    .products-page-title {
        font-size: 48px;
    }

    .filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-select {
        width: 100%;
    }

    .products-grid-page {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .product-card-info-page {
        padding: 15px;
    }

    .product-card-name-page {
        font-size: 14px;
    }

    .product-card-category-page {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .products-page-main {
        padding: 30px 10px;
    }

    .products-page-title {
        font-size: 40px;
    }

    .products-grid-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .pagination-link {
        padding: 8px 12px;
        font-size: 13px;
        min-width: 35px;
    }
}

/* ============================================================================
   FOOTER STYLES
   ============================================================================ */

.main-footer {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-address {
    margin-bottom: 20px;
}

.footer-address p {
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.footer-contact {
    margin-bottom: 25px;
}

.footer-phone,
.footer-email {
    margin: 0 0 10px 0;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
}

.footer-phone a,
.footer-email a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone a:hover,
.footer-email a:hover {
    color: #ffffff;
}

.footer-social {
    margin-top: auto;
}

.footer-social-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.footer-social-list li {
    margin: 0;
}

.footer-social-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #cccccc;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.footer-social-list a:hover {
    color: #dc3545;
    transform: translateY(-3px);
}

.footer-social-list svg {
    width: 100%;
    height: 100%;
}

.footer-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-newsletter-text {
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #dc3545;
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-input::placeholder {
    color: #999999;
}

.newsletter-submit {
    padding: 12px 30px;
    background-color: #dc3545;
    color: #ffffff;
    border: none;
    border-radius: 255px;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.newsletter-kvkk {
    margin-top: 5px;
}

.kvkk-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-family: 'Google Sans', sans-serif;
    font-size: 12px;
    color: #cccccc;
    line-height: 1.5;
}

.kvkk-checkbox input[type="checkbox"] {
    margin-top: 2px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.kvkk-text {
    flex: 1;
}

.kvkk-text a {
    color: #dc3545;
}

/* Newsletter Modal Styles */
.newsletter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.newsletter-modal.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.newsletter-modal-content {
    position: relative;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    text-align: center;
}

.newsletter-modal.active .newsletter-modal-content {
    transform: scale(1);
}

.newsletter-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.newsletter-modal-close:hover {
    color: #333333;
}

.newsletter-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.newsletter-modal.success .newsletter-modal-icon {
    background-color: #d4edda;
    color: #28a745;
}

.newsletter-modal.error .newsletter-modal-icon {
    background-color: #f8d7da;
    color: #dc3545;
}

.newsletter-modal-icon svg {
    width: 50px;
    height: 50px;
    fill: currentColor;
}

.newsletter-modal-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.newsletter-modal-message {
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.newsletter-modal-button {
    padding: 12px 40px;
    background-color: #dc3545;
    color: #ffffff;
    border: none;
    border-radius: 255px;
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.newsletter-modal-button:hover {
    background-color: #c82333;
    transform: translateY(-2px);
}

.newsletter-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Newsletter Modal Responsive */
@media screen and (max-width: 480px) {
    .newsletter-modal-content {
        padding: 30px 20px;
        max-width: 90%;
    }

    .newsletter-modal-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .newsletter-modal-icon svg {
        width: 40px;
        height: 40px;
    }

    .newsletter-modal-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .newsletter-modal-message {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .newsletter-modal-button {
        padding: 10px 30px;
        font-size: 14px;
    }
}
    text-decoration: underline;
    transition: color 0.3s ease;
}

.kvkk-text a:hover {
    color: #c82333;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-copyright {
    font-family: 'Google Sans', sans-serif;
    font-size: 13px;
    color: #999999;
    margin: 0;
}

/* Footer Responsive */
@media screen and (max-width: 1024px) {
    .footer-content {
        gap: 40px;
    }
}

@media screen and (max-width: 767px) {
    .main-footer {
        padding: 50px 15px 25px;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-social-list {
        justify-content: flex-start;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-submit {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .main-footer {
        padding: 40px 10px 20px;
    }

    .footer-logo-img {
        height: 40px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-social-list {
        gap: 10px;
    }

    .footer-social-list a {
        width: 35px;
        height: 35px;
    }
}

/* ============================================================================
   DOCUMENTS PAGE STYLES
   ============================================================================ */

.documents-page-header {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 110px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.documents-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 1;
    opacity: 0;
}

.documents-page-header .container {
    position: relative;
    z-index: 2;
}

.documents-page-title {
    font-family: 'Luminari', serif;
    font-size: 74px;
    color: #ffffff;
    margin-bottom: -23px;
    font-weight: normal;
    text-shadow: 1px 1px 1px #000;
    line-height: 1.2;
}

.documents-page-text {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
    text-shadow: 1px 1px 1px #000;
    margin-top: 24px;
}

.documents-page-main {
    min-height: calc(100vh - 80px);
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.document-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.document-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    /* 4:3 Aspect Ratio */
    background-color: #f8f8f8;
    overflow: hidden;
}

.document-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.document-card:hover .document-image {
    transform: scale(1.05);
}

.document-download-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(220, 53, 69, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.document-card:hover .document-download-overlay {
    opacity: 1;
}

.download-icon {
    width: 50px;
    height: 50px;
}

.document-info {
    padding: 20px;
}

.document-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.3;
    min-height: 50px;
}

.document-download-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #dc3545;
    color: #ffffff;
    text-decoration: none;
    border-radius: 255px;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.document-download-btn:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.documents-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
}

/* Documents Page Responsive */
@media screen and (max-width: 1024px) {
    .documents-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .documents-page-title {
        font-size: 60px;
    }

    .documents-page-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .documents-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
        margin-bottom: 30px;
    }

    .documents-page-title {
        font-size: 48px;
    }

    .documents-page-text {
        font-size: 15px;
    }

    .documents-page-main {
        padding: 30px 15px;
    }

    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .document-info {
        padding: 15px;
    }

    .document-title {
        font-size: 16px;
        min-height: 45px;
    }

    .document-download-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .documents-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .documents-page-title {
        font-size: 40px;
    }

    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .document-info {
        padding: 12px;
    }

    .document-title {
        font-size: 15px;
        min-height: 40px;
        margin-bottom: 10px;
    }

    .document-download-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
}

/* ============================================================================
   ABOUT US PAGE STYLES
   ============================================================================ */

.about-page-header {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 110px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.about-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 1;
    opacity: 0;
}

.about-page-header .container {
    position: relative;
    z-index: 2;
}

.about-page-title {
    font-family: 'Luminari', serif;
    font-size: 74px;
    color: #ffffff;
    margin-bottom: -23px;
    font-weight: normal;
    text-shadow: 1px 1px 1px #000;
    line-height: 1.2;
}

.about-page-main {
    min-height: calc(100vh - 80px);
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.about-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-content {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* About Us Page Responsive */
@media screen and (max-width: 1024px) {
    .about-page-title {
        font-size: 40px;
    }

    .about-content-wrapper {
        padding: 40px;
    }

    .about-content {
        font-size: 17px;
    }
}

@media screen and (max-width: 767px) {
    .about-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
        margin-bottom: 30px;
    }

    .about-page-title {
        font-size: 48px;
    }

    .about-page-main {
        padding: 30px 15px;
    }

    .about-content-wrapper {
        padding: 30px;
    }

    .about-content {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .about-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .about-page-title {
        font-size: 40px;
    }

    .about-content-wrapper {
        padding: 20px;
    }

    .about-content {
        font-size: 15px;
    }

    .about-content p {
        margin-bottom: 15px;
    }
}

/* ============================================================================
   WARRANTY PAGE STYLES
   ============================================================================ */

.warranty-page-header {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 110px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.warranty-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 1;
    opacity: 0;
}

.warranty-page-header .container {
    position: relative;
    z-index: 2;
}

.warranty-page-title {
    font-family: 'Luminari', serif;
    font-size: 74px;
    color: #ffffff;
    margin-bottom: -23px;
    font-weight: normal;
    text-shadow: 1px 1px 1px #000;
    line-height: 1.2;
}

.warranty-page-main {
    min-height: calc(100vh - 80px);
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.warranty-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.warranty-content {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.warranty-content h3 {
    font-family: 'Google Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.4;
}

.warranty-content p {
    margin-bottom: 20px;
}

.warranty-content p:last-child {
    margin-bottom: 0;
}

.warranty-content ul {
    margin: 25px 0;
    padding-left: 30px;
}

.warranty-content li {
    margin-bottom: 15px;
    line-height: 1.8;
}

.warranty-content strong {
    font-weight: 700;
    color: #1a1a1a;
}

.warranty-content em {
    font-style: italic;
}

.warranty-content sup {
    font-size: 0.7em;
    vertical-align: super;
}

/* Warranty Page Responsive */
@media screen and (max-width: 1024px) {
    .warranty-page-title {
        font-size: 60px;
    }

    .warranty-content-wrapper {
        padding: 40px;
    }

    .warranty-content {
        font-size: 17px;
    }

    .warranty-content h3 {
        font-size: 24px;
    }
}

@media screen and (max-width: 767px) {
    .warranty-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
        margin-bottom: 30px;
    }

    .warranty-page-title {
        font-size: 48px;
    }

    .warranty-page-main {
        padding: 30px 15px;
    }

    .warranty-content-wrapper {
        padding: 30px;
    }

    .warranty-content {
        font-size: 16px;
    }

    .warranty-content h3 {
        font-size: 22px;
    }
}

@media screen and (max-width: 480px) {
    .warranty-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .warranty-page-title {
        font-size: 40px;
    }

    .warranty-content-wrapper {
        padding: 20px;
    }

    .warranty-content {
        font-size: 15px;
    }

    .warranty-content h3 {
        font-size: 20px;
    }

    .warranty-content p {
        margin-bottom: 15px;
    }

    .warranty-content ul {
        padding-left: 20px;
    }
}

/* ============================================================================
   FAQ PAGE STYLES
   ============================================================================ */

.faq-page-header {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 110px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.faq-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 1;
    opacity: 0;
}

.faq-page-header .container {
    position: relative;
    z-index: 2;
}

.faq-page-title {
    font-family: 'Luminari', serif;
    font-size: 74px;
    color: #ffffff;
    margin-bottom: -23px;
    font-weight: normal;
    text-shadow: 1px 1px 1px #000;
    line-height: 1.2;
}

.faq-page-main {
    min-height: calc(100vh - 80px);
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.faq-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background-color: #ffffff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-question:hover {
    background-color: #f8f8f8;
}

.faq-question.active {
    background-color: #f8f8f8;
}

.faq-question-text {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: #dc3545;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
    line-height: 1;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #ffffff;
}

.faq-answer.active {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 30px 25px 30px;
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.faq-answer-content p {
    margin: 0;
}

.faq-answer-content a {
    color: #dc3545;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer-content a:hover {
    color: #c82333;
    text-decoration: underline;
}

/* FAQ Page Responsive */
@media screen and (max-width: 1024px) {
    .faq-page-title {
        font-size: 60px;
    }

    .faq-question {
        padding: 20px 25px;
        font-size: 17px;
    }

    .faq-answer-content {
        padding: 0 25px 20px 25px;
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .faq-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
        margin-bottom: 30px;
    }

    .faq-page-title {
        font-size: 48px;
    }

    .faq-page-main {
        padding: 30px 15px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }

    .faq-question-text {
        padding-right: 15px;
    }

    .faq-icon {
        font-size: 24px;
        width: 25px;
    }

    .faq-answer-content {
        padding: 0 20px 18px 20px;
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .faq-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .faq-page-title {
        font-size: 40px;
    }

    .faq-question {
        padding: 15px;
        font-size: 15px;
    }

    .faq-question-text {
        padding-right: 10px;
    }

    .faq-icon {
        font-size: 22px;
        width: 22px;
    }

    .faq-answer-content {
        padding: 0 15px 15px 15px;
        font-size: 14px;
    }
}

/* ============================================================================
   ENDORSEMENT PAGE STYLES
   ============================================================================ */

.endorsement-page-header {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 110px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.endorsement-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 1;
    opacity: 0;
}

.endorsement-page-header .container {
    position: relative;
    z-index: 2;
}

.endorsement-page-title {
    font-family: 'Luminari', serif;
    font-size: 74px;
    color: #ffffff;
    margin-bottom: -23px;
    font-weight: normal;
    text-shadow: 1px 1px 1px #000;
    line-height: 1.2;
}

.endorsement-page-main {
    min-height: calc(100vh - 80px);
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.endorsement-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.endorsement-content {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.endorsement-content p {
    margin-bottom: 20px;
}

.endorsement-content p:last-child {
    margin-bottom: 0;
}

.endorsement-content strong {
    font-weight: 700;
    color: #1a1a1a;
}

.endorsement-content em {
    font-style: italic;
}

.endorsement-address {
    margin: 30px 0;
    padding: 25px;
    background-color: #f8f8f8;
    border-left: 4px solid #dc3545;
    border-radius: 4px;
}

.endorsement-address p {
    margin-bottom: 10px;
}

.endorsement-address p:last-child {
    margin-bottom: 0;
}

.endorsement-materials {
    margin: 30px 0;
    padding-left: 20px;
}

.endorsement-materials p {
    margin-bottom: 12px;
}

.endorsement-download {
    margin: 35px 0;
    text-align: center;
}

.endorsement-download-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: #dc3545;
    color: #ffffff;
    text-decoration: none;
    border-radius: 255px;
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.endorsement-download-btn:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.endorsement-contact {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid #e0e0e0;
}

.endorsement-contact p {
    margin-bottom: 10px;
}

.endorsement-contact a {
    color: #dc3545;
    text-decoration: none;
    transition: color 0.3s ease;
}

.endorsement-contact a:hover {
    color: #c82333;
    text-decoration: underline;
}

/* Endorsement Page Responsive */
@media screen and (max-width: 1024px) {
    .endorsement-page-title {
        font-size: 60px;
    }

    .endorsement-content-wrapper {
        padding: 40px;
    }

    .endorsement-content {
        font-size: 17px;
    }
}

@media screen and (max-width: 767px) {
    .endorsement-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
        margin-bottom: 30px;
    }

    .endorsement-page-title {
        font-size: 48px;
    }

    .endorsement-page-main {
        padding: 30px 15px;
    }

    .endorsement-content-wrapper {
        padding: 30px;
    }

    .endorsement-content {
        font-size: 16px;
    }

    .endorsement-address {
        padding: 20px;
    }

    .endorsement-download-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .endorsement-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .endorsement-page-title {
        font-size: 40px;
    }

    .endorsement-content-wrapper {
        padding: 20px;
    }

    .endorsement-content {
        font-size: 15px;
    }

    .endorsement-content p {
        margin-bottom: 15px;
    }

    .endorsement-address {
        padding: 15px;
        border-left-width: 3px;
    }

    .endorsement-materials {
        padding-left: 15px;
    }

    .endorsement-download-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .endorsement-contact {
        padding-top: 20px;
    }
}

/* ============================================================================
   CYMBALS CARE PAGE STYLES
   ============================================================================ */

.cymbals-care-page-header {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 110px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.cymbals-care-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 1;
    opacity: 0;
}

.cymbals-care-page-header .container {
    position: relative;
    z-index: 2;
}

.cymbals-care-page-title {
    font-family: 'Luminari', serif;
    font-size: 74px;
    color: #ffffff;
    margin-bottom: -23px;
    font-weight: normal;
    text-shadow: 1px 1px 1px #000;
    line-height: 1.2;
}

.cymbals-care-page-main {
    min-height: calc(100vh - 80px);
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.cymbals-care-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cymbals-care-content {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.cymbals-care-content h3 {
    font-family: 'Google Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.4;
}

.cymbals-care-content h4 {
    font-family: 'Google Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 30px 0 20px 0;
    line-height: 1.4;
}

.cymbals-care-content p {
    margin-bottom: 20px;
}

.cymbals-care-content p:last-child {
    margin-bottom: 0;
}

.cymbals-care-content strong {
    font-weight: 700;
    color: #1a1a1a;
}

.cymbals-care-content em {
    font-style: italic;
}

.cymbals-care-list {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: care-counter;
}

.cymbals-care-list li {
    counter-increment: care-counter;
    margin-bottom: 30px;
    padding-left: 50px;
    position: relative;
}

.cymbals-care-list li::before {
    content: counter(care-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: #dc3545;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.cymbals-care-list li strong {
    display: block;
    margin-bottom: 10px;
    font-size: 19px;
    color: #1a1a1a;
}

.cymbals-care-list li p {
    margin-bottom: 10px;
}

.cymbals-care-list li ul {
    margin: 10px 0 10px 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.cymbals-care-list li ul li {
    padding-left: 0;
    margin-bottom: 8px;
    counter-increment: none;
}

.cymbals-care-list li ul li::before {
    display: none;
}

/* Cymbals Care Page Responsive */
@media screen and (max-width: 1024px) {
    .cymbals-care-page-title {
        font-size: 60px;
    }

    .cymbals-care-content-wrapper {
        padding: 40px;
    }

    .cymbals-care-content {
        font-size: 17px;
    }

    .cymbals-care-content h3 {
        font-size: 24px;
    }

    .cymbals-care-content h4 {
        font-size: 20px;
    }

    .cymbals-care-list li {
        padding-left: 45px;
    }

    .cymbals-care-list li::before {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .cymbals-care-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
        margin-bottom: 30px;
    }

    .cymbals-care-page-title {
        font-size: 48px;
    }

    .cymbals-care-page-main {
        padding: 30px 15px;
    }

    .cymbals-care-content-wrapper {
        padding: 30px;
    }

    .cymbals-care-content {
        font-size: 16px;
    }

    .cymbals-care-content h3 {
        font-size: 22px;
    }

    .cymbals-care-content h4 {
        font-size: 18px;
    }

    .cymbals-care-list li {
        padding-left: 40px;
        margin-bottom: 25px;
    }

    .cymbals-care-list li::before {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .cymbals-care-list li strong {
        font-size: 17px;
    }
}

@media screen and (max-width: 480px) {
    .cymbals-care-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .cymbals-care-page-title {
        font-size: 40px;
    }

    .cymbals-care-content-wrapper {
        padding: 20px;
    }

    .cymbals-care-content {
        font-size: 15px;
    }

    .cymbals-care-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .cymbals-care-content h4 {
        font-size: 17px;
        margin: 25px 0 15px 0;
    }

    .cymbals-care-content p {
        margin-bottom: 15px;
    }

    .cymbals-care-list {
        margin: 20px 0;
    }

    .cymbals-care-list li {
        padding-left: 35px;
        margin-bottom: 20px;
    }

    .cymbals-care-list li::before {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .cymbals-care-list li strong {
        font-size: 16px;
    }

    .cymbals-care-list li ul {
        margin-left: 15px;
        padding-left: 15px;
    }
}

/* ============================================================================
   DEALERS PAGE STYLES
   ============================================================================ */

.dealers-page-header {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 110px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.dealers-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 1;
    opacity: 0;
}

.dealers-page-header .container {
    position: relative;
    z-index: 2;
}

.dealers-page-title {
    font-family: 'Luminari', serif;
    font-size: 74px;
    color: #ffffff;
    margin-bottom: -23px;
    font-weight: normal;
    text-shadow: 1px 1px 1px #000;
    line-height: 1.2;
}

.dealers-page-main {
    min-height: calc(100vh - 80px);
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.dealers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.dealer-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dealer-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.dealer-country {
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #dc3545;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dealer-name {
    font-family: 'Google Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.dealer-info {
    margin-bottom: 12px;
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.dealer-info:last-child {
    margin-bottom: 0;
}

.dealer-value {
    color: #333;
}

.dealer-link {
    color: #dc3545;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dealer-link:hover {
    color: #c82333;
    text-decoration: underline;
}

.dealer-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: currentColor;
}

.dealers-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
}

/* Dealers Page Responsive */
@media screen and (max-width: 1024px) {
    .dealers-page-title {
        font-size: 60px;
    }

    .dealers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .dealer-card {
        padding: 25px;
    }

    .dealer-name {
        font-size: 22px;
    }
}

@media screen and (max-width: 767px) {
    .dealers-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
        margin-bottom: 30px;
    }

    .dealers-page-title {
        font-size: 48px;
    }

    .dealers-page-main {
        padding: 30px 15px;
    }

    .dealers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .dealer-card {
        padding: 20px;
    }

    .dealer-name {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .dealer-info {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .dealer-icon {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 480px) {
    .dealers-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .dealers-page-title {
        font-size: 40px;
    }

    .dealers-page-main {
        padding: 20px 10px;
    }

    .dealers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .dealer-card {
        padding: 15px;
    }

    .dealer-name {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .dealer-info {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .dealer-icon {
        width: 14px;
        height: 14px;
    }
}

/* ============================================================================
   CONTACT PAGE STYLES
   ============================================================================ */

.contact-page-header {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 110px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.contact-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 1;
    opacity: 0;
}

.contact-page-header .container {
    position: relative;
    z-index: 2;
}

.contact-page-title {
    font-family: 'Luminari', serif;
    font-size: 74px;
    color: #ffffff;
    margin-bottom: -23px;
    font-weight: normal;
    text-shadow: 1px 1px 1px #000;
    line-height: 1.2;
}

.contact-page-main {
    min-height: calc(100vh - 80px);
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-section-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #dc3545;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-icon svg {
    width: 100%;
    height: 100%;
    fill: #dc3545;
}

.contact-info-content {
    flex: 1;
}

.contact-link {
    color: #dc3545;
    text-decoration: none;
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact-link:hover {
    color: #c82333;
    text-decoration: underline;
}

.contact-text {
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

.contact-form-section {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form {
    margin-top: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.required {
    color: #dc3545;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #dc3545;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    width: 100%;
    padding: 15px 30px;
    background-color: #dc3545;
    color: #ffffff;
    border: none;
    border-radius: 255px;
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.contact-map-section {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-map-wrapper {
    margin-top: 25px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-map {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Contact Page Responsive */
@media screen and (max-width: 1024px) {
    .contact-page-title {
        font-size: 60px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-section-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 767px) {
    .contact-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
        margin-bottom: 30px;
    }

    .contact-page-title {
        font-size: 48px;
    }

    .contact-page-main {
        padding: 30px 15px;
    }

    .contact-wrapper {
        gap: 25px;
        margin-bottom: 30px;
    }

    .contact-info-card,
    .contact-form-section,
    .contact-map-section {
        padding: 25px;
    }

    .contact-section-title {
        font-size: 22px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .contact-info-item {
        margin-bottom: 18px;
    }

    .contact-map {
        height: 350px;
    }
}

@media screen and (max-width: 480px) {
    .contact-page-header {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .contact-page-title {
        font-size: 40px;
    }

    .contact-page-main {
        padding: 20px 10px;
    }

    .contact-info-card,
    .contact-form-section,
    .contact-map-section {
        padding: 20px;
    }

    .contact-section-title {
        font-size: 20px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .contact-info-icon {
        width: 20px;
        height: 20px;
    }

    .contact-link,
    .contact-text {
        font-size: 15px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-input,
    .form-textarea {
        padding: 10px 12px;
        font-size: 15px;
    }

    .contact-submit-btn {
        padding: 12px 25px;
        font-size: 15px;
    }

    .contact-map {
        height: 300px;
    }
}