﻿<style>

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            background: #1f1f1f;
            color: #adadad;
            font-family: Century Gothic, Arial, Helvetica, sans-serif;
        }
        
        a:link {
        color: #E3A772;
        text-decoration: none;
        }
        a:visited {
        color: #E3A772;
        text-decoration: none;
        } 
        a:hover {
        color: #FFD495;
         text-decoration: underline;
        }
       

        .container {
            width: 92%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 0 60px;
        }

        h1 {
            text-align: center;
            margin: 10px 0 15px;
            font-size: 2.2rem;
        }
              
        .intro {
            max-width: 900px;
            margin: 0 auto 40px;
            text-align: center;
            line-height: 1.6;
            font-size: 1.05rem;
        }

        /* T-Shirt Grid */

        .shirt-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .shirt {
            text-align: center;
        }

        .shirt a {
            color: inherit;
            text-decoration: none;
        }

        .shirt img {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 4px;
        }

        .shirt-title {
            margin-top: 12px;
            font-size: 1rem;
            font-weight: bold;
            line-height: 1.4;
        }

        /* Tablet */

        @media (max-width: 1000px) {
            .shirt-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 22px;
            }
        }

        /* Mobile */

        @media (max-width: 700px) {
            .container {
                width: 94%;
                padding-top: 20px;
            }

            h1 {
                font-size: 1.8rem;
            }

            .intro {
                font-size: 1rem;
                margin-bottom: 30px;
            }

            .shirt-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }

            .shirt-title {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 400px) {
            .shirt-grid {
                grid-template-columns: 1fr;
            }
        }



/* ==========================================
   INDIVIDUAL PRODUCT PAGE
   ========================================== */

.product {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-top: 30px;
}

.product-image {
    flex: 1;
    min-width: 0;
}

.product-image img {
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;
}

.product-info {
    flex: 1;
    min-width: 0;
}

.product-info h2 {
    margin-top: 0;
}

.product-description {
    max-width: 1000px;
    margin: 50px auto 30px;
    line-height: 1.6;
}


/* SHOP BUTTON */

.shop-button a {
    display: inline-block;
    padding: 14px 24px;
    text-decoration: none;
    font-weight: bold;
}


/* MOBILE */

@media (max-width: 800px) {

    .product {
        display: block;
    }

    .product-image {
        width: 100%;
        margin-bottom: 30px;
    }

    .product-image img {
        width: 100%;
        height: auto;
    }

    </style>
}