.header-title {
            position: absolute;
            left: 15px;
            top: 5px;
        }
        .contact-info {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .contact-info div {
            width: 100%;
            text-align: left;
        }
        .contact-info div:last-child {
            margin-left: -10px;
        }
        .swinging-sign {
            position: absolute;
            top: -30px;
            left: calc(50% - 457.5px);
            transform: translateX(-50%);
            width: 165px;
            height: 110px;
            background: #fff url('path/to/wooden-sign-texture.png') no-repeat center center;
            background-size: cover;
            border: 2px solid #333;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: dropIn 2s ease-out;
            transition: transform 0.3s ease-in-out;
        }
        .swinging-sign img {
            max-width: 100%;
            max-height: 100%;
        }
        .chains {
            position: absolute;
            top: -20px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            z-index: -1;
        }
        .chain-left, .chain-right {
            width: 20px;
            height: 50px;
            background: url('40cdedf8-6793-4dfa-b891-2365fc24715f.webp') repeat-y;
        }
        .pull-left {
            float: left;
        }
        .pull-right {
            float: right;
        }
        .clear {
            clear: both;
        }
        @keyframes dropIn {
            0% {
                top: -200px;
                opacity: 0;
            }
            100% {
                top: -30px;
                opacity: 1;
            }
        }
        .zoom-container {
            position: relative;
        }
        .zoom-img {
            width: 100%;
            height: auto;
            display: block;
        }
        .zoom-lens {
            position: absolute;
            border: 1px solid #d4d4d4;
            width: 100px;
            height: 100px;
            background-repeat: no-repeat;
            pointer-events: none;
        }
        .modal img {
            width: 100%;
        }
        .slideshow-container {
            position: relative;
            max-width: 100%;
            margin: auto;
        }
        .slideshow-container img {
            width: 100%;
        }
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            margin-top: -22px;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
        }
        .next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }
        .prev {
            left: 0;
            border-radius: 3px 0 0 3px;
        }
        .prev:hover, .next:hover {
            background-color: rgba(0,0,0,0.8);
        }
        .img-thumbnail.active {
            border: 2px solid #007bff;
        }
        .img-thumbnail {
            width: 100px;
            height: 100px;
            object-fit: contain;
        }
        .product-description {
            margin-top: 20px;
        }
        .product-features {
            margin-top: 20px;
        }
        .product-features ul {
            list-style: none;
            padding: 0;
        }
        .product-features ul li {
            background: url('checkmark.png') no-repeat left center;
            padding-left: 25px;
            margin-bottom: 10px;
        }
        .social-share {
            margin-top: 20px;
        }
        .social-share button {
            margin-right: 10px;
        }
        .reviews {
            margin-top: 20px;
        }
        .reviews h3 {
            margin-bottom: 15px;
        }
        .reviews .review {
            margin-bottom: 15px;
            background-color: #f0f0f0; /* Arka plan rengi daha gri yapıldı */
            padding: 10px;
            border-radius: 5px;
            animation: fadeInSlideDown 0.8s forwards;
        }
        .reviews .review .reviewer {
            font-weight: bold;
        }
        .product-image {
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .product-image:hover {
            transform: scale(1.1);
        }
        .product-card {
            transition: transform 0.6s ease, box-shadow 0.3s ease, opacity 0.6s ease;
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }
        .product-card:hover {
            transform: translateY(-10px) rotate(3deg);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7); /* Gölge rengini daha da koyulaştırdık */
        }
        .product-code {
            font-size: 0.9rem;
            color: #555;
        }
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes fadeInSlideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .star-rating {
            direction: rtl;
            font-size: 1.5rem;
        }
        .star-rating .fa {
            cursor: pointer;
            color: #ddd;
        }
        .star-rating .fa:hover,
        .star-rating .fa:hover ~ .fa,
        .star-rating .fa.checked {
            color: #f5b301;
        }