
        * {
            box-sizing: border-box;
        }

        /* width */
        ::-webkit-scrollbar {
            width: 10px;
            padding: 1px;
        }

        /* Track */
        ::-webkit-scrollbar-track {
            background: transparent;
            padding: 1px;
        }

        /* Handle */
        ::-webkit-scrollbar-thumb {
            background: #ff286e;
            border-radius: 6px;
            border: 3px solid white;
        }

        /* Handle on hover */
        ::-webkit-scrollbar-thumb:hover {
            background: #ff286e;
        }

        html, body {
            font-family: Poppins, sans-serif;
            margin: 0;
            font-size: 16px;
            color: #000;
        }

        .is-pink {
            color: #ff286e;
            border-color: #ff286e;
            background-color: transparent;
        }

        /* TYPOGRAPHY */
        h1, h2, h3 {
            font-weight: 800;
            line-height: 1.3;
            margin: 0 0 1rem;
            letter-spacing: .4px;
        }

        h2 {
            font-size: 2.25rem;
        }

        h2 a {
            text-decoration: none;
            color: #ff286e;
        }

        [class^=p-] {
            font-weight: 400;
            line-height: 1.75;
            margin: 1rem 0
        }

        .p-1 { font-size: 1rem }
        .p-2 { font-size: .875rem }
        .p-3 { font-size: .75rem }
        .p-4 { font-size: .6875rem }

        /* BUTTON */

        .btn {
            cursor: pointer;
            display: inline-block;
            width: auto;
            min-width: 170px;
            text-align: center;
            text-decoration: none;
            border-radius: 1000px;
            line-height: 50px;
            height: 50px;
            padding: 0 1.25rem;
            letter-spacing: .176em;
            background: transparent;
            transition: background .3s ease-in-out;
            border: 1px solid #ff286e;
            text-transform: uppercase;
            font-size: .75rem;
        }

        .btn.btn-sm {
            line-height: 38px;
            height: 38px;
            min-width: 0;
            padding: 0 1rem;
        }

        .btn:hover {
            background-color: #ff286e;
            color: #fff;
        }

        @media screen and (max-width: 660px) {
            .btn {
                min-width:0
            }
        }

        /* ENTRY BLOCK */

        .entry {
            margin-bottom: 2.5em;
        }

        .entry .right {
            text-align: right;
        }

        @media all and (min-width: 768px) {
            .entry {
                display: flex;
                justify-content: space-between;
            }

            .entry .right {
                width: fit-content;
                margin-left: 1em;
                margin-right: 1em;
                min-width: 30%;
            }
        }

        /* CAROUSEL */

        .carousel-wrapper {
            position: relative;
         	display: flex; 
            justify-content: space-between;
            max-width: 100vw;
            overflow-x: hidden;
            align-content: stretch;
        }

        .carousel-prev,
        .carousel-next {
        	 display: inline-flex; 
        	justify-content: center;
            align-content: center;
            background-color: #ff286e;
            color: white;
            font-size: 1.5em;
            line-height: 1.3em;
            border-radius: 50%;
            position: absolute;
            top: calc(30% - 18px);
            width: 36px;
            height: 36px;
            cursor: pointer;
        }

        .hidden { display: none !important }

        .carousel-prev { left: 0 }
        .carousel-next { right: 1em }

        .carousel-wrapper .slide {
            min-width: 50vw;
            padding-right: 1em;
            position: relative;
            transition: transform 0.5s ease-in-out;
        }

        @media all and (min-width: 480px) { .carousel-wrapper .slide { min-width: 33.33333vw } }
        @media all and (min-width: 768px) { .carousel-wrapper .slide { min-width: 25vw } }

        .product {
            display: flex;
            flex-direction: column;
            text-align: center;
            width: 100%;
            height: 100%;
            justify-content: space-between;
        }

        .product .wrapper-img {
            position: relative;
            width: 100%;
        }

        .product .wrapper-img img {
            width: 100%;
            height: auto;
        }