/**
 * EventSeat Pro - Elementor Compatibility Styles
 * 
 * Ensures full compatibility with:
 * - Elementor breakpoints
 * - Elementor Containers
 * - Elementor Flexbox
 * - Elementor Global Colors/Fonts
 * - Elementor Gallery, Slider, Loop Grid
 * - Elementor Dynamic Tags
 *
 * @package EventSeatPro
 */

/* ============================================
   1. ELEMENTOR BREAKPOINTS COMPATIBILITY
   ============================================ */

/* Mobile (default) */
@media (max-width: 767px) {
    .elementor-widget-container {
        /* Ensure widgets are responsive */
        max-width: 100% !important;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .elementor-section .elementor-container {
        max-width: 100%;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .elementor-section .elementor-container {
        max-width: var(--container-max, 1280px);
    }
}

/* ============================================
   2. ELEMENTOR CONTAINER SUPPORT
   ============================================ */

/* Flexbox Container Support */
.e-con {
    --flex-direction: initial;
    --flex-wrap: initial;
    --justify-content: initial;
    --align-items: initial;
    --align-content: initial;
    --gap: initial;
    --flex-grow: initial;
    --flex-shrink: initial;
    --flex-basis: initial;
    --align-self: initial;
    --order: initial;
}

/* Container boxed layout */
.e-con-boxed {
    max-width: var(--container-max, 1280px);
    margin-left: auto;
    margin-right: auto;
}

/* Container full width */
.e-con-full {
    width: 100%;
    max-width: none;
}

/* ============================================
   3. ELEMENTOR SECTION & COLUMN FIXES
   ============================================ */

/* Ensure sections take full width */
.elementor-section {
    position: relative;
}

.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: var(--container-max, 1280px);
}

/* Remove default margins that might conflict */
.elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-element-populated {
    padding: 10px;
}

.elementor-column-gap-narrow > .elementor-row > .elementor-column > .elementor-element-populated {
    padding: 5px;
}

.elementor-column-gap-extended > .elementor-row > .elementor-column > .elementor-element-populated {
    padding: 15px;
}

.elementor-column-gap-wide > .elementor-row > .elementor-column > .elementor-element-populated {
    padding: 20px;
}

.elementor-column-gap-wider > .elementor-row > .elementor-column > .elementor-element-populated {
    padding: 30px;
}

/* ============================================
   4. ELEMENTOR GALLERY COMPATIBILITY
   ============================================ */

.elementor-gallery__container {
    display: flex;
    flex-wrap: wrap;
}

.elementor-gallery-item {
    position: relative;
    overflow: hidden;
}

.elementor-gallery-item img {
    transition: transform 0.3s ease;
}

.elementor-gallery-item:hover img {
    transform: scale(1.05);
}

/* Justified gallery fix */
.elementor-gallery__container.e-gallery-jusitified {
    display: block;
}

/* Grid gallery fix */
.elementor-gallery__container.e-gallery-grid {
    display: grid;
}

/* Masonry gallery fix */
.elementor-gallery__container.e-gallery-masonry {
    display: block;
}

/* ============================================
   5. ELEMENTOR SLIDER/CAROUSEL COMPATIBILITY
   ============================================ */

/* Swiper slider fixes */
.swiper-container {
    width: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image carousel */
.elementor-image-carousel-wrapper {
    overflow: hidden;
}

/* Slides widget */
.elementor-slides-wrapper {
    position: relative;
}

/* ============================================
   6. ELEMENTOR LOOP GRID COMPATIBILITY
   ============================================ */

.elementor-loop-container {
    display: grid;
    gap: 0;
}

/* Loop grid columns */
.elementor-loop-container.columns-1 {
    grid-template-columns: 1fr;
}

.elementor-loop-container.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.elementor-loop-container.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.elementor-loop-container.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.elementor-loop-container.columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.elementor-loop-container.columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* Responsive loop grid */
@media (max-width: 1024px) {
    .elementor-loop-container.columns-4,
    .elementor-loop-container.columns-5,
    .elementor-loop-container.columns-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .elementor-loop-container.columns-2,
    .elementor-loop-container.columns-3,
    .elementor-loop-container.columns-4,
    .elementor-loop-container.columns-5,
    .elementor-loop-container.columns-6 {
        grid-template-columns: 1fr;
    }
}

/* Loop grid item */
.elementor-loop-item {
    position: relative;
}

/* ============================================
   7. ELEMENTOR DYNAMIC TAGS SUPPORT
   ============================================ */

/* Dynamic content should inherit theme styles */
.elementor-dynamic-content {
    display: inline;
}

/* Post Title dynamic tag */
.elementor-widget-heading .elementor-dynamic-post-title {
    margin: 0;
}

/* Featured Image dynamic tag */
.elementor-widget-image .elementor-dynamic-post-featured-image img {
    width: 100%;
    height: auto;
}

/* Post Content dynamic tag */
.elementor-widget-theme-post-content {
    line-height: 1.7;
}

/* ============================================
   8. ELEMENTOR POSTS WIDGET COMPATIBILITY
   ============================================ */

.elementor-posts-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.elementor-posts-container .elementor-post {
    padding: 0 10px;
    margin-bottom: 20px;
}

/* Posts card skin */
.elementor-posts-container .elementor-post__card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.elementor-posts-container .elementor-post__thumbnail {
    position: relative;
    overflow: hidden;
}

.elementor-posts-container .elementor-post__thumbnail img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.elementor-posts-container .elementor-post__card:hover .elementor-post__thumbnail img {
    transform: scale(1.05);
}

/* ============================================
   9. ELEMENTOR POPUP COMPATIBILITY
   ============================================ */

.dialog-type-lightbox {
    z-index: 9999 !important;
}

.dialog-widget-content {
    background: #fff;
    border-radius: 8px;
}

/* ============================================
   10. ELEMENTOR STICKY ELEMENTS
   ============================================ */

.elementor-sticky--active {
    z-index: 100;
}

/* Sticky header behavior */
.elementor-sticky--effects {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ============================================
   11. ELEMENTOR GLOBAL COLORS/FONTS SUPPORT
   ============================================ */

/* Ensure Elementor global colors work */
.elementor-element {
    --primary-color: var(--color-primary, #2563eb);
    --secondary-color: var(--color-slate-600, #475569);
    --text-color: var(--color-foreground, #0f172a);
    --bg-color: var(--color-background, #f8fafc);
}

/* Font family inheritance */
.elementor-widget-container {
    font-family: inherit;
}

/* ============================================
   12. ELEMENTOR FORM WIDGET FIXES
   ============================================ */

.elementor-form {
    width: 100%;
}

.elementor-field-group {
    margin-bottom: 1rem;
}

.elementor-field-textual {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-family: inherit;
}

.elementor-field-textual:focus {
    border-color: var(--color-primary, #2563eb);
    outline: none;
}

/* ============================================
   13. ELEMENTOR NAV MENU WIDGET
   ============================================ */

.elementor-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.elementor-nav-menu li {
    position: relative;
}

.elementor-nav-menu a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

/* ============================================
   14. ELEMENTOR CANVAS TEMPLATE FIXES
   ============================================ */

.elementor-canvas {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.elementor-canvas-wrapper {
    flex: 1;
    width: 100%;
}

/* Remove default padding/margin on canvas */
.elementor-canvas .site {
    margin: 0;
    padding: 0;
}

/* ============================================
   15. ELEMENTOR FULL WIDTH TEMPLATE FIXES
   ============================================ */

.elementor-full-width .site-content {
    padding: 0;
}

.elementor-full-width .container {
    max-width: 100%;
    padding: 0;
}

/* ============================================
   16. ELEMENTOR HIDDEN ON DEVICE CLASSES
   ============================================ */

@media (max-width: 767px) {
    .elementor-hidden-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .elementor-hidden-tablet {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .elementor-hidden-desktop {
        display: none !important;
    }
}

/* ============================================
   17. ELEMENTOR EDIT MODE FIXES
   ============================================ */

/* Ensure elements are visible in editor */
.elementor-edit-mode .elementor-element.elementor-section {
    min-height: 50px;
}

/* Fix for empty columns in editor */
.elementor-edit-mode .elementor-column > .elementor-element-populated:empty {
    min-height: 100px;
}

/* ============================================
   18. WOOCOMMERCE + ELEMENTOR FIXES
   ============================================ */

/* Product grid */
.elementor-products-grid ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Product card */
.elementor-products-grid ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    clear: none !important;
}

/* ============================================
   19. ELEMENTOR ANIMATION FIXES
   ============================================ */

/* Prevent FOUC (Flash of Unstyled Content) */
.elementor-invisible {
    visibility: hidden;
}

/* Entrance animations */
.animated {
    animation-duration: 1.25s;
}

/* ============================================
   20. RTL SUPPORT
   ============================================ */

/* RTL fixes for Elementor */
[dir="rtl"] .elementor-section .elementor-container {
    direction: rtl;
}

[dir="rtl"] .swiper-container {
    direction: ltr;
}

/* ============================================
   21. ARTIST CARD WIDGET STYLES
   ============================================ */

/* Base Card Styles */
.artist-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.artist-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Horizontal Layout */
.artist-card--horizontal {
    flex-direction: row;
}

.artist-card--horizontal .artist-card-image {
    flex: 0 0 40%;
    max-width: 300px;
}

.artist-card--horizontal .artist-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Image Styles */
.artist-card-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.artist-card-image--1-1 {
    aspect-ratio: 1 / 1;
}

.artist-card-image--3-4 {
    aspect-ratio: 3 / 4;
}

.artist-card-image--4-3 {
    aspect-ratio: 4 / 3;
}

.artist-card-image--16-9 {
    aspect-ratio: 16 / 9;
}

.artist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.artist-card:hover .artist-card-image img {
    transform: scale(1.05);
}

/* Image Shapes */
.artist-card--image-circle .artist-card-image {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    margin: 20px auto;
    width: 60%;
    overflow: hidden;
}

.artist-card--image-rounded .artist-card-image {
    border-radius: 12px;
    margin: 16px;
    overflow: hidden;
}

/* Content Styles */
.artist-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Name Styles */
.artist-card-name {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.artist-card-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.artist-card-name a:hover {
    color: #2563eb;
}

/* Description Styles */
.artist-card-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 16px;
}

/* Social Links */
.artist-social-links {
    display: flex;
    gap: 12px;
    margin-top: auto;
    margin-bottom: 16px;
    justify-content: center;
}

.artist-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    transition: all 0.2s ease;
}

.artist-social-link:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
}

.artist-social-link svg {
    width: 18px;
    height: 18px;
}

/* Footer & Button */
.artist-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.artist-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    background: #2563eb;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.artist-card-link:hover {
    background: #1d4ed8;
    transform: translateX(4px);
}

.artist-card-link svg {
    transition: transform 0.2s ease;
}

.artist-card-link:hover svg {
    transform: translateX(4px);
}

/* Grid Layouts */
.elementor-widget-eventseat-artist-card .artist-grid {
    display: grid;
    gap: 24px;
}

.elementor-widget-eventseat-artist-card .artist-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.elementor-widget-eventseat-artist-card .artist-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.elementor-widget-eventseat-artist-card .artist-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .elementor-widget-eventseat-artist-card .artist-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .elementor-widget-eventseat-artist-card .artist-grid--2,
    .elementor-widget-eventseat-artist-card .artist-grid--3,
    .elementor-widget-eventseat-artist-card .artist-grid--4 {
        grid-template-columns: 1fr;
    }
    
    .artist-card--horizontal {
        flex-direction: column;
    }
    
    .artist-card--horizontal .artist-card-image {
        flex: none;
        max-width: 100%;
    }
}

/* Loop Grid Compatibility */
.elementor-loop-item .artist-card {
    height: 100%;
}

/* Hover Overlay Effect (Optional) */
.artist-card-image-link {
    position: relative;
    display: block;
}

.artist-card-image-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-card:hover .artist-card-image-link::after {
    opacity: 1;
}

/* ============================================
   22. POSTS GRID WIDGET STYLES (Haberler)
   ============================================ */

.posts-grid-section {
    margin: 2rem 0;
}

.posts-grid-section .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-slate-900);
}

.posts-grid {
    display: grid;
    gap: 2rem;
}

.posts-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.posts-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

.posts-grid-4col {
    grid-template-columns: repeat(4, 1fr);
}

.posts-grid-6col {
    grid-template-columns: repeat(6, 1fr);
}

/* Responsive */
@media (max-width: 1024px) {
    .posts-grid-4col,
    .posts-grid-6col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .posts-grid-2col,
    .posts-grid-3col,
    .posts-grid-4col,
    .posts-grid-6col {
        grid-template-columns: 1fr;
    }
}

/* Post Card */
.post-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.post-card.hover-lift:hover {
    transform: translateY(-8px);
}

.post-card.hover-zoom:hover {
    transform: scale(1.02);
}

.post-card.hover-shadow:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Post Card Image */
.post-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.1);
}

/* Post Card Content */
.post-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.post-card-category a {
    color: inherit;
    text-decoration: none;
}

.post-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.75rem;
}

.post-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-card-title a:hover {
    color: #2563eb;
}

.post-card-meta {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.post-card-excerpt {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 1rem;
    flex: 1;
}

.post-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
}

.post-card-read-more:hover {
    gap: 0.75rem;
}

.post-card-read-more svg {
    transition: transform 0.2s ease;
}

.post-card-read-more:hover svg {
    transform: translateX(4px);
}

/* ============================================
   23. CITIES GRID WIDGET STYLES (Şehirler)
   ============================================ */

.cities-section {
    margin: 2rem 0;
}

.cities-section .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cities-wrapper {
    display: grid;
    gap: 1.5rem;
}

.cities-wrapper.grid {
    display: grid;
}

.cities-wrapper.slider {
    display: block;
}

.cities-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.cities-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

.cities-grid-4col {
    grid-template-columns: repeat(4, 1fr);
}

.cities-grid-5col {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
    .cities-grid-4col,
    .cities-grid-5col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cities-grid-2col,
    .cities-grid-3col,
    .cities-grid-4col,
    .cities-grid-5col {
        grid-template-columns: 1fr;
    }
}

/* City Card */
.city-card {
    position: relative;
    display: block;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.city-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.city-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.city-card:hover .city-card-image img {
    transform: scale(1.1);
}

.city-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

.city-card:hover .city-card-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.city-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: #ffffff;
    z-index: 2;
}

.city-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #ffffff;
}

.city-card-count {
    font-size: 0.875rem;
    opacity: 0.9;
}

.city-card-description {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* ============================================
   24. NEWS SLIDER WIDGET STYLES
   ============================================ */

.news-slider-wrapper {
    position: relative;
    margin: 2rem 0;
}

.news-slider {
    border-radius: 16px;
    overflow: hidden;
}

.news-slider-slide {
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
}

.news-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.news-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    z-index: 2;
}

.news-slide-content {
    position: relative;
    z-index: 3;
    padding: 3rem;
    color: #ffffff;
    max-width: 700px;
}

.news-slide-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #2563eb;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.news-slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem;
}

.news-slide-title a {
    color: inherit;
    text-decoration: none;
}

.news-slide-meta {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.news-slide-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.news-slide-read-more:hover {
    background: #2563eb;
    color: #ffffff;
}

/* Slider Navigation */
.news-slider .swiper-button-prev,
.news-slider .swiper-button-next {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #0f172a;
    transition: all 0.2s ease;
}

.news-slider .swiper-button-prev:hover,
.news-slider .swiper-button-next:hover {
    background: #ffffff;
    transform: scale(1.1);
}

.news-slider .swiper-button-prev:after,
.news-slider .swiper-button-next:after {
    font-size: 20px;
}

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

.news-slider .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   25. SPONSORS WIDGET STYLES
   ============================================ */

.sponsors-section {
    margin: 3rem 0;
    text-align: center;
}

.sponsors-section .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #64748b;
}

.sponsors-slider,
.sponsors-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.sponsors-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.sponsors-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.sponsors-grid-5col {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.sponsors-grid-6col {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.sponsor-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.sponsor-name-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #64748b;
}

/* ============================================
   26. NEWSLETTER WIDGET STYLES
   ============================================ */

.newsletter-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.newsletter-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form-row {
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.newsletter-button {
    padding: 1rem 2rem;
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: #1e293b;
}

.newsletter-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
}

@media (max-width: 600px) {
    .newsletter-form-row {
        flex-direction: column;
    }
    
    .newsletter-button {
        width: 100%;
    }
}

/* ============================================
   27. ANNOUNCEMENT WIDGET STYLES
   ============================================ */

.announcement-banner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border: 1px solid;
    background: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    flex-wrap: wrap;
}

.announcement-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
}

.announcement-text {
    flex: 1;
}

.announcement-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.announcement-description {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

.announcement-button {
    flex-shrink: 0;
}

.announcement-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: currentColor;
    cursor: pointer;
    padding: 0.25rem;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.announcement-close:hover {
    opacity: 1;
}

/* ============================================
   28. VIDEO SECTION WIDGET STYLES
   ============================================ */

.video-section {
    margin: 2rem 0;
}

.video-section .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #0f172a;
}

.video-wrapper iframe,
.video-wrapper video {
    width: 100%;
    height: 500px;
    border: none;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.video-grid-item {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: #0f172a;
    transition: transform 0.3s ease;
}

.video-grid-item:hover {
    transform: translateY(-4px);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.video-grid-item:hover .video-play-icon {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-icon svg {
    color: #ffffff;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.video-title {
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem;
    margin: 0;
    color: #ffffff;
}

/* ================================
   SANATCI WIDGET STYLES
   ================================ */

.eventseat-sanatci-section {
    padding: 2rem 0;
}

.eventseat-sanatci-grid {
    display: grid;
    gap: 2rem;
}

.eventseat-sanatci-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.eventseat-sanatci-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

.eventseat-sanatci-grid-4col {
    grid-template-columns: repeat(4, 1fr);
}

.eventseat-sanatci-grid-5col {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
    .eventseat-sanatci-grid-4col,
    .eventseat-sanatci-grid-5col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .eventseat-sanatci-grid-3col,
    .eventseat-sanatci-grid-4col,
    .eventseat-sanatci-grid-5col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .eventseat-sanatci-grid {
        grid-template-columns: 1fr;
    }
}

.eventseat-sanatci-item {
    text-align: center;
}

.eventseat-sanatci-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.eventseat-sanatci-link:hover {
    transform: translateY(-5px);
}

.eventseat-sanatci-thumb {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 8px;
}

.eventseat-sanatci-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.eventseat-sanatci-link:hover .eventseat-sanatci-thumb img {
    transform: scale(1.05);
}

/* Image styles */
.eventseat-sanatci-item.image-circle .eventseat-sanatci-thumb {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}

.eventseat-sanatci-item.image-circle .eventseat-sanatci-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.eventseat-sanatci-item.image-rounded .eventseat-sanatci-thumb {
    border-radius: 50%;
}

.eventseat-sanatci-item.image-rounded .eventseat-sanatci-thumb img {
    border-radius: 50%;
}

.eventseat-sanatci-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #0f172a;
}

.eventseat-sanatci-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* ================================
   SEHIR WIDGET STYLES
   ================================ */

.eventseat-sehir-section {
    padding: 2rem 0;
}

.eventseat-sehir-grid {
    display: grid;
    gap: 1.5rem;
}

.eventseat-sehir-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.eventseat-sehir-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

.eventseat-sehir-grid-4col {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .eventseat-sehir-grid-3col,
    .eventseat-sehir-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .eventseat-sehir-grid {
        grid-template-columns: 1fr;
    }
}

.eventseat-sehir-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.eventseat-sehir-link {
    display: block;
    position: relative;
    text-decoration: none;
}

.eventseat-sehir-image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.eventseat-sehir-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.eventseat-sehir-link:hover .eventseat-sehir-image img {
    transform: scale(1.05);
}

.eventseat-sehir-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.eventseat-sehir-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Sehir Slider */
.eventseat-sehir-slider {
    position: relative;
}

.eventseat-sehir-slider .swiper-slide {
    height: auto;
}

.eventseat-sehir-slider .eventseat-sehir-item {
    height: 100%;
}
