@charset "utf-8";
        .product-slider-section {
            position: relative;
            width: 100%;
            height: 650px;
            overflow: hidden;
            background: #f0f0f0;
        }

        .product-slider-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
        }

        .product-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-slide.left {
            left: 0;
            clip-path: inset(0 50% 0 0);
        }

        .product-slide.right {
            left: 0;
            clip-path: inset(0 0 0 50%);
        }

        .product-slide img {
            width: auto;
            height: calc(100% - 90px);
            max-width: 78%;
            object-fit: contain;
            object-position: center center;
        }

        .product-info {
            position: absolute;
            z-index: 10;
        }

        .product-slide.left .product-info {
            bottom: 40px;
            left: 60px;
            text-align: left;
        }

        .product-slide.right .product-info {
            bottom: 40px;
            right: 60px;
            text-align: right;
        }

        .product-info h3 {
            font-size: 21px;
            font-weight: 400;
            letter-spacing: 2px;
            margin-bottom: 10px;
            color: #2D2D2D;
            text-transform: uppercase;
			font-family: 'Poppins';
        }

        .product-info a {
            color: #2D2D2D;
            text-decoration: underline;
            font-size: 18px;
            letter-spacing: 0.5px;
            transition: color 0.3s;
			font-family: 'Poppins';
        }

        .product-info a:hover {
            color: #000;
        }

        .slider-control {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: grab;
            z-index: 20;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            transition: box-shadow 0.2s;
            user-select: none;
        }

        .slider-control:active {
            cursor: grabbing;
            box-shadow: 0 6px 25px rgba(0,0,0,0.25);
        }

        .slider-control svg {
            position: absolute;
        }

        .slider-control .arrow-left {
            left: 12px;
        }

        .slider-control .arrow-right {
            right: 12px;
        }

        .slider-divider {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #fff;
            left: 50%;
            transform: translateX(-50%);
            z-index: 15;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            background: #f5f5f5;
            border-bottom: 1px solid #e5e5e5;
        }

        .feature-item {
            padding: 50px 40px;
            text-align: center;
            border-right: 1px solid #e5e5e5;
        }

        .feature-item:last-child {
            border-right: none;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 20px;
            stroke: #333;
            fill: none;
            stroke-width: 1.5;
        }

        .feature-item h3 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .feature-item p {
            font-size: 12px;
            color: #666;
            line-height: 1.6;
            letter-spacing: 0.3px;
        }

