 /* General page styling */
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            margin: 0;
            padding: 0;
            /* Background image placeholder */
            background: linear-gradient(rgba(50, 48, 46, 0.85), rgba(50, 48, 46, 0.85)), url('/images/hero-bg2.jpg') no-repeat center center fixed;
            background-size: cover;
            color: #333;
        }

        header {
            background-color: #000000;
            color: white;
            padding: 30px 20px;
            text-align: center;
        }

        /* Centered Logo Placeholder Style */
        .header-logo-wrapper {
            width: 100px;
            height: 100px;
            margin: 0 auto 15px auto;
            border-radius: 50%;
            overflow: hidden;
            background-color: #222;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .header-logo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        h1 {
            margin: 0;
            font-size: 2.5rem;
            letter-spacing: 2px;
        }

        .tagline {
            display: block;
            margin-top: 10px;
            font-size: 1.1rem;
            color: #f9d6d5;
        }

        .container {
            max-width: 900px;
            margin: 40px auto;
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
            text-align: left;
        }

        /* Responsive adjustment for smaller screens so it doesn't break */
        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            }
        }

        .product-card {
            border: 1px solid #eaeaea;
            border-radius: 6px;
            padding: 20px;
            background: #fff;
            display: flex;
            flex-direction: column;
        }

        /* Standardized 4:3 image wrapper enforcing exact proportion display */
        .product-image-wrapper {
            width: 100%;
            aspect-ratio: 4 / 3;
            background-color: #f0f0f0;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .product-card h3 {
            margin-top: 0;
            color: #2c221e;
        }

        /* Floating Facebook Messenger Link Button */
        .messenger-bubble {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background-color: #0084ff;
            color: white;
            padding: 14px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 15px;
            font-weight: bold;
            box-shadow: 0px 4px 12px rgba(0, 132, 255, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 1000;
            cursor: pointer;
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .messenger-bubble:hover {
            background-color: #006dd6;
            transform: scale(1.05);
        }

        /* Color swatches styling */
        .color-swatches-container {
            margin-top: 10px;
        }

        .color-label {
            font-size: 0.8rem;
            color: #666;
            margin-bottom: 5px;
            display: block;
        }

        .color-swatches {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .swatch {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 1px solid #ccc;
            display: inline-block;
            cursor: pointer;
            box-shadow: inset 0 0 2px rgba(0,0,0,0.1);
        }