 .product {
            min-height: 65vh;
           padding-top: 200px;
        }

        .product__layout {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* Image Section */
        .product__gallery {
            position: relative;
        }

        .product__gallery-container {
            background-color: #f2f2f2;
            border-radius: 1rem;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product__gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: #ffffff;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            z-index: 10;
            color: #666666;
        }

        .product__gallery-nav:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transform: translateY(-50%) scale(1.1);
        }

        .product__gallery-nav:active {
            transform: translateY(-50%) scale(0.95);
        }

        .product__gallery-nav--prev {
            left: 1rem;
        }

        .product__gallery-nav--next {
            right: 1rem;
        }

        .product__gallery-actions {
            position: absolute;
            top: 1rem;
            right: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            z-index: 10;
        }

        .product__gallery-action {
            width: 40px;
            height: 40px;
            background: #ffffff;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            color: #666666;
        }

        .product__gallery-action:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transform: scale(1.05);
        }

        .product__gallery-action--active {
            color: #ff4757;
        }

        .product__gallery-image {
            width: 100%;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product__gallery-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: all 0.4s ease;
            border-radius: 8px;
        }

        .product__gallery-image--fadeout {
            opacity: 0;
            transform: scale(0.95);
        }

        .product__gallery-image--fadein {
            opacity: 1;
            transform: scale(1);
        }

        .product__gallery-indicators {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
        }

        .product__gallery-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product__gallery-indicator--active {
            background: #ffffff;
            transform: scale(1.3);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .product__gallery-indicator:hover {
            background: rgba(255, 255, 255, 0.8);
            transform: scale(1.1);
        }

        /* Details Section */
        .product__details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .product__brand {
            color: #8f8f8f;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .product__title {
            font-size: 3rem;
            font-weight: bold;
            color: #141414;
            margin: 0;
        }

        .product__price-rating {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .product__price {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .product__price-original {
            color: #8f8f8f;
            text-decoration: line-through;
            font-size: 1.125rem;
        }

        .product__price-current {
            color: #141414;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .product__rating {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .product__sold {
            color: #8f8f8f;
            font-size: 0.875rem;
        }

        .product__stars {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .product__star {
            fill: #ffa439;
            stroke: #ffa439;
        }

        .product__rating-value {
            font-weight: 500;
            color: #141414;
        }

        .product__description h3 {
            font-size: 1.125rem;
            font-weight: 600;
            color: #141414;
            margin-bottom: 0.75rem;
        }

        .product__description p {
            color: #666666;
            line-height: 1.6;
        }

        .product__size {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .product__size-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .product__size-label-text {
            font-weight: 500;
            color: #141414;
        }

        .product__size-label-unit {
            color: #666666;
        }

        .product__size-options {
            display: flex;
            gap: 0.5rem;
        }

        .product__size-btn {
            padding: 0.5rem 1rem;
            border: 2px solid #e0e0e0;
            background: #ffffff;
            color: #666666;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .product__size-btn:hover {
            border-color: #666666;
        }

        .product__size-btn--active {
            border-color: #141414;
            background: #141414;
            color: #ffffff;
        }

        .product__fragrances h3 {
            color: #8f8f8f;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .product__fragrance-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }

        .product__fragrance-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
        }

        .product__fragrance-option input[type="radio"] {
            display: none;
        }

        .product__fragrance-radio {
            width: 16px;
            height: 16px;
            border: 2px solid #e0e0e0;
            border-radius: 50%;
            position: relative;
            transition: all 0.3s ease;
        }

        .product__fragrance-option input[type="radio"]:checked + .product__fragrance-radio {
            border-color: #3a4980;
        }

        .product__fragrance-option input[type="radio"]:checked + .product__fragrance-radio::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: #3a4980;
            border-radius: 50%;
        }

        .product__fragrance-name {
            color: #666666;
            font-size: 0.875rem;
        }

        .product__cta {
            width: 100%;
            background: #141414;
            color: #ffffff;
            border: none;
            padding: 1rem;
            font-size: 1.125rem;
            font-weight: 500;
            border-radius: 0.75rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product__cta:hover {
            background: #292929;
            transform: translateY(-1px);
        }

        .product__cta:active {
            transform: translateY(0);
        }

        /* Image counter */
        .product__gallery-counter {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 0.5rem;
            font-size: 0.75rem;
            z-index: 10;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .product__layout {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .product__title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .product {
                padding-top: 100px;
                padding: 50px;
            }

            .product__title {
                font-size: 2rem;
            }

            .product__price-rating {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .product__fragrance-options {
                grid-template-columns: 1fr;
            }

            .product__gallery-nav {
                width: 35px;
                height: 35px;
            }

            .product__gallery-nav--prev {
                left: 0.5rem;
            }

            .product__gallery-nav--next {
                right: 0.5rem;
            }
        }





        /* realeted product  */



         .related-products {
            max-width: 1200px;
            margin: 0 auto;
            padding: 32px 16px;
        }

        /* Header */
        .related-products__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .related-products__title {
            font-size: 24px;
            font-weight: 600;
            color: #141414;
        }

        .related-products__view-all {
            color: #7a7a7a;
            text-decoration: underline;
            font-size: 14px;
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .related-products__view-all:hover {
            color: #333333;
        }

        /* Product Grid */
        .related-products__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
        }

        @media (min-width: 640px) {
            .related-products__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 768px) {
            .related-products__grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
        .related-products__image img {
            width: 3000px;
            height: 300px;
        }
        }

        @media (min-width: 1024px) {
            .related-products__grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        /* Product Card */
        .related-products__card {
            background-color: #f2f2f2;
            border-radius: 8px;
            padding: 16px;
            transition: box-shadow 0.2s ease;
        }

        .related-products__card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .related-products__image {
            aspect-ratio: 1;
            background-color: #ffffff;
            border-radius: 8px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .related-products__image img {
            width: 160px;
            height: 160px;
            object-fit: contain;
        }

        .related-products__info {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .related-products__name {
            color: #141414;
            font-weight: 500;
            font-size: 14px;
            line-height: 1.3;
        }

        .related-products__price {
            color: #141414;
            font-weight: 600;
            font-size: 16px;
        }

        .related-products__desc {
            color: #7a7a7a;
            font-size: 12px;
            line-height: 1.4;
        }

        .related-products__sales {
            color: #7a7a7a;
            font-size: 12px;
        }