
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }


        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .gallery-header gh1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        /* The Grid Layout */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        /* Gallery Item Link Cards */
        .gallery-item {
            text-decoration: none; /* Removes underline from text */
            color: inherit;        /* Keeps the text color from parent body */
            background: #0a0a0a;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: block;        /* Ensures the entire anchor tag behaves as a block element */
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;         /* Increased height slightly for product display */
            object-fit: cover; 
            display: block;
        }

        .gallery-caption {
            padding: 1rem;
        }

        .gallery-caption h3 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .gallery-caption p {
            font-size: 0.9rem;
            color: #666;
        }