.product-detail {
    padding: 30px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #4a6cf7;
}

.breadcrumb i {
    font-size: 12px;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.product-gallery .main-image img {
    width: 100%;
    border-radius: 8px;
}

.product-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.product-meta {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.product-meta div {
    margin-bottom: 8px;
    color: #666;
}

.product-meta span {
    color: #333;
    font-weight: 500;
}

.product-price-large {
    margin-bottom: 20px;
}

.product-price-large .current-price {
    font-size: 32px;
    font-weight: bold;
    color: #4a6cf7;
}

.product-price-large .old-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
    margin-left: 15px;
}

.discount-badge {
    background: #ff4757;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    margin-left: 15px;
}

.product-stock-status {
    margin-bottom: 25px;
}

.in-stock {
    color: #2ed573;
    font-weight: 500;
}

.out-of-stock {
    color: #ff4757;
    font-weight: 500;
}

.product-actions-large {
    margin-bottom: 30px;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-large {
    padding: 15px 25px;
    font-size: 16px;
    margin-right: 15px;
    margin-bottom: 10px;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.feature-item i {
    color: #4a6cf7;
}

.product-description {
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-description h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.description-content {
    line-height: 1.8;
    color: #666;
}



.products-page {
    padding: 30px 0;
}

.page-header {
    margin-bottom: 30px;
}

.page-header h1 {
    margin-bottom: 10px;
    color: #333;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.filters-sidebar {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-group h3 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.category-filters li {
    margin-bottom: 8px;
}

.category-filters a {
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s;
    color: #666;
}

.category-filters a:hover,
.category-filters a.active {
    background: #4a6cf7;
    color: white;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.price-inputs input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.price-inputs span {
    color: #666;
}

.btn-small {
    padding: 8px 15px;
    font-size: 14px;
}

.feature-filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input {
    margin: 0;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sort-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-form select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-products i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-products h3 {
    color: #666;
    margin-bottom: 15px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.page-link {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    transition: all 0.3s;
}

.page-link:hover,
.page-link.active {
    background: #4a6cf7;
    color: white;
    border-color: #4a6cf7;
}

.page-link.prev,
.page-link.next {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-category {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

/* Products sayfası için */
.product-card {
    position: relative;
}

.product-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.product-image-link:hover {
    opacity: 0.9;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Filtre formları için düzenleme */
.feature-filters form {
    display: contents;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 5px 0;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

.badge.featured {
    background: #ff9f43;
}

@media (max-width: 768px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: static;
    }
    
    .products-toolbar {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .btn-large {
        width: 100%;
        margin-right: 0;
    }
}