/**
 * Theme Name:        Beauty Belle
 * Description:       Custom theme for Beauty Belle
 * Version:           1.0.0
 * Author:            Chandni Patel
 * Author URI:        https://chandnipatel.in/
 * Text Domain:       beauty-belle
 * License:           GNU General Public License v2.0 or later
 * License URI:       https://www.gnu.org/licenses/gpl-2.0.html
 */

@import "static/css/core.css";
@import "static/css/typography.css";
@import "static/css/header.css";
@import "static/css/footer.css";
@import "static/css/inquiry-popup.css";
@import "static/css/single-product.css";
@import "static/css/404.css";
@import "static/css/popup.css";

*, ::after, ::before {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 79px;
    margin: 0;
    padding: 0;
}

body {
    word-break: break-word;
}

:focus-visible,
:focus,
a:focus {
    outline: unset;
    box-shadow: unset;
}

section:last-child {
    margin-bottom: 0;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body {
    padding-top: 79px;
}

.hide-on-desktop {
    display: none;
}

.hide {
    display: none;
}


@media screen and (max-width: 951px) {

    body {
        padding-top: 123px;
    }

    .hide-on-desktop {
        display: block;
    }
}