* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f5f3f0;
            overflow-x: hidden;
        }

        .hero-section {
            max-width: 1440px;
            margin: 0 auto;
            padding: 60px 80px;
        }

        .hero-content-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
            margin-bottom: 40px;
        }

        .hero-headline {
            flex: 1;
            max-width: 680px;
        }

        .headline-text {
            font-size: 34px;
            font-weight: 500;
            line-height: 1.2;
            color: #000;
            letter-spacing: -0.02em;
        }

        .headline-emphasis {
            font-family: 'Instrument Serif', serif;
            font-style: italic;
            font-weight: 400;
        }

        .product-card-mini {
            background-color: #fff;
            border-radius: 16px;
            padding: 20px;
            display: flex;
            gap: 16px;
            min-width: 320px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .product-title-mini {
            font-size: 16px;
            font-weight: 500;
            color: #000;
            margin-bottom: 4px;
            line-height: 1.4;
            transition: opacity 0.4s ease-in-out;
        }

        .product-title-mini.fade-transition {
            opacity: 0;
        }

        .product-price-mini {
            font-size: 18px;
            font-weight: 600;
            color: #000;
            margin-top: 8px;
            transition: opacity 0.4s ease-in-out;
        }

        .product-price-mini.fade-transition {
            opacity: 0;
        }

        .product-thumbnail {
            width: 100px;
            height: 100px;
            background-color: #f8f6f3;
            border-radius: 12px;
            flex-shrink: 0;
            overflow: hidden;
            transition: opacity 0.4s ease-in-out;
        }

        .product-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-info-mini {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex: 1;
        }

        .add-to-cart-button {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background-color: transparent;
            border: none;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: #000;
            cursor: pointer;
            padding: 8px 0;
            transition: gap 0.3s ease;
        }

        .add-to-cart-button:hover {
            gap: 10px;
        }

        .arrow-icon-small {
            width: 16px;
            height: 16px;
            stroke: #000;
            stroke-width: 2;
            fill: none;
        }

        .hero-image-container {
            width: 100%;
            height: 600px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: opacity 0.6s ease-in-out;
        }

        .hero-image.fade-out {
            opacity: 0;
        }

        .pagination-dots {
            position: absolute;
            bottom: 24px;
            right: 24px;
            display: flex;
            gap: 8px;
        }

        .pagination-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .pagination-dot.active {
            background-color: #4169E1;
            width: 24px;
            border-radius: 4px;
        }

        @media (max-width: 1024px) {
            .hero-section {
                padding: 40px 40px;
            }

            .hero-content-wrapper {
                flex-direction: column;
            }

            .headline-text {
                font-size: 42px;
            }

            .product-card-mini {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 30px 20px;
            }

            .headline-text {
                font-size: 36px;
            }

            .hero-image-container {
                height: 400px;
            }

            .product-card-mini {
                flex-direction: column;
                min-width: auto;
            }

            .product-thumbnail {
                width: 100%;
                height: 200px;
            }
        }