* {
    box-sizing: border-box;
    font-family: "proxima-nova", sans-serif;
    margin: 0;
    padding: 0;
}

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {
    display: inline-block;
}

* html .clearfix { 
    height: 1%;
}

.clearfix {
    display: block;
}

html {
    overflow-y: scroll;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    display: block !important;
    width: 100%;
}

/* WAYPOINTS */
.fade-in-from-left {
    opacity: 0;
    animation-timing-function: ease-out;
    -webkit-transform: translateX(-15px);
    -moz-transform: translateX(-15px);
    -o-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fade-in-from-left.animated {
    animation-name: fade-from-left;
    animation-duration: 0.5s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

@keyframes fade-from-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-15px);
        -moz-transform: translateX(-15px);
        -o-transform: translateX(-15px);
        -ms-transform: translateX(-15px);
        transform: translateX(-15px);
    }

    45% {
        opacity: 0.5;
    }

    90% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fade-in-from-bottom {
    opacity: 0;
    animation-timing-function: ease-out;
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -o-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
}

.fade-in-from-bottom.animated {
    animation-name: fade-from-bottom;
    animation-duration: 1s;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

@keyframes fade-from-bottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(15px);
        -moz-transform: translateY(15px);
        -o-transform: translateY(15px);
        -ms-transform: translateY(15px);
        transform: translateY(15px);
    }
    90% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fade-in-from-right {
    opacity: 0;
    animation-timing-function: ease-out;
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -o-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
}

.fade-in-from-right.animated {
    animation-name: fade-from-right;
    animation-duration: 0.5s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

@keyframes fade-from-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(40px);
        -moz-transform: translateX(40px);
        -o-transform: translateX(40px);
        -ms-transform: translateX(40px);
        transform: translateX(40px);
    }

    90% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

/* PRIVACY POLICY PAGE -------------------------------------------------------*/
.pp-main {
    width: 100%;
}

.pp-link:hover {
    color: blue;
    font-weight: 700;
}

.pp-header {
    padding: 30px 0;
    width: 100%;
}
  
.pp-logo {
    display: block;
    margin: 0 auto;
    width: 276px;
    height: 100px;
}

  
.pp-div {
    color: gray;
    padding: 20px 5% 30px;
    width: 100%;
}

.pp-h-tag {
    color: #E6342F;
    margin: 10px 0;
}
  
.pp-main ol li,
.pp-main ul li {
    margin: 5px 0 5px 60px;
}

.pp-main p {
    margin-bottom: 20px;
}

/* MAIN PAGE -------------------------------------------------------*/
.inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.main-header {
    background-color: #F9F9F9;
    padding: 20px 0;
}

.main-header .inner {
    position: relative;
}

.main-header img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

.cart-btn {
    background-color: #E6342F;
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

.cart-btn:hover {
    background-color: #c20600;
    color: #ffffff;
}

.cart-btn.emptycart {
    opacity: 0.5;
    cursor: not-allowed;
}

.cart-btn-count {
    display: none;
    background-color: #fff;
    color: #E6342F;
    font-weight: bold;
    font-size: 0.8em;
    padding: 2px 6px;
    border-radius: 999px;
    margin-left: 6px;
}
  
main .inner {
    padding: 75px 0;
}

#alert {
    background-color: #E6342F;
    color: #fff;
    padding: 20px;
    margin-bottom: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
}

#alert svg {
    width: 120px;
    height:auto;
    margin-right: 15px;
    vertical-align: top;
    display: inline-block;
}

#alert p {
    display: inline-block;
    font-size: 18px;
    color: #fff;
}

#alert strong {
    color: #fff;
    font-weight: 800;
}

#product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2%;
}

#product-list .product {
    width: 18%;
    margin-bottom: 35px;
    text-align: left;
}

#product-list .product img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
    aspect-ratio: 1/1;
    background-color: #fff;
    border-radius: 10px;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}

#product-list .product .add-to-cart {
    background-color: #E6342F;
    color: #fff;
    padding: 10px 30px;
    display: inline-block;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    appearance: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
}

#product-list .product .add-to-cart:hover {
    background-color: #c20600;
    color: #ffffff;
}

#product-list .product .in-cart {
    background-color: #000 !important;
}

#product-list .product h2,
#product-list .product p {
    color: #757575;
    font-size: 18px;
    font-weight: 400;
    margin: 8px 0;
}

#product-list .product p.gop-price {
    font-size: 30px;
    font-weight: 600;
}

#product-list .product p.gop-price span.gop-percent-increase {
    color: #cccccc;
    font-size: 22px;
    font-weight: 400;
}

#product-list .product p.gop-price span.gop-percent-increase svg {
    width: 16px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right:-2px;
    position: relative;
    top: -2px;
}

#product-list .product p.dem-price {
    font-size: 18px;
    text-decoration: line-through;
}

footer {
    background-color: #F9F9F9;
    padding: 50px 0;
}

footer .inner {
    text-align: center;
}

footer a {
    color: #000;
    transition: all ease-in-out 0.4s;
}

footer a:hover {
    color: #E6342F;
}

/* cart */
.cart-popup {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: white;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}
  
.cart-popup.open {
    transform: translateX(0);
}
  
.cart-popup-inner {
    padding: 2em;
    overflow-y: auto;
    height: 100%;
}
  
.close-cart {
    position: absolute;
    top: 1em;
    right: 1em;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}


.cart {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 2em;
    padding: 1em 0;
    flex-wrap: wrap;
}
  
/* cart */
.cart-row {
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 48%;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.dynamic-cart-row {
    margin-bottom: 10px;
}

.cart-row.item {
    box-shadow: none;
    padding-top: 133px;
}
  
h3.cart-row-title {
    font-family: "Geist Mono", monospace;
    font-weight: 800;
    font-size: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
    margin: 0;
    text-align: center;
}
  
.gop h3.cart-row-title {
    color: #E6342F;
}
  
.dem h3.cart-row-title {
    color: #00BCE7;
}

.cart-row-item-name,
.cart-row-item-dem,
.cart-row-item-gop {
    /* display: flex;
    flex-direction: column;
    gap: 10px; */
}
  
.cart-row-item-name h3 {
    font-family: "Geist Mono", monospace;
    font-weight: 400;
    color: #000;
    margin: 0;
    text-align: left;
    display: inline-block;
    vertical-align: middle;
    margin:0;
}

.cart-row-item-name a {
    display: inline-block;
    margin-left: 10px;
    vertical-align: bottom;
}

.cart-row h3 {
    min-height: 33px;
}

.cart-row-item h3 {
    text-align: center;
    font-size: 20px;
}
  
.cart-row-item-dem h3 {
    color: #00BCE7;
    font-family: "Geist Mono", monospace;
    font-weight: 400;
    font-size: 20px;
    margin: 0;
}

.cart-row-item-gop h3 {
    color: #E6342F;
    font-family: "Geist Mono", monospace;
    font-weight: 600;
    font-size: 23px;
    margin: 0;
}
  
.total {
    padding-top: 1em;
    border-top: 1px solid #000;
    text-align: center;
}
  
.total-title {
    font-family: "Geist Mono", monospace;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}
  
.total-price {
    font-family: "Geist Mono", monospace;
    font-weight: bold;
    font-size: 30px;
    line-height: 35px;
    margin: 0;
}

.cart-row-item h3 {
    font-family: "Geist Mono", monospace;
    font-weight: 400;
}
  
.dem .total-title,
.dem .total-price {
    color: #00BCE7;
}
  
.gop .total-title,
.gop .total-price {
    color: #E6342F;
}

/* .gop .cart-row-item.gop h3 {
    font-weight: 600;
    font-size: 23px;
} */

.gop .total {
    color: #E6342F;
    font-weight: 600;
}
 
.remove-item svg {
    width: 35px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.cart-popup-footer {
    text-align: center;
}

.cart-popup-footer .share-buttons a {
    background-color: #00BCE7;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    -webkit-border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px 10px 10px;
}

.cart-popup-footer .share-buttons a:hover {
    background-color: #0099b3;
    color: #ffffff;
}

.social-share-section h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 20px;
}

.share-icon svg {
    width:auto;
    height:24px;
    display: inline-block;
    vertical-align: middle;
}

footer p.paidforby {
    border:solid 1px #2a2a2a;
    max-width:650px;
    margin:0 auto 15px auto;
    box-sizing:border-box;
    padding:10px 20px;
}

footer p {
    font-size:15px;
    line-height:20px;
}

.desktopbtn {
    display:inline-block;
}

.mobilebtn {
    display:none;
    vertical-align:middle;
}

.mobilebtn svg {
    width:20px;
    height:auto;
    display:inline-block;
}

.cart-percent-increase {
    display: none;
}

.cart-percent-increase.active {
    display: block;
}

.cart-percent-increase h3 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 800;
    text-align: center;
    margin-top: 10px;
    color: #E6342F;
}

.download-receipt {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    background-color: #E6342F;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin:30px 0;
}

.download-receipt:hover {
    background-color: #c20600;
    color: #ffffff;
}

