    /* Clean CSS with simple container system */
    :root {
        /* SECTION-SPECIFIC VARIABLES */
        --product-detail-primary: #fbc430;
        --product-detail-heading-color: #383455;
        --product-detail-text-color: #000000;
        --product-detail-white: #ffffff;
        --product-detail-overlay: rgba(0, 0, 0, 0.6);

        /* Fonts */
        --product-detail-body-font: "Inter", sans-serif;
        --product-detail-heading-font: "Montserrat", sans-serif;

        /* Container variables */
        --container-max-width: 1200px;
        --container-padding-left: 15px;
        --container-padding-right: 15px;
    }

    /* Reset & Base Styles */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: var(--product-detail-body-font);
        color: var(--product-detail-text-color);
        background-color: var(--product-detail-white);
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    p {
        margin: 0;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Container System */
    .container {
        max-width: 1200px;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    /* --- Hero Section --- */
    .product-hero {
        position: relative;
        width: 100%;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url("../images/product-hero.png");
        /* Adjusted path */
        background-size: cover;
        background-position: center;
        text-align: center;
    }

    /* Overlay */
    .product-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--product-detail-overlay);
        z-index: 1;
    }

    .product-hero .container {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .product-hero h1 {
        font-family: var(--product-detail-heading-font);
        font-weight: 600;
        font-size: 50px;
        line-height: 1.22;
        color: var(--product-detail-primary);
        margin-bottom: 10px;
    }

    .product-hero p {
        font-family: var(--product-detail-body-font);
        font-weight: 400;
        font-size: 16px;
        line-height: 1.6;
        color: var(--product-detail-white);
        max-width: 970px;
    }

    /* --- Product Detail Section --- */
    .product-detail-section {
        padding: 80px 0;
        background-color: var(--product-detail-white);
    }

    .product-detail-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    /* Left Column: Product Image */
    .product-image-wrapper {
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        /* Aspect ratio based on 570x533 */
        aspect-ratio: 570 / 533;
        background-color: #f5f5f5;
    }

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

    /* Right Column: Product Info */
    .product-info-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .product-title {
        font-family: var(--product-detail-heading-font);
        font-weight: 600;
        font-size: 32px;
        line-height: 1.22;
        color: var(--product-detail-heading-color);
        margin-bottom: 20px;
        text-align: left;
    }

    /* Specifications Table Layout */
    .specs-container {
        display: flex;
        gap: 47px;
        /* Spacing between label and value columns */
    }

    .specs-labels,
    .specs-values {
        display: flex;
        flex-direction: column;
        gap: 12px;
        /* Vertical spacing between rows */
    }

    .specs-labels p,
    .specs-values p {
        font-family: var(--product-detail-body-font);
        font-weight: 400;
        font-size: 22px;
        line-height: 1.2;
        color: var(--product-detail-text-color);
        min-height: 27px;
        /* Ensure alignment */
        display: flex;
        align-items: center;
    }

    /* Special handling for multi-line feature text */
    .specs-values p.feature-text {
        min-height: 54px;
        /* Height for 2 lines */
        align-items: flex-start;
    }

    .specs-labels p.feature-label {
        min-height: 54px;
        align-items: flex-start;
    }

    /* --- Responsive Design --- */
    @media (max-width: 991px) {
        .product-hero {
            min-height: 300px;
            padding: 50px 0;
        }

        .product-hero h1 {
            font-size: 36px;
        }

        .product-hero p {
            font-size: 15px;
        }

        .product-detail-section {
            padding: 60px 0;
        }

        .product-detail-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .product-image-wrapper {
            max-width: 500px;
            margin: 0 auto;
        }

        .product-title {
            font-size: 28px;
            text-align: center;
        }

        .specs-labels p,
        .specs-values p {
            font-size: 18px;
        }
    }

    @media (max-width: 767px) {
        .product-hero {
            min-height: auto;
            padding: 45px 0;
        }

        .product-hero h1 {
            font-size: 28px;
        }

        .product-hero p {
            font-size: 14px;
        }

        .product-detail-section {
            padding: 40px 0;
        }

        .product-detail-grid {
            gap: 30px;
        }

        .product-image-wrapper {
            max-width: 100%;
        }

        .product-title {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .specs-container {
            gap: 20px;
        }

        .specs-labels p,
        .specs-values p {
            font-size: 15px;
            min-height: 22px;
        }

        .specs-values p.feature-text,
        .specs-labels p.feature-label {
            min-height: 44px;
        }

        .specs-labels,
        .specs-values {
            gap: 10px;
        }
    }

    /* --- CTA SECTION --- */
    .cta-section {
        background-color: var(--product-detail-primary);
        padding: 50px 0;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        margin-bottom: 80px;
    }

    .cta-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
    }

    .cta-section h2 {
        font-family: var(--product-detail-heading-font);
        font-weight: 600;
        font-size: 30px;
        color: #101010;
        margin-bottom: 18px;
    }

    .cta-section p {
        font-family: var(--product-detail-body-font);
        font-size: 16px;
        color: #323232;
        margin-bottom: 34px;
        max-width: 800px;
    }

    .cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--product-detail-white);
        color: #101010;
        font-family: "Inter", sans-serif;
        font-weight: 500;
        font-size: 18px;
        padding: 12px 26px;
        border-radius: 10px;
        text-decoration: none;
        transition: transform 0.2s ease;
    }

    .cta-btn:hover {
        transform: translateY(-2px);
    }

    /* Decorative blurred circles for CTA */
    .cta-section::before,
    .cta-section::after {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        background-color: #ef8407;
        border-radius: 50%;
        filter: blur(80px);
        z-index: 1;
    }

    .cta-section::before {
        right: -50px;
        top: -50px;
        left: auto;
        transform: none;
    }

    .cta-section::after {
        left: -50px;
        bottom: -50px;
        top: auto;
        right: auto;
        transform: none;
    }