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

* {
    margin: 0;
    padding: 0;
    font: inherit;
    /* Get rid of all font sizes and heights */
}

* {
    -webkit-tap-highlight-color: transparent;
    /* For iOS Safari */
    -webkit-touch-callout: none;
    /* Prevents callout (such as copy, paste) on long-tap */
    -ms-touch-action: manipulation;
    /* For Windows touch devices */
    touch-action: manipulation;
    /* For other touch devices */
    -webkit-overflow-scrolling: touch;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
}

html {
    hanging-punctuation: first last;
    scroll-padding-top: 200px !important;
    scroll-behavior: smooth !important;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fdf3e2;
    /* fallback */
    color: #333;
    min-height: 100vh;
}

/* Media responsive */
img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

img {
    border-radius: var(--image-border-radius);
}

img.br-0 {
    border-radius: 0;
}

img.br-50 {
    border-radius: 50%;
    object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

a {
    text-decoration: none;
    color: var(--clr-neutral-900);
}

@media (prefers-reduced-motion: no-preference) {
    :has(:target) {
        scroll-behavior: smooth;
        scroll-padding-top: 3rem;
    }
}

.image-block {
    max-width: 100%;
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1;
}

.site-footer {
    padding: 20px;
}

.bg-color-1 {
    background-color: #fbe3c6 !important;
}

.bg-color-2 {
    background-color: #f5dcc1 !important;
}

.bg-color-3 {
    background-color: #e8f7cc !important;
}

.bg-color-4 {
    background-color: #ffe28a !important;
}

.bg-color-5 {
    background-color: #d6f5c6 !important;
}


.add-to-cart {
    background-color: #f26722;
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 14px;
}