.products-page {
    padding: 250px 50px 50px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.products-page h1 {
    color: white;
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: rgba(13, 17, 23, 0.95);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-rating {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(13, 17, 23, 0.95);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.product-type {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #4285f4;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.product-info {
    padding: 20px;
}

.product-name {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-price {
    color: #8b949e;
    font-size: 16px;
}

.product-delivery {
    color: #8b949e;
    font-size: 14px;
    margin-top: 5px;
}

/* Responsive tasarım */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-page {
        padding: 200px 20px 30px 20px;
    }
}

.product-link {
    text-decoration: none;
}

/* Kategori Sayfası Stilleri */
.category-description {
    color: #8b949e;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.original-price {
    text-decoration: line-through;
    color: #666;
    margin-left: 8px;
    font-size: 14px;
}

.no-products {
    color: #8b949e;
    padding: 150px 0;
    text-align: center;
}

.no-products i {
    color: #4285f4;
    font-size: 48px;
    margin-bottom: 20px;
}

.no-products h3 {
    color: white;
    margin: 20px 0 10px;
    font-size: 24px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .products-page {
        padding: 200px 20px 30px 20px;
    }
    
    .category-description {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .no-products {
        padding: 100px 0;
    }
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(13, 17, 23, 0.95);
    border-radius: 10px;
}

.breadcrumb {
    margin-bottom: 20px;
    color: #8b949e;
    font-size: 14px;
}

.breadcrumb a {
    color: #4285f4;
    text-decoration: none;
}

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

.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.product-gallery {
    background-color: rgba(22, 27, 34, 0.8);
    border-radius: 10px;
    padding: 20px;
}

.main-image {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.thumbnail-images img:hover {
    transform: scale(1.05);
}

.product-info {
    color: white;
}

.product-info h1 {
    font-size: 32px;
    margin: 0 0 20px 0;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-rating {
    color: #4285f4;
}

.product-rating span {
    color: #8b949e;
    margin-left: 5px;
}

.product-category {
    color: #8b949e;
}

.product-category a {
    color: #4285f4;
    text-decoration: none;
}

.product-description {
    color: #8b949e;
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-features {
    margin-bottom: 30px;
}

.product-features h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features i {
    color: #4285f4;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.price-card {
    background-color: rgba(22, 27, 34, 0.8);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.price-card:hover {
    transform: translateY(-5px);
    background-color: rgba(66, 133, 244, 0.1);
}

.price-card.selected {
    background-color: rgba(66, 133, 244, 0.2);
    border: 2px solid #4285f4;
}

.price-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.price-card h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.price {
    font-size: 24px;
    font-weight: 600;
    color: #4285f4;
    margin-bottom: 5px;
}

.price-period {
    color: #8b949e;
    font-size: 14px;
}

.purchase-form {
    margin-top: 20px;
}

.purchase-button {
    width: 100%;
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.purchase-button:hover {
    background-color: #3b77db;
}

.out-of-stock {
    text-align: center;
    background-color: #dc3545;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
}

.reviews-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(139, 148, 158, 0.2);
}

.reviews-section h2 {
    margin-bottom: 30px;
    font-size: 24px;
    color: white;
}

.reviews-container {
    display: grid;
    gap: 20px;
}

.review-card {
    background-color: rgba(22, 27, 34, 0.8);
    border-radius: 10px;
    padding: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 500;
    color: white;
}

.review-rating {
    color: #4285f4;
}

.review-content {
    color: #8b949e;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-date {
    color: #8b949e;
    font-size: 14px;
}

.no-reviews {
    text-align: center;
    color: #8b949e;
    padding: 40px;
    background-color: rgba(22, 27, 34, 0.8);
    border-radius: 10px;
}

.related-products {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(139, 148, 158, 0.2);
}

.related-products h2 {
    margin-bottom: 30px;
    font-size: 24px;
    color: white;
}

@media (max-width: 768px) {
    .product-details {
        grid-template-columns: 1fr;
    }

    .pricing-options {
        grid-template-columns: 1fr;
    }

    .main-image {
        height: 300px;
    }
}

/* Scrollbar stilleri */
.thumbnail-images::-webkit-scrollbar {
    height: 8px;
}

.thumbnail-images::-webkit-scrollbar-track {
    background: rgba(22, 27, 34, 0.8);
    border-radius: 4px;
}

.thumbnail-images::-webkit-scrollbar-thumb {
    background: #4285f4;
    border-radius: 4px;
}

.thumbnail-images::-webkit-scrollbar-thumb:hover {
    background: #3b77db;
} 