@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    /* COLORS */
    --main-color: #e21646;
    --secondary-color: #ccdb03;
    --dark-color: #333333;
    --light-color: #f7f7f7;
    --site-light-color: #bdbfc1;
    --white-color: #ffffff;



    /* FONT SIZE */
    --main-title-h1: 90px;
    --section-title-h2: 46px;
    --section-title-h3: 36px;
    --section-title-h4: 21px;
    --section-tite-h5: 22px;
    --menu-text: 20px;
    --body-text: 16px;
    --subtitle-text: 26px;


    /* SPACING */
    --header-height: 100px;
    --section-block-space: 100px;
    --hero-sapce: 140px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

/* ================== CSS Prefix ================== */
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    margin: 0;
    padding: 0
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
ul,
li,
form,
label,
nav,
ul {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

a,
a:focus,
a:hover {
    outline: none !important;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.site-section {
    padding-block: var(--section-block-space);
}

.site-container {
    width: 100%;
    max-width: 1200px;
    padding-inline: 20px;
    margin-inline: auto;
}

ul,
li {
    list-style: none;
}




/* CSS COMMON CLASSES */
.main-title-h1 {
    font-size: var(--main-title-h1);
}


.section-title-h2 {
    font-size: var(--section-title-h2);
}


.section-title-h3 {
    font-size: var(--section-title-h3);
}

.section-title-h4 {
    font-size: var(--section-title-h4);
    text-transform: uppercase;
}

.section-title-h5 {
    font-size: var(--section-title-h5);
}

.menu-text {
    font-size: var(--menu-text);
}

.body-text {
    font-size: var(--body-text);
}

.subtitle-text {
    font-size: 26px;
}


.site-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* COLORS AND BACKGROUNDS */
.bg-main {
    background-color: var(--main-color);
}

.bg-sec {
    background: var(--secondary-color);
}

.bg-grey {
    background-color: var(--site-light-color);
}

.bg-dark {
    background: var(--dark-color);
}

.bg-light {
    background: var(--light-color);
}

.text-main {
    color: var(--main-color);
}

.text-sec {
    color: var(--secondary-color);
}

.text-dark {
    color: var(--dark-color);
}

.text-light {
    color: var(--light-color);
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: end;
}

/* BUTTONS */

.white-btn {
    background-color: var(--light-color);
    padding-inline: 12px;
    padding-block: 7px;
    border-radius: 4px;
    font-weight: 600;
}

/* ROW AND COL */
.site-row {
    display: flex;
    gap: 30px;
}

.site-col {
    flex: 1;
}




/* -------------- HERO-TOP-BAR -------------- */
.site-top-bar {
    padding-block: 7px;
}

.site-top-bar-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--light-color);
    font-weight: 600;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    padding-block: 10px;
    align-items: center;
}

.site-menu {
    margin-left: auto;
    margin-right: 50px;
    gap: 25px;
    display: flex;
}

.site-menu li a {
    color: var(--dark-color);
}

.site-menu li a:hover {
    color: var(--main-color);
    transition: ease .3s;
}


.site-logo img {
    max-width: 220px !important;
}

.header-icons {
    display: flex;
    position: relative;
}

.header-icons li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-icons li a img {
    height: 22px;
    width: auto;
}

.cart_count {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    border-radius: 100vmax;
    color: var(--dark-color);
}

.shop-icons {
    padding-block: 60px;
    justify-content: space-between;
    text-align: center;
}

.shop-icons h4 {
    font-weight: normal;
    margin-top: 5px;
}

.shop-icons img {
    width: auto;
    height: 100px;
}

.site-category-row {
    gap: 25px;
}

.site-category-row img {
    margin-top: 20px;
}

.delivery-section-bg {
    background: url(/images/delivery-section-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.delivery-section {
    justify-content: center;
    padding-block: 50px;
}

.delivery-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.delivery-content p {
    margin-top: 10px;
    padding-inline: 100px;
}

.delivery-content img {
    width: 50px;
    height: 50px;
}


.cond-list {
    list-style-type: disc;
    padding-left: 30px;
}


/* -----------------------------------------GREEN-BAR----------------------------------------- */
.footer-green-bar {
    background-color: var(--secondary-color);
    align-items: center;
    justify-content: space-between;
    padding-block: 25px;
}

.footer-top-bar-content {
    display: flex;
    align-items: center;
    gap: 50px;
    font-size: var(--subtitle-text);
    font-weight: 500;
}

.stone-pink-icn {
    width: 20px;
    height: auto;
}


/*  --------------------------FOOTER-SECTION -------------------------- */
footer {
    background: #5A514F;
}

.footer-dark {
    background: #474343;
}

footer h3 {
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--site-light-color);
}

.social-icons {
    display: flex;
    gap: 25px;
}

.social-icons img {
    width: 50px;
}

.stoneman-logo {
    max-width: 110px !important; 
}

.social-icon-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.social-icon-section img {
    border-radius: 4px;
}

footer .registerd {
    /* margin-bottom: 20px; */
    color: var(--secondary-color);
}

.footer-header-logo,
.design-by {
    justify-content: space-between;
    align-items: center;
}

.design-by {
    padding-block: 20px;
}

footer ul li {
    margin: 15px 0;
}

.quick-links li a,
footer ul li {
    color: var(--site-light-color);
}

.quick-links li a:hover {
    color: var(--secondary-color);
    transition: ease .3s;
}

.quick-links .text-sec {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

footer h4,
footer .subtitle-text {
    margin-bottom: 10px;
}

footer .subtitle-text {
    font-size: 22px;
}

.footer-address {
    margin-top: 15px;
    text-align: right;
    flex: 1.5;
}


.footer-right-content {
    text-align: justify;
    color: var(--white-color);
}


/* -----------------------------------------OFFERS AND CASHBACKS-----------------------------------------  */
.form-section {
    max-width: 900px;
    width: 100%;
    margin-inline: auto;
}

.offer-form {
    margin-block: 35px;
    border-radius: 10px;
    background-color: var(--white-color);
    padding: 50px;
}

.selfie-box.site-col {
    padding-left: 60px;
}

.form-caption {
    margin-top: 35px;
    margin-bottom: -35px;
}

.offer-content,
.form-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offer-form label,
input {
    display: inline-block;
    width: 100%;
}

.offer-form label {
    text-align: left;
}

.offer-form input {
    border: 1px solid black;
    height: 40px;
    padding-inline: 15px;
    margin-top: 4px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.offer-form input:focus {
    outline: none;
}

.offer-form input[type="file"] {
    border: none;
}


.selfie-box .user-img,
input {
    display: inline-block;
    margin: auto;
}

.user-img {
    border-radius: 10px;
    border: 1px solid black;
    width: 250px;
    height: 250px;
}

.submit-btn {
    width: initial;
    margin-inline: auto;
    padding: 10px 50px;
    border-radius: 6px;
    background-color: var(--main-color);
    color: white;
}


.pay-del-partners img {
    height: 20px !important;
}

.pay-del-partners .site-row {
    align-items: center;
    justify-content: space-between;
    padding-block: 15px;
    margin-top: 15px;
    font-weight: bold;
}

.payment-bank,
.delivery-partner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
}

.footer-header-logo {
    padding-block: 30px;
}

.footer-left-logo {
    width: 250px;
}

.footer-right-logo {
    width: 200px;
}

.link {
    color: var(--main-color);
}

.tc-section {
    padding-top: 80px;
    text-align: left;
}

.tc-section ol {
    margin-block: 40px;
}

.tc-section ol li {
    margin-block: 12px;
    list-style: none;
    background: url(../images/mark-pink.png) no-repeat;
    background-position: left 5px;
    padding-left: 20px;
    background-size: 12px;
}

.offer-content a {
    color: var(--main-color);
}

.user-img {
    margin-bottom: 20px !important;
    margin-left: 0 !important;
    display: block !important;
}

input#my-img {
    padding: 0;
    margin-top: 10px;
}

.td-link {
    color: var(--white-color);
}

.td-link span {
    color: #FF5C35;
}

.design-by p {
    font-size: 14px;
    font-weight: 300;
}

.design-by p a {
    color: var(--white-color);
}

.pc-link,
.td-link {
    font-weight: 400;
}

/* ------------------------------------------PRIVACY POLICY------------------------------------------ */
.para-logo {
    max-width: 100px;
    max-height: 50px;
}

.our-brands-img {
    display: flex;
    /* justify-content: space-between; */
    gap: 30px;
    align-items: center;
}

.our-brands-img img {
    max-width: 200px;
    max-height: 100px;
}

.p-policy h2 {
    margin-bottom: 5px;
    margin-top: 30px;
}

.p-policy p {
    margin-bottom: 10px;
}

.p-policy ul li {
    list-style-type: disc !important;
    margin: 8px 0;
}

.p-policy ul li ul {
    padding-left: 40px;
}

.p-policy ul {
    padding-left: 20px;
}

.p-policy a {
    color: #e21646;
}

/* --------------------------------------------------COLLABORTORS-------------------------------------------------- */
.collaborators {
    justify-content: space-between;
    margin-top: 30px;
}

.model {
    border: 1px solid black;
    width: 250px;
    height: 250px;
}

/* ---------------------------------------------CHECKOUT-FORM--------------------------------------------- */
.page-template-templatecheckout-php .woocommerce form input[type="text"], 
.page-template-templatecheckout-php .woocommerce form input[type="email"],
.page-template-templatecheckout-php .woocommerce form select, 
.page-template-templatecheckout-php .woocommerce form input[type="tel"] {
    width: 100%;
    height: 40px;
    border: 1px solid var(--dark-color);
    padding-inline: 15px;
}

.page-template-templatecheckout-php .woocommerce form select {

}

.page-template-templatecheckout-php .woocommerce form textarea {
    height: 150px !important;
    padding: 15px;
    width: 100%;
}

.page-template-templatecheckout-php .woocommerce form .select2-selection.select2-selection--single {
    display: flex;
    align-items: center;
    height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    margin-top: 7px;
}

.woocommerce-info {
    border-top-color: var(--main-color) !important;
}

.woocommerce-info::before {
    color: var(--main-color) !important;
}

.woocommerce-info a, .product-name a {
    color: var(--main-color) !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt {
    background-color: var(--main-color) !important;
}

.error-404 {
    padding-block: 80px;
}

/* ----------------------------------- MOBILE RESPONSIVE QUERY ----------------------------------- */
@media only screen and (max-width:767px) {

    .site-row {
        flex-wrap: wrap;
    }

    .site-col {
        width: 100%;
        flex: initial;
    }

    .site-section {
        padding-block: 40px;
    }

    .section-title-h2 {
        font-size: 26px;
    }

    .site-top-bar {
        display: none;
    }

    .header-wrap {
        justify-content: center;
    }

    .header-wrap .site-menu,
    .header-icons {
        display: none;
    }

    .shop-icons {
        justify-content: center;
    }

    .category-section h2 {
        margin-bottom: 10px;
    }

    .footer-top-bar-content {
        font-size: 20px;
    }

    footer .text-center,
    footer .text-end {
        text-align: left;
    }

    .footer-social {
        justify-content: initial;
    }

    .subtitle-text {
        font-size: 18px;
    }

    .offer-form {
        padding: 30px;
    }

    .selfie-box.site-col {
        padding-left: 0;
    }

    .user-img {
        width: 100%;
    }

    footer ul li {
        margin: 10px 0;
    }

    .our-brands-img {
        flex-direction: column;
        gap: initial;
    }

    .payment-bank,
    .delivery-partner {
        gap: 10px;
    }
}




/* temp code */
.site-row.shop-icons, ul#menu-menu-1{
    display: none;
}