```css
@charset "UTF-8";

/* CSS Document */


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

.extrawrapper {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

    box-sizing: border-box;

}


/* =========================================
   MAIN PRODUCT LAYOUT
   ========================================= */

.product-wrapper-flex {

    display: flex;

    flex-direction: row;

    align-items: flex-start;

    justify-content: center;

    gap: 0;

    width: 100%;

    margin: 0 auto;

    text-align: left;

    box-sizing: border-box;

}


/* =========================================
   LEFT IMAGE COLUMN
   ========================================= */

.product-image-area {

    flex: 0 0 60%;

    width: 60%;

    padding-top: 20px;

    box-sizing: border-box;

}


/* =========================================
   MAIN IMAGE WRAPPER
   ========================================= */

.main-image-wrapper {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 642px;

    height: 550px;

    max-width: 100%;

    max-height: 550px;

    line-height: 0;

    overflow: hidden;

}


/* =========================================
   MAIN PRODUCT IMAGE
   ========================================= */

.product-image-area img.main-image {

    width: 100%;

    height: 100%;

    max-width: 100%;

    max-height: 100%;

    display: block;

    border: 1px solid #ddd;

    border-radius: 8px;

    box-sizing: border-box;

    object-fit: contain;

}


/* =========================================
   MAIN IMAGE ARROWS
   ========================================= */

.product-image-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;

    height: 72px;

    padding: 0;

    margin: 0;

    border: none;

    border-radius: 5px;

    background: rgba(0, 0, 0, 0.45);

    color: #ffffff;

    font-size: 48px;

    line-height: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    z-index: 10;

    opacity: 0.85;

    transition:

        background 0.2s ease,

        opacity 0.2s ease;

}


/* =========================================
   LEFT ARROW
   ========================================= */

.product-image-arrow-left {

    left: 10px;

}


/* =========================================
   RIGHT ARROW
   ========================================= */

.product-image-arrow-right {

    right: 10px;

}


/* =========================================
   ARROW HOVER
   ========================================= */

.product-image-arrow:hover {

    background: rgba(0, 0, 0, 0.75);

    opacity: 1;

}


/* =========================================
   ARROW FOCUS
   ========================================= */

.product-image-arrow:focus {

    outline: 2px solid #ffffff;

    outline-offset: 2px;

}


/* =========================================
   THUMBNAIL AREA
   ========================================= */

.extra-zoom-images {

    display: grid;

    grid-template-columns: repeat(4, 150px);

    align-items: start;

    justify-content: start;

    gap: 14px;

    width: 642px;

    max-width: 100%;

    margin: 20px 0 0 0;

    padding: 0;

    box-sizing: border-box;

}


/* =========================================
   THUMBNAILS
   ========================================= */

.extra-zoom-images img {

    width: 150px;

    height: 150px;

    display: block;

    cursor: pointer;

    border: 2px solid transparent;

    border-radius: 4px;

    box-sizing: border-box;

    object-fit: cover;

    transition:

        transform 0.2s ease,

        opacity 0.2s ease,

        border-color 0.2s ease;

}


/* =========================================
   THUMBNAIL HOVER
   ========================================= */

.extra-zoom-images img:hover {

    transform: scale(1.04);

    opacity: 0.85;

}


/* =========================================
   ACTIVE THUMBNAIL
   ========================================= */

.extra-zoom-images img.active-thumbnail {

    border: 2px solid #000000;

    opacity: 1;

}


/* =========================================
   RIGHT COLUMN
   ========================================= */

.product-swatches-area {

    flex: 0 0 40%;

    width: 40%;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    margin-left: 20px;

    box-sizing: border-box;

}


/* =========================================
   PRODUCT HEADING
   ========================================= */

.product-swatches-area h3 {

    margin: 10px 0 10px 0;

    color: blue;

}


.product1h3 {

    text-align: center;

    margin-top: 10px;

    margin-bottom: 20px;

    padding-bottom: 0;

    color: #111;

    font-size: 28px;

}


/* =========================================
   PRICE
   ========================================= */

.price {

    color: #33CC00;

    font-size: 28px;

    padding: 0;

    margin-top: 15px;

    margin-bottom: 0;

    font-weight: bold;

}


/* =========================================
   SIZE
   ========================================= */

.size {

    font-size: 20px;

    padding: 0;

    margin-top: 15px;

    margin-bottom: 0;

    font-weight: normal;

}


/* =========================================
   PRODUCT DESCRIPTION
   ========================================= */

.product-txt {

    font-size: 18px;

}


.product-wrapper-flex li {

    line-height: 1.6;

}


/* =========================================
   HOODIE PRODUCT FEATURE LIST
   ========================================= */

.product-features {

    width: 100%;

    max-width: 100%;

    margin: 0;

    padding-left: 20px;

    padding-right: 0;

    box-sizing: border-box;

    text-align: left;

}


.product-features li {

    width: 100%;

    max-width: 100%;

    box-sizing: border-box;

    line-height: 1.6;

    overflow-wrap: break-word;

    word-wrap: break-word;

}


/* =========================================
   SWATCHES
   ========================================= */

.swatch-carousel {

    display: grid;

    grid-template-columns: repeat(10, 32px);

    grid-template-rows: repeat(9, 32px);

    justify-content: start;

    gap: 10px;

    width: max-content;

    padding: 0;

    margin-top: 5px;
	
	margin-bottom: 15px;

}


/* =========================================
   INDIVIDUAL SWATCH
   ========================================= */

.swatch {

    width: 32px;

    height: 32px;

    border-radius: 50%;

    cursor: pointer;

    border: 2px solid transparent;

    transition: 0.2s;

}


/* =========================================
   ACTIVE SWATCH
   ========================================= */

.swatch.active {

    border: 2px solid #fff;

    outline: 2px solid #000;

    border-radius: 50%;

}


/* =========================================
   COLOUR NAME
   ========================================= */

.color-name {

    padding-bottom: 20px;

    font-size: 20px;

}


/* =========================================
   STORE PRODUCT CARD PRICES
   ========================================= */

.product-card {

    display: flex;

    flex-direction: column;

}


.product-card h4 {

    color: #33CC00;

    margin-top: auto;

    text-align: center;

}


/* =========================================
   PRODUCT VIEWER
   ========================================= */

.product-viewer {

    max-width: 400px;

}


/* =========================================
   SIZE CHART
   ========================================= */

.size-chart-link {

    margin-left: 0;

    font-size: 16px;

    color: #0066cc;

    cursor: pointer;

    text-decoration: underline;

    font-weight: bold;

}


.size-chart-link:hover {

    text-decoration: none;

}


.size-chart-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.7);

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 9999;

}


.size-chart-modal {

    position: relative;

    max-width: 90vw;

    max-height: 90vh;

    background: #fff;

    padding: 15px;

    border-radius: 6px;

}


.size-chart-modal img {

    max-width: 100%;

    max-height: 80vh;

    display: block;

}


.size-chart-close {

    position: absolute;

    top: 6px;

    right: 10px;

    background: none;

    border: none;

    font-size: 28px;

    cursor: pointer;

    line-height: 1;

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {


    /* =====================================
       MOBILE OUTER WRAPPER
       ===================================== */

    .extrawrapper {

        width: 100%;

        max-width: none;

        margin: 0;

        padding: 0 10px;

        box-sizing: border-box;

    }


    /* =====================================
       MOBILE PRODUCT LAYOUT
       ===================================== */

    .product-wrapper-flex {

        flex-direction: column;

        align-items: center;

        width: 100%;

        padding: 0;

        gap: 15px;

    }


    /* =====================================
       MOBILE IMAGE AREA
       ===================================== */

    .product-image-area {

        width: 100%;

        flex: none;

        padding-top: 20px;

    }


    /* =====================================
       MOBILE MAIN IMAGE WRAPPER
       ===================================== */

    .main-image-wrapper {

        width: 100%;

        max-width: 450px;

        height: 450px;

        max-height: 450px;

        margin: 0 auto;

    }


    /* =====================================
       MOBILE MAIN IMAGE
       ===================================== */

    .product-image-area img.main-image {

        width: 100%;

        height: 100%;

        max-width: 100%;

        max-height: 100%;

        margin: 0 auto;

        object-fit: contain;

    }


    /* =====================================
       MOBILE ARROWS
       ===================================== */

    .product-image-arrow {

        width: 42px;

        height: 60px;

        font-size: 38px;

    }


    .product-image-arrow-left {

        left: 6px;

    }


    .product-image-arrow-right {

        right: 6px;

    }


    /* =====================================
       MOBILE PRODUCT INFORMATION
       ===================================== */

    .product-swatches-area {

        width: 100%;

        max-width: 350px;

        flex: none;

        margin-left: 0;

        align-items: flex-start;

        box-sizing: border-box;

    }


    /* =====================================
       MOBILE PRODUCT FEATURE LIST
       ===================================== */

    .product-features {

        width: 100%;

        max-width: 100%;

        margin-left: 0;

        margin-right: 0;

        padding-left: 20px;

        padding-right: 0;

        box-sizing: border-box;

        text-align: left;

    }


    .product-features li {

        width: 100%;

        max-width: 100%;

        box-sizing: border-box;

        overflow-wrap: break-word;

        word-wrap: break-word;

        white-space: normal;

        line-height: 1.6;

    }


    /* =====================================
       MOBILE SWATCHES
       ===================================== */

    .swatch-carousel {

        display: flex;

        flex-wrap: wrap;

        justify-content: flex-start;

        gap: 8px;

        width: 100%;

        max-width: 100%;

        padding: 0;

        margin: 0;

        box-sizing: border-box;
		
		margin-bottom: 10px;

    }


    .swatch {

        width: 23px;

        height: 23px;

        flex: 0 0 23px;

    }


    /* =====================================
       MOBILE THUMBNAILS
       ===================================== */

    .extra-zoom-images {

        width: 100%;

        max-width: 450px;

        display: grid;

        grid-template-columns: repeat(4, 1fr);

        gap: 10px;

        margin: 20px auto 0 auto;

        padding: 0;

        box-sizing: border-box;

    }


    .extra-zoom-images img {

        width: 100%;

        aspect-ratio: 1 / 1;

        height: auto;

        display: block;

        object-fit: cover;

        border: 2px solid transparent;

        border-radius: 4px;

        box-sizing: border-box;

    }


    /* =====================================
       MOBILE PRODUCT INFO
       ===================================== */

    .product-info-box {

        max-width: 100%;

    }


    /* =====================================
       MOBILE SIZE CHART
       ===================================== */

    .size-chart-modal {

        max-width: 90vw;

        max-height: 90vh;

    }


    .size-chart-modal img {

        max-width: 100%;

        max-height: 80vh;

    }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {


    .main-image-wrapper {

        height: 100vw;

        max-height: 450px;

    }


    .extra-zoom-images {

        grid-template-columns: repeat(4, 1fr);

        gap: 8px;

    }


    .extra-zoom-images img {

        width: 100%;

        aspect-ratio: 1 / 1;

    }


    .product-image-arrow {

        width: 38px;

        height: 54px;

        font-size: 34px;

    }


    .product-image-arrow-left {

        left: 5px;

    }


    .product-image-arrow-right {

        right: 5px;

    }


    .product-features {

        width: 100%;

        max-width: 100%;

        padding-left: 20px;

        padding-right: 0;

        box-sizing: border-box;

    }


    .product-features li {

        max-width: 100%;

        overflow-wrap: break-word;

        word-wrap: break-word;

    }

}
```
