/* ==========================================
   COMPONENTS CSS - Consolidated Component Styles
   Bu dosya tüm component stillerini içerir
   ========================================== */

/* Product Card Component - Extracted from inline styles */
.product-out-of-stock-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    z-index: 20;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-image-container {
    position: relative;
}

.product-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.product-image-container img.is-out-of-stock {
    opacity: 0.5;
}

.new-pc__img.no-image-placeholder {
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.new-pc__img.no-image-placeholder i {
    font-size: 2rem;
    color: #ccc;
}

.product_collection_badge.awa-badge-row__item.product-badge_text {
    background: #111;
    color: #fff;
}

/* Color swatches - dynamic background */
.color-swatch {
    background-color: var(--swatch-color, #ddd);
}

/* Section Title Font Override - Extracted from inline styles */
.section-title-dynamic-font {
    font-family: var(--section-title-font, inherit) !important;
}

.section-subtitle-dynamic-font {
    font-family: var(--section-subtitle-font, inherit) !important;
}

/* Footer Dynamic Styles - Extracted from inline styles */
.furniture-footer-modern {
    background-color: var(--footer-bg-color, inherit) !important;
}

.furniture-footer-modern.has-bg-image {
    background-image: var(--footer-bg-image, none) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Notification Permission Banner */
.notification-permission-banner {
    display: none;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.flash-messages .alert {
    margin-bottom: 10px;
    min-width: 300px;
    background-color: #1f2937;
    color: #ffffff;
    border: 1px solid #374151;
}

.flash-messages .btn-close {
    color: #ffffff;
}

/* Image Position Absolute - Common pattern extracted */
.image-position-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hidden Elements */
.display-none {
    display: none !important;
}

/* Google Reviews Icon Colors */
.google-icon {
    color: #4285f4;
}

/* Mobile Bottom Navigation */
.deep-mobile-bottom-navigation__icon.active {
    color: var(--active-color, inherit);
}

.deep-mobile-bottom-navigation__link.active {
    color: var(--active-color, inherit);
}

/* Product Stock Indicator */
.stock-indicator.available {
    color: var(--ok, #28a745);
    font-weight: 600;
}

.stock-indicator.unavailable {
    color: var(--danger, #dc3545);
    font-weight: 600;
}

/* Container Padding */
.container-custom-padding {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
}

/* Notification Banner */
#notification-permission-banner {
    display: none;
}


/* ==========================================
   MODERN SLIDERS - From awp-modern-sliders.css
   ========================================== */

/* ===========================================
   MODERN SLIDERS - BENZERSIZ CSS CLASS'LAR
   Prefix: awp-modern-*
   =========================================== */

/* ===========================================
   MODERN PRODUCT SLIDER
   =========================================== */
/* Modern Product Slider - Minimal Design */
.awp-modern-product-slider-section {
    padding: 0;
}

.awp-modern-product-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.awp-modern-product-slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.awp-modern-product-slider-slide {
    flex-shrink: 0;
    padding: 0 4px;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .awp-modern-product-slider-slide {
        padding: 0 6px;
    }
}

@media (min-width: 992px) {
    .awp-modern-product-slider-slide {
        padding: 0 8px;
    }
}

.awp-modern-product-slider-nav-prev,
.awp-modern-product-slider-nav-next {
    border: 1px solid #dee2e6 !important;
    transition: all 0.2s ease;
}

.awp-modern-product-slider-nav-prev:hover,
.awp-modern-product-slider-nav-next:hover {
    border-color: #222222 !important;
    background-color: #222222 !important;
    color: #fff !important;
    transform: none;
}

.awp-modern-product-slider-pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.awp-modern-product-slider-pagination-dot.active {
    background: #222222;
    width: 24px;
    border-radius: 4px;
}

/* Viewed Products Slider - Same design as product slider but different classes */
.awp-viewed-products-section {
    padding: 0;
}

.awp-viewed-products-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.awp-viewed-products-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.awp-viewed-products-slide {
    flex-shrink: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .awp-viewed-products-slide {
        padding: 0 12px;
    }
}

@media (min-width: 992px) {
    .awp-viewed-products-slide {
        padding: 0 15px;
    }
}

.awp-viewed-products-nav-prev,
.awp-viewed-products-nav-next {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    color: #222222 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
}

.awp-viewed-products-nav-prev i,
.awp-viewed-products-nav-next i {
    display: inline-block !important;
    font-size: 14px !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
}

.awp-viewed-products-nav-prev:hover:not(:disabled),
.awp-viewed-products-nav-next:hover:not(:disabled) {
    border-color: #222222 !important;
    background-color: #222222 !important;
    color: #ffffff !important;
    transform: none !important;
}

.awp-viewed-products-nav-prev:disabled,
.awp-viewed-products-nav-next:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.awp-viewed-products-pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.awp-viewed-products-pagination-dot.active {
    background: #222222;
    width: 24px;
    border-radius: 4px;
}

/* Similar Products Slider - Same design as product slider but different classes */
.awp-similar-products-section {
    padding: 0;
}

.awp-similar-products-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.awp-similar-products-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.awp-similar-products-slide {
    flex-shrink: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .awp-similar-products-slide {
        padding: 0 12px;
    }
}

@media (min-width: 992px) {
    .awp-similar-products-slide {
        padding: 0 15px;
    }
}

.awp-similar-products-nav-prev,
.awp-similar-products-nav-next {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    color: #222222 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
}

.awp-similar-products-nav-prev i,
.awp-similar-products-nav-next i {
    display: inline-block !important;
    font-size: 14px !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
}

.awp-similar-products-nav-prev:hover:not(:disabled),
.awp-similar-products-nav-next:hover:not(:disabled) {
    border-color: #222222 !important;
    background-color: #222222 !important;
    color: #ffffff !important;
    transform: none !important;
}

.awp-similar-products-nav-prev:disabled,
.awp-similar-products-nav-next:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.awp-similar-products-pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.awp-similar-products-pagination-dot.active {
    background: #222222;
    width: 24px;
    border-radius: 4px;
}

/* ===========================================
   MODERN TABBED PRODUCT SLIDER
   =========================================== */
.awp-modern-tabbed-product-slider-section {
    padding: 60px 0;
    background: #f9fafb;
}

.awp-modern-tabbed-product-slider-header {
    text-align: left;
    margin-bottom: 40px;
}

.awp-modern-tabbed-product-slider-title {
    font-size: 32px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.awp-modern-tabbed-product-slider-title-strong {
    font-weight: 700 !important;
}

.awp-modern-tabbed-product-slider-title-light {
    font-weight: 400;
}

.awp-modern-tabbed-product-slider-subtitle {
    font-size: 16px;
    color: #767676;
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

.awp-modern-tabbed-product-slider-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0;
}

.awp-modern-tabbed-product-slider-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #767676;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -2px;
    font-family: inherit;
}

.awp-modern-tabbed-product-slider-tab:hover {
    color: #222222;
}

.awp-modern-tabbed-product-slider-tab.active {
    color: #222222;
    border-bottom-color: #222222;
}

.awp-modern-tabbed-product-slider-content {
    position: relative;
}

.awp-modern-tabbed-product-slider-pane {
    display: none;
}

.awp-modern-tabbed-product-slider-pane.active {
    display: block;
}

.awp-modern-tabbed-product-slider-wrapper {
    position: relative;
}

.awp-modern-tabbed-product-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.awp-modern-tabbed-product-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.awp-modern-tabbed-product-slider-slide {
    flex-shrink: 0;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    height: 100%;
}

.awp-modern-tabbed-product-slider-slide .product-card-wrapper {
    height: 100%;
}

.awp-modern-tabbed-product-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #374151;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.awp-modern-tabbed-product-slider-nav:hover {
    background: #1f2937;
    color: #ffffff;
    border-color: #1f2937;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.08);
}

.awp-modern-tabbed-product-slider-nav:active {
    transform: translateY(-50%) scale(0.96);
}

.awp-modern-tabbed-product-slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.awp-modern-tabbed-product-slider-nav-prev {
    left: -26px;
}

.awp-modern-tabbed-product-slider-nav-next {
    right: -26px;
}

/* Modern Blog Slider - Minimal Design */
.awp-modern-blog-slider-section {
    padding: 0;
}

.awp-modern-blog-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.awp-modern-blog-slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.awp-modern-blog-slider-slide {
    flex-shrink: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .awp-modern-blog-slider-slide {
        padding: 0 12px;
    }
}

@media (min-width: 992px) {
    .awp-modern-blog-slider-slide {
        padding: 0 15px;
    }
}

.awp-modern-blog-slider-slide .card {
    border: 1px solid #dee2e6;
    transition: border-color 0.2s ease;
}

.awp-modern-blog-slider-slide .card:hover {
    border-color: #222222;
}

.awp-modern-blog-slider-slide .card img {
    transition: transform 0.4s ease;
}

.awp-modern-blog-slider-slide .card:hover img {
    transform: scale(1.05);
}

.awp-modern-blog-slider-nav-prev,
.awp-modern-blog-slider-nav-next {
    border: 1px solid #dee2e6 !important;
    transition: all 0.2s ease;
}

.awp-modern-blog-slider-nav-prev:hover,
.awp-modern-blog-slider-nav-next:hover {
    border-color: #222222 !important;
    background-color: #222222 !important;
    color: #fff !important;
    transform: none;
}

.awp-modern-blog-slider-pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.awp-modern-blog-slider-pagination-dot.active {
    background: #222222;
    width: 24px;
    border-radius: 4px;
}

/* Modern Google Reviews Slider - Minimal Design */
.awp-modern-google-reviews-slider-section {
    padding: 0;
}

.awp-modern-google-reviews-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.awp-modern-google-reviews-slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.awp-modern-google-reviews-slider-slide {
    flex-shrink: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .awp-modern-google-reviews-slider-slide {
        padding: 0 12px;
    }
}

@media (min-width: 992px) {
    .awp-modern-google-reviews-slider-slide {
        padding: 0 15px;
    }
}

.awp-modern-google-reviews-slider-slide .card {
    border: 1px solid #dee2e6;
    transition: border-color 0.2s ease;
}

.awp-modern-google-reviews-slider-slide .card:hover {
    border-color: #222222;
}

.awp-modern-google-reviews-slider-nav-prev,
.awp-modern-google-reviews-slider-nav-next {
    border: 1px solid #dee2e6 !important;
    transition: all 0.2s ease;
}

.awp-modern-google-reviews-slider-nav-prev:hover,
.awp-modern-google-reviews-slider-nav-next:hover {
    border-color: #222222 !important;
    background-color: #222222 !important;
    color: #fff !important;
    transform: none;
}

.awp-modern-google-reviews-slider-pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.awp-modern-google-reviews-slider-pagination-dot.active {
    background: #222222;
    width: 24px;
    border-radius: 4px;
}

/* ===========================================
   MODERN CATEGORY SLIDER - Minimal Design
   =========================================== */
.homepagecategory {
    padding: 0;
}

.homepagecategory-card__track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    overflow: hidden;
}

[data-homepagecategory-slider] .homepagecategory-card__track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.homepagecategory-card__product {
    flex-shrink: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .homepagecategory-card__product {
        padding: 0 12px;
    }
}

@media (min-width: 992px) {
    .homepagecategory-card__product {
        padding: 0 15px;
    }
}

/* Slider column widths */
[data-homepagecategory-slider][data-mobile-cols="1"] .homepagecategory-card__product {
    width: 100%;
}

[data-homepagecategory-slider][data-mobile-cols="2"] .homepagecategory-card__product {
    width: 50%;
}

[data-homepagecategory-slider][data-mobile-cols="3"] .homepagecategory-card__product {
    width: 33.333333%;
}

[data-homepagecategory-slider][data-mobile-cols="4"] .homepagecategory-card__product {
    width: 25%;
}

@media (min-width: 768px) {
    [data-homepagecategory-slider][data-tablet-cols="1"] .homepagecategory-card__product {
        width: 100%;
    }
    
    [data-homepagecategory-slider][data-tablet-cols="2"] .homepagecategory-card__product {
        width: 50%;
    }
    
    [data-homepagecategory-slider][data-tablet-cols="3"] .homepagecategory-card__product {
        width: 33.333333%;
    }
    
    [data-homepagecategory-slider][data-tablet-cols="4"] .homepagecategory-card__product {
        width: 25%;
    }
}

@media (min-width: 992px) {
    [data-homepagecategory-slider][data-desktop-cols="1"] .homepagecategory-card__product {
        width: 100%;
    }
    
    [data-homepagecategory-slider][data-desktop-cols="2"] .homepagecategory-card__product {
        width: 50%;
    }
    
    [data-homepagecategory-slider][data-desktop-cols="3"] .homepagecategory-card__product {
        width: 33.333333%;
    }
    
    [data-homepagecategory-slider][data-desktop-cols="4"] .homepagecategory-card__product {
        width: 25%;
    }
}

@media (min-width: 1200px) {
    [data-homepagecategory-slider][data-desktop-large-cols="1"] .homepagecategory-card__product {
        width: 100%;
    }
    
    [data-homepagecategory-slider][data-desktop-large-cols="2"] .homepagecategory-card__product {
        width: 50%;
    }
    
    [data-homepagecategory-slider][data-desktop-large-cols="3"] .homepagecategory-card__product {
        width: 33.333333%;
    }
    
    [data-homepagecategory-slider][data-desktop-large-cols="4"] .homepagecategory-card__product {
        width: 25%;
    }
}

/* Slider navigation buttons */
.homepagecategory-slider-button {
    border: 1px solid #dee2e6 !important;
    transition: all 0.2s ease;
}

.homepagecategory-slider-button:hover {
    border-color: #222222 !important;
    background-color: #222222 !important;
    color: #fff !important;
}

/* Card styling */
.homepagecategory .card {
    border: 1px solid #dee2e6;
    transition: border-color 0.2s ease;
}

.homepagecategory .card:hover {
    border-color: #222222;
}

/* ===========================================
   MODERN RECENTLY VIEWED PRODUCTS SLIDER
   =========================================== */
.awp-modern-recently-viewed-slider-section {
    padding: 60px 0;
    background: #ffffff;
}

.awp-modern-recently-viewed-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.awp-modern-recently-viewed-slider-header-content {
    flex: 1;
    text-align: left;
}

.awp-modern-recently-viewed-slider-toolbar-controls {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.awp-modern-recently-viewed-slider-title {
    font-size: 32px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
    border-bottom: none !important;
    text-decoration: none !important;
}

.awp-modern-recently-viewed-slider-title::after,
.awp-modern-recently-viewed-slider-title::before {
    display: none !important;
}

.awp-modern-recently-viewed-slider-title-strong::after,
.awp-modern-recently-viewed-slider-title-strong::before,
.awp-modern-recently-viewed-slider-title-light::after,
.awp-modern-recently-viewed-slider-title-light::before {
    display: none !important;
}

.awp-modern-recently-viewed-slider-title-strong {
    font-weight: 700 !important;
}

.awp-modern-recently-viewed-slider-title-light {
    font-weight: 400;
}

.awp-modern-recently-viewed-slider-subtitle {
    font-size: 16px;
    color: #767676;
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

.awp-modern-recently-viewed-slider-wrapper {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
}

.awp-modern-recently-viewed-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    min-height: 1px; /* Prevent collapse on initial load */
}

.awp-modern-recently-viewed-slider-track {
    display: flex;
    align-items: flex-start;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.awp-modern-recently-viewed-slider-slide {
    flex-shrink: 0;
    width: 100%;
    padding-right: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
}

.awp-modern-recently-viewed-slider-slide:first-child {
    padding-left: 0;
}

.awp-modern-recently-viewed-slider-slide:last-child {
    padding-right: 0;
}

.awp-modern-recently-viewed-slider-slide .product-card-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Eski ortadaki butonlar - gizli */
.awp-modern-recently-viewed-slider-wrapper .awp-modern-recently-viewed-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: none !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #222222;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Toolbar'daki butonlar */
.awp-modern-recently-viewed-slider-toolbar-controls .awp-modern-recently-viewed-slider-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    border: 1px solid #e5e7eb !important;
    background: #ffffff !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    color: #374151 !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
}

.awp-modern-recently-viewed-slider-toolbar-controls .awp-modern-recently-viewed-slider-nav:hover {
    background: #f3f4f6 !important;
    color: #222222 !important;
    border-color: #d1d5db !important;
    transform: none !important;
    box-shadow: none !important;
}

.awp-modern-recently-viewed-slider-nav:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.awp-modern-recently-viewed-slider-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 0;
}

.awp-modern-recently-viewed-slider-pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.awp-modern-recently-viewed-slider-pagination-dot.active {
    background: #222222;
    width: 30px;
    border-radius: 5px;
}

/* ===========================================
   MODERN SIMILAR PRODUCTS SLIDER
   =========================================== */
.awp-modern-similar-products-slider-section {
    padding: 60px 0;
    background: #ffffff;
}

.awp-modern-similar-products-slider-header {
    text-align: center;
    margin-bottom: 40px;
}

.awp-modern-similar-products-slider-title {
    font-size: 32px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.awp-modern-similar-products-slider-title-strong {
    font-weight: 700 !important;
}

.awp-modern-similar-products-slider-title-light {
    font-weight: 400;
}

.awp-modern-similar-products-slider-subtitle {
    font-size: 16px;
    color: #767676;
    margin: 0;
    line-height: 1.6;
}

.awp-modern-similar-products-slider-wrapper {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.awp-modern-similar-products-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.awp-modern-similar-products-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.awp-modern-similar-products-slider-slide {
    flex-shrink: 0;
    width: 100%;
    padding-right: 10px;
    box-sizing: border-box;
    height: 100%;
}

.awp-modern-similar-products-slider-slide:first-child {
    padding-left: 0;
}

.awp-modern-similar-products-slider-slide:last-child {
    padding-right: 0;
}

.awp-modern-similar-products-slider-slide .product-card-wrapper {
    height: 100%;
}

.awp-modern-similar-products-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #374151;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.awp-modern-similar-products-slider-nav:hover {
    background: #1f2937;
    color: #ffffff;
    border-color: #1f2937;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.08);
}

.awp-modern-similar-products-slider-nav:active {
    transform: translateY(-50%) scale(0.96);
}

.awp-modern-similar-products-slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.awp-modern-similar-products-slider-nav-prev {
    left: 15px;
}

.awp-modern-similar-products-slider-nav-next {
    right: 15px;
}

@media (min-width: 992px) {
.awp-modern-similar-products-slider-nav-prev {
    left: -26px;
}

.awp-modern-similar-products-slider-nav-next {
    right: -26px;
}
}

.awp-modern-similar-products-slider-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.awp-modern-similar-products-slider-pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.awp-modern-similar-products-slider-pagination-dot.active {
    background: #222222;
    width: 30px;
    border-radius: 5px;
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
/* Desktop Large - 1200px ve üzeri */
@media (min-width: 1200px) {
    .awp-modern-product-slider-nav-prev,
    .awp-modern-tabbed-product-slider-nav-prev,
    .awp-modern-blog-slider-nav-prev,
    .awp-modern-google-reviews-slider-nav-prev,
    .awp-modern-recently-viewed-slider-nav-prev,
    .awp-modern-similar-products-slider-nav-prev {
        left: -26px !important;
        width: 52px !important;
        height: 52px !important;
        border: 2px solid #e5e7eb !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    }
    
    .awp-modern-product-slider-nav-next,
    .awp-modern-tabbed-product-slider-nav-next,
    .awp-modern-blog-slider-nav-next,
    .awp-modern-google-reviews-slider-nav-next,
    .awp-modern-recently-viewed-slider-nav-next,
    .awp-modern-similar-products-slider-nav-next {
        right: -26px !important;
        width: 52px !important;
        height: 52px !important;
        border: 2px solid #e5e7eb !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    }
}

@media (max-width: 1199px) {
    .awp-modern-product-slider-nav-prev,
    .awp-modern-tabbed-product-slider-nav-prev,
    .awp-modern-blog-slider-nav-prev,
    .awp-modern-google-reviews-slider-nav-prev,
    .awp-modern-recently-viewed-slider-nav-prev,
    .awp-modern-similar-products-slider-nav-prev {
        left: -18px;
        width: 44px;
        height: 44px;
        border: 2px solid #e5e7eb;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .awp-modern-product-slider-nav-next,
    .awp-modern-tabbed-product-slider-nav-next,
    .awp-modern-blog-slider-nav-next,
    .awp-modern-google-reviews-slider-nav-next,
    .awp-modern-recently-viewed-slider-nav-next,
    .awp-modern-similar-products-slider-nav-next {
        right: -18px;
        width: 44px;
        height: 44px;
        border: 2px solid #e5e7eb;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
}

@media (max-width: 991px) {
    .awp-modern-product-slider-section,
    .awp-modern-tabbed-product-slider-section,
    .awp-modern-blog-slider-section,
    .awp-modern-google-reviews-slider-section,
    .awp-modern-recently-viewed-slider-section,
    .awp-modern-similar-products-slider-section {
        padding: 40px 0 5px 0;
        margin-bottom: 0;
    }
    
    .awp-modern-product-slider-title,
    .awp-modern-tabbed-product-slider-title,
    .awp-modern-blog-slider-title,
    .awp-modern-google-reviews-slider-title,
    .awp-modern-recently-viewed-slider-title,
    .awp-modern-similar-products-slider-title {
        font-size: 28px;
    }
    
    .awp-modern-product-slider-nav,
    .awp-modern-tabbed-product-slider-nav,
    .awp-modern-blog-slider-nav,
    .awp-modern-google-reviews-slider-nav,
    .awp-modern-recently-viewed-slider-nav,
    .awp-modern-similar-products-slider-nav {
        width: 40px;
        height: 40px;
        border: 2px solid #e5e7eb;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
}

@media (max-width: 767px) {
    .awp-modern-product-slider-section,
    .awp-modern-tabbed-product-slider-section,
    .awp-modern-blog-slider-section,
    .awp-modern-google-reviews-slider-section,
    .awp-modern-recently-viewed-slider-section,
    .awp-modern-similar-products-slider-section,
    .awp-viewed-products-section,
    .awp-similar-products-section {
        padding: 16px 0 0 0;
        margin-bottom: 0;
    }
    
    .awp-modern-product-slider-container,
    .awp-viewed-products-container,
    .awp-similar-products-container {
        min-height: 0;
    }
    
    .awp-modern-product-slider-header,
    .awp-modern-tabbed-product-slider-header,
    .awp-modern-blog-slider-header,
    .awp-modern-google-reviews-slider-header,
    .awp-modern-recently-viewed-slider-header,
    .awp-modern-similar-products-slider-header {
        margin-top: 20px;
        margin-bottom: 30px;
    }
    
    .awp-modern-product-slider-title,
    .awp-modern-tabbed-product-slider-title,
    .awp-modern-blog-slider-title,
    .awp-modern-google-reviews-slider-title,
    .awp-modern-recently-viewed-slider-title,
    .awp-modern-similar-products-slider-title {
        font-size: 24px;
    }
    
    .awp-modern-product-slider-subtitle,
    .awp-modern-tabbed-product-slider-subtitle,
    .awp-modern-blog-slider-subtitle,
    .awp-modern-google-reviews-slider-subtitle,
    .awp-modern-recently-viewed-slider-subtitle,
    .awp-modern-similar-products-slider-subtitle {
        font-size: 14px;
    }
    
    .awp-modern-product-slider-nav,
    .awp-modern-tabbed-product-slider-nav,
    .awp-modern-blog-slider-nav,
    .awp-modern-google-reviews-slider-nav,
    .awp-modern-recently-viewed-slider-nav,
    .awp-modern-similar-products-slider-nav {
        display: none !important;
    }
    
    /* Mobil için navigasyon butonları düzeltmesi */
    .awp-modern-product-slider-section .d-flex.gap-2.justify-content-md-end,
    .awp-modern-tabbed-product-slider-section .d-flex.gap-2.justify-content-md-end,
    .awp-modern-blog-slider-section .d-flex.gap-2.justify-content-md-end,
    .awp-modern-google-reviews-slider-section .d-flex.gap-2.justify-content-md-end,
    .awp-modern-recently-viewed-slider-section .d-flex.gap-2.justify-content-md-end,
    .awp-modern-similar-products-slider-section .d-flex.gap-2.justify-content-md-end,
    .awp-viewed-products-section .d-flex.gap-2.justify-content-md-end,
    .awp-similar-products-section .d-flex.gap-2.justify-content-md-end {
        display: flex !important;
        -webkit-box-pack: end !important;
        -webkit-justify-content: flex-end !important;
        -moz-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
        gap: 8px !important;
        width: 100% !important;
    }
    
    .awp-modern-product-slider-nav-prev,
    .awp-modern-product-slider-nav-next,
    .awp-modern-tabbed-product-slider-nav-prev,
    .awp-modern-tabbed-product-slider-nav-next,
    .awp-modern-blog-slider-nav-prev,
    .awp-modern-blog-slider-nav-next,
    .awp-modern-google-reviews-slider-nav-prev,
    .awp-modern-google-reviews-slider-nav-next,
    .awp-modern-recently-viewed-slider-nav-prev,
    .awp-modern-recently-viewed-slider-nav-next,
    .awp-modern-similar-products-slider-nav-prev,
    .awp-modern-similar-products-slider-nav-next,
    .awp-similar-products-nav-prev,
    .awp-similar-products-nav-next,
    .awp-viewed-products-nav-prev,
    .awp-viewed-products-nav-next {
        display: flex !important;
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -moz-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -moz-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 1px solid #dee2e6 !important;
        border-radius: 50% !important;
        background-color: #ffffff !important;
        color: #222222 !important;
        font-size: 14px !important;
        line-height: 1 !important;
        flex-shrink: 0 !important;
    }
    
    .awp-modern-product-slider-nav-prev i,
    .awp-modern-product-slider-nav-next i,
    .awp-modern-tabbed-product-slider-nav-prev i,
    .awp-modern-tabbed-product-slider-nav-next i,
    .awp-modern-blog-slider-nav-prev i,
    .awp-modern-blog-slider-nav-next i,
    .awp-modern-google-reviews-slider-nav-prev i,
    .awp-modern-google-reviews-slider-nav-next i,
    .awp-modern-recently-viewed-slider-nav-prev i,
    .awp-modern-recently-viewed-slider-nav-next i,
    .awp-modern-similar-products-slider-nav-prev i,
    .awp-modern-similar-products-slider-nav-next i,
    .awp-similar-products-nav-prev i,
    .awp-similar-products-nav-next i,
    .awp-viewed-products-nav-prev i,
    .awp-viewed-products-nav-next i {
        font-size: 14px !important;
        line-height: 1 !important;
        display: inline-block !important;
        width: auto !important;
        height: auto !important;
    }
    
    .awp-modern-product-slider-nav-prev:hover,
    .awp-modern-product-slider-nav-next:hover,
    .awp-modern-tabbed-product-slider-nav-prev:hover,
    .awp-modern-tabbed-product-slider-nav-next:hover,
    .awp-modern-blog-slider-nav-prev:hover,
    .awp-modern-blog-slider-nav-next:hover,
    .awp-modern-google-reviews-slider-nav-prev:hover,
    .awp-modern-google-reviews-slider-nav-next:hover,
    .awp-modern-recently-viewed-slider-nav-prev:hover,
    .awp-modern-recently-viewed-slider-nav-next:hover,
    .awp-modern-similar-products-slider-nav-prev:hover,
    .awp-modern-similar-products-slider-nav-next:hover,
    .awp-similar-products-nav-prev:hover,
    .awp-similar-products-nav-next:hover,
    .awp-viewed-products-nav-prev:hover,
    .awp-viewed-products-nav-next:hover {
        border-color: #222222 !important;
        background-color: #222222 !important;
        color: #ffffff !important;
    }
    
    .awp-modern-product-slider-nav-prev:disabled,
    .awp-modern-product-slider-nav-next:disabled,
    .awp-modern-tabbed-product-slider-nav-prev:disabled,
    .awp-modern-tabbed-product-slider-nav-next:disabled,
    .awp-modern-blog-slider-nav-prev:disabled,
    .awp-modern-blog-slider-nav-next:disabled,
    .awp-modern-google-reviews-slider-nav-prev:disabled,
    .awp-modern-google-reviews-slider-nav-next:disabled,
    .awp-modern-recently-viewed-slider-nav-prev:disabled,
    .awp-modern-recently-viewed-slider-nav-next:disabled,
    .awp-modern-similar-products-slider-nav-prev:disabled,
    .awp-modern-similar-products-slider-nav-next:disabled,
    .awp-similar-products-nav-prev:disabled,
    .awp-similar-products-nav-next:disabled,
    .awp-viewed-products-nav-prev:disabled,
    .awp-viewed-products-nav-next:disabled {
        opacity: 0.5 !important;
        cursor: not-allowed !important;
        pointer-events: none !important;
    }
    
    .awp-modern-product-slider-slide,
    .awp-modern-tabbed-product-slider-slide,
    .awp-modern-blog-slider-slide,
    .awp-modern-google-reviews-slider-slide,
    .awp-modern-recently-viewed-slider-slide,
    .awp-modern-similar-products-slider-slide {
        padding: 0 8px;
    }
    
    .awp-modern-tabbed-product-slider-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .awp-modern-tabbed-product-slider-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .awp-modern-tabbed-product-slider-tab {
        white-space: nowrap;
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .awp-modern-blog-card-image {
        height: 200px;
    }
    
    .awp-modern-blog-card-content {
        padding: 20px;
    }
    
    .awp-modern-google-review-card {
        padding: 20px;
    }
    
    .awp-modern-product-slider-wrapper,
    .awp-modern-tabbed-product-slider-wrapper,
    .awp-modern-blog-slider-wrapper,
    .awp-modern-google-reviews-slider-wrapper,
    .awp-modern-recently-viewed-slider-wrapper,
    .awp-modern-similar-products-slider-wrapper {
        padding: 0 12px;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .awp-modern-product-slider-container,
    .awp-modern-tabbed-product-slider-container,
    .awp-modern-blog-slider-container,
    .awp-modern-google-reviews-slider-container,
    .awp-modern-recently-viewed-slider-container,
    .awp-modern-similar-products-slider-container {
        margin-bottom: 0;
        padding-bottom: 0;
        padding: 0;
    }
    
    .awp-modern-product-slider-track,
    .awp-modern-tabbed-product-slider-track,
    .awp-modern-blog-slider-track,
    .awp-modern-google-reviews-slider-track,
    .awp-modern-recently-viewed-slider-track,
    .awp-modern-similar-products-slider-track {
        padding: 0;
    }
}

/* ===========================================
   ULTRA MODERN TABBED PRODUCT SLIDER
   =========================================== */
.awp-ultra-modern-tabbed-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.awp-ultra-modern-tabbed-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #f0f0f0;
}

/* Header Styles */
.awp-ultra-modern-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.awp-ultra-modern-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.awp-ultra-modern-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.awp-ultra-modern-title-strong {
    font-weight: 700;
    display: inline-block;
}

.awp-ultra-modern-title-light {
    font-weight: 300;
    color: #666666;
    display: inline-block;
    margin-left: 8px;
}

.awp-ultra-modern-title-accent {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #1a1a1a;
    border-radius: 2px;
}

.awp-ultra-modern-subtitle {
    font-size: 18px;
    color: #888888;
    margin: 16px 0 0 0;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Tabs Container */
.awp-ultra-modern-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}

.awp-ultra-modern-tabs-wrapper {
    position: relative;
    background: #f8f8f8;
    border-radius: 50px;
    padding: 6px;
    display: inline-flex;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.awp-ultra-modern-tabs {
    display: flex;
    gap: 4px;
    position: relative;
}

.awp-ultra-modern-tab {
    position: relative;
    padding: 14px 32px;
    background: transparent;
    border: none;
    color: #666666;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    border-radius: 44px;
    white-space: nowrap;
    overflow: hidden;
}

.awp-ultra-modern-tab-text {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.awp-ultra-modern-tab-indicator {
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    background: #ffffff;
    border-radius: 44px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.awp-ultra-modern-tab:hover {
    color: #1a1a1a;
}

.awp-ultra-modern-tab:hover .awp-ultra-modern-tab-indicator {
    opacity: 1;
    transform: scale(1);
}

.awp-ultra-modern-tab.active {
    color: #1a1a1a;
}

.awp-ultra-modern-tab.active .awp-ultra-modern-tab-indicator {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Content Styles */
.awp-ultra-modern-content {
    position: relative;
}

.awp-ultra-modern-pane {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.awp-ultra-modern-pane.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Wrapper */
.awp-ultra-modern-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.awp-ultra-modern-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.awp-ultra-modern-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    gap: 20px;
}

.awp-ultra-modern-slider-slide {
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
}

.awp-ultra-modern-slider-slide .product-card-wrapper {
    height: 100%;
}

/* Navigation Buttons */
.awp-ultra-modern-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.awp-ultra-modern-nav:hover {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.awp-ultra-modern-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.awp-ultra-modern-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.awp-ultra-modern-nav-prev {
    left: 0;
}

.awp-ultra-modern-nav-next {
    right: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .awp-ultra-modern-title {
        font-size: 42px;
    }
    
    .awp-ultra-modern-slider-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 992px) {
    .awp-ultra-modern-tabbed-section {
        padding: 60px 0;
    }
    
    .awp-ultra-modern-title {
        font-size: 36px;
    }
    
    .awp-ultra-modern-subtitle {
        font-size: 16px;
    }
    
    .awp-ultra-modern-slider-wrapper {
        padding: 0 40px;
    }
    
    .awp-ultra-modern-nav {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .awp-ultra-modern-tabbed-section {
        padding: 50px 0;
    }
    
    .awp-ultra-modern-header {
        margin-bottom: 40px;
    }
    
    .awp-ultra-modern-title {
        font-size: 32px;
    }
    
    .awp-ultra-modern-subtitle {
        font-size: 15px;
    }
    
    .awp-ultra-modern-tabs-container {
        margin-bottom: 35px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .awp-ultra-modern-tabs-container::-webkit-scrollbar {
        display: none;
    }
    
    .awp-ultra-modern-tabs-wrapper {
        min-width: 100%;
        padding: 4px;
    }
    
    .awp-ultra-modern-tabs {
        min-width: max-content;
    }
    
    .awp-ultra-modern-tab {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .awp-ultra-modern-slider-wrapper {
        padding: 0 35px;
    }
    
    .awp-ultra-modern-nav {
        width: 40px;
        height: 40px;
    }
    
    .awp-ultra-modern-nav svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 576px) {
    .awp-ultra-modern-title {
        font-size: 28px;
    }
    
    .awp-ultra-modern-title-light {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }
    
    .awp-ultra-modern-tab {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .awp-ultra-modern-slider-wrapper {
        padding: 0 30px;
    }
    
    .awp-ultra-modern-nav {
        width: 36px;
        height: 36px;
    }
    
    .awp-ultra-modern-nav svg {
        width: 16px;
        height: 16px;
    }
}


/* ==========================================
   PRODUCT GALLERY DISPLAY - From product-gallery-display.css
   ========================================== */

/**
 * Product Display Settings CSS
 * Admin panelden ayarlanabilir ürün gösterim stilleri
 */

/* ==============================================
   GALERI LAYOUT - TWO COLUMNS (2 Resim Yan Yana)
   ============================================== */
.gallery-layout-two_columns .gallery-two-columns-wrapper {
    max-height: 800px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
}

.gallery-layout-two_columns .gallery-two-columns-wrapper::-webkit-scrollbar {
    width: 8px;
}

.gallery-layout-two_columns .gallery-two-columns-wrapper::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 4px;
}

.gallery-layout-two_columns .gallery-two-columns-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.gallery-layout-two_columns .gallery-two-columns-wrapper::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.gallery-layout-two_columns .gallery-two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    padding-right: 5px;
}

.gallery-layout-two_columns .gallery-column-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-layout-two_columns .gallery-column-item:hover {
    transform: scale(1.02);
}

.gallery-layout-two_columns .gallery-column-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
    object-fit: contain;
}

/* İlk 2 resim yan yana büyük */
.gallery-layout-two_columns .gallery-column-item:nth-child(1),
.gallery-layout-two_columns .gallery-column-item:nth-child(2) {
    grid-row: span 2;
    min-height: 400px;
}

.gallery-layout-two_columns .gallery-column-item:nth-child(n+3) {
    min-height: 200px;
}

/* ==============================================
   GALERI LAYOUT - THUMBNAILS LEFT (Sol)
   ============================================== */
.gallery-layout-thumbnails_left .gallery-main-wrapper {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px;
    align-items: flex-start;
}

.gallery-layout-thumbnails_left .thumbnail-left-container {
    order: -1 !important;
    width: 110px !important;
    flex-shrink: 0;
    position: relative;
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding: 5px;
}

/* Thumbnail içeriği scrollable yap */
.gallery-layout-thumbnails_left .thumbnail-left-container > * {
    flex-shrink: 0;
}

/* Scrollbar stilleri force-scrollbar.css dosyasına taşındı */

.gallery-layout-thumbnails_left .thumbnail-left-container .thumbnail-slide {
    width: 100px;
    height: auto;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-layout-thumbnails_left .thumbnail-left-container .thumbnail-slide img,
.gallery-layout-thumbnails_left .thumbnail-left-container .gallery-thumbnail {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.gallery-layout-thumbnails_left .uomo-main-swiper {
    flex: 1 !important;
    width: calc(100% - 125px) !important;
}

.gallery-layout-thumbnails_left .uomo-main-swiper .swiper-wrapper {
    align-items: stretch;
}

.gallery-layout-thumbnails_left .uomo-main-swiper .swiper-slide {
    display: block !important;
    height: auto !important;
    line-height: 0;
}

.gallery-layout-thumbnails_left .uomo-main-swiper .uomo-gallery-image-container {
    width: 100%;
    display: block;
    line-height: 0;
    padding: 0;
    margin: 0;
}

.gallery-layout-thumbnails_left .uomo-main-swiper img {
    object-fit: contain !important;
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

/* ==============================================
   GALERI LAYOUT - THUMBNAILS RIGHT (Sağ)
   ============================================== */
.gallery-layout-thumbnails_right .gallery-main-wrapper {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px;
    align-items: flex-start;
}

.gallery-layout-thumbnails_right .thumbnail-right-container {
    order: 1 !important;
    width: 110px !important;
    flex-shrink: 0;
    position: relative;
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding: 5px;
}

/* Thumbnail içeriği scrollable yap */
.gallery-layout-thumbnails_right .thumbnail-right-container > * {
    flex-shrink: 0;
}

/* Scrollbar stilleri force-scrollbar.css dosyasına taşındı */

.gallery-layout-thumbnails_right .thumbnail-right-container .thumbnail-slide {
    width: 100px;
    height: auto;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-layout-thumbnails_right .thumbnail-right-container .thumbnail-slide img,
.gallery-layout-thumbnails_right .thumbnail-right-container .gallery-thumbnail {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.gallery-layout-thumbnails_right .uomo-main-swiper {
    flex: 1 !important;
    width: calc(100% - 125px) !important;
}

.gallery-layout-thumbnails_right .uomo-main-swiper .swiper-wrapper {
    align-items: stretch;
}

.gallery-layout-thumbnails_right .uomo-main-swiper .swiper-slide {
    display: block !important;
    height: auto !important;
    line-height: 0;
}

.gallery-layout-thumbnails_right .uomo-main-swiper .uomo-gallery-image-container {
    width: 100%;
    display: block;
    line-height: 0;
    padding: 0;
    margin: 0;
}

.gallery-layout-thumbnails_right .uomo-main-swiper img {
    object-fit: contain !important;
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

/* ==============================================
   GALERI LAYOUT - THUMBNAILS BOTTOM (Alt)
   ============================================== */
.gallery-layout-thumbnails_bottom .gallery-main-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-layout-thumbnails_bottom .uomo-thumbs-swiper {
    order: 1;
    width: 100%;
}

/* Alt thumbnail swiper slide'ları - orijinal en-boy oranını korumak için */
.gallery-layout-thumbnails_bottom .uomo-thumbs-swiper .swiper-slide {
    width: 100px !important;
    height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gallery-layout-thumbnails_bottom .uomo-thumbs-swiper .swiper-slide.thumbnail-slide {
    width: 100px !important;
    height: auto !important;
}

/* Alt thumbnail'lar için img stilleri - orijinal en-boy oranını korumak için */
.gallery-layout-thumbnails_bottom .uomo-thumbs-swiper .swiper-slide img,
.gallery-layout-thumbnails_bottom .uomo-thumbs-swiper .thumbnail-slide img,
.gallery-layout-thumbnails_bottom .uomo-thumbs-swiper .gallery-thumbnail {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

/* ==============================================
   GALERI LAYOUT - NO THUMBNAILS (Thumbnail Yok)
   ============================================== */
.gallery-layout-no_thumbnails .gallery-main-wrapper {
    width: 100%;
}

.gallery-layout-no_thumbnails .uomo-main-swiper {
    width: 100%;
}

/* ==============================================
   GENEL THUMBNAIL STİLLERİ
   ============================================== */
.thumbnail-slide {
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background: white;
    pointer-events: auto;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation; /* Mobilde daha iyi touch handling */
    -webkit-tap-highlight-color: transparent; /* Mobilde tap highlight'ı kaldır */
}

.thumbnail-slide:hover {
    opacity: 1;
    border-color: #999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.thumbnail-slide.active {
    opacity: 1;
    border-color: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.thumbnail-slide img,
.thumbnail-slide .gallery-thumbnail {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    padding: 0;
    margin: 0;
    pointer-events: none;
}

/* Ana Swiper ve Thumbnail Container Hizalama */
.gallery-main-wrapper {
    width: 100%;
}

.uomo-main-swiper.product-page-main-swiper {
    width: 100%;
    height: auto;
    line-height: 0;
    /* Mobilde touch desteği */
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    /* Mouse drag için cursor */
    cursor: grab;
}

.uomo-main-swiper.product-page-main-swiper.swiper-grab {
    cursor: grabbing;
}

.uomo-main-swiper.product-page-main-swiper .swiper-slide {
    display: block;
    line-height: 0;
    /* Mobilde touch desteği */
    touch-action: pan-y pinch-zoom;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.uomo-main-swiper.product-page-main-swiper .swiper-wrapper {
    line-height: 0;
    /* Mobilde touch desteği */
    touch-action: pan-y;
    display: flex;
}

.uomo-gallery-image-container.product-page-gallery-main {
    width: 100%;
    position: relative;
    display: block;
    line-height: 0;
    padding: 0;
    margin: 0;
    /* Swiper'ın touch event'lerinin çalışması için */
    pointer-events: auto;
    touch-action: pan-y pinch-zoom;
    cursor: grab;
}

.uomo-gallery-main-image.product-page-gallery-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain !important;
    max-width: 100%;
    max-height: none;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    /* Mouse drag için pointer-events açık */
    pointer-events: auto;
    touch-action: pan-y pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    cursor: grab;
}

.uomo-gallery-main-image.product-page-gallery-main-image:active {
    cursor: grabbing;
}

/* ==============================================
   ÜRÜN LİSTELEME - ORIENTATION
   ============================================== */

/* Vertical (Dikey) - En-boy oranı korunduğunda */
.product-list-vertical.maintain-aspect-ratio .product-card-image img {
    aspect-ratio: 3/4;
    object-fit: contain;
}

/* Horizontal (Yatay) - En-boy oranı korunduğunda */
.product-list-horizontal.maintain-aspect-ratio .product-card-image img {
    aspect-ratio: 4/3;
    object-fit: contain;
}

/* Square (Kare) - En-boy oranı korunduğunda */
.product-list-square.maintain-aspect-ratio .product-card-image img {
    aspect-ratio: 1/1;
    object-fit: contain;
}

.product-card-image {
    overflow: hidden;
    border-radius: 8px;
}

.product-card-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

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

/* ==============================================
   ÜRÜN LİSTELEME - GRID COLUMNS (DESKTOP)
   ============================================== */
.products-grid.product-list-grid-desktop-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.products-grid.product-list-grid-desktop-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.products-grid.product-list-grid-desktop-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.products-grid.product-list-grid-desktop-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.products-grid.product-list-grid-desktop-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

/* Product Card Stil */
.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.product-card:hover {
    box-shadow: none;
    transform: none;
}

.product-card-content {
    padding: 15px 5px 5px 5px;
}

.product-title {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
}

.product-title a {
    color: #222;
    text-decoration: none;
}

.product-title a:hover {
    color: #007bff;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 8px;
}

/* Product item image wrapper - Override user-account.css */
.new-pc__img-wrapper {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    border-radius: 8px;
    padding-top: 0 !important; /* user-account.css'deki padding-top'u iptal et */
    height: auto !important;
}

.product-image-container {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    padding-top: 0 !important; /* user-account.css'deki 55% padding'i iptal et */
    height: auto !important;
}

/* Default product image - Normal liste görünümü için */
.new-pc__img.product-main-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    position: relative !important; /* absolute değil, relative olmalı */
    top: auto !important;
    left: auto !important;
}

/* Ürün Slider (produc_slider) - Benzersiz class - user-account.css'i override etmek için daha spesifik */
.product-card-wrapper .new-pc__img.product-slider-img,
.produc_slider .product-card-wrapper .new-pc__img.product-slider-img,
.new-pc__img.product-slider-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    object-fit: contain !important;
}

/* Tablı Ürün Slider (produc_tab_slider) - Benzersiz class - user-account.css'i override etmek için daha spesifik */
.product-card-wrapper .new-pc__img.product-tab-slider-img,
.produc_tab_slider .product-card-wrapper .new-pc__img.product-tab-slider-img,
.produc_tab_slider__slide .product-card-wrapper .new-pc__img.product-tab-slider-img,
.produc_tab_slider .produc_tab_slider__slide .product-card-wrapper .new-pc__img.product-tab-slider-img,
.new-pc__img.product-tab-slider-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    object-fit: contain !important;
}

/* Kategori Slider (homepagecategory) - Benzersiz class - user-account.css'i override etmek için daha spesifik */
.product-card-wrapper .new-pc__img.product-category-slider-img,
.homepagecategory .product-card-wrapper .new-pc__img.product-category-slider-img,
.homepagecategory-card__product .product-card-wrapper .new-pc__img.product-category-slider-img,
.homepagecategory .homepagecategory-card__product .product-card-wrapper .new-pc__img.product-category-slider-img,
[data-homepagecategory-slider] .homepagecategory-card__product .product-card-wrapper .new-pc__img.product-category-slider-img,
.new-pc__img.product-category-slider-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    object-fit: contain !important;
}

/* Benzer Ürünler Slider (similar_products_slider) - Benzersiz class - user-account.css'i override etmek için daha spesifik */
.product-card-wrapper .new-pc__img.product-similar-slider-img,
.similar_products_slider .product-card-wrapper .new-pc__img.product-similar-slider-img,
.new-pc__img.product-similar-slider-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    object-fit: contain !important;
}

/* ===========================================
   MOBİL GÖRSEL DÜZENLEMELERİ - TÜM SLİDER'LAR İÇİN
   =========================================== */
@media (max-width: 767.98px) {
    /* Ürün Slider (produc_slider) - Mobil görsel düzenlemeleri - user-account.css'i override etmek için daha spesifik */
    .product-card-wrapper .new-pc__img.product-slider-img,
    .produc_slider .product-card-wrapper .new-pc__img.product-slider-img,
    .produc_slider .new-pc__img.product-slider-img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        object-fit: contain !important;
        max-width: 100% !important;
        min-height: auto !important;
    }
    
    /* Tablı Ürün Slider (produc_tab_slider) - Mobil görsel düzenlemeleri - user-account.css'i override etmek için daha spesifik */
    .product-card-wrapper .new-pc__img.product-tab-slider-img,
    .produc_tab_slider .product-card-wrapper .new-pc__img.product-tab-slider-img,
    .produc_tab_slider__slide .product-card-wrapper .new-pc__img.product-tab-slider-img,
    .produc_tab_slider .produc_tab_slider__slide .product-card-wrapper .new-pc__img.product-tab-slider-img,
    .produc_tab_slider .new-pc__img.product-tab-slider-img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        object-fit: contain !important;
        max-width: 100% !important;
        min-height: auto !important;
    }
    
    /* Kategori Slider (homepagecategory) - Mobil görsel düzenlemeleri - user-account.css'i override etmek için daha spesifik */
    .product-card-wrapper .new-pc__img.product-category-slider-img,
    .homepagecategory .product-card-wrapper .new-pc__img.product-category-slider-img,
    .homepagecategory-card__product .product-card-wrapper .new-pc__img.product-category-slider-img,
    .homepagecategory .homepagecategory-card__product .product-card-wrapper .new-pc__img.product-category-slider-img,
    [data-homepagecategory-slider] .homepagecategory-card__product .product-card-wrapper .new-pc__img.product-category-slider-img,
    .homepagecategory .new-pc__img.product-category-slider-img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        object-fit: contain !important;
        max-width: 100% !important;
        min-height: auto !important;
    }
    
    /* Benzer Ürünler Slider (similar_products_slider) - Mobil görsel düzenlemeleri - user-account.css'i override etmek için daha spesifik */
    .product-card-wrapper .new-pc__img.product-similar-slider-img,
    .similar_products_slider .product-card-wrapper .new-pc__img.product-similar-slider-img,
    .similar_products_slider .new-pc__img.product-similar-slider-img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        object-fit: contain !important;
        max-width: 100% !important;
        min-height: auto !important;
    }
    
    /* Görsel container'ları için mobil düzenlemeleri */
    .produc_slider .product-image-container,
    .produc_tab_slider .product-image-container,
    .homepagecategory .product-image-container,
    .similar_products_slider .product-image-container {
        width: 100% !important;
        height: auto !important;
        padding-top: 0 !important;
        position: relative !important;
    }
    
    .produc_slider .new-pc__img-wrapper,
    .produc_tab_slider .new-pc__img-wrapper,
    .homepagecategory .new-pc__img-wrapper,
    .similar_products_slider .new-pc__img-wrapper {
        width: 100% !important;
        height: auto !important;
        padding-top: 0 !important;
        position: relative !important;
    }
}

/* Liste görünümü */
.product-list-layout-list .products-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-list-layout-list .product-card {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.product-list-layout-list .product-card-image {
    width: 250px;
    flex-shrink: 0;
}

.product-list-layout-list .product-card-content {
    flex: 1;
}

/* ==============================================
   LIGHTBOX MODAL - Gelişmiş Modern Tasarım
   ============================================== */
.uomo-simple-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.uomo-modal-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.uomo-modal-content {
    position: relative;
    width: 100%;
    max-width: 1720px;
    height: 100%;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.uomo-modal-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px 12px 0 0;
}

.uomo-modal-counter {
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
}

.uomo-modal-actions {
    display: flex;
    gap: 10px;
}

.uomo-modal-actions button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.uomo-modal-actions button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.uomo-modal-close:hover {
    background: rgba(220, 38, 38, 0.9);
}

.uomo-modal-image-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.uomo-modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

/* Video Container */
.uomo-modal-video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #000;
}

.uomo-modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.uomo-modal-zoom-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.uomo-modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.uomo-modal-nav-btn:hover {
    background: rgba(0, 88, 80, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.uomo-modal-prev {
    left: 20px;
}

.uomo-modal-next {
    right: 20px;
}

.uomo-modal-thumbnails-container {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 0 0 12px 12px;
}

.uomo-modal-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
}

.uomo-modal-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.uomo-modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.uomo-modal-thumbnail:hover img {
    transform: scale(1.1);
}

.uomo-modal-thumbnail.active {
    border-color: #005850;
    box-shadow: 0 0 0 2px rgba(0, 88, 80, 0.3);
}

/* ==============================================
   ZOOM BUTONU - Modern Tasarım (En Sağda Üstte)
   ============================================== */
/* Container için position relative garantisi */
.uomo-gallery-image-container,
.uomo-gallery-image-container.product-page-gallery-main {
    position: relative !important;
}

.uomo-zoom-button,
.product-page-zoom-button,
.pdp-gallery-zoom-btn-unique {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #222 !important;
    padding: 0 !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    font-size: 18px !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    /* Transition sadece transform ve box-shadow için - opacity için değil */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
    pointer-events: auto !important;
    z-index: 999 !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
    cursor: pointer !important;
    margin: 0 !important;
    text-decoration: none !important;
}

/* Benzersiz zoom butonu - Tüm çakışmaları önlemek için */
.pdp-gallery-zoom-btn-unique {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #222 !important;
    padding: 0 !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
    pointer-events: auto !important;
    z-index: 999 !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    border: 2px solid rgba(0, 0, 0, 0.15) !important;
    cursor: pointer !important;
    margin: 0 !important;
    text-decoration: none !important;
    outline: none !important;
}

.uomo-zoom-button:hover,
.product-page-zoom-button:hover,
.pdp-gallery-zoom-btn-unique:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.uomo-zoom-button.active,
.product-page-zoom-button.active {
    background: rgba(0, 88, 80, 0.95);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.uomo-zoom-button.active:hover,
.product-page-zoom-button.active:hover {
    background: rgba(0, 88, 80, 1);
}

.uomo-zoom-button i,
.product-page-zoom-button i,
.pdp-gallery-zoom-btn-unique i {
    font-size: 20px !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)) !important;
    color: #222 !important;
}

/* Zoom butonu her zaman görünür olacak - Tüm durumlar için */
.swiper-slide .uomo-zoom-button,
.swiper-slide .product-page-zoom-button,
.swiper-slide .pdp-gallery-zoom-btn-unique,
.swiper-slide-active .uomo-zoom-button,
.swiper-slide-active .product-page-zoom-button,
.swiper-slide-active .pdp-gallery-zoom-btn-unique,
.swiper-slide:not(.swiper-slide-active) .uomo-zoom-button,
.swiper-slide:not(.swiper-slide-active) .product-page-zoom-button,
.swiper-slide:not(.swiper-slide-active) .pdp-gallery-zoom-btn-unique,
.swiper-slide-prev .uomo-zoom-button,
.swiper-slide-prev .product-page-zoom-button,
.swiper-slide-prev .pdp-gallery-zoom-btn-unique,
.swiper-slide-next .uomo-zoom-button,
.swiper-slide-next .product-page-zoom-button,
.swiper-slide-next .pdp-gallery-zoom-btn-unique {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    pointer-events: auto !important;
    z-index: 999 !important;
}

.uomo-gallery-image-container .uomo-zoom-button,
.uomo-gallery-image-container .product-page-zoom-button,
.uomo-gallery-image-container .pdp-gallery-zoom-btn-unique,
.product-page-gallery-main .uomo-zoom-button,
.product-page-gallery-main .product-page-zoom-button,
.product-page-gallery-main .pdp-gallery-zoom-btn-unique,
.uomo-gallery-image-container.product-page-gallery-main .uomo-zoom-button,
.uomo-gallery-image-container.product-page-gallery-main .product-page-zoom-button,
.uomo-gallery-image-container.product-page-gallery-main .pdp-gallery-zoom-btn-unique {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    pointer-events: auto !important;
    z-index: 999 !important;
}

/* Swiper slide geçişlerinde zoom butonu her zaman görünür */
.simple-swiper-gallery .swiper-slide .uomo-zoom-button,
.simple-swiper-gallery .swiper-slide .product-page-zoom-button,
.simple-swiper-gallery .swiper-slide .pdp-gallery-zoom-btn-unique,
.simple-swiper-gallery .swiper-slide-active .uomo-zoom-button,
.simple-swiper-gallery .swiper-slide-active .product-page-zoom-button,
.simple-swiper-gallery .swiper-slide-active .pdp-gallery-zoom-btn-unique,
.simple-swiper-gallery .swiper-slide-prev .uomo-zoom-button,
.simple-swiper-gallery .swiper-slide-prev .product-page-zoom-button,
.simple-swiper-gallery .swiper-slide-prev .pdp-gallery-zoom-btn-unique,
.simple-swiper-gallery .swiper-slide-next .uomo-zoom-button,
.simple-swiper-gallery .swiper-slide-next .product-page-zoom-button,
.simple-swiper-gallery .swiper-slide-next .pdp-gallery-zoom-btn-unique {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    pointer-events: auto !important;
    z-index: 999 !important;
}

/* Hover'da zoom butonu daha belirgin olsun */
.uomo-gallery-image-container:hover .uomo-zoom-button,
.uomo-gallery-image-container:hover .product-page-zoom-button,
.product-page-gallery-main:hover .uomo-zoom-button,
.product-page-gallery-main:hover .product-page-zoom-button,
.simple-swiper-gallery .swiper-slide:hover .uomo-zoom-button,
.simple-swiper-gallery .swiper-slide:hover .product-page-zoom-button,
.uomo-zoom-button:hover,
.product-page-zoom-button:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mobilde zoom butonu her zaman görünür ve daha büyük */
@media (max-width: 768px) {
    .uomo-zoom-button,
    .product-page-zoom-button,
    .pdp-gallery-zoom-btn-unique {
        width: 48px !important;
        height: 48px !important;
        font-size: 20px !important;
        top: 10px !important;
        right: 10px !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        z-index: 999 !important;
        pointer-events: auto !important;
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }
    
    .uomo-zoom-button i,
    .product-page-zoom-button i,
    .pdp-gallery-zoom-btn-unique i {
        font-size: 20px !important;
    }
    
    /* Mobilde tüm slide'larda zoom butonu görünür */
    .swiper-slide .uomo-zoom-button,
    .swiper-slide .product-page-zoom-button,
    .swiper-slide .pdp-gallery-zoom-btn-unique,
    .swiper-slide-active .uomo-zoom-button,
    .swiper-slide-active .product-page-zoom-button,
    .swiper-slide-active .pdp-gallery-zoom-btn-unique,
    .swiper-slide:not(.swiper-slide-active) .uomo-zoom-button,
    .swiper-slide:not(.swiper-slide-active) .product-page-zoom-button,
    .swiper-slide:not(.swiper-slide-active) .pdp-gallery-zoom-btn-unique {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        pointer-events: auto !important;
        z-index: 999 !important;
    }
    
    /* Benzersiz zoom butonu mobilde özel stiller */
    .simple-swiper-gallery .pdp-gallery-zoom-btn-unique,
    .uomo-gallery-image-container .pdp-gallery-zoom-btn-unique,
    .product-page-gallery-main .pdp-gallery-zoom-btn-unique {
        width: 48px !important;
        height: 48px !important;
        font-size: 20px !important;
        top: 10px !important;
        right: 10px !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        z-index: 999 !important;
        pointer-events: auto !important;
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }
}

/* Alternatif: Badge stil */
.zoom-hint-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

/* Zoom hint badge hover ile görünür olmayacak - sadece butona tıklanınca çalışacak */
.uomo-gallery-image-container:hover .zoom-hint-badge {
    opacity: 0;
    transform: translateY(0);
}

.zoom-hint-badge i {
    font-size: 14px;
}

/* ==============================================
   ZOOM EFFECT (Buton ile Aktif Edilen)
   ============================================== */
/* Zoom pasif olduğunda - lens'leri gizle */
.simple-swiper-gallery .hover-zoom-lens {
    display: none !important;
    opacity: 0 !important;
}

/* Zoom aktif olduğunda lens gösterilebilir */
.simple-swiper-gallery .uomo-gallery-image-container.zoom-active .hover-zoom-lens,
.simple-swiper-gallery .gallery-column-item.zoom-active .hover-zoom-lens {
    display: block !important;
}

/* Zoom Aktif olduğunda */
.uomo-gallery-image-container.zoom-active,
.gallery-column-item.zoom-active {
    cursor: crosshair;
    position: relative;
}

.uomo-gallery-image-container.zoom-active .uomo-gallery-main-image,
.gallery-column-item.zoom-active .gallery-column-image {
    pointer-events: auto;
}

/* Zoom Lens (Büyüteç) */
.hover-zoom-lens {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1000;
    display: none;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 0, 0, 0.1);
    cursor: crosshair;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Zoom aktifken lens göster */
.uomo-gallery-image-container.zoom-active .hover-zoom-lens,
.gallery-column-item.zoom-active .hover-zoom-lens {
    opacity: 1;
}

/* Lens için overlay (resmin üstünde transparan) - sadece zoom aktifken */
.uomo-gallery-image-container.zoom-active::before,
.gallery-column-item.zoom-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    pointer-events: none;
    z-index: 999;
    transition: background 0.3s ease;
}

/* ==============================================
   VIDEO PLAY BUTTON
   ============================================== */
.uomo-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.uomo-video-play-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.uomo-video-play-button-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ==============================================
   YENİ GALERI STİLLERİ
   ============================================== */

/* Grid Style - 3 sütun galeri */
.gallery-layout-grid_three .gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

.gallery-layout-grid_three .gallery-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 1/1;
}

.gallery-layout-grid_three .gallery-grid-item:hover {
    transform: scale(1.05);
}

.gallery-layout-grid_three .gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Masonry Style - Farklı yükseklikler */
.gallery-layout-masonry .gallery-masonry-container {
    column-count: 2;
    column-gap: 15px;
    width: 100%;
}

.gallery-layout-masonry .gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-layout-masonry .gallery-masonry-item:hover {
    transform: scale(1.02);
}

.gallery-layout-masonry .gallery-masonry-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Carousel Style - Büyük carousel */
.gallery-layout-carousel .gallery-carousel-wrapper {
    position: relative;
    width: 100%;
}

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

.gallery-layout-carousel .gallery-carousel-image {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
}

/* Slider with Dots - Alt noktalı slider */
.gallery-layout-slider_dots .gallery-slider-wrapper {
    position: relative;
    width: 100%;
}

.gallery-layout-slider_dots .gallery-slider-swiper {
    width: 100%;
    padding-bottom: 50px;
}

.gallery-layout-slider_dots .gallery-slider-slide {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gallery-layout-slider_dots .gallery-slider-slide img {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
}

.gallery-layout-slider_dots .swiper-button-next,
.gallery-layout-slider_dots .swiper-button-prev {
    color: #222;
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery-layout-slider_dots .swiper-button-next:after,
.gallery-layout-slider_dots .swiper-button-prev:after {
    font-size: 20px;
}

.gallery-layout-slider_dots .swiper-pagination {
    position: absolute;
    bottom: 10px;
}

.gallery-layout-slider_dots .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.gallery-layout-slider_dots .swiper-pagination-bullet-active {
    background: #222;
    width: 30px;
    border-radius: 6px;
}

/* Full Width - Tam genişlik slider */
.gallery-layout-full_width .gallery-full-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.gallery-layout-full_width .gallery-full-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
/* Responsive kodlar responsive.css dosyasına taşındı */

@media (min-width: 992px) and (max-width: 1199px) {
    .products-grid.product-list-grid-desktop-4 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .products-grid.product-list-grid-desktop-5 {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .products-grid.product-list-grid-desktop-6 {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}



/* ==========================================
   CHECKOUT PAGE - From checkout.css
   ========================================== */

/* CHECKOUT STYLES - Merged from checkout.css and checkout-new.css */
/* Checkout Page Styles */

/* Form Section Styles */
.checkout-section {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.checkout-section:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.checkout-section h2 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-section h2::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #007bff;
    border-radius: 2px;
}

/* Form Row and Groups */
.checkout-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Responsive kodlar responsive.css dosyasına taşındı */

.checkout-form-group {
    display: flex;
    flex-direction: column;
}

.checkout-form-group label {
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-form-group label .required-f {
    color: #dc3545;
    font-weight: 600;
}

.checkout-form-group input,
.checkout-form-group textarea,
.checkout-form-group select {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.checkout-form-group input:focus,
.checkout-form-group textarea:focus,
.checkout-form-group select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    transform: translateY(-1px);
}

.checkout-form-group input:invalid,
.checkout-form-group textarea:invalid {
    border-color: #dc3545;
}

.checkout-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkout-field-note {
    font-size: 12px;
    color: #6c757d;
    margin-top: 6px;
    font-style: italic;
}

/* Address Section Styles */
.checkout-address-section {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.checkout-address-section:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.checkout-address-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.checkout-address-header h2 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-address-header h2::before {
    content: '📍';
    font-size: 16px;
}

.checkout-add-address-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.checkout-add-address-btn:hover {
    background: #20c997;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    color: white;
    text-decoration: none;
}

.checkout-section-note {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 16px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

/* Address List Styles */
.checkout-address-list {
    display: grid;
    gap: 16px;
}

.checkout-address-item {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
}

.checkout-address-item:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

.checkout-address-item.selected {
    border-color: #007bff;
    background: #f8f9ff;
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.2);
}

.checkout-address-item.selected::before {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    background: #007bff;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 300;
}

.checkout-address-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-address-title::before {
    content: '🏠';
    font-size: 14px;
}

.checkout-address-details {
    color: #495057;
    font-size: 14px;
    line-height: 1.5;
}

.checkout-address-name {
    font-weight: 500;
    margin-bottom: 4px;
    color: #2c3e50;
}

.checkout-address-text {
    margin-bottom: 6px;
}

.checkout-address-location {
    color: #6c757d;
    margin-bottom: 4px;
}

.checkout-address-phone {
    color: #007bff;
    font-weight: 500;
}

.checkout-company-info {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e9ecef;
    font-size: 13px;
    color: #6c757d;
}

.checkout-address-actions {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}

.checkout-edit-btn, .checkout-delete-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.checkout-edit-btn {
    background: #ffc107;
    color: #212529;
}

.checkout-edit-btn:hover {
    background: #ffb300;
    transform: translateY(-1px);
}

.checkout-delete-btn {
    background: #dc3545;
    color: white;
}

.checkout-delete-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
}

/* Empty Address State */
.checkout-empty-addresses {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.checkout-empty-addresses-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.checkout-empty-addresses h5 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.checkout-empty-addresses p {
    margin-bottom: 20px;
    font-size: 14px;
}

/* Checkbox Styles */
.checkout-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.checkout-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #007bff;
}

.checkout-checkbox-label a {
    color: #007bff;
    text-decoration: none;
}

.checkout-checkbox-label a:hover {
    text-decoration: underline;
}

/* Shipping Section Styles */
.checkout-shipping-section {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.checkout-shipping-section:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.checkout-shipping-section h2 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-shipping-list {
    display: grid;
    gap: 12px;
}

.checkout-shipping-item {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
}

.checkout-shipping-item:hover {
    border-color: #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.1);
    transform: translateY(-2px);
}

.checkout-shipping-item.selected {
    border-color: #28a745;
    background: #f8fff8;
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.2);
}

.checkout-shipping-item.selected::before {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    background: #28a745;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 300;
}

.checkout-shipping-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.checkout-shipping-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.checkout-shipping-status svg {
    color: #28a745;
}

.checkout-shipping-price {
    font-weight: 600;
    color: #28a745;
    font-size: 16px;
    margin-bottom: 8px;
}

.checkout-shipping-details {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.4;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f8f9fa;
}



/* Payment Section Styles */
.checkout-payment-section {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.checkout-payment-section:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.checkout-payment-section h2 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-payment-section h2::before {
    content: '💳';
    font-size: 16px;
}

.checkout-payment-options {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.checkout-payment-option {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.checkout-payment-option:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

.checkout-payment-option.selected {
    border-color: #007bff;
    background: #f8f9ff;
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.2);
}

.checkout-payment-option.selected::before {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    background: #007bff;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 300;
}

.checkout-payment-option img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.checkout-payment-option span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
    flex: 1;
}

.checkout-payment-radio {
    display: none;
}

/* Payment Details */
.checkout-payment-details {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
}

.checkout-payment-details-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.checkout-payment-details-header h4 {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.checkout-payment-details-header svg {
    color: #007bff;
}

/* Error Messages */
.checkout-error-message {
    background: #f8d7da;
    border: 1px solid #dc3545;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    border-left: 4px solid #dc3545;
}

.checkout-error-message h6 {
    color: #721c24;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-error-message h6::before {
    content: '⚠️';
    font-size: 16px;
}

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

.checkout-error-list li {
    color: #721c24;
    font-size: 14px;
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.checkout-error-list li::before {
    content: '•';
    color: #dc3545;
    position: absolute;
    left: 0;
    font-weight: 300;
}

/* Responsive Design - Responsive kodlar responsive.css dosyasında */

/* Animation Classes */
.checkout-fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.checkout-slide-in {
    animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Discounts Section - Sade Tasarım */
.checkout-discounts-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.checkout-discounts-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

.checkout-discounts-header h4 {
    color: #495057;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.checkout-discounts-header svg {
    color: #28a745;
    width: 14px;
    height: 14px;
}

.checkout-discounts-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout-discount-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 13px;
}

.checkout-discount-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057;
}

.checkout-discount-info svg {
    width: 12px;
    height: 12px;
    color: #28a745;
}

.checkout-discount-info span {
    font-weight: 500;
}

.checkout-discount-value {
    color: #28a745;
    font-weight: 600;
    font-size: 13px;
}

/* Özel İndirim Türleri */
.checkout-discount-item.checkout-campaign .checkout-discount-info svg {
    color: #ffc107;
}

.checkout-discount-item.checkout-coupon .checkout-discount-info svg {
    color: #17a2b8;
}

.checkout-discount-item.checkout-transaction-discount .checkout-discount-info svg {
    color: #007bff;
}

/* Focus States for Accessibility */
.checkout-address-item:focus,
.checkout-shipping-item:focus,
.checkout-payment-option:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.checkout-add-address-btn:focus,
.checkout-edit-btn:focus,
.checkout-delete-btn:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: white;
    padding: 8px;
    text-decoration: none;
    transition: top 0.3s;
    z-index: 1000;
}

.skip-to-content:focus {
    top: 6px;
}

/* Breadcrumb Navigation */
.checkout-breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active span {
    color: #6c757d;
    font-weight: 500;
}

/* Mobil Responsive - Checkout Breadcrumb */
@media (max-width: 768px) {
    .checkout-breadcrumb {
        padding: 10px 0;
    }
    
    .checkout-breadcrumb .container {
        padding: 0 15px;
    }
    
    .breadcrumb-list {
        font-size: 13px;
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 6px;
        font-size: 12px;
    }
    
    .breadcrumb-item a,
    .breadcrumb-item.active span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .checkout-breadcrumb {
        padding: 8px 0;
    }
    
    .checkout-breadcrumb .container {
        padding: 0 12px;
    }
    
    .breadcrumb-list {
        font-size: 12px;
        gap: 4px;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 4px;
        font-size: 11px;
    }
    
    .breadcrumb-item a,
    .breadcrumb-item.active span {
        font-size: 12px;
    }
}

/* Main Checkout Container */
.checkout-page {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 30px 0;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Checkout Grid Layout - Bootstrap Uyumlu */
.checkout-grid {
    /* Bootstrap row özelliklerini kullan */
}

.checkout-grid .row {
    margin: 0;
    padding: 0;
}

/* Checkout Form */
.checkout-form {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Form Sections - Duplicate removed, see above for .checkout-section styles */

.checkout-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-section-title i {
    color: #28a745;
    font-size: 18px;
}

/* Duplicate styles removed - use checkout-specific classes above */

/* Order Summary */
.checkout-summary {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.summary-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.summary-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-label {
    color: #666;
}

.summary-value {
    font-weight: 500;
    color: #333;
}

.summary-total {
    font-size: 18px;
    font-weight: 600;
    color: #28a745;
}

/* Coupon Section */
.coupon-section {
    margin-bottom: 20px;
}

.coupon-input-group {
    display: flex;
    gap: 10px;
}

.coupon-input {
    flex: 1;
}

.coupon-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.coupon-btn:hover {
    background: #0056b3;
}

.coupon-applied {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    padding: 15px;
    margin-top: 10px;
}

.coupon-applied-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.coupon-applied-text {
    color: #155724;
    font-weight: 500;
}

.coupon-remove-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.coupon-discount {
    color: #155724;
    font-weight: 600;
}

/* Order Note */
.order-note {
    margin-bottom: 20px;
}

.order-note textarea {
    width: 100%;
    min-height: 100px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    resize: vertical;
}

/* Submit Button */
.checkout-submit {
    background: #28a745;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

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

.checkout-submit:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

/* Error Messages */
.checkout-error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    color: #721c24;
}

.checkout-error-list {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.checkout-error-list li {
    margin-bottom: 5px;
}

/* Responsive Design - Bootstrap Breakpoints */
/* Responsive kodlar responsive.css dosyasına taşındı */

/* Ödeme Sayfası Ürün Linkleri */
.mxw-item .mxw-thumb a,
.mxw-item .mxw-thumb {
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-decoration: none;
    display: block;
}

.mxw-item .mxw-item-title a {
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.mxw-item .mxw-item-title a:hover {
    color: #1d4ed8;
} 

/* ========================================== */
/* NEW CHECKOUT PAGE STYLES */
/* ========================================== */

/* New Checkout Page Styles */
.newcheckoutpage * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Urbanist', sans-serif;
}

.newcheckoutpage {
    background-color: #f5f7fa;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 15px;
}

.newcheckoutpage .payment-container {
    width: 100%;
    max-width: 1720px;
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 15px;
}

.newcheckoutpage .left-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.newcheckoutpage .right-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
    height: fit-content;
}

.newcheckoutpage h1, .newcheckoutpage h2 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1a1a1a;
    position: relative;
}

.newcheckoutpage h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #1a1a1a;
}

/* Auth Section */
.newcheckoutpage .auth-section {
    margin-bottom: 25px;
}

.newcheckoutpage .auth-options {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.newcheckoutpage .auth-option {
    padding: 10px 20px;
    background: #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newcheckoutpage .auth-option.active {
    background: #2d2d2d;
    color: white;
}

.newcheckoutpage .auth-option:hover {
    background: #d3d7db;
}

.newcheckoutpage .auth-option img {
    width: 20px;
    height: 20px;
}

.newcheckoutpage .auth-form {
    display: none;
}

.newcheckoutpage .auth-form.active {
    display: block;
}

.newcheckoutpage .welcome-message {
    margin-top: 15px;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
}

.newcheckoutpage .welcome-message p {
    margin: 0;
}

.newcheckoutpage .welcome-message p.name {
    font-size: 16px;
    font-weight: 600;
}

.newcheckoutpage .welcome-message p.email {
    font-size: 14px;
    color: #2d2d2d;
}

/* Step Navigation */
.newcheckoutpage .step-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.newcheckoutpage .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newcheckoutpage .step-item:hover {
    transform: translateY(-2px);
}

.newcheckoutpage .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #ddd;
    z-index: 1;
}

.newcheckoutpage .step-item.active:not(:last-child)::after {
    background: #2d2d2d;
}

.newcheckoutpage .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    z-index: 2;
    position: relative;
}

.newcheckoutpage .step-item.active .step-number {
    background: #2d2d2d;
    color: white;
}

.newcheckoutpage .step-item.completed .step-number {
    background: #28a745;
    color: white;
}

.newcheckoutpage .step-title {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-align: center;
}

.newcheckoutpage .step-item.active .step-title {
    color: #2d2d2d;
    font-weight: 600;
}

.newcheckoutpage .step-item.completed .step-title {
    color: #28a745;
    font-weight: 600;
}

.newcheckoutpage .step-content {
    display: none;
}

.newcheckoutpage .step-content.active {
    display: block;
}

.newcheckoutpage .step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.newcheckoutpage .step-buttons .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.newcheckoutpage .step-buttons .btn-secondary {
    background: #e9ecef;
    color: #333;
}

.newcheckoutpage .step-buttons .btn-secondary:hover {
    background: #d3d7db;
}

.newcheckoutpage .step-buttons .btn-primary {
    background: #2d2d2d;
    color: white;
}

.newcheckoutpage .step-buttons .btn-primary:hover {
    background: #555;
}

/* Form Styles */
.newcheckoutpage .section {
    margin-bottom: 30px;
}

.newcheckoutpage .form-group {
    margin-bottom: 20px;
}

.newcheckoutpage label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.newcheckoutpage input, .newcheckoutpage select, .newcheckoutpage textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.newcheckoutpage input:focus, .newcheckoutpage select:focus, .newcheckoutpage textarea:focus {
    outline: none;
    border-color: #2d2d2d;
}

.newcheckoutpage input.is-invalid, .newcheckoutpage select.is-invalid, .newcheckoutpage textarea.is-invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Address Section */
.newcheckoutpage .address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.newcheckoutpage .add-address-btn {
    padding: 8px 16px;
    background: #2d2d2d;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.newcheckoutpage .add-address-btn:hover {
    background: #555;
    transform: translateY(-1px);
}

.newcheckoutpage .add-address-btn svg {
    width: 14px;
    height: 14px;
}

.newcheckoutpage .address-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.newcheckoutpage .address-item {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    background: #fafafa;
    transition: all 0.3s;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.newcheckoutpage .address-item.selected {
    border-color: #2d2d2d;
    background: #e8f4fd;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(45, 45, 45, 0.15);
    position: relative;
}

.newcheckoutpage .address-item.selected::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: #2d2d2d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 300;
}

.newcheckoutpage .address-item:hover {
    background: #e9ecef;
}

.newcheckoutpage .address-item .title {
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 5px;
}

.newcheckoutpage .address-item .actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.newcheckoutpage .address-item .actions button {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.newcheckoutpage .address-item .actions .edit-btn {
    background: #2d2d2d;
    color: white;
}

.newcheckoutpage .address-item .actions .delete-btn {
    background: #e74c3c;
    color: white;
}

/* Shipping Section */
.newcheckoutpage .shipping-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.newcheckoutpage .shipping-item {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    background: #fafafa;
    transition: all 0.3s;
    min-height: 100px;
}

.newcheckoutpage .shipping-item.selected {
    border-color: #2d2d2d;
    background: #e8f4fd;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(45, 45, 45, 0.15);
    position: relative;
}

.newcheckoutpage .shipping-item.selected::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: #2d2d2d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 300;
}

.newcheckoutpage .shipping-item:hover {
    background: #e9ecef;
}

.newcheckoutpage .shipping-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.newcheckoutpage .shipping-name {
    font-weight: 600;
    color: #2d2d2d;
}

.newcheckoutpage .shipping-price {
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 5px;
}

.newcheckoutpage .shipping-details {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Payment Section */
.newcheckoutpage .payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.newcheckoutpage .payment-option.selected {
    border-color: #2d2d2d;
    background: #f0f0f0;
}

.newcheckoutpage .payment-option:hover {
    background: #e9ecef;
}

.newcheckoutpage .payment-option img {
    width: 30px;
    height: 30px;
}

.newcheckoutpage .payment-option span {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.newcheckoutpage .payment-details {
    margin-top: 15px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.newcheckoutpage .payment-details.active {
    display: block;
}

.newcheckoutpage .iban-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e9ecef;
    padding: 8px;
    border-radius: 5px;
    margin: 10px 0;
}

.newcheckoutpage .iban-container p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.newcheckoutpage .iban-copy-btn {
    background: #75926b;
    color: white;
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    border: none;
}

.newcheckoutpage .iban-copy-btn:hover {
    background: #5a7a4f;
}

.newcheckoutpage .iban-copy-btn img {
    width: 12px;
    height: 12px;
}

/* Order Summary */
.newcheckoutpage .order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.newcheckoutpage .order-item img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.newcheckoutpage .order-item-details {
    flex-grow: 1;
    font-size: 14px;
    color: #333;
}

.newcheckoutpage .order-item-details p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.newcheckoutpage .cart-product__variant {
    margin-top: 8px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 5px;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.newcheckoutpage .order-item-price {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.newcheckoutpage .order-item-price .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.newcheckoutpage .order-item-price .new-price {
    color: #e74c3c;
}

/* Summary Section */
.newcheckoutpage .summary-section {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.newcheckoutpage .summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin: 8px 0;
    font-weight: 500;
}

.newcheckoutpage .summary-row.discount {
    color: #e74c3c;
}

.newcheckoutpage .summary-row.websale {
    color: #ff6b35;
}

.newcheckoutpage .summary-row.cart-discount {
    color: #ff4757;
}

.newcheckoutpage .summary-row.coupon {
    color: #2ed573;
}

.newcheckoutpage .summary-row.campaign {
    color: #17a2b8;
}

.newcheckoutpage .summary-row.cash-on-delivery {
    color: #ffa502;
}

.newcheckoutpage .summary-row.total {
    font-weight: 300;
    font-size: 18px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

/* Coupon Section */
.newcheckoutpage .coupon-section {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newcheckoutpage .coupon-section input {
    flex: 1;
}

.newcheckoutpage .coupon-section button {
    padding: 8px 16px;
    background: #2d2d2d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.newcheckoutpage .coupon-applied {
    display: none;
    color: #28a745;
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
    padding: 10px;
    background: #f8f9fa;
    border: 1px solid #28a745;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newcheckoutpage .error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 8px;
    padding: 8px 12px;
    background: #fdf2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newcheckoutpage .error-message::before {
    content: '⚠️';
    font-size: 14px;
}

/* Contract Agreements */
.newcheckoutpage .contract-agreement {
    margin: 20px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.newcheckoutpage .contract-agreement .form-check-input {
    width: auto !important;
}

.newcheckoutpage .form-check-input {
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #ddd;
    border-radius: 4px;
    background-color: white;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
}

.newcheckoutpage .form-check-input:checked {
    background-color: #2d2d2d;
    border-color: #2d2d2d;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.newcheckoutpage .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(45, 45, 45, 0.25);
    border-color: #2d2d2d;
}

.newcheckoutpage .form-check-label {
    cursor: pointer;
    user-select: none;
    font-weight: 500;
}

.newcheckoutpage .form-check-label a {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 500;
}

.newcheckoutpage .form-check-label a:hover {
    text-decoration: underline;
}

/* Toast Notification */
.newcheckoutpage .toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #e74c3c;
    animation: slideInRight 0.3s ease;
}

.newcheckoutpage .toast-notification.success {
    border-left-color: #28a745;
}

.newcheckoutpage .toast-notification.warning {
    border-left-color: #ffc107;
}

.newcheckoutpage .toast-notification.info {
    border-left-color: #17a2b8;
}

.newcheckoutpage .toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.newcheckoutpage .toast-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.newcheckoutpage .toast-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
}

.newcheckoutpage .toast-body {
    padding: 12px 16px;
    font-size: 13px;
    color: #666;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
/* Responsive kodlar responsive.css dosyasına taşındı */

/* ==========================================
   CART ADD MODAL - Sepete Ekleme Popup
   ========================================== */
.cart-add-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999999 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    animation: fadeIn 0.3s ease;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: auto !important;
}

.cart-add-modal[style*="flex"],
.cart-add-modal.show {
    display: flex !important;
}

/* Modal görünür olduğunda */
.cart-add-modal[style*="display: flex"],
.cart-add-modal[style*="display:flex"],
.cart-add-modal[style*="display: flex !important"],
.cart-add-modal[style*="display:flex !important"] {
    display: flex !important;
}

.cart-add-modal__overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(2px);
    z-index: 1;
}

.cart-add-modal__content {
    position: relative !important;
    background: #ffffff !important;
    border-radius: 12px;
    width: 90% !important;
    max-width: 580px !important;
    max-height: 90vh !important;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    animation: slideUp 0.3s ease;
    z-index: 2 !important;
    margin: auto !important;
}

.cart-add-modal__header {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.cart-add-modal__success-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d1fae5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.cart-add-modal__success-icon svg {
    width: 24px;
    height: 24px;
}

.cart-add-modal__title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #10b981;
    line-height: 1.4;
}

.cart-add-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    flex-shrink: 0;
}

.cart-add-modal__close:hover {
    color: #111827;
}

.cart-add-modal__body {
    padding: 20px 24px;
    padding-bottom: 16px;
}

.cart-add-modal__products-list {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.cart-add-modal__product {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    align-items: flex-start;
    transition: all 0.2s ease;
}

.cart-add-modal__product:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.cart-add-modal__product:last-child {
    margin-bottom: 0;
}

.cart-add-modal__product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: auto;
    align-items: flex-end;
}

.cart-add-modal__product-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f3f4f6;
}

.cart-add-modal__product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #f9fafb;
}

.cart-add-modal__product-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-add-modal__product-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.cart-add-modal__product-name {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    line-height: 1.5;
    word-wrap: break-word;
    flex: 1;
    margin: 0;
}

.cart-add-modal__delete-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #fef2f2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ef4444;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.cart-add-modal__delete-btn:hover {
    background: #fee2e2;
    color: #dc2626;
    transform: scale(1.05);
}

.cart-add-modal__delete-btn:active {
    transform: scale(0.95);
}

.cart-add-modal__product-price {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-add-modal__price-main {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cart-add-modal__price-current {
    font-weight: 600;
    font-size: 16px;
    color: #111827;
}

.cart-add-modal__price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.cart-add-modal__price-detail {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

.cart-add-modal__price-detail strong {
    color: #111827;
    font-weight: 600;
}

.cart-add-modal__product-variant {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 6px 10px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 12px;
}

.cart-add-modal__variant-label {
    color: #6b7280;
    font-weight: 500;
}

.cart-add-modal__variant-value {
    color: #111827;
    font-weight: 500;
}

.cart-add-modal__children-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 12px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.cart-add-modal__child-item {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 8px;
    font-size: 12px;
    color: #374151;
    border: 1px solid #e5e7eb;
    min-width: 0;
    gap: 4px;
}

.cart-add-modal__child-name {
    font-weight: 500;
    color: #111827;
    line-height: 1.4;
    word-break: break-word;
}

.cart-add-modal__child-quantity {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}

.cart-add-modal__product-price ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
    list-style: disc;
    font-size: 12px;
    color: #9ca3af;
}

.cart-add-modal__product-quantity-label {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

.cart-add-modal__quantity-controls {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    width: fit-content;
}

.cart-add-modal__quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6b7280;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.cart-add-modal__quantity-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

.cart-add-modal__quantity-btn:active {
    background: #e5e7eb;
    transform: scale(0.95);
}

.cart-add-modal__quantity-btn--decrease {
    border-right: 1px solid #e5e7eb;
}

.cart-add-modal__quantity-btn--increase {
    border-left: 1px solid #e5e7eb;
}

.cart-add-modal__quantity-value {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    min-width: 50px;
    text-align: center;
    padding: 0 12px;
    background: #ffffff;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
}

.cart-add-modal__summary {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.cart-add-modal__summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.cart-add-modal__summary-label {
    color: #6b7280;
    font-weight: 500;
}

.cart-add-modal__summary-value {
    color: #111827;
    font-weight: 600;
}

.cart-add-modal__summary-row--discount {
    color: #dc2626;
}

.cart-add-modal__summary-row--discount .cart-add-modal__summary-value {
    color: #dc2626;
}

.cart-add-modal__summary-discounts {
    margin: 8px 0;
}

.cart-add-modal__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.cart-add-modal__total-price {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.cart-add-modal__total-label {
    font-size: 16px;
    color: #111827;
    font-weight: 600;
}

.cart-add-modal__footer {
    display: flex;
    gap: 12px;
    padding: 20px 24px 24px 24px;
    border-top: 1px solid #e5e7eb;
    margin-top: 8px;
}

.cart-add-modal__btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-width: 0;
}

.cart-add-modal__btn--secondary {
    background: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db;
}

.cart-add-modal__btn--secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.cart-add-modal__btn--primary {
    background: #111827;
    color: #ffffff;
}

.cart-add-modal__btn--primary:hover {
    background: #374151;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-add-modal__content {
        width: 95%;
        max-width: none;
        margin: 20px;
    }
    
    .cart-add-modal__header {
        padding: 16px 20px;
    }
    
    .cart-add-modal__title {
        font-size: 14px;
    }
    
    .cart-add-modal__body {
        padding: 20px;
    }
    
    .cart-add-modal__product {
        gap: 12px;
        padding: 12px;
        margin-bottom: 16px;
    }
    
    .cart-add-modal__product-image {
        width: 80px;
        height: 80px;
    }
    
    .cart-add-modal__product-name {
        font-size: 14px;
    }
    
    .cart-add-modal__quantity-controls {
        margin-top: 8px;
    }
    
    .cart-add-modal__quantity-btn {
        width: 36px;
        height: 36px;
    }
    
    .cart-add-modal__quantity-value {
        min-width: 40px;
        padding: 0 10px;
        font-size: 14px;
    }
    
    .cart-add-modal__delete-btn {
        width: 28px;
        height: 28px;
    }
    
    .cart-add-modal__total-price {
        font-size: 20px;
    }
    
    .cart-add-modal__footer {
        flex-direction: column;
    }
    
    .cart-add-modal__btn {
        width: 100%;
    }
    
    .cart-add-modal__price-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .cart-add-modal__price-current {
        font-size: 15px;
    }
    
    .cart-add-modal__price-old {
        font-size: 13px;
    }
    
    .cart-add-modal__price-detail {
        font-size: 12px;
    }
    
    .cart-add-modal__product-variant {
        font-size: 11px;
        padding: 5px 8px;
    }
    
    .cart-add-modal__children-list {
        gap: 6px;
        padding: 6px 10px;
    }
    
    .cart-add-modal__child-item {
        font-size: 11px;
        padding: 6px 10px;
        gap: 3px;
    }
    
    .cart-add-modal__child-name {
        font-size: 11px;
    }
    
    .cart-add-modal__child-quantity {
        font-size: 10px;
    }
} 