:root {
--primary-color: #1a1a1a;
--secondary-color: #f8f9fa;
--accent-color: #cdb570;
--text-dark: #212529;
--text-light: #6c757d;
--color-cream: #f5f0e8;
--color-dark: #1a1a1a;
--color-gold: #c9a962;
--color-sage: #8a9a7c;
--color-hero-blue: #a8ccd9;
--color-peach: #e8d5c4;
--color-light-gray: #f8f8f8;
--color-border: #e5e5e5;
--color-text-muted: #888;
--font-display: "Playfair Display", Georgia, serif;
--font-body: "Circular Std";
--font-sans: "Circular Std";
--site-margin: 16px;
--swiper-navigation-sides-offset: 10px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: var(--font-body);
color: var(--color-dark);
background: #fff;
overflow-x: hidden;
}

.site-wrapper {
background: #fff;
padding: 0 var(--site-margin);
}

/* Header - Not Fixed */
.site-header {
position: relative;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background: #fff;
padding: 0.875rem 1.25rem;
border-bottom: 1px solid var(--color-border);
}

.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 100%;
margin: 0 auto;
}

.header-left {
display: flex;
align-items: center;
gap: 1.25rem;
}

.menu-toggle {
background: none;
border: none;
font-size: 1.35rem;
cursor: pointer;
color: var(--color-dark);
padding: 0;
display: flex;
align-items: center;
outline: none;
}

.menu-toggle:focus,
.menu-toggle:focus-visible {
outline: none;
box-shadow: none;
}

.search-bar {
display: flex;
align-items: center;
gap: 0.4rem;
color: #000;
font-family: var(--font-sans);
font-size: 0.85rem;
font-weight: 300;
outline: none;
box-shadow: none;
border: none;
background: transparent;
}

.search-bar i {
font-size: 0.9rem;
}

.logo {
font-family: var(--font-display);
font-size: 1.5rem;
font-weight: 600;
letter-spacing: 0.2em;
text-decoration: none;
color: var(--color-dark);
}
.logo img {
height: 50px;
}
.header-right {
display: flex;
align-items: center;
gap: 1rem;
}

.header-icon {
background: none;
border: none;
font-size: 1.15rem;
cursor: pointer;
color: var(--color-dark);
text-decoration: none;
position: relative;
}

/* Hero Section - No top margin needed since header is not fixed */
.hero-section {
background: linear-gradient(188deg, #a6c2d1 0%, #a5c0cd 40%, #8dabbb 100%);
position: relative;
overflow: hidden;
}

.hero-grid {
/* display: grid;
grid-template-columns: 1fr 1fr; */
min-height: 80vh;
position: relative;
}

.hero-content {
padding: 10px;
display: flex;
flex-direction: column;
justify-content: center;
position: absolute;
top: 50%;
left: 2%;
color: #ffffff;
align-items: center;
width: 700px;
/* text-shadow: 0 0 20px #000000; */
transform: translate(0%, -50%);
}

.hero-title {
font-family: var(--font-display);
font-size: 3.32px;
font-weight: 500;
line-height: 1.05;
margin-bottom: 10px;
letter-spacing: -0.01em;
text-align: center;
color: #ffffff;
}
h2.hero-title {
font-size: 32px;
white-space: nowrap;
}
.hero-subtitle {
font-family: var(--font-display);
font-size: 29.75px;
white-space: nowrap;
}
.hero-subtitle2 {
font-size: 18px;
margin-top: 0.25rem;
white-space: nowrap;
font-weight: 300;
}
.hero-btn-sec {
display: flex;
gap: 10px;
}
.hero-btn {
display: inline-block;
background: transparent;
border: 1px solid #ffffff;
border-radius: 99px;
font-family: var(--font-sans);
font-size: 0.8rem;
letter-spacing: 0.12em;
text-transform: uppercase;
cursor: pointer;
text-decoration: none;
padding: 0.75rem 32px;
width: fit-content;
font-weight: 400;
transition: all 0.3s ease;
color: #ffffff;
margin-top: 12px;
white-space: nowrap;
}
.hero-btn:first-child {
background: #ffffff;
color: #000;
}
.hero-btn:hover {
background: #ffffff;
color: #000;
}
.hero-strip {
font-size: 14px;
white-space: nowrap;
margin-top: 8px;
}
.hero-image-container {
/* position: relative;
display: flex;
align-items: flex-end;
justify-content: flex-end;
overflow: visible; */
height: 80vh;
}

.hero-model {
width: 100%;
height: 100%;
min-height: 480px;
object-fit: cover;
/* object-position: top center; */
}

/* Tagline Section */
.tagline-section {
padding: 3.5rem 1.5rem;
text-align: center;
background: #fff;
}

.tagline {
font-family: var(--font-display);
font-size: 36px;
font-weight: 400;
line-height: 1.05;
/* max-width: 650px; */
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 0.35rem;
text-transform: capitalize;
}
.tagline-emoji {
font-size: 1.5rem;
margin: 0 0.15rem;
}
.tagline-body {
margin-top: 32px;
max-width: 900px;
font-weight: 300;
margin-left: auto;
margin-right: auto;
}
.tagline-body p {
font-size: 16px;
}
/* Categories Section */
.categories-section {
padding: 0 0 1.5rem;
}

.categories-section .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}

.categories-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 8px;
}

.category-card {
background: transparent;
padding: 1.75rem 1.5rem 32px;
text-align: center;
}

.category-image-wrapper {
width: 100%;
aspect-ratio: 3/4;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.25rem;
}

.category-image {
width: 100%;
height: 100%;
object-fit: cover;
}

.category-title {
font-family: var(--font-display);
font-size: 1.25rem;
font-weight: 500;
margin-bottom: 0.5rem;
letter-spacing: 0.01em;
}

.category-desc {
font-family: var(--font-body);
font-size: 16px;
font-weight: 300;
color: #4a4a4a;
margin-bottom: 1.25rem;
line-height: 1.5;
}

.category-btn {
display: inline-block;
font-family: var(--font-sans);
font-size: 0.8rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--color-dark);
text-decoration: none;
padding: 0.75rem 1.75rem;
border: 1px solid var(--color-dark);
border-radius: 99px;
transition: all 0.3s ease;
font-weight: 400;
background: none;
}

.category-btn:hover {
background: var(--color-dark);
color: #fff;
}

/* Body Perfume Banner */
.body-perfume-section {
position: relative;
height: 80vh;
min-height: 600px;
overflow: hidden;
margin-top: 1rem;
background-color: #000;
}
#player {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
opacity: 0;
transition: opacity 0.8s ease-in-out;
pointer-events: none;
}
.body-perfume-bg {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 40%;
transition: opacity 0.5s ease;
}

.body-perfume-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
to bottom,
transparent 40%,
rgba(0, 0, 0, 0.35) 100%
);
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
padding-bottom: 3.5rem;
text-align: center;
}

.body-perfume-title {
font-family: var(--font-display);
font-size: 3.32px;
font-weight: 400;
color: #fff;
margin-bottom: 0.35rem;
letter-spacing: -0.01em;
}

.body-perfume-desc {
font-family: var(--font-body);
font-size: 0.95rem;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 1.25rem;
font-weight: 300;
}

.body-perfume-btn {
display: inline-block;
background: none;
font-family: var(--font-sans);
font-size: 0.85rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #fff;
text-decoration: none;
padding: 0.75rem 1.75rem;
border: 1px solid #fff;
border-radius: 99px;
transition: all 0.3s ease;
font-weight: 400;
}

.body-perfume-btn:hover {
background: #fff;
color: var(--color-dark);
}

.video-play-btn {
position: absolute;
right: 1.25rem;
bottom: 1.25rem;
width: 44px;
height: 44px;
background: rgba(255, 255, 255, 0.25);
backdrop-filter: blur(4px);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 1.25rem;
cursor: pointer;
border: none;
transition: all 0.3s ease;
}

.video-play-btn:hover {
background: rgba(255, 255, 255, 0.4);
}

.video-play-btn i {
margin-left: 2px;
}
.body-perfume-overlay, .video-play-btn {
z-index: 2;
}
.video-playing .body-perfume-bg,
.video-playing .video-play-btn,
.video-playing .body-perfume-overlay {
opacity: 0;
transition: opacity 0.5s ease;
pointer-events: none;
}
.video-playing #player {
display: block;
opacity: 1;
pointer-events: auto;
}
/* Popular Perfumes */
.popular-section {
padding: 0 0 3rem;
background: #fff;
}

.section-header {
text-align: center;
margin-bottom: 1.75rem;
}
.filter-tabs {
display: flex;
justify-content: center;
gap: 1.75rem;
margin-bottom: 32px;
flex-wrap: wrap;
}

.filter-tab {
font-family: var(--font-sans);
font-size: 0.85rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #666;
background: none;
border: none;
cursor: pointer;
padding: 0.35rem 0;
border-bottom: 1.5px solid transparent;
transition: all 0.3s ease;
font-weight: 400;
}

.filter-tab.active,
.filter-tab:hover {
color: var(--color-dark);
border-bottom-color: var(--color-dark);
}

.products-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0.75rem;
}

.product-card {
text-align: center;
z-index: 1;
position: relative;
}
.product-card__image-link,
.product-card__content-link {
color: inherit;
text-decoration: none;
display: block;
}
.product-card__image-link:hover,
.product-card__content-link:hover,
.product-card__image-link:focus,
.product-card__content-link:focus {
color: inherit;
text-decoration: none;
}

.product-card__badges {
position: absolute;
top: 12px;
left: 12px;
z-index: 3;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 4px;
pointer-events: none;
}
.product-card__badge {
display: inline-block;
font-size: 12px;
color: #000;
background-color: #f5f0e8;
text-align: center;
padding: 4px 8px;
text-transform: capitalize;
border-radius: 99px;
font-weight: 300;
letter-spacing: 0.5px;
line-height: 1.4;
white-space: nowrap;
}
.product-card__badge--accent {
background: #d4a24b;
color: #1a1a1a;
}

.product-card__discount-badge {
display: inline-block;
background: #1a1a1a;
color: #fff;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
padding: 6px 10px;
border-radius: 99px;
line-height: 1.2;
white-space: nowrap;
}

.product-card__quick-view {
position: absolute;
top: 12px;
right: 12px;
z-index: 3;
width: 38px;
height: 38px;
border-radius: 50%;
border: 1px solid var(--color-border, #e5e5e5);
background: #fff;
color: var(--color-dark);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
opacity: 0;
transform: translateY(-4px);
transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease;
padding: 0;
font-size: 1rem;
}

.product-card:hover .product-card__quick-view,
.product-card__quick-view:focus-visible {
opacity: 1;
transform: translateY(0);
}

.product-card__quick-view:hover {
background: var(--color-dark);
color: #fff;
border-color: var(--color-dark);
}

@media (hover: none) {
.product-card__quick-view {
opacity: 1;
transform: none;
}
}

.product-image-wrapper {
background: transparent;
padding: 0;
margin-bottom: 0.85rem;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}

.product-image {
width: 100%;
height: auto;
object-fit: contain;
/* background: var(--color-cream); */
border-radius: 20px;
border: 1px solid #efefef;
border-radius: 20px;
padding: 45px;
}

.product-name {
font-family: var(--font-display);
font-size: 1.25rem;
font-weight: 500;
margin-bottom: 0.32px;
}

.product-inspired, .product-sku {
font-family: var(--font-sans);
font-size: 12px;
font-weight: 300;
text-transform: uppercase;
color: #888;
margin-bottom: 6px;
letter-spacing: 0.6px;
}
.product-sku {
font-size: 0.9rem;
}
.product-price {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #000000;
    font-weight: 500;
    width: max-content;
    border-radius: 5px;
}

.pagination-dots {
display: flex;
justify-content: center;
align-items: center;
gap: 0.75rem;
margin-top: 1.75rem;
}

.pagination-arrow {
background: none;
border: none;
color: #bbb;
cursor: pointer;
font-size: 0.85rem;
padding: 0;
}

.pagination-text {
font-family: var(--font-sans);
font-size: 0.75rem;
color: #888;
}

/* Featured Articles */
.articles-section {
padding: 3.5rem 0 4rem;
background: transparent;
}

.articles-section .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}

.articles-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
position: relative;
}

.article-card {
position: relative;
text-align: center;
}

.article-image-wrapper {
width: 100%;
aspect-ratio: 1;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
background: transparent;
}

.article-image {
width: 100%;
height: 100%;
object-fit: cover;
}

.article-content {
padding: 1.5rem 0;
text-align: center;
}

.article-title {
font-family: var(--font-display);
font-size: 1.25rem;
font-weight: 500;
margin-bottom: 0.75rem;
}

.article-link {
display: inline-block;
font-family: var(--font-sans);
font-size: 0.8rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--color-dark);
text-decoration: none;
padding: 0.75rem 1.75rem;
border: 1px solid var(--color-dark);
border-radius: 99px;
transition: all 0.3s ease;
font-weight: 400;
background: none;
}

.article-link:hover {
background: var(--color-dark);
color: #fff;
}

.article-nav {
position: absolute;
top: calc(50% - 80px);
width: 32px;
height: 32px;
background: #fff;
border: none;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
z-index: 10;
font-size: 0.75rem;
color: var(--color-dark);
}

.article-nav.prev {
left: -16px;
}

.article-nav.next {
right: -16px;
}

/* Footer Section */
.footer-section {
padding: 3.5rem 0;
background: var(--color-cream);
}

.footer-link {
font-family: var(--font-body);
font-size: 0.95rem;
font-weight: 300;
color: var(--color-dark);
text-decoration: none;
line-height: 1.8;
}

.footer-link:hover {
}

.footer-address {
font-family: var(--font-body);
font-size: 0.95rem;
font-weight: 300;
color: var(--color-dark);
line-height: 1.5;
margin-bottom: 1.5rem;
}

.footer-address:last-of-type {
margin-bottom: 0;
}

.social-links {
display: flex;
gap: 1.25rem;
margin-top: 0.25rem;
}

.social-links a {
color: var(--color-dark);
font-size: 1.25rem;
transition: color 0.3s ease;
}

.social-links a:hover {
color: var(--color-gold);
}

/* Footer Logo */
.site-footer {
padding: 32px 0 32px;
background: var(--color-cream);
text-align: center;
position: relative;
}

.footer-logo {
font-family: var(--font-display);
font-size: 8.5rem;
font-weight: 500;
letter-spacing: 0.05em;
color: var(--color-dark);
line-height: 1;
}
.footer-logo img {
max-width: 940px;
padding: 0 70px;
}
.footer-copyright {
position: absolute;
right: 32px;
bottom: 7.5rem;
font-family: var(--font-sans);
font-size: 0.7rem;
color: #888;
writing-mode: vertical-rl;
text-orientation: mixed;
margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
.hero-grid {
grid-template-columns: 1fr;
}

.hero-title {
font-size: 28px;
}
/* h2.hero-title {
font-size: 26px;
} */

.products-grid {
grid-template-columns: repeat(2, 1fr);
}

.newsletter-inner {
grid-template-columns: 1fr;
text-align: center;
}

.footer-links-grid {
justify-content: center;
}
}
@media (max-width: 850px) {
.hero-content {
right: 50%;
transform: translate(50%, -50%);
width: auto;
}
}
@media (max-width: 767px) {
:root {
--site-margin: 20px;
}

.site-header {
padding: 0.875rem 0;
margin: 0 20px;
}

.site-wrapper {
padding: 0 20px;
}

.hero-section {
margin-left: -20px;
margin-right: -20px;
width: calc(100% + 40px);
}

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

.hero-image-container,.hero-grid,.hero-model,.body-perfume-section {
min-height: 50vh;
height: 50vh;
}

.body-perfume-section {
margin-left: -20px;
margin-right: -20px;
width: calc(100% + 40px);
}

.footer-section {
margin-left: -20px;
margin-right: -20px;
width: calc(100% + 40px);
padding: 32px 20px;
}

.categories-grid {
grid-template-columns: 1fr;
}
h2.hero-title {
font-size: 22px;
}
.hero-subtitle {
font-size: 16.35px;
}
.hero-subtitle2 {
font-size: 16px;
white-space: normal;
font-weight: 400;
text-align: center;
}
.category-card {
padding: 1.25rem 0 1.5rem;
}

.categories-section .container {
padding: 0;
}

.articles-section .container {
padding: 0;
}

.popular-section {
padding: 0 0 32px;
}

/* Filter Tabs - Compact on Mobile - Two rows */
.filter-tabs {
display: grid;
grid-template-columns: repeat(4, auto);
justify-content: center;
gap: 0.25rem 1.5rem;
padding: 0 1rem;
margin-bottom: 1.5rem;
}

.filter-tab {
font-size: 0.85rem;
padding: 0.35rem 0;
white-space: nowrap;
}

/* Products Slider for Mobile */
.products-grid {
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
gap: 1rem;
padding-bottom: 1rem;
margin: 0 -20px;
padding-left: 20px;
padding-right: 20px;
}

.products-grid::-webkit-scrollbar {
display: none;
}

.products-grid {
-ms-overflow-style: none;
scrollbar-width: none;
}

.product-card {
flex: 0 0 70%;
scroll-snap-align: start;
}

/* Articles Slider for Mobile */
.articles-grid {
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
gap: 1rem;
padding-bottom: 1rem;
margin: 0 -20px;
padding-left: 20px;
padding-right: 20px;
}

.articles-grid::-webkit-scrollbar {
display: none;
}

.articles-grid {
-ms-overflow-style: none;
scrollbar-width: none;
}

.article-card {
flex: 0 0 85%;
scroll-snap-align: start;
}

.article-nav {
display: none;
}

/* Footer Copyright - Hide on mobile */
.site-footer {
margin-left: -20px;
margin-right: -20px;
width: calc(100% + 40px);
padding: 1rem 20px 1.5rem;
}

.footer-logo {
font-size: 2.5rem;
}
.footer-logo img {
padding: 0 10px;
}

.footer-copyright {
display: none;
}

.social-links {
margin-top: 0.5rem;
}

}
.hero-image-container .hero-mobile {
display: none;
}
@media (max-width: 480px) {
.hero-btn-sec {
flex-direction: column;
gap: 0;
align-items: center;
}
}
@media (max-width: 425px) {
.hero-btn-sec {
gap: 10px;
}
h2.hero-title {
font-size: 20px;
white-space: normal;
}
.hero-subtitle {
font-size: 15.35px;
}
.hero-subtitle2 {
font-size: 15px;
}
.hero-image-container .hero-model {
display: none;
}
.hero-image-container .hero-mobile {
display: block;
width: 100%;
height: 100%;
min-height: 480px;
object-fit: cover;
}
.hero-image-container,.hero-grid {
min-height: unset;
height: unset;
}
.hero-content {
top: 16px;
width: 100%;
bottom: unset;
left: unset;
right: unset;
align-items: center;
transform: unset;
}
.hero-btn {
margin-top: 0;
}
.logo img {
    height: 40px;
}
}
/* Placeholder backgrounds for demo */
.placeholder-lifestyle-bg {
background: linear-gradient(
165deg,
#d8e4c8 0%,
#b8cda0 30%,
#a0b888 60%,
#88a870 100%
);
}

.article-bg-1 {
background: linear-gradient(145deg, #f5e8dc 0%, #e8d5c4 100%);
}

.article-bg-2 {
background: linear-gradient(145deg, #eee8e0 0%, #e0d8d0 100%);
}
/* Main Layout */
.checkout-container {
display: grid;
grid-template-columns: 1fr 1fr;
min-height: calc(100vh - 60px);
max-width: 1200px;
margin: 0 auto;
}

/* Left Column */
.checkout-left {
padding: 2.5rem 3rem 3rem 0;
}

/* Right Column */
.checkout-right {
background: #fff;
padding: 2.5rem 0 3rem 3rem;
border-left: 1px solid var(--color-border);
}

.checkout-right-inner {
max-width: 100%;
position: sticky;
top: 4rem;
height: max-content;
}

/* Section Titles */
.section-title {
font-family: var(--font-display);
font-size: 32px;
font-weight: 300;
margin-bottom: 1rem;
}

.section-subtitle {
font-size: 16px;
line-height: 1.5;
color: #4a4a4a;
max-width: 720px;
margin: 0 auto;
font-weight: 300;
}

/* Contact Section */
.contact-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}

.sign-in-link {
font-size: 16px;
color: var(--color-gold);
text-decoration: none;
font-weight: 300;
}

.sign-in-link:hover {
text-decoration: underline;
}

/* Form Styles */
.form-group {
margin-bottom: 1rem;
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}

.form-control {
width: 100%;
padding: 12px 20px;
border: 1px solid var(--color-border);
border-radius: 99px;
font-family: var(--font-body);
font-size: 16px;
font-weight: 300;
color: var(--color-dark);
background-color: #fff;
transition: border-color 0.2s ease;
line-height: normal;
}

.form-control:focus,
.form-select:focus {
outline: none;
border-color: var(--color-dark);
box-shadow: none;
}

.form-control::placeholder {
color: var(--color-text-muted);
}

.form-select-wrapper {
position: relative;
}

.form-select {
width: 100%;
padding: 12px 20px;
padding-right: 32px;
border: 1px solid var(--color-border);
border-radius: 99px;
font-family: var(--font-body);
font-size: 16px;
font-weight: 300;
color: var(--color-dark);
background-color: #fff;
appearance: none;
cursor: pointer;
line-height: normal;
}

.form-select:focus {
outline: none;
border-color: var(--color-dark);
}

.select-label {
position: absolute;
top: 0.5rem;
left: 1.25rem;
font-size: 0.7rem;
color: var(--color-text-muted);
text-transform: uppercase;
letter-spacing: 0.05em;
pointer-events: none;
}

.select-arrow {
position: absolute;
right: 1.25rem;
top: 50%;
transform: translateY(-50%);
pointer-events: none;
color: var(--color-text-muted);
font-size: 1.25rem;
}

.input-with-icon {
position: relative;
}

.input-with-icon .form-control {
padding-right: 3rem;
}

.input-icon {
position: absolute;
right: 1.25rem;
top: 50%;
transform: translateY(-50%);
color: var(--color-text-muted);
font-size: 1.25rem;
}

/* Checkbox Styles */
.checkbox-group {
display: flex;
align-items: center;
gap: 0.75rem;
margin: 1rem 0;
}

.checkbox-group input[type="checkbox"] {
width: 18px;
height: 18px;
accent-color: var(--color-dark);
cursor: pointer;
}

.checkbox-group label {
font-size: 0.9rem;
font-weight: 300;
cursor: pointer;
}

/* Shipping Method */
.shipping-section {
margin-top: 32px;
}

.shipping-price {
font-size: 16px;
font-weight: 500;
}

/* Payment Section */
.payment-section {
margin-top: 2.5rem;
}

.payment-options {
border: 1px solid var(--color-border);
border-radius: 16px;
overflow: hidden;
}

.payment-option {
border-bottom: 1px solid var(--color-border);
cursor: pointer;
overflow: hidden;
}

.payment-option:last-child {
border-bottom: none;
}

.payment-option-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 1.25rem;
}

.payment-option.selected .payment-option-header {
background: rgba(26, 26, 26, 0.02);
}

.payment-option-left {
display: flex;
align-items: center;
gap: 0.75rem;
}

.payment-option input[type="radio"] {
width: 18px;
height: 18px;
accent-color: var(--color-dark);
}

.payment-option label {
font-size: 0.9rem;
font-weight: 400;
cursor: pointer;
}

.payment-icons {
display: flex;
gap: 0.5rem;
align-items: center;
}

.payment-icon {
font-size: 1.5rem;
color: var(--color-dark);
}

.payment-details {
padding: 0 1.25rem 1.5rem;
text-align: center;
background: rgba(26, 26, 26, 0.02);
display: none;
}

.payment-option.selected .payment-details {
display: block;
}

.payment-redirect-icon {
width: 80px;
height: 60px;
margin: 0 auto 1rem;
display: flex;
align-items: center;
justify-content: center;
border: 2px dashed var(--color-border);
border-radius: 8px;
color: var(--color-text-muted);
}

.payment-redirect-icon .material-icons-outlined {
font-size: 1.75rem;
}

.payment-details p {
font-size: 0.85rem;
color: var(--color-text-muted);
font-weight: 300;
line-height: 1.6;
}

/* Billing Address */
.billing-section {
margin-top: 2.5rem;
}

.billing-options {
border: 1px solid var(--color-border);
border-radius: 16px;
overflow: hidden;
}
.billing-option-wrapper,.shipping-option-wrapper {
padding: 1rem 1.25rem;
border-bottom: 1px solid var(--color-border);
}
.shipping-option-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
}
.billing-option-wrapper:last-child,.shipping-option-wrapper:last-child {
border-bottom: none;
}

.billing-option-wrapper.selected,.shipping-option-wrapper.selected {
background: rgba(26, 26, 26, 0.02);
}

.billing-option, .shipping-option {
display: flex;
align-items: center;
gap: 0.75rem;
cursor: pointer;
flex-grow: 1;
}

.billing-option input[type="radio"], .shipping-option input[type="radio"] {
width: 18px;
height: 18px;
accent-color: var(--color-dark);
}

.billing-option label, .shipping-option label {
font-size: 16px;
font-weight: 300;
cursor: pointer;
width: 100%;
}

/* Pay Button */
.pay-btn {
width: 100%;
padding: 1.1rem;
background: var(--color-dark);
color: #fff;
border: 1px solid var(--color-dark);
border-radius: 99px;
font-family: var(--font-body);
font-size: 0.9rem;
font-weight: 500;
letter-spacing: 0.08em;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s ease;
margin-top: 32px;
}

.pay-btn:hover {
background: transparent;
color: var(--color-dark);
border-color: var(--color-dark);
}

/* Order Summary - Right Column */
.order-items {
display: flex;
flex-direction: column;
gap: 1.25rem;
margin-bottom: 1.5rem;
}

.order-item {
display: flex;
gap: 1rem;
align-items: flex-start;
}
.item-quantity {
position: absolute;
top: -8px;
right: -8px;
width: 22px;
height: 22px;
background: var(--color-gold);
color: #fff;
border-radius: 50%;
font-size: 0.7rem;
font-weight: 500;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}

.item-details {
flex: 1;
}

.item-name {
font-family: var(--font-display);
font-size: 0.95rem;
font-weight: 500;
margin-bottom: 0.25rem;
line-height: 1.3;
}

.item-variant {
font-size: 0.8rem;
color: var(--color-text-muted);
font-weight: 300;
}

.item-price {
font-size: 0.95rem;
font-weight: 400;
white-space: nowrap;
}

/* Discount Code */
.discount-row {
display: flex;
gap: 0.75rem;
}
.discount-form {
margin-bottom: 1.5rem;
}

.discount-input {
flex: 1;
padding: 0.9rem 1.25rem;
border: 1px solid var(--color-border);
border-radius: 99px;
font-family: var(--font-body);
font-size: 16px;
font-weight: 300;
background: #fff;
}

.discount-input:focus {
outline: none;
border-color: var(--color-dark);
}

.discount-input::placeholder {
color: var(--color-text-muted);
}

.discount-btn {
padding: 12px 20px;
background: var(--color-light-gray);
border: 1px solid var(--color-border);
border-radius: 99px;
font-family: var(--font-body);
font-size: 16px;
font-weight: 400;
color: var(--color-text-muted);
cursor: pointer;
transition: all 0.2s ease;
line-height: normal;
}

.discount-btn:hover {
background: var(--color-border);
color: var(--color-dark);
}

/* Applied Discount */
.discount-applied {
margin-bottom: 1.5rem;
margin-top: -0.5rem;
}

.discount-tag {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 0.75rem;
background: var(--color-light-gray);
border-radius: 99px;
}

.discount-icon {
font-size: 1rem;
color: var(--color-text-muted);
}

.discount-code-text {
font-size: 0.85rem;
font-weight: 500;
color: var(--color-dark);
text-transform: uppercase;
letter-spacing: 0.05em;
}

.discount-remove {
background: none;
border: none;
padding: 0;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: var(--color-text-muted);
transition: color 0.2s ease;
}

.discount-remove:hover {
color: var(--color-dark);
}

.discount-remove .material-icons-outlined {
font-size: 1rem;
}

/* Summary Totals */
.summary-totals {
border-top: 1px solid var(--color-border);
padding-top: 1.5rem;
}

.summary-row {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.75rem;
}

.summary-row .label {
color: var(--color-dark);
display: flex;
align-items: center;
gap: 0.25rem;
}

.summary-row .label .material-icons-outlined {
font-size: 1rem;
color: var(--color-text-muted);
}

.summary-row .value {
color: var(--color-dark);
}

.summary-row .discount-value {
color: var(--color-gold);
}

.summary-row.total {
margin-top: 1.25rem;
padding-top: 1.25rem;
border-top: 1px solid var(--color-border);
}

.summary-row.total .label {
font-family: var(--font-display);
font-size: 1.1rem;
font-weight: 500;
}

.summary-row.total .value {
font-size: 1.35rem;
font-weight: 500;
}

.currency-note {
font-size: 0.75rem;
color: var(--color-text-muted);
font-weight: 300;
margin-right: 0.25rem;
}

/* Footer Section */
.footer-section {
padding: 3.5rem 0;
background: var(--color-cream);
}

.footer-link {
font-family: var(--font-body);
font-size: 0.95rem;
font-weight: 300;
color: var(--color-dark);
text-decoration: none;
line-height: 1.8;
}

.footer-address {
font-family: var(--font-body);
font-size: 0.95rem;
font-weight: 300;
color: var(--color-dark);
line-height: 1.5;
margin-bottom: 1.5rem;
}

.footer-address:last-of-type {
margin-bottom: 0;
}

.social-links {
display: flex;
gap: 1.25rem;
margin-top: 0.25rem;
}

.social-links a {
color: var(--color-dark);
font-size: 1.25rem;
transition: color 0.3s ease;
}

.social-links a:hover {
color: var(--color-gold);
}

/* Footer Logo */
.site-footer {
padding: 32px 0 3rem;
background: var(--color-cream);
text-align: center;
position: relative;
}

/* Responsive */
@media (max-width: 1024px) {
.checkout-left {
padding: 32px 32px 32px 0;
}

.checkout-right {
padding: 32px 0 32px 32px;
}
}

@media (max-width: 900px) {
.checkout-container {
grid-template-columns: 1fr;
}

.checkout-left {
max-width: 100%;
padding: 32px 0;
order: 2;
}

.checkout-right {
padding: 1.5rem 0;
border-left: none;
border-bottom: 1px solid var(--color-border);
order: 1;
}

.checkout-right-inner {
max-width: 100%;
}
}

@media (max-width: 767px) {
:root {
--site-margin: 20px;
}

.site-header {
padding: 0.875rem 0;
margin: 0;
}

.header-inner {
padding: 0 var(--site-margin);
}

.site-wrapper {
padding: 0 var(--site-margin);
}

.checkout-left {
padding: 1.5rem 0;
}

.checkout-right {
padding: 1.25rem var(--site-margin);
margin-left: calc(-1 * var(--site-margin));
margin-right: calc(-1 * var(--site-margin));
width: calc(100% + var(--site-margin) * 2);
}

.summary-totals {
margin-left: calc(-1 * var(--site-margin));
margin-right: calc(-1 * var(--site-margin));
padding-left: var(--site-margin);
padding-right: var(--site-margin);
width: calc(100% + var(--site-margin) * 2);
}

.summary-row.total {
margin-left: calc(-1 * var(--site-margin));
margin-right: calc(-1 * var(--site-margin));
padding-left: var(--site-margin);
padding-right: var(--site-margin);
width: calc(100% + var(--site-margin) * 2);
}

.form-row {
grid-template-columns: 1fr;
}

.footer-section {
margin-left: calc(-1 * var(--site-margin));
margin-right: calc(-1 * var(--site-margin));
width: calc(100% + var(--site-margin) * 2);
padding: 32px var(--site-margin);
}

.site-footer {
margin-left: calc(-1 * var(--site-margin));
margin-right: calc(-1 * var(--site-margin));
width: calc(100% + var(--site-margin) * 2);
padding: 1rem var(--site-margin) 1.5rem;
}
.social-links {
margin-top: 0.5rem;
}
}
.confirmation-container {
max-width: 1200px;
margin: 0 auto;
padding: 3rem 0;
display: grid;
grid-template-columns: 1.4fr 1fr;
gap: 4rem;
}

/* Left Column */
.confirmation-left {
display: flex;
flex-direction: column;
gap: 32px;
}

/* Confirmation Header */
.confirmation-header {
display: flex;
align-items: flex-start;
gap: 1.25rem;
}

.check-circle {
width: 56px;
height: 56px;
border: 2px solid var(--color-gold);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.check-circle i {
font-size: 1.5rem;
color: var(--color-gold);
}

.confirmation-text h1 {
font-family: var(--font-display);
font-size: 1.75rem;
font-weight: 500;
margin-bottom: 0.25rem;
}

.confirmation-number {
font-family: var(--font-body);
font-size: 0.85rem;
color: var(--color-text-muted);
font-weight: 300;
letter-spacing: 0.02em;
margin-bottom: 0;
}

/* Map Section */
.map-section {
border-radius: 12px;
overflow: hidden;
border: 1px solid var(--color-border);
}

.map-container {
height: 220px;
background: linear-gradient(135deg, #e8e4dc 0%, #d8d4cc 100%);
position: relative;
overflow: hidden;
}

.map-container iframe {
width: 100%;
height: 100%;
border: none;
filter: grayscale(20%) contrast(95%);
}

.map-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -100%);
background: #fff;
padding: 12px 20px;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
text-align: center;
z-index: 10;
}

.map-overlay-label {
font-size: 0.7rem;
color: var(--color-text-muted);
text-transform: uppercase;
letter-spacing: 0.08em;
margin-bottom: 0.15rem;
}

.map-overlay-address {
font-family: var(--font-display);
font-size: 0.95rem;
font-weight: 500;
}

.map-pin {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 16px;
height: 16px;
background: var(--color-gold);
border: 3px solid #fff;
border-radius: 50%;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.order-confirmed-message {
padding: 1.5rem;
background: var(--color-light-gray);
}

.order-confirmed-message h3 {
font-family: var(--font-display);
font-size: 1.1rem;
font-weight: 500;
margin-bottom: 0.35rem;
}

.order-confirmed-message p {
font-size: 0.9rem;
color: var(--color-text-muted);
font-weight: 300;
}

/* Newsletter Checkbox */
.newsletter-option {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 1.25rem 1.5rem;
border: 1px solid var(--color-border);
border-radius: 99px;
}

.newsletter-option input[type="checkbox"] {
width: 18px;
height: 18px;
accent-color: var(--color-dark);
cursor: pointer;
}

.newsletter-option label {
font-size: 0.9rem;
font-weight: 300;
cursor: pointer;
}

/* Order Details Section */
.order-details {
border: 1px solid var(--color-border);
border-radius: 12px;
padding: 32px;
}

.order-details-title {
font-family: var(--font-display);
font-size: 1.25rem;
font-weight: 500;
margin-bottom: 1.75rem;
padding-bottom: 1rem;
border-bottom: 1px solid var(--color-border);
}

.details-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px 3rem;
}

.detail-group h4 {
font-size: 0.75rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--color-dark);
margin-bottom: 0.75rem;
}

.detail-group p {
font-size: 0.9rem;
font-weight: 300;
line-height: 1.7;
color: var(--color-dark);
margin-bottom: 0;
}

.detail-group a {
color: var(--color-dark);
text-decoration: none;
}

.payment-amount {
display: flex;
align-items: center;
gap: 0.5rem;
}

.payment-method {
width: 40px;
height: 26px;
background: var(--color-light-gray);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.65rem;
font-weight: 500;
color: var(--color-text-muted);
}

/* Right Column - Order Summary */
.order-summary {
position: sticky;
top: 60px;
height: max-content;
}

.summary-title {
font-family: var(--font-display);
font-size: 1.25rem;
font-weight: 500;
margin-bottom: 1.5rem;
}

.order-items {
display: flex;
flex-direction: column;
gap: 1.25rem;
margin-bottom: 32px;
}

.order-item {
display: flex;
gap: 1rem;
align-items: flex-start;
}

.item-image {
width: 72px;
height: 72px;
background: transparent;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: visible;
border: 1px solid var(--color-border);
padding: 6px;
}

.item-image img {
width: 100%;
height: 100%;
object-fit: contain;
border-radius: 8px;
}

.item-quantity {
position: absolute;
top: -8px;
right: -8px;
width: 22px;
height: 22px;
background: var(--color-gold);
color: #fff;
border-radius: 50%;
font-size: 0.7rem;
font-weight: 500;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}

.item-details {
flex: 1;
}

.item-name {
font-family: var(--font-display);
font-size: 0.95rem;
font-weight: 500;
margin-bottom: 0.25rem;
line-height: 1.3;
}

.item-variant {
font-size: 0.8rem;
color: var(--color-text-muted);
font-weight: 300;
}

.item-price {
font-size: 0.95rem;
font-weight: 400;
white-space: nowrap;
}

/* Summary Totals */
.summary-totals {
border-top: 1px solid var(--color-border);
padding-top: 1.5rem;
}

.summary-row {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.75rem;
}

.summary-row > span {
font-size: 16px;
font-weight: 300;
}

.summary-row .label {
color: var(--color-dark);
}

.summary-row .value {
color: var(--color-dark);
}

.summary-row .free {
color: var(--color-sage);
font-weight: 400;
}

.summary-row.total {
margin-top: 1.25rem;
padding-top: 1.25rem;
border-top: 1px solid var(--color-border);
}

.summary-row.total .label {
font-family: var(--font-display);
font-size: 1.1rem;
font-weight: 500;
}

.summary-row.total .value {
font-size: 1.25rem;
font-weight: 500;
}

.currency-note {
font-size: 0.75rem;
color: var(--color-text-muted);
font-weight: 300;
}

/* Footer Section */
.footer-section {
padding: 3.5rem 0;
background: var(--color-cream);
position: relative;
}

.footer-inner {
max-width: 1200px;
margin: 0 auto;
padding: 0;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
gap: 0 32px;
align-items: start;
}

.footer-links-col {
display: flex;
flex-direction: column;
gap: 0;
}

.footer-links-col h4 {
font-family: var(--font-display);
font-size: 1rem;
font-weight: 500;
margin-bottom: .75rem;
color: #000;
}

.footer-link {
font-family: var(--font-body);
font-size: 0.95rem;
font-weight: 300;
color: var(--color-dark);
text-decoration: none;
line-height: 1.8;
}

.footer-address {
font-family: var(--font-body);
font-size: 0.95rem;
font-weight: 300;
color: var(--color-dark);
line-height: 1.5;
margin-bottom: 1.5rem;
}

.footer-address:last-of-type {
margin-bottom: 0;
}

/* Opening Soon Badge */
.opening-soon-badge {
display: inline-block;
margin-left: 0;
padding: 2px 12px 4px;
background: transparent;
color: var(--color-gold);
font-family: var(--font-display);
font-size: 0.75rem;
font-weight: 500;
font-style: normal;
letter-spacing: 0.04em;
border: 1px solid var(--color-gold);
border-radius: 99px;
text-transform: uppercase;
}

.social-links {
display: flex;
gap: 1.25rem;
margin-top: 0.25rem;
}

.social-links a {
color: var(--color-dark);
font-size: 1.25rem;
transition: color 0.3s ease;
}

.social-links a:hover {
color: var(--color-gold);
}

/* Footer Logo */
.site-footer {
padding: 32px 0 3rem;
background: var(--color-cream);
text-align: center;
position: relative;
}
/* Responsive */
@media (max-width: 900px) {
.confirmation-container {
grid-template-columns: 1fr;
gap: 2.5rem;
}

.order-summary {
position: relative;
top: 0;
}

.details-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
}

@media (max-width: 767px) {
:root {
--site-margin: 20px;
}

.site-header {
padding: 0.875rem 0;
margin: 0;
}

.header-inner {
padding: 0 var(--site-margin);
}

.site-wrapper {
padding: 0 var(--site-margin);
}

.confirmation-container {
padding: 1.5rem 0;
}

.confirmation-header {
flex-direction: column;
align-items: center;
text-align: center;
}

.confirmation-text h1 {
font-size: 1.5rem;
}

.order-details {
padding: 1.5rem;
}

.summary-totals {
margin-left: calc(-1 * var(--site-margin));
margin-right: calc(-1 * var(--site-margin));
padding-left: var(--site-margin);
padding-right: var(--site-margin);
width: calc(100% + var(--site-margin) * 2);
}

.summary-row.total {
margin-left: calc(-1 * var(--site-margin));
margin-right: calc(-1 * var(--site-margin));
padding-left: var(--site-margin);
padding-right: var(--site-margin);
width: calc(100% + var(--site-margin) * 2);
}

.footer-section {
margin-left: calc(-1 * var(--site-margin));
margin-right: calc(-1 * var(--site-margin));
width: calc(100% + var(--site-margin) * 2);
padding: 32px var(--site-margin);
}

.footer-inner {
grid-template-columns: 1fr;
gap: 1.25rem;
padding: 0;
}

.site-footer {
margin-left: calc(-1 * var(--site-margin));
margin-right: calc(-1 * var(--site-margin));
width: calc(100% + var(--site-margin) * 2);
padding: 1rem var(--site-margin) 1.5rem;
}

.social-links {
margin-top: 0.5rem;
}

.opening-soon-badge {
display: block;
margin-left: 0;
margin-top: 0.75rem;
width: fit-content;
}
}
.site-topbar {
position: sticky;
top: 0;
z-index: 1040;
width: 100%;
background: #000;
color: #fff;
font-size: 13px;
letter-spacing: 0.04em;
line-height: 1.2;
text-align: center;
}
.site-topbar__single,
.site-topbar .swiper-slide {
padding: 8px 32px;
display: flex;
align-items: center;
justify-content: center;
min-height: 32px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.site-topbar a {
color: inherit;
text-decoration: underline;
}
.site-topbar__swiper {
width: 100%;
overflow: hidden;
}
@media (max-width: 575px) {
.site-topbar {
font-size: 12px;
}
.site-topbar__single,
.site-topbar .swiper-slide {
padding: 7px 16px;
}
}
.cart-bundle-nudge {
background: #f7f3ee;
border: 1px solid var(--color-border, #e5e5e5);
border-radius: 12px;
padding: 0.65rem 0.85rem;
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.6rem;
font-size: 0.85rem;
line-height: 1.35;
}
.cart-bundle-nudge i {
color: var(--color-dark);
flex-shrink: 0;
}
.brand-inspirations-page {
padding: 40px 0 40px;
}

.brand-breadcrumb {
font-size: 14px;
margin-bottom: 25px;
color: #6c6c6c;
}
.brand-breadcrumb a {
color: #6c6c6c;
text-decoration: none;
transition: color .2s;
}
.brand-breadcrumb a:hover {
color: var(--color-primary);
}
.brand-breadcrumb .separator {
margin: 0 8px;
}
.brand-breadcrumb .current {
color: #1a1a1a;
}

.brand-page-header {
text-align: center;
margin-bottom: 50px;
}

.brand-page-title {
font-family: var(--font-display);
font-size: clamp(28px, 4vw, 44px);
font-weight: 500;
letter-spacing: 2px;
text-transform: capitalize;
margin: 0 0 15px;
color: #1a1a1a;
}

.brand-page-subtitle {
font-size: 16px;
line-height: 1.5;
color: #4a4a4a;
/* max-width: 720px; */
margin: 0 auto;
font-weight: 300;
}

.brand-groups {
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: 40px 30px;
}

.brand-group-title {
font-family: var(--font-display);
font-size: 13px;
font-weight: 500;
letter-spacing: 2px;
color: #999;
margin: 0 0 4px;
padding-bottom: 8px;
}

.brand-list {
list-style: none;
margin: 0;
padding: 0;
}

.brand-list a {
display: inline-block;
font-size: 16px;
line-height: 1.4;
color: #2a2a2a;
text-decoration: none;
transition: color .2s;
padding: 4px 0;
}

.brand-list a:hover,
.brand-list a:focus {
color: var(--color-primary);
outline: none;
}

.brand-list .count {
color: #999;
font-size: 13px;
margin-left: 4px;
}

@media (max-width: 1199px) {
.brand-groups {
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 50px 30px;
}
}

@media (max-width: 767px) {
.brand-inspirations-page {
padding: 25px 0 50px;
}
.brand-groups {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 40px 20px;
}
.brand-page-header {
margin-bottom: 35px;
}
}

@media (max-width: 480px) {
.brand-groups {
grid-template-columns: 1fr;
gap: 35px 0;
}
}
.welcome-modal__close {
    border: none;
    outline: none;
    background-color: #000;
    color: #fff;
    border-radius: 99px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 10px 0 auto;
}
.welcome-modal__content {
    background: #f7f3ee;
    border: none;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}
.welcome-modal__body {
    text-align: center;
    padding: 0 24px 40px !important;
}
.welcome-modal__close:hover {
    opacity: 0.85;
}
@media (max-width: 575px) {
    .welcome-modal__body { padding: 2.5rem 1.25rem 32px; }
}
.quick-view-short-description {
    font-weight: 300;
}
