        /* Animation Classes */
        .section-hidden {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease-out;
        }

        .section-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Main Container */
        .catalog-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        /* Header Section */
        .catalog-header {
            text-align: start;
            margin-bottom: 60px;
        }

        .catalog-title {
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3rem);
            font-weight: 400;
            margin-bottom: 15px;
        }

        /*.catalog-decoration {
            width: 24px;
            height: 24px;
            margin: 20px auto 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-10px);
            }

            60% {
                transform: translateY(-5px);
            }
        }*/

        /* Main Content Layout */
        .catalog-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
        }

        @media (min-width: 992px) {
            .catalog-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Product Description */
        .product-description {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .product-subtitle {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 400;
            line-height: 1.2;
        }

        .product-highlight {
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(1.25rem, 3vw, 1.5rem);
            font-weight: 400;
            color: var(--color-text);
        }

        .product-text {
            color: var(--color-text-light);
            font-size: 1rem;
            line-height: 1.6;
        }

        .product-features {
            margin: 20px 0;
            padding-left: 20px;
        }

        .product-features li {
            margin-bottom: 15px;
            position: relative;
        }

        .product-features li::before {
            content: "•";
            color: var(--color-accent);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

        /* Download Button */
        .download-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 30px;
            background-color: var(--color-accent);
            color: var(--color-white);
            border: none;
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            text-decoration: none;
            width: fit-content;
        }

        .download-btn:hover {
            background-color: #333;
            transform: translateY(-2px);
        }

        .download-icon {
            width: 20px;
            height: 20px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

        /* Product Showcase */
        .product-showcase {
            display: grid;
            grid-template-columns: 1fr; /* Initially 1 column */
            gap: 30px;
        }

        .featured-product {
            width: 100%;
            height: 500px;
            object-fit: cover;

        }

        /* About Section */
        .product-section {
            text-align: start;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid var(--color-border);
        }

        /*.about-title {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.0rem, 1vw, 1rem);
            margin-bottom: 20px;
        }*/

        .textabt {
            color: var(--color-text-light);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        /* Product Gallery */
        .product-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            transition: transform 0.3s ease;
        }
        .product-gallery:hover {
            transform: scale(1.05);
        }

        .product-gallery-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .product-gallery-image:hover {
            transform: scale(1.05);
        }
        
        /* Updated Product Showcase for Desktop */
        @media (min-width: 768px) {
            .product-showcase {
                display: grid;
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto auto auto auto auto; /* 5 rows now */
            }
            
            /* First featured image (right side) */
            .featured-product:first-child {
                grid-column: 1 / 3; /* Right column */
                grid-row: 1;
                width: 100%;
                height: 500px;
                object-fit: cover;
                transition: transform 0.3s ease;
            }
            .featured-product:hover {
                transform: scale(1.05);
            }
            
            /* About Section */
            .product-section {
                grid-column: 1 / 3;
                grid-row: 2;
            }
            
            /* NEW LARGE IMAGE (added before gallery) */
            .featured-product:nth-child(3) { /* 3rd child (new image) */
                grid-column: 1 / 3;
                grid-row: 3;
                transition: transform 0.3s ease;
            }
            
            /* Product Gallery */
            .product-gallery {
                grid-column: 1 / 3;
                grid-row: 4;
            }
            
            /* Last featured image */
            .featured-product:last-child {
                grid-column: 1 / 3;
                grid-row: 5;
                transition: transform 0.3s ease;
            }
        }