  /* Temel stil örneği (kendi style.css'ine eklemen önerilir) */

        body {
            font-family: Arial, sans-serif;
            background: #f5f5f5;
            margin: 0; padding: 10px;
        }      a {color:#111; text-decoration: none;
        }

        h1 {
            text-align: center;
            margin-bottom: 30px;
            font-weight: 700;
            font-size: 2.5rem;
            position: relative;
        }

        /* Logo üstüne yerleşsin */
img.logo {
    max-width: 100%;
    height: 45px;
}.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.page-link {
    padding: 6px 12px;
    background: #eee;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.page-link.active {
    background: #333;
    color: #fff;
}

.category-selector { margin-bottom:25px; text-align:center; }
a.category-tile {
    background:#eee; border:none; padding:10px 18px; margin: 0 5px 10px 5px; border-radius:4px; cursor:pointer;
    transition: background 0.3s;    display: block;
}
 a.category-tile:hover { background:#007acc; color:#fff; }
        .catalog-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .category-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 40px;
        }

        .category-item {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
            padding: 15px 25px;
            cursor: pointer;
            transition: background 0.3s, color 0.3s;
            font-weight: 600;
            font-size: 1.2rem;
            color: #333;
            user-select: none;
        }

        .category-item.active,
        .category-item:hover {
            background: #0073aa;
            color: white;
        }

        .product-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
        }

        .product-card {
            background: white;
            width: 260px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
  header.header {
    text-align: center;
}
a.back-button {
    margin: 25px 0;
    display: block;
}
        .main-image {
            position: relative;
            width: 100%;
            height: 320px;
            overflow: hidden;
            cursor: pointer;
        }

        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .main-image img.zoomed {
            position: fixed;
            top: 50%;
            left: 50%;
            width: auto;
            max-width: 90vw;
            max-height: 90vh;
            transform: translate(-50%, -50%);
            z-index: 9999;
            box-shadow: 0 0 30px rgba(0,0,0,0.6);
            cursor: zoom-out;
            background: white;
            border-radius: 8px;
        }

        .overlay-logo {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 60px;
            height: 30px;
            background: url('https://www.dekorplus.com.tr/katalog/overlay-logo.png') no-repeat center center;
            background-size: contain;
            opacity: 0.6;
            pointer-events: none;
        }

        .thumbnail-strip {
            display: flex;
            overflow-x: auto;
            padding: 8px 10px;
            background: #fafafa;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .thumbnail-strip::-webkit-scrollbar {
            height: 8px;
        }

        .thumbnail-strip::-webkit-scrollbar-thumb {
            background: #bbb;
            border-radius: 4px;
        }

        .thumbnail-icon {
            flex: 0 0 auto;
            width: 50px;
            height: 50px;
            object-fit: cover;
            margin-right: 8px;
            border-radius: 5px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.3s ease;
        }

        .thumbnail-icon:hover,
        .thumbnail-icon.active {
            border-color: #0073aa;
        }

        .product-card h3 {
            margin: 15px 15px 5px;
            font-size: 1.1rem;
            color: #222;
            min-height: 48px;
        }

        .stock-status {
            margin: 0 15px 10px;
            padding: 5px 10px;
            font-weight: 600;
            border-radius: 15px;
            display: inline-block;
            font-size: 0.9rem;
            user-select: none;
        }
        .stock-status.in {
            background-color: #d4edda;
            color: #155724;
        }
        .stock-status.low {
            background-color: #fff3cd;
            color: #856404;
        }
        .stock-status.out {
            background-color: #e2e3e5;
            color: #6c757d;
        }

        .attributes {
            list-style: none;
            padding: 0 15px 15px;
            margin: 0;
            font-size: 0.9rem;
            color: #333;
            max-height: 110px;
            overflow-y: auto;
        }
        .attributes li {
            margin-bottom: 5px;
        }

        footer {
            text-align: center;
            margin: 50px 0 20px;
            font-size: 0.9rem;
            color: #888;
        }

        /* Responsive */
        @media (max-width: 600px) {
            .product-card {
                width: 100%;
            }.main-image {
   max-height: 392px;
   min-height: 200px;
   height: auto;
}
            .category-list {
                flex-direction: column;
                align-items: center;
            }
            .category-item {
                width: 100%;
                text-align: center;
            }
        }