/* --- Global Styles & CSS Reset --- */
@font-face {font-family: 'syne'; font-style: normal;  src: url('/ttf/syne.woff2') format('woff2'); 
}

@font-face { font-family: 'yellowtail'; 
    src: url('/ttf/yellowtail.woff2') format('woff2'); 
}

@font-face { font-family: 'parkinsans'; 
    src: url('/ttf/parkinsans.woff2') format('woff2'); 
}


:root {
	--main-color: #814FC2;
	--main-color-40: rgba(129, 79, 194, 0.4);
	--main-color-light:#EAE1F5;
	--main-color-lighter:#F1E4B8;
	--main-color-ligter-light: #f5e6e6;
	--main-color-dark: #512072;
	--main-color-darker: #381649;
}


:root {
    --color-primary: #814FC2;
    --color-primary-light: #EAE1F5;
    --color-secondary: #F1E4B8;
    --color-secondary-dark: #856707;
    --color-text: #000000;
    --color-text-light: #595959;
    --color-background: #FFFFFF;
    --color-background-light: #F6F4F1;
    --color-background-accent: #EAE1F5;
    --color-new-arrival: #A3C9A8;
    --color-sale: #A3C9A8;
    --border-grey: rgb(168, 168, 168);
    --header-offset: 200px;


    --font-heading: 'Parkinsans', sans-serif;
    --font-body: 'Helvetica', 'Arial', sans-serif;
    /* Using common fallbacks */

    --container-width: 1280px;
    --spacing-s: 8px;
    --spacing-m: 16px;
    --spacing-l: 24px;
    --spacing-xl: 48px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    padding-top: 190px; /* Account for fixed header height */
    
}

#content .wrap {
    max-width: unset !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.2em;
}

h2 {
    font-size: 2.1rem;
}

h3 {
    font-size: 1.8rem;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hidden,
.d-none {
    display: none !important;
}

/* --- Utility & Button Styles --- */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    border-radius: 100px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    background-color: var(--color-secondary);
    color: var(--color-text);
    border: 2px solid var(--color-text);
}

.btn:hover {
    background-color: var(--color-text);
    color: var(--color-secondary);
}

.btn__outline {
    background-color: var(--color-primary);
    color: white;
    border: 1px solid var(--color-primary);
}

.btn__outline:hover {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}


.content_1280 {
    max-width: 1280px;
    margin: 0 auto;
}

/* --- Header --- */
.site_header {
    background-color: var(--color-background);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.site_header a {
    cursor: pointer;
}

.header_login_wrapper {
    position: relative;
    display: inline-block;
}

.header_logout_dropdown {
    position: absolute;
    top: 100%;
    left: -15%;
    margin-top: 8px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
}

.header_logout_dropdown ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.header_logout_dropdown li {
    padding: 8px 16px;
    cursor: pointer;
}

.header_logout_dropdown li:hover {
    background-color: #f5f5f5;
}

.header_logout_dropdown li i {
    margin-right: 8px;
}

.header_logout_dropdown li a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Show on hover for desktop */
@media (hover: hover) and (pointer: fine) {
    .header_login_wrapper:hover .header_logout_dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Show on click/touch for mobile */
.header_login_wrapper.active .header_logout_dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header_logout_dropdown li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: var(--spacing-s);
}

.header_banners {
    position: relative;
    height: 45px;
}

.header_banner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-background-accent);
    text-align: center;
    padding: var(--spacing-s);
    font-size: 0.9rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.4s ease;

}

.header_banner__hidden {
    opacity: 0;
}

.header_banner a {
    text-decoration: underline;
}

.header_main {
    display: grid;
    grid-template-columns: 1fr 5fr 1fr;
    align-items: center;
    padding: var(--spacing-m) var(--spacing-m) 0 var(--spacing-m);
    max-width: 90vw;
    margin: 0 auto;
}

.header_logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_logo_img {
    max-height: 72px; width: auto; padding: 5px 0;
}

.header_logo a {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 700;
}

.header_search {
    display: flex;
    align-items: center;
}

.header_search_wrap:hover,
.header_search_wrap:focus-within {
    border-bottom: 2px solid var(--color-text-light);
}

.header_search input:focus {
    outline: none;
}


.header_search input {
    border: none;
    padding: 5px;
    font-size: 1rem;
    background: transparent;
}

.header_search button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.header_search .icon {
    width: 20px;
    height: 20px;
}

.header_actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--spacing-m);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.header_login {
    display: flex;
    align-items: center;
    gap: var(--spacing-s);
}

.main_nav {
    display: flex;
    justify-content: center;
    /* border-bottom: 1px solid var(--color-background-light); */
    padding-bottom: var(--spacing-s);
}

.main_nav ul {
    display: flex;
    gap: var(--spacing-xl);
}

.main_nav a {
    display: block;
    padding: var(--spacing-s) 0;
    color: var(--color-text-light);
}

.main_nav a:hover {
    color: var(--color-primary);
}

/* --- Hero Section --- */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-xl);
    margin: 0 auto 0 auto;
    background-color: var(--color-background-accent);
    max-height: 697px;
    overflow: hidden;
}

.hero__content {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 540px;
    margin: 0 auto;
}

.hero__content h1 {
    margin-bottom: var(--spacing-m);
    text-align: center;
}

.hero__content p {
    margin-bottom: var(--spacing-l);
    text-align: center;
}

.hero__content .btn {
    flex-grow: 0;
    width: fit-content;
}

.hero__image {
    max-height: 697px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* --- Featured Products --- */
.featured_products {
    text-align: center;
    padding: var(--spacing-xl) 0;
    /* max-width: var(--container-width); */
    margin: 0 auto;
}

.featured_products h2 {
    margin-bottom: var(--spacing-xl);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.carousel_container {
    position: relative;
    max-width: min(86vw, 2000px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--spacing-m);
}

.carousel_arrow {
    position: absolute;
    top: calc(50% - 55px);
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background-color: var(--color-background);
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel_arrow:hover {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel_arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel_arrow_prev {
    left: -24px;
}

.carousel_arrow_next {
    right: -24px;
}

.product_carousel {
    display: flex;
    gap: var(--spacing-m);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    flex: 1;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.product_carousel:active {
    cursor: grabbing;
}

.product_carousel::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, and Opera */
}

.product_card {
    flex: 0 0 24%;
    max-width: 24%;
    text-align: left;
}

.product_image_wrapper {
    position: relative;
    background-color: var(--color-background-light);
    border-radius: 20px;
    margin-bottom: var(--spacing-m);
    overflow: hidden;
    cursor: pointer;

}

.product_image_wrapper .product_image,
.product_image_wrapper .product_image_alt {
    transition: opacity .3s ease-in-out;
}

.product_image_wrapper .product_image_alt {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product_image_wrapper:hover .product_image_alt {
    opacity: 1;
}

.product_image_wrapper:hover .product_image {
    opacity: 0;
}

.collection_image {
    opacity: 1 !important;
}

.product_image_wrapper img {
    object-fit: cover;
    object-position: 50% 50%;
    aspect-ratio: 1/1;

}

.product_badge {
    position: absolute;
    top: var(--spacing-m);
    left: var(--spacing-m);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.product_badge.new_arrival {
    background-color: var(--color-new-arrival);
}

.product_badge.sale {
    background-color: var(--color-sale);
}

.product_info h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
    font-family: var(--font-heading);
    text-align: center;
}

.product_info .sample_cart_prod_name {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0;
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: var(--spacing-s);
}

.collection_card_title {
    font-family: var(--font-heading);
    font-weight: 200;
}


.product_info p {
    font-size: 1rem;
    color: var(--color-text-light);
    text-align: center;
}

.original_price {
    text-decoration: line-through;
    margin-right: var(--spacing-s);
}

/* Product Page Price Wrapper */
.product_price_wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-s);
    margin-bottom: var(--spacing-l);
    margin-top: var(--spacing-s);
}

.product_regular_price {
    text-decoration: line-through;
    color: var(--color-text-light);
    font-size: 1.2rem;
}

.product_price_wrapper .product_price {
    margin: 0;
    font-size: 1.5rem;
    line-height: 22px;
    text-align: left;
    color: var(--color-text);
}

/* --- More About Products --- */
.more_about_products {
    text-align: center;
    padding: var(--spacing-xl);
}

.more_about_products h2 {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
}

.map_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: var(--container-width);
    margin: 0 auto;
}

.map_item {
    overflow: hidden;
}

.map_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.map_item img:hover {
    transform: scale(1.08);
}

.map_item_text_block {
    background-color: var(--color-background-accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
    min-height: 300px;
}

.map_item_text_block h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.map_item_text_block p {
    font-size: 1rem;
    color: var(--color-text-light);
    text-align: center;
    max-width: 400px;
}

.map_text_divider {
    width: 40px;
    height: 2px;
    background-color: var(--color-text);
    margin: var(--spacing-m) 0;
}

.map_item_text_block .btn {
    background-color: transparent;
    border: 1px solid var(--color-text);
}

.map_item_text_block .btn:hover {
    background-color: var(--color-text);
    color: var(--color-background);
}


/* --- Collections Grid --- */
.collections_grid {
    text-align: center;
    padding: var(--spacing-xl);
}

.collections_grid p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-m);

}

.collections_grid h2 {
    font-size: 50px;
    margin-bottom: var(--spacing-m);
}

.collections_grid .grid_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-m);
    margin: var(--spacing-xl) auto;
}

.collections_grid .grid_item {
    border: 1px solid var(--border-grey);
    cursor: pointer;
}

.collections_grid .grid_item img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
}

.collections_grid .grid_item span {
    display: block;
    padding: var(--spacing-m);
    font-size: 1rem;
    color: var(--color-text-light);
    text-align: left;
    font-weight: 300;
}

/* --- Info Section --- */
.info_section:first-child {
    margin-top: var(--spacing-xl);
}

.info_section:last-child {
    margin-bottom: var(--spacing-xl);
}

.info_section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin: auto;

}

.info_section__reverse {
    grid-template-columns: 1fr 1fr;
}

.info_section__reverse .info_section__image {
    order: 2;
}

.info_section__content_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info_section__content {
    max-width: 900px;

    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-height: 500px;
    overflow: hidden;
}

.info_section__content p {
    max-width: 530px;
}

.info_section__content h3 {
    margin-bottom: var(--spacing-m);
}

.info_section__image {
    max-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* --- Instagram Feed --- */
.instagram_feed {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.instagram_feed h2 {
    margin-bottom: var(--spacing-m);
    font-size: 24px;
    font-weight: 300;
    color: var(--color-text-light);
}

.insta_carousel_container {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--spacing-m);
}

.insta_carousel_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background-color: var(--color-background);
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.insta_carousel_arrow:hover {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.insta_carousel_arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.insta_carousel_arrow_prev {
    left: 24px;
}

.insta_carousel_arrow_next {
    right: 24px;
}

.insta_carousel {
    display: flex;
    gap: var(--spacing-m);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex: 1;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.insta_carousel:active {
    cursor: grabbing;
}

.insta_carousel::-webkit-scrollbar {
    display: none;
}

.insta_carousel img {
    aspect-ratio: 1/1;
    width: 185px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* .insta_carousel img:hover {
    transform: scale(1.05);
} */

.insta_gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5px;
}

/* --- Footer --- */
.site_footer {
    background-color: var(--color-secondary);
    padding: var(--spacing-xl);
}

.footer_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr;
    gap: var(--spacing-xl);
    max-width: var(--container-width);
    margin: 0 auto var(--spacing-xl);
}

.footer_column h4 {
    margin-bottom: var(--spacing-m);
}

.footer_column ul li {
    margin-bottom: var(--spacing-s);
    font-weight: 300;
    color: var(--color-text-light);
}

.footer_column a:hover {
    text-decoration: underline;
}

.footer_column p {
    font-weight: 300;
    color: var(--color-text-light);
}


.footer_logo_bottom {
    margin: 0 auto;
    max-height: 98px;
    width: auto;
    padding: 5px 0;

}

.social_links {
    display: flex;
    gap: 5px;
    margin-top: var(--spacing-m);
}

.social_links img {
    width: 24px;
    height: 24px;
}

.subscribe_form {
    display: flex;
    flex-direction: column;
}

.subscribe_form_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.subscribe_form .email_label {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-s);
}

.subscribe_form input[type="email"] {
    padding: 12px 16px;
    border: 2px solid var(--color-text);
    background: transparent;
    border-radius: 100px;
    font-size: 1rem;
    font-family: var(--font-body);
    margin-bottom: var(--spacing-m);
}

.subscribe_form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-primary);
}

.subscribe_form .checkbox_container {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-s);
}

.subscribe_form input[type="checkbox"] {
    margin: 0;
    margin-top: 2px;
    width: 16px;
    height: 16px;
    border: 2px solid var(--color-text);
    background: var(--color-secondary);
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    position: relative;
}

.subscribe_form input[type="checkbox"]:checked {
    background: var(--color-secondary);
    border-color: var(--color-text);
}

.subscribe_form input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid var(--color-text);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.subscribe_form .checkbox_label {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.4;
}

.subscribe_form .btn {
    background-color: var(--color-text);
    color: var(--color-secondary);
    border: none;
    border-radius: 100px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.subscribe_form .btn:hover {
    background-color: var(--color-primary);
    color: white;
}

.footer_bottom {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--spacing-xl);
}

.footer_logo_bottom {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
}

.footer_logo_bottom_subtitle {
    letter-spacing: -0.08em;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: 0.022px;
}

/* Cookie Notice */
.cookie_notice {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: var(--color-secondary);
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: var(--spacing-l);
    display: none; /* shown by JS when needed */
}

.cookie_notice_text {
    max-width: 980px;
    margin: 0 auto var(--spacing-m) auto;
    color: var(--color-text-light);
    font-size: 0.95rem;
    text-align: center;
}

.cookie_notice_actions {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-m);
    justify-content: center;
}

@media (max-width: 768px) {
    .cookie_notice {
        padding: var(--spacing-m);
    }
    .cookie_notice_text {
        text-align: left;
        font-size: 0.95rem;
    }
    .cookie_notice_actions {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie_notice_actions .btn {
        width: 100%;
    }
}

.copyright {
    margin-top: var(--spacing-l);
    font-size: 0.9rem;
}

.header_menu_toggle{
    display: none;
}

.mobile_nav_wrapper{
    display: none;
}


.waves_boreder_container {
    background-attachment: scroll;
    background-clip: border-box;
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    background-origin: padding-box;
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
    border-bottom-color: rgb(0, 0, 0);
    border-bottom-style: none;
    border-bottom-width: 0px;
    border-image-outset: 0;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;
    border-left-color: rgb(0, 0, 0);
    border-left-style: none;
    border-left-width: 0px;
    border-right-color: rgb(0, 0, 0);
    border-right-style: none;
    border-right-width: 0px;
    border-top-color: rgb(255, 255, 255);
    border-top-style: solid;
    border-top-width: 0px;
    color: rgb(0, 0, 0);
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    height: 32px;
    left: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    opacity: 1;
    outline-color: rgb(0, 0, 0);
    outline-style: none;
    outline-width: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    pointer-events: auto;
    position: absolute;
    top: 0px;
    transform: matrix(1, 0, 0, -1, 0, 0);
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

.waves_boreder_bottom {
    top: unset;
    bottom: 0;
    transform: matrix(1, 0, 0, 1, 0, 0);
}

.waves_boredr_top {
    background-attachment: scroll;
    background-clip: border-box;
    background-color: rgba(0, 0, 0, 0);
    background-image: url("data:image/svg+xml,%3Csvg%20id='comp-l81imb36-top'%20preserveAspectRatio='none'%20data-bbox='0%20125.7%201920%20173.8'%20viewBox='0%20125.7%201920%20173.8'%20height='100%25'%20width='100%25'%20xmlns='http://www.w3.org/2000/svg'%20data-type='shape'%3E%3Cdefs%3E%3Cstyle%3E%23comp-l81imb36-top%20%7B%20fill:%20%23FFFFFF;%20%7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Cpath%20d='M1920%20287.7c-480%200-480-162-960-162s-480%20162-960%20162v11.8h1920v-11.8z'/%3E%3C/g%3E%3C/svg%3E");
    background-origin: padding-box;
    background-position-x: 50%;
    background-position-y: 100%;
    background-repeat: repeat-x;
    background-size: 10% 100%;
    border-bottom-color: rgb(255, 255, 255);
    border-bottom-style: solid;
    border-bottom-width: 0px;
    border-image-outset: 0;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;
    border-left-color: rgb(255, 255, 255);
    border-left-style: none;
    border-left-width: 0px;
    border-right-color: rgb(255, 255, 255);
    border-right-style: none;
    border-right-width: 0px;
    border-top-color: rgb(255, 255, 255);
    border-top-style: none;
    border-top-width: 0px;
    bottom: 0px;
    color: rgb(0, 0, 0);
    display: block;
    filter: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    height: 32px;
    left: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    opacity: 1;
    outline-color: rgb(0, 0, 0);
    outline-style: none;
    outline-width: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    pointer-events: auto;
    position: absolute;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    top: 0.3px;
}

/* -------------------
Seasonal Sale Section
------------------- */
.seasonal_sale {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: flex-start;
    padding: 120px 24px;
    min-height: 640px;
    box-sizing: border-box;
    overflow: hidden;
    /* Important for containing the wave pseudo-elements */

    /* Background Image */
    background-image: url("/skin/lilaspot/images/ls_mon_cherie_sal_rl_1280.jpg");
    background-size: cover;
    background-position: center;
}

/* -------------------
Wave Dividers
------------------- */
.seasonal_sale::before,
.seasonal_sale::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 85px;
    /* Height of the wave */
    background-color: var(--background-color);

    /* Wave shape created using an SVG mask */
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3e%3cpath fill='%23000' d='M1440,100H0V34.9C240,58.2,480,58.2,720,34.9S1200,11.6,1440,0V100z'%3e%3c/path%3e%3c/svg%3e");
    mask-size: 100% 100%;
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3e%3cpath fill='%23000' d='M1440,100H0V34.9C240,58.2,480,58.2,720,34.9S1200,11.6,1440,0V100z'%3e%3c/path%3e%3c/svg%3e");
    -webkit-mask-size: 100% 100%;
}

/* Top wave (flipped vertically) */
.seasonal_sale::before {
    top: -1px;
    /* Prevents potential rendering gaps */
    transform: scaleY(-1);
}

/* Bottom wave */
.seasonal_sale::after {
    bottom: -1px;
    /* Prevents potential rendering gaps */
}

/* -------------------
Content Styling
------------------- */
.sale_content {
    position: relative;
    display: flex;
    flex-direction: column;
    /* Ensures content is above pseudo-elements */
    z-index: 1;
    justify-content: start;
    text-align: center;
    max-width: 500px;
    padding-left: 100px;
}

.sale_title {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 38px;
    text-align: left;
    color: white;
    font-weight: 700;
    margin: 0 0 24px 0;
    max-width: 430px;
}

.sale_button {
    flex: 0;
    flex-grow: 0;
    width: fit-content;
}


/* --- Responsive Styles --- */
@media (max-width: 768px) {
    body {
        padding-top: 109px;
 /* Increased padding for mobile due to stacked header elements */
    }

    .header_menu_toggle{
        display: flex;
        flex-direction: row;
        gap: var(--spacing-l);
        position: relative;
    }

    .header_menu_toggle .nav-icon {
        position: relative;
        top: 0;
        left: 0;
        width: 32px;
    }
    
    .header_menu_toggle .nav-icon:after,
    .header_menu_toggle .nav-icon:before,
    .header_menu_toggle .nav-icon div {
        background-color: var(--color-text);
        border-radius: 3px;
        content: '';
        display: block;
        height: 2px;
        margin: 6px 0 6px;
        transition: all .2s ease-in-out;
    }

    #head4.smallmenuopen  .header_menu_toggle .nav-icon:before {
        transform: translateY(8px) rotate(135deg);
    }
    
    #head4.smallmenuopen .header_menu_toggle .nav-icon:after {
        transform: translateY(-9px) rotate(-135deg);
    }
    
    #head4.smallmenuopen .header_menu_toggle .nav-icon div {
        transform: scale(0);
    }
    
    .mobile_nav_wrapper {
        display: block;
        position: absolute;
        top: 109px;
        left: 100%;
        transition: all 0.3s ease;
        opacity: 1;
        width: 100dvw;
        height: calc(100dvh - 109px);



    }

    .header_logo {
        justify-content: flex-start;
    }
    .header_logo_img {
        padding: 10px 0;
    }

    #head4.smallmenuopen .mobile_nav_wrapper{

        left: 0;

        background-color: #fff;
        z-index: 100;
        padding: var(--spacing-l);
    }

    .header_main {
        display: flex;
        justify-content: space-between;
    }

    .site_header .header_main {
        padding: 0;
    }

    .site_header .header_logo a {
        font-size: 40px;
    }

    .site_header .header_search,
    .site_header .header_login,
    .site_header .header_cart,
    .site_header .main_nav {
        display: none;
    }

    .site_header .mobile_nav_wrapper .header_search,
    .site_header .mobile_nav_wrapper .header_login,
    .site_header .mobile_nav_wrapper .header_cart,
    .site_header .mobile_nav_wrapper .main_nav {
        display: flex;
        flex-direction: column;
    }

    .mobile_menu_logout {
        margin-top: var(--spacing-l);
    }

    .mobile_menu_logout li {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: var(--spacing-s);
    }


    .header_actions {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: var(--spacing-xl);
    }

    .header_search {
        border-bottom: 2px solid var(--color-text-light);
        margin-bottom: var(--spacing-xl);

    }

    .header_search input {
        width: 100%;
    }

    .mobile_nav ul {
        flex-direction: column;
        width: 100%;
        justify-content: flex-start;
    }

    .main_nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-m);
    }

    .hero {
        grid-template-columns: 1fr;
        max-height: unset;
        margin-bottom: 0;
    }

    .hero__image {
        order: -1;
    }

    .hero__content {
        padding: 0 var(--spacing-l) var(--spacing-xl) var(--spacing-l);
    }

    .carousel_container {
        padding: 0 0;
    }

    .product_carousel {
        padding-left: var(--spacing-m);
        padding-right: var(--spacing-m);
    }

    .carousel_arrow {
        width: 40px;
        height: 40px;
    }

    .carousel_arrow_prev {
        left: 8px;
    }

    .carousel_arrow_next {
        right: 8px;
    }

    .product_card {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .waves_boredr_top, .waves_boreder_bottom {
        background-size: 17% 100%;
    }

    .seasonal_sale {
        padding: var(--spacing-xl) var(--spacing-l);
        min-height: 420px;
        background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('/skin/lilaspot/images/ls_mon_cherie_sal_rl_1280.jpg');

    }

    .sale_title {
        font-size: 34px;
    }

    .sale_content {
        padding-top: var(--spacing-l);
        padding-left: 0;
    }

    .collections_grid .grid_container {
        grid-template-columns: 1fr 1fr;
    }

    .collections_grid h2 {
        font-size: 2.5rem;
    }

    .info_section,
    .info_section__reverse {
        grid-template-columns: 1fr;
    }


    .info_section__reverse .info_section__image {
        order: 1;
    }

    .info_section .info_section__content_wrapper {
        order: 1;
    }

    .footer_grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer_logo_bottom {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .product_card {
        flex: 0 0 80%;
        max-width: 80%;
    }

    .collections_grid .grid_container {
        grid-template-columns: 1fr;
    }

    .map_grid #map_item_1 {
        grid-row-start: 1;
        grid-row-end: 1;
    }

    .map_grid #map_item_2 {
        grid-row-start: 2;
        grid-row-end: 2;
    }

    .map_grid #map_item_3 {
        grid-row-start: 4;
        grid-row-end: 4;
    }

    .map_grid #map_item_4 {
        grid-row-start: 3;
        grid-row-end: 3;
    }

    .map_grid {
        grid-template-columns: 1fr;
    }

    .footer_grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer_column__subscribe,
    .footer_column__contact {
        grid-column: span 2;
    }
}




/* -------------------
Collections Page
------------------- */
.collection_page {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-l);
}

.collection_header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.collection_header h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-s);
}

.collection_subtitle {
    color: var(--color-text-light);
    font-size: 1rem;
}

.product_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-m);
    max-width: 1080px;
    margin: 0 auto;
}

/* Override carousel-specific sizing when cards are in a grid */
.product_grid .product_card {
    flex: initial;
    max-width: initial;
}

/* Ensure images keep the same look */
.product_grid .product_image_wrapper img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .product_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product_grid {
        grid-template-columns: 1fr;
    }
}





.cart_container_background {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 1000;
	width: 100%;
	height: 100dvh;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
}

.cart_container_background.open {
	display: block;
}

.cart_container {
	position: fixed;
	bottom: 0;
	right: -400px;
	z-index: 11;
	width: 400px;
	height: 100dvh;

    display: flex;
    flex-direction: column;

	background-color: white;
	border: 1px solid lightgray;
	/* border-radius: 10px; */
	z-index: 1000;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	/* display: none; */
	transition: right 0.3s ease-in-out;
}

.cart_container.open {
	right: 0;
}

.cart_container_header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
}




.cart_container iframe {
	width: 100%;
    flex: 1;
}


.hold {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background:rgba(255,255,255,0.5) url('/images/ajaxload_rot.gif') no-repeat center;
	z-index: 10000;
}

.uiviewclose {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 26px;
    height: 25px;
    z-index: 10001;
    border-radius: 50%;
    background-color: gray;
    opacity: 0;
    cursor: pointer;
}

/* --- Slick Carousel Arrow Styles --- */
.carousel_container .slick-arrow {
    position: absolute;
    top: calc(50% - 55px);
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background-color: var(--color-background);
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--color-text);
}

.carousel_container .slick-prev.slick-arrow:before {
    content: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15 18L9 12L15 6" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.carousel_container .slick-next.slick-arrow:before {
    content: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 18L15 12L9 6" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></svg>');
}

.carousel_container .slick-arrow:hover {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel_container .slick-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel_container .slick-prev {
    left: -24px;
}

.carousel_container .slick-next {
    right: -24px;
}

.carousel_container .slick-arrow svg {
    width: 24px;
    height: 24px;
}

.carousel_container.uzorci_display_slick .product_card {
    flex: 1;
    max-width: 90%;
    text-align: left;
}

/* Mobile responsive styles for slick arrows */
@media (max-width: 768px) {
    .carousel_container .slick-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel_container .slick-prev {
        left: 8px;
    }
    
    .carousel_container .slick-next {
        right: 8px;
    }
    
    .carousel_container .slick-arrow svg {
        width: 20px;
        height: 20px;
    }
}

.carousel_container .slick-track{ margin-left: 0; }

/* .product_image_wrapper img {
    object-fit: contain;
} */






.ui-dialog .ui-state-error {
	padding: .3em;
	background: none !important;
	background-color: rgba(255,0,0,0.3) !important;
}
.ui-dialog-title br, .ui-dialog-title br:after {
	content: ' ';
	float: right;
}
.ui-dialog-titlebar-close {

}
.ui-widget-overlay {
	background: black;
}
.ui-state-error {
	background: #ff674f !important;
	color: white !important;
}
.ui-dialog {
	padding: 0;
}
.ui-dialog-titlebar {
	-moz-border-radius-bottomright: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-right-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}
.validateTips {

}

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

.ui-button .ui-button-text {
	line-height: 1;
}

.ui-dialog .ui-dialog-buttonpane {
	padding: .0em .5em .3em .4em;
	border: none;
	margin: 0;
}

.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.ui-combobox {
    position: relative;
    display: inline-block;
}
.ui-combobox-toggle {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -3px;
    padding: 0;
    border: 1px solid #DDD;
    border-left: none;
}
.ui-combobox-input {
    margin: 0;
    padding: 0.3em;
}

.ui-input-error {
	background-color: red;
	background-image: none;
}

.ui-widget-header {
	background: var(--main-color);
    border: 1px solid var(--color-primary);
}

.ui-dialog .ui-dialog-buttonpane {
	background: white;
}

.ui-dialog .ui-dialog-buttonpane button {
	margin: 0 .4em .5em 0;
	background: var(--main-color);
	color: white;
	border: none;
	font-size: 16px;
	padding: 3px 6px 1px;
}


.ui-dialog .ui-dialog-titlebar {
    padding: 3px;
    font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
    font-size: 1rem;
}

.ui-dialog.ui-widget-content {
    border: none;
    background: white;
}

.ui-button-text-only .ui-button-text {
    padding: 3px 10px 3px 4px;
}

.topbutton {
    all: unset;
	cursor: pointer;
	border-radius: 6px;
	border: none;
	padding: 10px 15px;
	font-size: 18px;
	color: #fff;
	font-weight: 700;
	background-image: unset;
	background-color: var(--main-color);
	box-sizing: border-box;
}


/* my products */

.mygroup {
	font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
	border-bottom: 1px solid var(--main-color);
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.mygroupcont {
	font-weight: 400;
	font-size: 20px;
	padding: 5px 2.5%;
}

.mygroup:hover .mygroupcont {
	color: lightgray;
}

.mygroupcont .openclose {
	margin-right: 10px;
	font-size: 0.75em;
	line-height: 1.5;
	font-family: FontAwesome;
}

.mygroupcont .openclose:after {
	content: "\f054";
}

.mygroupopen .mygroupcont .openclose:after {
	content: "\f078";
}


/* Scoped styles for cart icon and badge within this header */
#head4 .header_cart,
#head4 .mobile_header_cart {
    position: relative;
}

#head4 .cart_icon i {
    font-size: 24px;
    display: block;
    color: var(--color-text);
}

#head4 .cart_badge {
    position: absolute;
    top: -6px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    padding: 0 ;
    font-size: 14px;
    padding-bottom: 3px;
    border-radius: 999px;
    background: var(--color-primary, #000);
    color: #fff;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}

/* Hide badge when count is 0 or empty */
#head4 .header_cart[data-count="0"] .cart_badge,
#head4 .mobile_header_cart[data-count="0"] .cart_badge,
#head4 .header_cart[data-count=""] .cart_badge,
#head4 .mobile_header_cart[data-count=""] .cart_badge {
    display: none;
}

#content .wrap.faq_wrap {
    max-width: 1200px !important; margin: 0 auto; padding: 0 20px;
}

.order_success_container {
    text-align: left; 
    font-size: 16px;
    padding: 0 2.5%;
    color: #444;
    max-width: 900px;
    margin: 0 auto;

}

.order_success_container h2 {
    font-size: 2.1rem;
    color: black;
    margin-bottom: var(--spacing-l);
}

.order_success_container p {
    margin-bottom: var(--spacing-m);
}

.order_success_container a,
.gridmodulonamatxt a {
    color: var(--main-color);
    text-decoration: underline;
}

/* -------------------
Trust Section (delivery_info)
------------------- */
.trust_section {
    padding: var(--spacing-xl) var(--spacing-l);
}

.trust_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: var(--container-width);
    margin: 0 auto;
}

.trust_card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.trust_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
    border-color: rgba(129, 79, 194, 0.25);
}

.trust_icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    background: rgba(129, 79, 194, 0.08);
    margin-bottom: 16px;
}

.trust_title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.trust_text {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 14px;
}

.trust_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    text-decoration: underline;
}

.trust_payments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    align-items: center;
    margin: 12px 0 18px 0;
}

.trust_payment_logo {
    max-height: 28px;
    width: auto;
    justify-self: center;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.05));
}

.trust_note {
    margin-top: 6px;
    color: var(--color-text-light);
    font-size: .95rem;
}

@media (max-width: 1024px) {
    .trust_grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-l);
    }
}

@media (max-width: 600px) {
    .trust_grid {
        grid-template-columns: 1fr;
    }
    .trust_card {
        padding: 22px;
    }
    .trust_payment_logo {
        max-height: 24px;
    }
}

@media screen and (max-width: 800px) {
    .procjena_isporuke_table.delivery_info_table {
        display: block;
    }

    .procjena_isporuke_table.delivery_info_table tr td,
    .procjena_isporuke_table.delivery_info_table tr th {
        width: 28dvw;
    }

    .procjena_isporuke_table.delivery_info_table tr td:first-child,
    .procjena_isporuke_table.delivery_info_table tr th:first-child {
        width: 44dvw;
        padding-left: 20px;
    }

    .procjena_isporuke_table.delivery_info_table tr td:last-child,
    .procjena_isporuke_table.delivery_info_table tr th:last-child {

        padding-right: 0px;
    }
}