        /* Main Layout */
        /* 1. Ensure the container allows for sticky children */
        .indiv-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            padding: 40px 5%;
            background: #fff;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
            /* CRITICAL: Prevents the left column from stretching to full height */
        }

        /* 2. Fix the Sticky Column */
        .carousel-container {
            position: -webkit-sticky;
            /* Support for Safari */
            position: sticky;
            top: 10px;
            /* Distance from the top of the viewport when scrolling */
            height: fit-content;
            /* Ensures the container only takes up as much space as the content */
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Keeps everything centered within the sticky column */
        }

        .main-img-box {
            width: 100%;
            max-width: 450px;
            /* This creates a square aspect ratio placeholder so the height doesn't 'jump' */
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background-color: #fff;
            /* Placeholder color while loading */
            border-radius: 8px;
            border: 1px solid #eee;
            margin: 0 auto;
        }

        .main-img-box img {
            width: 100%;
            max-width: 450px;
            height: auto;
            object-fit: contain;
            /* Ensures the image fits without stretching or shrinking */
            border-radius: 8px;
            border: 1px solid #eee;
            display: block;
            margin: 0 auto;
        }

        /* Responsive Thumbnail Bar */
        .thumb-bar {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            justify-content: center;
            overflow-x: auto;
            /* Allows swiping on mobile */
            padding-bottom: 10px;
        }

        .thumb-bar img {
            width: 100px;
            height: auto;
            object-fit: cover;
            cursor: pointer;
            border: 2px solid transparent;
            flex-shrink: 0;
            border-radius: 4px;
            transition: 0.2s;
        }

        .thumb-bar img.active {
            border-color: #ffc412;
        }

        /* Right Column: Text & Specs */
        .p-title {
            color: #ffc412;
            font-size: 2rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .p-long-desc {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #333;
            margin-bottom: 25px;
        }

        /* Specifications: Forced to 1 Column */
        .specs {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            /* Forces vertical stack on desktop & mobile */
            gap: 10px;
        }

        .specs li {
            background: #f9f9f9;
            padding: 12px 15px;
            border-radius: 6px;
            font-size: 0.95rem;
            border-left: 4px solid #ffc412;
            width: 100%;
            box-sizing: border-box;
        }

        /* Branding Colors */
        .btn-wa {
            background-color: #25D366;
            /* Official WhatsApp Green */
            color: #fff;
            border: 1px solid #20bd5c;
        }

        .btn-wa:hover {
            background-color: #1ebe57;
            /* Slightly darker on hover */
            color: #fff;
        }

        .btn-msgr {
            background-color: #0084FF;
            /* Official Messenger Blue */
            color: #fff;
            border: 1px solid #0076e4;
        }

        .btn-msgr:hover {
            background-color: #0076e4;
            /* Slightly darker on hover */
            color: #fff;
        }

        /* Center the entire CTA area under the thumbnails */
        .cta-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Centers the "Inquire via" text and buttons */
            margin-top: 5px;
            width: 100%;
        }

        /* Inquiry Buttons Container */
        .inquiry-options {
            display: flex;
            gap: 15px;
            /* Spacing between WA and Messenger */
            justify-content: center;
            width: 100%;
            max-width: 450px;
            /* Matches the max-width of your main image */
            padding: 10px 0;
        }

        /* Button Consistency Fixes */
        .btn-small {
            flex: 1;
            /* Makes WA and Messenger buttons equal width */
            max-width: 210px;
            padding: 12px 20px;
            font-size: 0.9rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .btn-small:active {
            transform: scale(0.95);
            /* Fixed from 0.5 to keep it visible */
        }

        /* Wishlist Button Alignment */
        .wishlist-cta {
            margin-top: 10px;
            width: 100%;
            max-width: 435px;
            /* Matches the combined width of the two buttons above */
            padding: 15px;
            background-color: #1a1a1a;
            color: #ffc412;
            border: 2px solid #ffc412;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }

        /* --- RESPONSIVE BREAKPOINTS --- */

        /* Tablet & Small Laptops (under 992px) */
        @media (max-width: 992px) {
            .indiv-container {
                grid-template-columns: 1fr;
                /* Stack columns vertically */
                padding: 20px 5%;
            }

            .carousel-container {
                position: relative;
                /* Release sticky position */
                top: 0;
                margin-bottom: 30px;
            }

            .p-title {
                text-align: center;
                font-size: 1.8rem;
            }
        }

        /* Mobile Phones (under 600px) */
        @media (max-width: 600px) {
            .inquiry-options {
                flex-direction: column;
                /* Stack WhatsApp/Messenger buttons */
                width: 100%;
                align-items: center;
                gap: 10px;
            }

            .btn-small {
                width: 100%;
                text-align: center;
            }

            .p-long-desc {
                font-size: 0.95rem;
                text-align: justify;
            }

            .btn-small,
            .wishlist-cta {
                max-width: 100%;
                /* Full width on mobile for easier tapping */
                width: 100%;
            }
        }

        /* Gap fix for overlapping animations */
        .inquiry-options {
            display: flex;
            gap: 20px;
            /* Adjust this if they still touch */
            justify-content: center;
            padding: 10px 0;
        }

        /* Wishlist Button Styling */
        .wishlist-cta {
            margin-top: 20px;
            width: 100%;
            max-width: 320px;
            padding: 15px;
            background-color: #1a1a1a;
            color: #ffc412;
            border: 2px solid #ffc412;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            background-color: #ffc412 !important;
            color: #1a1a1a !important;
        }

        .wishlist-cta:hover {
            background-color: #ffc412;
            color: #1a1a1a;
        }

        /* Modal Styling */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            max-width: 400px;
            width: 90%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .modal-actions {
            margin-top: 25px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .modal-btn {
            padding: 12px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            border: none;
            cursor: pointer;
        }

        .modal-btn.primary {
            background: #ffc412;
            color: #1a1a1a;
        }

        .modal-btn.secondary {
            background: #eee;
            color: #666;
        }

        /* Ensure Modal Inputs are clear */
        #email-modal input {
            display: block;
            width: 100%;
            margin-top: 10px;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }

        /* Email Button Styling */
        .btn-email {
            background-color: #2c3e50 !important;
            /* Professional Navy */
            color: #ffffff !important;
            border: 2px solid #2c3e50 !important;
        }

        .btn-email:hover {
            background-color: #1a252f !important;
            border-color: #1a252f !important;
        }

        /* Modal Input Styling */
        #email-modal input:focus {
            outline: none;
            border-color: #ffc412;
            box-shadow: 0 0 5px rgba(255, 196, 18, 0.3);
        }

        /* Ensure modal is responsive */
        .modal-content {
            max-width: 400px;
            width: 90%;
            margin: 10px;
        }

        /* --- High-Visibility Back Button --- */
        .custom-back-btn {
            display: flex;
            align-items: center;
            text-decoration: none;
            background-color: #ffffff;
            border: 2px solid #052b48;
            /* Dark blue contrast */
            padding: 6px 16px;
            border-radius: 50px;
            margin-right: 15px;
            color: #052b48;
            font-weight: 700;
            font-size: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            white-space: nowrap;
        }

        .custom-back-btn:hover {
            background-color: #d4a017;
            /* Brand Gold */
            border-color: #d4a017;
            color: #ffffff;
            transform: translateX(-4px);
            /* Visual nudge backward */
            box-shadow: 0 4px 10px rgba(212, 160, 23, 0.3);
        }

        .back-arrow {
            font-size: 18px;
            margin-right: 8px;
            font-weight: bold;
        }

        /* Mobile Responsiveness */
        @media (max-width: 767px) {
            .custom-back-btn {
                padding: 6px 12px;
                margin-right: 10px;
            }

            .back-text {
                display: none;
                /* Icon only on mobile to keep header clean */
            }

            .back-arrow {
                margin-right: 0;
                font-size: 20px;
            }
        }