:root {
    --primary-clr: #659AB1;
    --secondary-clr: #00416C;
    --btn-clr: #E63E30;
    --yellow-clr: #FED103;
    --black-clr: #221F20;
    --white-clr: #ffffff;

    /* star rating  */
    --star-size: 20px;
    --star-color: #EAEAEA;
    --star-background: #fc0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Josefin Sans", sans-serif;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

h1 {
    font-size: 78px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

p {
    font-size: 18px;
}


.section-padding {
    padding-block: 70px;
}

/*   styling start  */
.topbar {
    color: var(--white-clr);
    background: var(--primary-clr);
}

.topbar p {
    font-weight: bold;
    letter-spacing: 2px;
}

.navbar {
    background: var(--white-clr);
}

button.navbar-toggler,
button.navbar-toggler:focus {
    border: none;
    outline: none;
    box-shadow: none;
    position: relative;
    top: -6px;
}

/* center the logo  */
.navbar .container {
    position: relative;
}

.navbar .navbar-brand {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-icon-wrap a {
    margin-right: 24px;
    color: var(--black-clr);
}

/* navitem spacing  */
.navbar-nav .nav-item {
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Josefin Sans", sans-serif;
    font-size: 13px;
    color: var(--black-clr);
}

.search-btn i {
    font-size: 15px;
}

/* cart quantity count  */
.cart-btn span.cart-quantity {
    position: relative;
}

.cart-btn span.cart-quantity::after {
    content: attr(data-attribute);
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-left: 4px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    background: var(--primary-clr);
    color: var(--black-clr);
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

/*   styling end  */

/* Hero Section start */
section.hero-section {
    background: url(/assets/PNGs/2132C2_6.png) no-repeat center center;
    background-size: cover;
}

.hero-content-bg {
    background: var(--secondary-clr);
    padding: 40px 40px 40px 70px;
    clip-path: polygon(97% 0, 100% 4%, 100% 97%, 97% 100%, 0 100%, 0 0);
}

h1.hero-title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-style: normal;
    line-height: 120%;
    color: var(--white-clr);
    position: relative;
}

h1.hero-title::before {
    content: "";
    position: absolute;
    left: -69px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
}

.hero-subtitle {
    color: var(--white-clr);
    font-family: "Josefin Sans", sans-serif;
}

/* custom Button Style */
.btn-wrap {
    align-items: center;
}

.custom-btn {
    color: var(--white-clr);
    font-family: "Josefin Sans", sans-serif;
    font-size: 15px;
    font-weight: bold;
    padding: 16px 34px 12px 34px;
    z-index: 1;
}

.btn-primary {
    background: var(--btn-clr);
    border: 2px solid var(--btn-clr);
    position: relative;
    clip-path: polygon(12% 0%, 88% 0%, 100% 50%, 88% 100%, 12% 100%, 0% 50%);
}

.btn-secondary {
    position: relative;
    background: var(--white-clr);
    height: 54.5px;
    width: 150px;
    clip-path: polygon(12% 0%, 88% 0%, 100% 50%, 88% 100%, 12% 100%, 0% 50%);
    text-align: center;
}

.btn-primary::after,
.btn-secondary::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: calc(100% + 4px);
    z-index: -1;
    transition: all ease-in-out 0.3s;
}

.btn-primary::after {
    background: var(--yellow-clr);
}

.btn-secondary::after {
    background: var(--white-clr);
}

.btn-secondary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--secondary-clr);
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    clip-path: polygon(12% 0%, 88% 0%, 100% 50%, 88% 100%, 12% 100%, 0% 50%);
    z-index: -2;
}

.btn-primary:hover {
    color: var(--secondary-clr);
    border-color: transparent;
}

.btn-secondary:hover {
    color: var(--btn-clr);
}

.btn-primary:hover::after {
    width: calc(100% + 4px);
    border: 2px solid var(--yellow-clr);
}

.btn-secondary:hover::after {
    width: calc(100% + 4px);
    border: 2px solid var(--white-clr);
}

.explore-btn {
    color: var(--white-clr);
}

/* Hero Section end */

/* Product slider section  */
.designs {
    overflow: hidden;
}

.product-slider-section .slick-slide {
    margin-right: 25px;
}

.slider-wrap {
    margin-left: calc((100% - 1299px) / 2);
}

.product-slider-section .section-subtitle {
    font-size: 12px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
}

.product-slider-section .section-title {
    font-size: 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
}

.product-slider-section .slick-track {
    margin-left: 0;
}

.product-wrap {
    position: relative;
    margin-block: 15px;
    transition: all ease-in-out 0.2s;
}

.product-wrap:hover {
    transform: translateY(-10px);
    border-radius: 15px;
}

.product-wrap:hover .product-img-wrap {
    border-radius: 15px 15px 0 0;
}

.product-wrap:hover .product-short-details {
    border-radius: 0 0 15px 15px;
}

.product-wrap::after {
    transition: all ease-in-out 0.2s;
    position: absolute;
    content: "";
    z-index: -2;
    border-radius: 15px;
}

.product-wrap:hover::after {
    width: 100%;
    height: calc(100% - 20px);
    bottom: 0;
    box-shadow: 0px 15px 25px 10px rgba(0, 0, 0, 0.1);
}

.sale-tag,
.new-tag,
.back-in-stock-tag {
    position: relative;
}

/* product tags  */
.sale-tag::before {
    position: absolute;
    content: 'Sale';
    text-transform: uppercase;
    color: var(--white-clr);
    padding: 6px 12px 4px 8px;
    background-color: var(--btn-clr);
    top: 11px;
    font-size: 10px;
    font-family: 'Josefin Sans', sans-serif;
    left: 20px;
    rotate: -90deg;
}

.new-tag::before {
    position: absolute;
    content: 'New!';
    text-transform: uppercase;
    color: var(--white-clr);
    padding: 6px 12px 4px 8px;
    background-color: #6BBBAE;
    top: 11px;
    font-size: 10px;
    font-family: 'Josefin Sans', sans-serif;
    left: 20px;
    rotate: -90deg;
}

.back-in-stock-tag::before {
    position: absolute;
    content: 'Back in Stock';
    text-transform: uppercase;
    color: var(--white-clr);
    padding: 6px 12px 4px 8px;
    background-color: #8DB9CA;
    top: 36px;
    font-size: 10px;
    font-family: 'Josefin Sans', sans-serif;
    left: 20px;
    rotate: -90deg;
}

/* product wrap style  */
.product-img-wrap {
    aspect-ratio: 1;
    width: 100%;
    padding: 30px;
    background: #F6F6F6;
    display: grid;
    place-content: center;
}

.product-img {
    width: 100%;
}

.product-short-details {
    padding: 10px;
    background: var(--white-clr);
}

/* product star rating  */
.Stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: var(--star-size);
    font-family: Times;
    line-height: 1;
    margin-bottom: 10px;
}

.Stars::before {
    content: '★★★★★';
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-price .sale-price {
    font-size: 15px;
    font-family: 'Nunito', sans-serif;
}

.product-price span.mrp {
    color: #999;
    margin-left: 8px;
}

.product-name {
    font-size: 14px;
    font-weight: bold;
    min-height: 37px;
}

.varient-wrap {
    border-bottom: 0;
}

.varient-wrap .active a {
    position: relative;
}

.varient-wrap .active a::after {
    position: absolute;
    content: "";
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    top: 51%;
    left: 51%;
    transform: translate(-48%, -51%);
    border: 2px solid #fff;
    border-radius: 100%;
}

.varient-btn {
    display: inline-block;
    height: 20px;
    aspect-ratio: 1;
    border-radius: 100%;
    margin-right: 8px;
}

.black {
    background: #000;
}

.grey {
    background: #666;
}

.grey {
    background: #666;
}

.fade.in {
    opacity: 1;
}


@media screen and (max-width:1200px) {
    .designs {
        overflow: hidden;
    }

    .slider-wrap {
        margin-left: 0;
    }
}

/* Product slider section  */


/* Real life section  */

.real-life-section {
    background-color: #F3F7F9;
}

.real-life-section .section-subtitle {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.real-life-section .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: bolder;

}

.real-life-section .section-content {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    max-width: 30%;
    margin-inline: auto;
    margin-top: 14px;
}

.parallax-img-row {
    margin-top: 50px;
}

.parallax-img-row img {
    height: 100%;
    object-fit: cover;
}

.parallax-img-row .img-box {
    transition: all ease-in-out 0.3s;
}

.parallax-img-row .img-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.3);
}

.img-wrap-1 {
    margin-bottom: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 246px;
    height: 326px;
    z-index: 5;
}

.img-wrap-2 {
    position: relative;
    margin-bottom: -150px;
    right: 50px;
    width: 264px;
    height: 264px;
    aspect-ratio: 1;
    margin-inline-start: auto;
    z-index: 3;
}

.img-wrap-3 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    width: 420px;
    height: 302px;
    z-index: 2;
}

.img-wrap-4 {
    width: 119px;
    height: 158px;
    margin-inline-start: auto;
    z-index: 5;
}

.img-wrap-5 {
    margin-top: -100px;
    position: relative;
    left: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 231px;
    height: 304px;
    overflow: hidden;
    margin-inline: auto;
    z-index: 4;
}

.img-wrap-6 {
    margin-top: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 520px;
    height: 364px;
    overflow: hidden;
    margin-inline: auto;
    z-index: 2;
}

/* Real life section  */


/* the ultimate brew guides start */
.brew-guide .section-subtitle {
    font-size: 12px;
    font-weight: bold;
    font-family: 'Josefin Sans', sans-serif;
    margin-bottom: 10px;
}

.brew-guide .section-title {
    font-size: 42px;
    font-weight: bolder;
    font-family: 'Barlow Condensed', sans-serif;
    margin-bottom: 30px;
}

.brew-guide .section-content {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
}

.brew-guide .artefact-img-wrap {
    position: relative;
}

.brew-guide .artefact-img-wrap::before {
    content: url(/assets/PNGs/Group\ 6.png);
    position: absolute;
    right: -48px;
    top: -72px;
}

.brew-guide .artefact-img-wrap::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary-clr);
    right: -30px;
    bottom: -30px;
    z-index: -1;
}

.learn-more-btn {
    display: block;
    position: relative;
    margin-top: 32px;
    width: fit-content;
    padding: 16px 32px 12px 32px;
    font-size: 12px;
    color: var(--black-clr);
    border-radius: 100px;
    transition: all ease-in-out 0.1s;
}

.learn-more-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--black-clr);
    border-radius: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all ease-in-out 0.2s;
    transform-origin: center center;
}

.learn-more-btn:hover::after {
    height: 105%;
    width: 105%;
    transform-origin: center center;
}

/* the ultimate brew guides end */

/* Footer start */
footer {
    background: var(--primary-clr);
    color: var(--white-clr);
}

footer .footer-title {
    font-family: "Barlow", sans-serif;
    font-weight: bolder;
    font-size: 36px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

footer .footer-subtitle {
    font-family: 'Nunito', sans-serif;
}

footer .newsletter-wrap form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

footer .newsletter-wrap input#email {
    padding: 20px 30px;
    background: #84AEC1;
    outline: none;
    border: none;
    color: var(--white-clr);
    border-radius: 6px 0 0 6px;
    width: 100%;
}

input#email::placeholder {
    color: var(--white-clr);
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
}

footer .newsletter-wrap input[type=button] {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    outline: none;
    border: none;
    background: #84AEC1;
    color: var(--white-clr);
    border-radius: 0 6px 6px 0;
    padding: 23px 30px;
    float: right;
    height: 100%;
}

footer hr.dashed-seperator {
    border-top: 8px dotted var(--white-clr);
    opacity: 1;
}

footer .col-heading {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    font-weight: bold;
}

footer a {
    color: var(--white-clr);
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    display: block;
    line-height: 2;
    transition: all ease-in-out 0.3s;
}

footer a:hover {
    color: var(--yellow-clr);
}

footer .social-icon-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .social-icon-wrap .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 100%;
    background: #84AEC1;
    height: 40px;
    aspect-ratio: 1;
}

footer .social-icon-wrap .social-icon {
    transition: all ease-in-out 0.3s;
    cursor: pointer;
}

footer .social-icon-wrap .social-icon:hover {
    margin-top: -10px;
}

footer .social-icon-wrap .social-icon a {
    color: var(--white-clr);
}

footer .bottom-bar p {
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
}

footer .bottom-bar a {
    display: inline-block;
}

/* Footer end */

/* media query start  */


@media screen and (min-width: 576px) {

    .hero-row-wrap {
        margin-block: 50px 40px;
    }

    h1.hero-title {
        font-size: 50px;
    }

    h1.hero-title::before {
        border-top: 35px solid transparent;
        border-left: 35px solid #FED103;
        border-bottom: 35px solid transparent;
    }

    .topbar p {
        font-size: 12px;
    }
}

@media screen and (min-width: 768px) {


    .hero-row-wrap {
        margin-block: 70px 60px;
    }

    h1.hero-title {
        font-size: 60px;
    }

    h1.hero-title::before {
        border-top: 45px solid transparent;
        border-left: 45px solid #FED103;
        border-bottom: 45px solid transparent;
    }
}

@media screen and (min-width: 992px) {

    /* nav item spacing  */
    .navbar-nav .nav-item {
        margin-right: 32px;
    }

    .hero-row-wrap {
        margin-block: 90px 80px;
    }

    h1.hero-title {
        font-size: 78px;
    }

    h1.hero-title::before {
        border-top: 55px solid transparent;
        border-left: 55px solid #FED103;
        border-bottom: 55px solid transparent;
    }

    .topbar p {
        font-size: 15px;
    }

    /* product slider  */
    .product-name {
        max-width: 80%;
    }

    /* real life section  */
    .parallax-img-row {
        margin-top: -250px;
    }
}

@media screen and (min-width: 1399px) {

    /* product slider  */
    .product-slider-section .slick-list.draggable {
        padding-block: 25px;
        padding-left: 25px;
        margin-left: -25px;
    }
}

@media screen and (max-width: 1399px) {
    .slider-wrap {
        padding-left: 80px;
    }

    .parallax-img-row {
        padding-top: 40px;
    }

    .img-wrap-1 {
        width: 220px;
        height: 280px;
    }

    .img-wrap-2 {
        width: 224px;
        height: 224px;
    }

    .img-wrap-3 {
        width: 380px;
        height: 262px;
    }

    .img-wrap-4 {
        width: 79px;
        height: 118px;
    }

    .img-wrap-5 {
        width: 191px;
        height: 264px;
    }

    .img-wrap-6 {
        width: 480px;
        height: 324px;
    }
}

@media screen and (max-width: 1199px) {
    .parallax-img-row {
        padding-top: 60px;
    }

    .img-wrap-1 {
        width: 180px;
        height: 240px;
    }

    .img-wrap-2 {
        width: 184px;
        height: 184px;
    }

    .img-wrap-3 {
        width: 340px;
        height: 222px;
        margin-top: 50px;
    }

    .img-wrap-4 {
        width: 59px;
        height: 78px;
    }

    .img-wrap-5 {
        width: 151px;
        height: 224px;
        top: 60px;
        left: 70px;
    }

    .img-wrap-6 {
        width: 440px;
        height: 284px;
        margin-top: 40px;
    }
}

@media screen and (max-width: 992px) {

    /* product slider  */
    .slider-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .real-life-section .section-content {
        max-width: 90%;
    }

    .parallax-img-row {
        padding-top: initial;
        margin-top: 20px;
    }

    .parallax-img-row .img-wrap-1,
    .parallax-img-row .img-wrap-2,
    .parallax-img-row .img-wrap-3,
    .parallax-img-row .img-wrap-4,
    .parallax-img-row .img-wrap-5,
    .parallax-img-row .img-wrap-6 {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .img-wrap-5 {
        margin-inline: auto;
        margin-top: -40px;
        position: initial;
    }
}

@media screen and (max-width: 576px) {
    p {
        font-size: 16px;
    }

    /* header  */
    .navbar-icon-wrap a {
        margin-right: 10px;
    }

    .cart-btn span.cart-quantity::after {
        height: 15px;
        width: 15px;
        font-size: 8px;
    }

    .hero-row-wrap {
        margin-block: 50px;
    }

    .hero-content-bg {
        padding: 25px 25px 25px 50px;
    }

    h1.hero-title {
        font-size: 40px;
    }

    h1.hero-title::before {
        border-top: 25px solid transparent;
        border-left: 25px solid var(--yellow-clr);
        border-bottom: 25px solid transparent;
        left: -49px;
    }

    .topbar p {
        font-size: 10px;
    }

    /* button  */
    .custom-btn {
        padding: 8px 22px 6px 22px;
        font-size: 12px;
    }

    .btn-secondary {
        height: 35.2px;
        width: 100px;
    }

    /* footer  */
    footer .bottom-bar {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {

    .product-slider-section .section-title,
    .real-life-section .section-title,
    .brew-guide .section-title,
    footer .footer-title {
        font-size: 32px;
        text-align: center;
    }

    .product-slider-section .section-subtitle,
    .real-life-section .section-subtitle,
    .brew-guide .section-subtitle {
        font-size: 10px;
        text-align: center;
    }

    .real-life-section .section-content,
    footer .footer-subtitle {
        font-size: 14px;
        text-align: center;
    }

    footer {
        text-align: center;
    }

    .footer-logo {
        max-width: 40%;
    }

    .social-icon-wrap {
        justify-content: center;
    }

    .section-content {
        text-align: center;
    }

    .product-slider-section .slick-slide {
        margin-right: initial;
        padding: 20px 20px 10px 20px;
    }
}