.product-container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        /* Responsive Layout for Desktop */
        @media (min-width: 768px) {
            .product-container {
                grid-template-columns: 1fr 1fr;
            }
            .image-column {
                position: sticky;
                top: 2rem;
                height: max-content;
            }
        }

        /* Image Styling */
        .product-image-wrapper {
            background-color: #f4f4f4;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .product-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* Info Column Styling */
        .info-column {
            display: flex;
            flex-direction: column;
        }

        .breadcrumbs {
            font-size: 0.85rem;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .breadcrumbs a {
            color: #ffffff;
            text-decoration: none;
        }

        .breadcrumbs a:hover {
            text-decoration: underline;
        }

        .product-title {
            font-size: 2.25rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .product-price {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

        .divider {
            border: 0;
            height: 1px;
            background: #e5e5e5;
            margin: 1.5rem 0;
        }

        .section-title {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
            color: #ffffff;
        }

        .product-description {
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

        .product-description p {
            margin-bottom: 1rem;
        }

        /* Tech Specs Table */
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .specs-table td {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .specs-table td:first-child {
            font-weight: 600;
            color: #555;
            width: 35%;
        }

        .specs-table td:second-child {
            color: #222;
        }

        /* Form/CTA Elements */
        .purchase-options {
            background: #f8f8f8;
            padding: 1.5rem;
            border-radius: 6px;
            border: 1px solid #eee;
        }

        .cta-button {
            display: inline-block;
            width: 100%;
            text-align: center;
            background-color: #222;
            color: #fff;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .cta-button:hover {
            background-color: #444;
        }

/* Add this to your existing <style> section */
.gallery-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    background-color: #f4f4f4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: block;
}

.thumbnail-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Creates 4 equal columns */
    gap: 0.75rem;
}

.thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease, opacity 0.2s ease;
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
}

.thumbnail.active {
    border-color: #222; /* Highlights the currently selected photo */
    opacity: 1;
}