/* Ürün Detay Sayfası CSS */
:root {
    --primary-blue: #2b4e80;
    --secondary-blue: #6fbdd7;
    --dark-purple: #221653;
    --accent-red: #c11248;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
}

.product-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-purple) 100%);
    min-height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #283e6dd0 0%, #63b3cdc2 100%);
    z-index: 1;
}

.product-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 2;
}

.product-hero .uk-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.product-title {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 10px !important;
    font-size: 36px !important;
    color: white;
    font-weight: 700;
}

.product-subtitle {
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    opacity: 0.9;
    font-size: 18px !important;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

.breadcrumb-nav {
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.breadcrumb-nav .uk-breadcrumb {
    margin: 0;
}

.breadcrumb-nav .uk-breadcrumb > li > a {
    color: rgba(255,255,255,0.8) !important;
    transition: color 0.3s ease;
    text-decoration: none;
}

.breadcrumb-nav .uk-breadcrumb > li > a:hover {
    color: #fff !important;
}

.breadcrumb-nav .uk-breadcrumb > li > span {
    color: #fff !important;
}

.product-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(43, 78, 128, 0.1);
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-slider .uk-slideshow-items {
    border-radius: 15px;
}

/* .product-container .product-gallery .product-slider .uk-slideshow-items img,
.product-container .product-gallery .product-slider .uk-slideshow-items img.uk-object-top-center,
.product-container .product-gallery .product-slider .uk-slideshow-items img[class*="uk-object-"] {
    width: 100% !important;
    height: 400px !important;
    object-fit: cover !important;
    object-position: 50% 50% !important;
    cursor: pointer;
    transition: transform 0.3s ease;
} */

.product-slider .uk-slideshow-items a:hover img {
    transform: scale(1.02);
}

.product-slider .uk-slideshow-items a {
    display: block;
    position: relative;
}


.product-slider .uk-slideshow-items a:hover::after {
    opacity: 1;
}

.product-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.product-slider-nav.uk-position-center-left {
    left: 15px;
}

.product-slider-nav.uk-position-center-right {
    right: 15px;
}

.product-slider-nav .uk-slidenav {
    background: rgba(43, 78, 128, 0.8);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-slider-nav .uk-slidenav:hover {
    background: rgba(43, 78, 128, 1);
    transform: scale(1.1);
}

.product-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.product-slider-dots .uk-dotnav > li > a {
    background: rgba(43, 78, 128, 0.3);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.product-slider-dots .uk-dotnav > li.uk-active > a {
    background: var(--primary-blue);
    transform: scale(1.2);
}

.main-image-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.05);
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.thumbnail:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-blue);
    box-shadow: 0 5px 20px rgba(111, 189, 215, 0.3);
}

.thumbnail.active {
    border-color: var(--secondary-blue);
    box-shadow: 0 5px 20px rgba(111, 189, 215, 0.4);
}

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

.product-info {
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    
    box-shadow: 0 10px 30px rgba(43, 78, 128, 0.1);
    border: 1px solid rgba(111, 189, 215, 0.1);
    position: relative;
    overflow: hidden;
}


.product-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.product-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-red);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-subtitle::before {
    content: '';
    width: 4px;
    height: 18px;
    background: var(--secondary-blue);
    border-radius: 2px;
}

.product-description-section {
    margin-bottom: 35px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--secondary-blue);
    position: relative;
}

.product-description-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(111, 189, 215, 0.05) 0%, rgba(43, 78, 128, 0.05) 100%);
    border-radius: 15px;
    z-index: 0;
}

.product-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.product-content-section {
    margin-bottom: 35px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--accent-red);
    position: relative;
}

.product-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(193, 18, 72, 0.05) 0%, rgba(214, 51, 132, 0.05) 100%);
    border-radius: 15px;
    z-index: 0;
}

.product-content {
    color: #555;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.product-content h1, .product-content h2, .product-content h3,
.product-content h4, .product-content h5, .product-content h6 {
    color: var(--primary-blue);
    margin-top: 20px;
    margin-bottom: 10px;
}

.product-content p {
    margin-bottom: 15px;
}

.product-content ul, .product-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.product-content li {
    margin-bottom: 5px;
}

.product-dimensions-section {
    margin-bottom: 35px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--dark-purple);
    position: relative;
}

.product-dimensions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 22, 83, 0.05) 0%, rgba(43, 78, 128, 0.05) 100%);
    border-radius: 15px;
    z-index: 0;
}

.dimensions-content {
    color: #555;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.spec-item {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-purple));
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(43, 78, 128, 0.3);
}

.spec-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red), #d63384);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(193, 18, 72, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 18, 72, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(111, 189, 215, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(111, 189, 215, 0.4);
    color: white;
    text-decoration: none;
}

.content-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid var(--secondary-blue);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 25px;
    background: var(--accent-red);
    border-radius: 2px;
}

.content-text {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8f4f8 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.related-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-card-body {
    padding: 20px;
}

.related-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    display: block;
    text-align: center;
}

.related-card-title:hover {
    color: var(--accent-red);
    text-decoration: none;
}

.contact-section {
    background: linear-gradient(135deg, #c11248 0%, #d63384 100%);
    border-radius: 10px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(193, 18, 72, 0.3);
}

.contact-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-text {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.6; font-weight: 100 !important;
}

/* Responsive Tasarım */
@media (max-width: 960px) {
    .product-hero {
        min-height: 350px;
        padding-top: 80px;
    }
    
    .product-title {
        font-size: 28px !important;
    }
    
    .product-subtitle {
        font-size: 16px !important;
    }
    
    .breadcrumb-nav {
        padding: 12px 20px;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-info {
        padding: 25px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        justify-content: center;
    }
    
    .product-specs {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        position: static;
    }
    
    .product-container {
        margin-top: -20px;
    }
}

@media (max-width: 640px) {
    .product-hero {
        min-height: 300px;
        padding-top: 60px;
    }
    
    .product-title {
        font-size: 24px !important;
    }
    
    .product-subtitle {
        font-size: 14px !important;
    }
    
    .breadcrumb-nav {
        padding: 10px 15px;
    }
    
    .product-hero .uk-grid {
        flex-direction: column;
    }
    
    .product-hero .uk-width-1-1 {
        text-align: center;
    }


    .product-gallery {
        position: relative;
        top: 0;
    }
    
} 