/* SatoShop Index Page Styles */


/* Ana İçerik */
.main-content {
    flex: 1;
}

/* Slider Loading Animation */
.slider-container {
    position: relative;
}

/* Product Loading Animation */
.product-image {
    position: relative;
    overflow: hidden;
}

.product-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
    z-index: 2;
    border-radius: 8px;
}

.product-image img {
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image img.loaded {
    opacity: 1;
}

.product-loading.hidden {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.slider-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
    z-index: 10;
}

@keyframes loading-shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.slider-loaded .slider-loading {
    opacity: 0;
    transition: opacity 0.5s ease-out;
    pointer-events: none;
}

/* Container Slider Styles */
.slider-section {
    margin-bottom: 50px;
}

.slider-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-slide.active {
    opacity: 1;
    transform: scale(1.02);
}

.slider-slide {
    cursor: pointer;
    display: block;
    transform: scale(1);
}

.slider-slide-1 {
    background-image: url('../image/banner11.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-slide-2 {
    background-image: url('../image/banner2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-slide-3 {
    background-image: url('../image/banner3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slider Links */
.slider-slide {
    text-decoration: none;
    color: inherit;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.slider-dot {
    width: 40px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #e74c3c;
    transform: scaleX(1.2);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    font-size: 0.8rem;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.02);
    border-color: rgba(255, 255, 255, 0.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slider-container {
        height: 250px;
        border-radius: 10px;
    }


    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 200px;
        margin: 0 10px;
    }

    .slider-slide {
        background-size: cover !important;
        background-position: center !important;
    }

    .slider-nav {
        bottom: 20px;
        gap: 6px;
    }

    .slider-dot {
        width: 30px;
        height: 2px;
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 0;
}

/* Categories Section */
.categories-section {
    margin-top: 50px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}



.category-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f8f9fa;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.category-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.category-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 10px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    justify-items: center;
}

/* Ana sayfa kategorileri için özel stiller */
.home-categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 10px;
    justify-content: flex-start;
}

.home-category-item {
    width: 200px;
    max-width: 200px;
}

/* Responsive kategori grid */
@media (max-width: 768px) {
    .home-categories-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        padding: 0 5px;
        justify-content: flex-start;
    }

    .home-category-item {
        width: calc(50% - 6px);
        max-width: none;
    }

    .home-category-card {
        padding: 12px;
        min-height: 120px;
    }

    .home-category-image {
        width: 35px;
        height: 35px;
        margin: 0 0 8px 0;
        font-size: 14px;
    }

    .home-category-card h5 {
        font-size: 0.9rem;
        margin: 0 0 4px 0;
    }

    .home-category-card p {
        font-size: 0.7rem;
        margin: 0 0 6px 0;
    }

    .home-product-count {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .home-categories-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 10px;
        justify-content: flex-start;
    }

    .home-category-item {
        width: calc(50% - 5px);
        max-width: none;
    }

    .home-category-card {
        padding: 10px;
        min-height: 110px;
    }

    .home-category-image {
        width: 30px;
        height: 30px;
        margin: 0 0 6px 0;
        font-size: 12px;
    }

    .home-category-card h5 {
        font-size: 0.85rem;
        margin: 0 0 3px 0;
    }

    .home-category-card p {
        font-size: 0.65rem;
        margin: 0 0 5px 0;
    }

    .home-product-count {
        font-size: 0.6rem;
        padding: 2px 5px;
    }
}

.home-category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    padding: 15px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0;
    height: 100%;
    min-height: 140px;
    overflow: hidden;
}

.home-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    transform: scaleX(1);
}

.home-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #333;
}

.home-category-image {
    width: 40px;
    height: 40px;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 16px;
    color: #666;
    border: 1px solid #e9ecef;
}

.home-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.home-category-card h5 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.home-category-card p {
    margin: 0 0 8px 0;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.3;
    flex-grow: 1;
}

.home-category-count {
    margin-top: auto;
    text-align: left;
}

.home-product-count {
    background: #f8f9fa;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-block;
    border: 1px solid #e9ecef;
}

/* Mobil responsive */
@media (max-width: 768px) {
    .home-category-card {
        padding: 15px;
        min-height: 160px;
    }

    .home-category-image {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .home-category-card h5 {
        font-size: 1.1rem;
    }

    .home-category-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .home-category-card {
        padding: 12px;
        min-height: 140px;
    }

    .home-category-image {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .home-category-card h5 {
        font-size: 1rem;
    }

    .home-category-card p {
        font-size: 0.75rem;
    }
}

.home-no-categories {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

/* Featured Products Section */
.featured-products {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}


/* Custom Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
    padding: 0 0px;
}

.product-item {
    width: 100%;
    max-width: 250px;
}

/* Responsive Grid */
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 5px;
    }

    /* Section Container */
    .section-container {

        padding: 10px 10px;
    }

}

@media (min-width: 577px) and (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1201px) {
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid #ededed;
    display: block;
    text-decoration: none !important;
    color: inherit;
}



.product-card:hover {
    transform: none;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 160px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
        max-width: 125%;
    max-height: 226px;

}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    color: white;
    backdrop-filter: blur(10px);
}

/* Badge container */
.product-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-badge {
    position: static !important;
    /* Absolute'ı override et */
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.product-badge.discount {
    background-color: #dc3545;
}

.product-badge.new {
    background-color: #007bff;
}

.product-badge.bestseller {
    background-color: #fd7e14;
}

.product-badge.special {
    background-color: #28a745;
}

.sales-message {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 107, 107, 0.95), rgba(238, 90, 82, 0.95));
    color: white;
    padding: 0px 0px;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(5px);
}

.sales-message.urgent {
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.95), rgba(200, 35, 51, 0.95));
    animation: pulse-urgent 2s infinite;
}

.sales-message.limited {
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.95), rgba(255, 152, 0, 0.95));
    color: #ffffff;
}

.sales-message.new {
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.95), rgba(0, 86, 179, 0.95));
    color: white;
}

.sales-message.stock-warning {
    background: linear-gradient(90deg, rgba(255, 87, 34, 0.95), rgba(255, 61, 0, 0.95));
    color: white;
    animation: pulse-urgent 1.5s infinite;
}

.sales-message.closed {
    background: linear-gradient(90deg, rgba(158, 158, 158, 0.95), rgba(117, 117, 117, 0.95));
    color: white;
}

@keyframes pulse-urgent {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.product-info {
    padding: 10px;
    background: #ffffff;
}

.product-category {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.product-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.price {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}


.old-price {
    position: relative;
    color: #adb5bd;
    font-size: 0.8rem;
    margin-right: 6px;
}

.old-price::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 20%;
    height: 1px;
    background: #adb5bd;
    transform: rotate(-15deg) translateY(-50%);
}

.new-price {
    color: #28a745;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-primary {
    background: #28a745;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-weight: 500;
    font-size: 0.95rem;
    color: white;
    width: 100%;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #218838;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #6c757d;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-weight: 500;
    font-size: 0.85rem;
    color: white;
    width: 100%;
    transition: all 0.2s ease;
    cursor: not-allowed;
}

.btn-secondary:hover {
    background: #6c757d;
    transform: none;
}

.btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    justify-items: center;
}

.advantage-item {
    width: 100%;
    max-width: 250px;
}

/* Advantages Section */
.advantages-section {
    margin-top: 50px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}


.advantage-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f8f9fa;
}

/* Sayfa Başlığı */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0;
    margin-bottom: 30px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    text-align: center;
    margin: 0;
}

/* Ürün Filtreleri */
.products-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.filter-left {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Kategori Filtre Butonları */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-filter-btn {
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-filter-btn:hover,
.category-filter-btn.active {
    background: #28a745;
    color: white;
    border-color: #28a745;
    transform: translateY(-1px);
}

.sort-select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    background: white;
}

.sort-select:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.25);
}

/* Sadece Sıralama Olan Sayfalar İçin */
.products-filter:has(.filter-right:only-child) {
    justify-content: flex-end;
}

.products-filter:has(.filter-right:only-child) .filter-right {
    margin: 0;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .products-filter {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .filter-left {
        flex: 1;
        min-width: 0;
    }

    .filter-right {
        flex-shrink: 0;
    }

    .category-filters {
        flex-wrap: wrap;
    }

    .category-filter-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .sort-select {
        width: 150px;
        min-width: 150px;
    }

    /* Sadece sıralama olan sayfalar için mobil */
    .products-filter:has(.filter-right:only-child) {
        justify-content: center;
    }
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 10px;
}

.pagination-btn {
    padding: 10px 15px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination-btn:hover {
    background: #218838;
    color: white;
}

.pagination-btn.disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
}

.pagination-number {
    padding: 10px 15px;
    background: #ffffff;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination-number:hover,
.pagination-number.active {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.pagination-dots {
    padding: 10px 5px;
    color: #6c757d;
}

/* Kategori Kartları */
.category-card {
    text-decoration: none !important;
    color: inherit;
    display: block;
    height: 100%;
}

.category-stats {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.product-count {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

/* Ürün Detay Sayfası */
.product-detail-section {
    padding: 20px 0;
}

.breadcrumb {
    margin-bottom: 0px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #6c757d;
}

.breadcrumb-current {
    color: #28a745;
    font-weight: 600;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.product-main-image {
    position: relative;
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.product-price {
    margin-bottom: 20px;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
}

.discount-percentage {
    background: #dc3545;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100px;
    text-align: center;
    line-height: 1.2;
}

.product-description {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #555;
}

.product-features {
    margin-bottom: 25px;
}

.product-features h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features i {
    color: #28a745;
    font-size: 0.9rem;
}

.product-stock {
    margin-bottom: 25px;
    font-weight: 500;
}

.stock-available {
    color: #28a745;
}

.stock-unavailable {
    color: #dc3545;
}

.product-actions {
    margin-bottom: 30px;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}


#quantity {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.add-to-cart-section {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    flex: 1;
    min-width: 200px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #28a745;
    color: #28a745;
    padding: 13px 25px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: #28a745;
    color: white;
}

.quick-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6c757d;
}

.info-item i {
    color: #28a745;
}

/* Responsive */
@media (max-width: 768px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-filter {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .filter-left,
    .filter-right {
        width: 100%;
    }

    .filter-select,
    .sort-select {
        width: 100%;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .pagination-numbers {
        flex-wrap: wrap;
    }

    .add-to-cart-section {
        flex-direction: column;
    }

    .btn-large {
        min-width: auto;
    }

    .quick-info {
        flex-direction: column;
        gap: 10px;
    }
}

/* Kategori Sayfası Özel Stilleri */
.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.category-info {
    text-align: left;
}


.breadcrumb-section {
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 2px;
    border: 1px solid #e5e7eb;
}

/* Responsive Kategori Sayfası */
@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .category-info {
        text-align: center;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }


    .stats-label {
        font-size: 0.9rem;
    }
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.advantage-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .category-card,
    .advantage-card {
        padding: 20px 15px;
    }

    .category-image,
    .advantage-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .product-image {
        height: auto;
    }
}