:root {
    --container: 1400px;
    --text: #262626;
    --white: #FFFFFF;
    --welcome-bg: #E6DED8;
    --transition: 0.35s ease;
    --border: #DDDBDC;
    --muted: #737373;
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: #fff;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.drawer-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cinzel", serif;
}

p,
span,
a,
button,
input,
label,
li,
blockquote {
    font-family: "Poppins", sans-serif;
}

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

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

/* button,
input {
    font: inherit;
} */

button {
    border: 0;
    background: none;
    cursor: pointer;
}

.container {
    width: min(calc(100% - 140px), var(--container));
    margin-inline: auto;
}

/* HEADER */
.site-header {
    background: rgba(255, 255, 255, 0.96);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
}

.top-strip {
    background: #000000;
    color: #FFFFFF;
    font-size: 14px;
}

.top-strip__inner {
    min-height: 30px;
    display: grid;
    place-items: center;
    text-align: center;
}

.header-wrapper {
    position: relative;
    width: 100%;
    border-bottom: 1px solid var(--border);
}

.header-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 72px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 26px;
}

.header-link {
    position: relative;
    color: #262626;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: color var(--transition);
}

.header-link:hover {
    color: #fb5d5d;
}

.header-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 100%;
    height: 1px;
    background: #262626;
}

.logo {
    justify-self: center;
    transition: transform var(--transition), opacity var(--transition);
}

.logo:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

.header-icons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transition: background var(--transition), transform var(--transition);
}

.icon-btn:hover {
    background: #f4f4f4;
    transform: translateY(-1px);
}

.icon-btn img {
    width: 24px;
    height: 24px;
}

.subnav-wrap {
    height: auto;
    width: 100%;
    border-bottom: 1px solid var(--border);
}

.subnav {
    min-height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
}

.subnav a {
    transition: color var(--transition);
}

.subnav a:hover {
    color: #fb5d5d;
}

/* MOBILE MENU */
.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: #262626;
    display: block;
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 98;
}

.mobile-drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(86vw, 360px);
    height: 100vh;
    background: #ffffff;
    z-index: 99;
    transform: translateX(-100%);
    transition: 0.35s ease;
    padding: 24px 20px;
    overflow-y: auto;
    box-shadow: 8px 0 24px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

.mobile-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-drawer__header img {
    width: 120px;
    height: auto;
}

.mobile-drawer-close {
    width: 36px;
    height: 36px;
    font-size: 28px;
    line-height: 1;
    color: #262626;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: transform var(--transition), color var(--transition);
}

.mobile-drawer-close:hover {
    transform: rotate(90deg);
    color: #9f2d2d;
}

.mobile-drawer__nav,
.mobile-drawer__subnav {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 20px;
}

.mobile-drawer__nav a,
.mobile-drawer__subnav a {
    font-size: 16px;
    font-weight: 500;
    color: #262626;
    transition: color var(--transition);
}

.mobile-drawer__nav a:hover,
.mobile-drawer__subnav a:hover {
    color: #9f2d2d;
}

.mobile-drawer__subnav {
    margin-top: 14px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.mobile-drawer__subnav .sale {
    color: #D0021B;
}

.mobile-drawer__subnav-title {
    font-size: 15px;
    font-weight: 700;
    color: #262626;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.mobile-drawer__category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-drawer__category-item {
    border-bottom: 1px solid #ece7e2;
    padding-bottom: 10px;
}

.mobile-drawer__category-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: 0;
    color: #262626;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}

.mobile-drawer__category-toggle span {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.mobile-drawer__category-item.is-open .mobile-drawer__category-toggle span {
    transform: rotate(45deg);
}

.mobile-drawer__subcategory-list {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
    padding-left: 14px;
}

.mobile-drawer__category-item.is-open .mobile-drawer__subcategory-list {
    display: flex;
}

.mobile-drawer__subcategory-list a,
.mobile-drawer__single-link {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-drawer__subcategory-list a:hover,
.mobile-drawer__single-link:hover {
    color: #262626;
    transform: translateX(3px);
}

.mobile-drawer__single-link.sale {
    color: #D0021B;
    font-weight: 600;
}

.mobile-drawer__bottom {
    /* margin-top: auto; */
    padding-top: 22px;
    border-top: 1px solid #DDDBDC;
}

.mobile-drawer__socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-drawer__social {
    width: 38px;
    height: 38px;
    border: 1px solid #d9d4cf;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: all 0.3s ease;
}

.mobile-drawer__social:hover {
    background: #262626;
    border-color: #262626;
    transform: translateY(-2px);
}

.mobile-drawer__social img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.mobile-drawer__social:hover img {
    filter: brightness(0) invert(1);
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 797px;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 797px;
}

.hero-copy {
    max-width: 632px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.hero-copy h1 {
    margin: 0;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
    color: #FFFFFF;
}

.hero-copy p {
    margin: 0;
    color: #FFFFFF;
    /* max-width: 320px; */
    font-weight: 400;
    font-size: 16px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 797px;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    position: relative;
    height: 797px;
}

.hero-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    color: inherit;
}

.hero-slider .swiper-pagination {
    bottom: 20px !important;
    z-index: 5;
}

.hero-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.65);
    opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #ffffff;
}

/* BUTTON */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 24px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    border-radius: .25rem;
}

.btn--light {
    background: #FFFFFF;
    color: #262626;
    border: 1px solid #FFFFFF;
}

.btn--light:hover {
    background: transparent;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.btn--outline {
    background: #FFFFFF;
    border: 1px solid #cfc4be;
    color: #373737;
}

.btn--outline:hover {
    background: #fff;
    border-color: #262626;
    transform: translateY(-1px);
}

.btn--tiny {
    min-height: 35px;
    padding: 0 18px;
    font-size: 16px;
}

/* SECTIONS */
.section {
    position: relative;
    padding: 70px 0 0 0;
    overflow: hidden;
}

.section--occasion {
    padding-bottom: 70px;
}

.section-heading {
    text-align: center;
    margin-bottom: 34px;
}

.section-heading h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    background: linear-gradient(-96deg, rgb(253, 61, 107) 0px, rgb(253, 120, 99) 98%, rgb(243, 223, 224) 100%) text;
}

.section-heading p {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

/* CATEGORY */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform var(--transition);
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-card img {
    /* width: 225px;
    height: 263px; */
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    transition: transform var(--transition), box-shadow var(--transition);
}

.category-card:hover img {
    transform: scale(1.03);
    box-shadow: var(--shadow-soft);
}

.category-card span {
    color: #262626;
    font-weight: 600;
    font-size: 20px;
    transition: color var(--transition);
}

.category-card:hover span {
    color: #fb5d5d;
}

/* SWIPER */
.custom-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 40px;
}

.custom-swiper .swiper-wrapper {
    align-items: stretch;
}

.custom-swiper .swiper-slide {
    height: auto;
    transition: transform 0.35s ease, opacity 0.35s ease;
    transform: scale(0.92);
    opacity: 0.7;
}

.custom-swiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

.occasion-normal-swiper .swiper-slide,
.testimonials-normal-swiper .swiper-slide {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
}

.custom-swiper .swiper-pagination {
    bottom: 0 !important;
}

.custom-swiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #f3dfe0;
    opacity: 1;
}

.custom-swiper .swiper-pagination-bullet-active {
    background: #fb5d5d;
}

/* PRODUCT CARD */

.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
}

.product-link:hover .product-thumb img {
    transform: scale(1.04);
}

.product-link:hover .product-info h3 {
    color: #fb5d5d;
}

.product-link .product-info h3,
.product-link p {
    transition: color var(--transition);
}

.product-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 6px;
    transition: transform var(--transition);
}

.product-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6px;
}

.product-card h3 {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}

.product-card p {
    margin: 0;
    font-weight: 600;
    font-size: 12px;
    color: var(--muted);
}

.product-thumb {
    width: 100%;
    overflow: hidden;
    background: #f1f1f1;
    border-radius: 2px;
}

.product-thumb img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    background: #f2f2f2;
    transition: transform 0.5s ease;
}

.product-card:hover .product-thumb img {
    transform: scale(1.04);
}

/* OCCASION */
.occasion-normal-swiper .swiper-slide {
    height: 534px;
}

.occasion-card {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    min-height: 534px;
    display: block;
    transition: transform var(--transition), box-shadow var(--transition);
}

.occasion-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.occasion-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.occasion-card:hover img {
    transform: scale(1.03);
}

.occasion-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.06));
}

.occasion-overlay h3 {
    margin: 0 0 18px;
    font-weight: 400;
    font-size: 40px;
    text-align: center;
    color: #FFFFFF;
}

/* WELCOME */
.welcome {
    background: var(--welcome-bg);
    /* padding: 70px 0; */
}

.welcome__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 84px;
}

.welcome__image-wrap {
    width: 658px;
    height: 455px;
    overflow: hidden;
}

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

.welcome__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.eyebrow {
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
}

.welcome__content h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(-96deg, #fd3d6b 0, #fd7863 98%, #f3dfe0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome__content p {
    margin: 0;
    font-size: 16px;
    color: #000000;
    text-align: left;
}

/* TESTIMONIALS */
.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 24px 28px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.testimonial-kicker {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
}

.testimonial-card blockquote {
    margin: 0 0 18px;
    font-style: italic;
    font-size: 14px;
    color: #818790;
    line-height: 27px;
}

.testimonial-card p {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

/* FEATURES */
.features {
    padding: 70px 0;
}

.divider {
    height: 1px;
    background: #000000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 90px 20px;
    text-align: center;
}

.feature {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    transition: transform var(--transition);
}

.feature:hover {
    transform: translateY(-4px);
}

.feature img {
    width: 72px;
    height: 72px;
    object-fit: cover;
}

.feature h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #262626;
}

.feature p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #262626;
}

/* FOOTER */
.site-footer {
    background: #f5f4f4;
    padding-top: 48px;
    border-top: 1px solid #e7e2de;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
    gap: 28px;
    padding-bottom: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.footer-col-heading h4 {
    margin: 0;
    font-family: "Cinzel", serif;
    font-size: 20px;
    font-weight: 600;
    color: #262626;
    line-height: 1.3;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.footer-col-links a,
.footer-col-links p {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #737373;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col-links a:hover {
    color: #fb5d5d;
    transform: translateX(3px);
}

.footer-brand {
    gap: 18px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo img {
    width: 150px;
    height: auto;
    display: block;
}

.footer-brand__text {
    margin: 0;
    max-width: 300px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #737373;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social {
    width: 40px;
    height: 40px;
    border: 1px solid #d9d4cf;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: all 0.3s ease;
}

.footer-social:hover {
    background: #fb5d5d;
    border-color: #fb5d5d;
    transform: translateY(-2px);
}

.footer-social img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.footer-social:hover img {
    filter: brightness(0) invert(1);
}

.payment-img {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin-top: 6px;
}

.footer-newsletter {
    gap: 16px;
}

.newsletter-form {
    width: 100%;
    display: flex;
    align-items: center;
}

.newsletter-form input {
    flex: 1;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #dddbdc;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #262626;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #fb5d5d;
    box-shadow: 0 0 0 3px rgba(202, 99, 99, 0.08);
}

.newsletter-form button {
    width: 52px;
    height: 52px;
    border: 1px solid #fb5d5d;
    background: #fb5d5d;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #fd7863;
    border-color: #fd7863;
}

.newsletter-form svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 24px;
    padding: 18px 0;
    border-top: 1px solid #e2ddda;
}

.footer-bottom a {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #737373;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fb5d5d;
}

.copyright {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 16px 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

/* SEARCH DRAWER */
.search-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    z-index: 110;
}

.search-drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e7e3df;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 111;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.search-drawer.is-open {
    transform: translateY(0);
}

.search-drawer__inner {
    padding-top: 34px;
    padding-bottom: 34px;
}

.search-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.search-drawer__top h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    color: #262626;
}

.search-drawer__close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f3f3f3;
    color: #262626;
    font-size: 28px;
    line-height: 1;
    transition: background var(--transition), transform var(--transition);
}

.search-drawer__close:hover {
    background: #e9e9e9;
    transform: rotate(90deg);
}

.search-drawer-form {
    width: 100%;
}

.search-drawer-form__field {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-drawer-form__field input {
    flex: 1;
    height: 58px;
    padding: 0 20px;
    border: 1px solid #d9d4cf;
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
    color: #262626;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.search-drawer-form__field input:focus {
    border-color: #262626;
    box-shadow: 0 0 0 3px rgba(38, 38, 38, 0.08);
}

.search-drawer-form__field input::placeholder {
    color: #8a8a8a;
}

.search-drawer-submit {
    height: 58px;
    padding: 0 24px;
    border-radius: 12px;
    background: #262626;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
}

.search-drawer-submit:hover {
    background: #444444;
    transform: translateY(-1px);
}

.search-drawer__suggestions {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-drawer__suggestions span {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-tags a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #ddd6d1;
    border-radius: 999px;
    font-size: 14px;
    color: #262626;
    background: #fff;
    transition: all var(--transition);
}

.search-tags a:hover {
    background: #262626;
    color: #fff;
    border-color: #262626;
}

/* CART ICON BADGE */
.cart-trigger {
    position: relative;
}

.cart-count-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #fb5d5d;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-count-badge.is-hidden {
    display: none;
}

/* CART DRAWER */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    z-index: 112;
}

.cart-drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 460px);
    height: 100vh;
    background: #ffffff;
    z-index: 113;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
}

.cart-drawer.is-open {
    transform: translateX(0);
}

.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 20px 18px;
    border-bottom: 1px solid #e7e3df;
    flex-shrink: 0;
}

.cart-drawer__header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #262626;
}

.cart-drawer__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4f4f4;
    font-size: 28px;
    line-height: 1;
    color: #262626;
    transition: background var(--transition), transform var(--transition);
}

.cart-drawer__close:hover {
    background: #e9e9e9;
    transform: rotate(90deg);
}

.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-item {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 18px;
    border-bottom: 1px solid #efebe8;
}

.cart-item__image {
    width: 96px;
    height: 120px;
    overflow: hidden;
    border-radius: 10px;
    background: #f5f5f5;
}

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

.cart-item__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-item__top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
}

.cart-item__top h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: #262626;
    line-height: 1.35;
}

.cart-item__top p {
    margin: 0;
    font-size: 14px;
    color: #7a7a7a;
}

.cart-item__remove {
    font-size: 13px;
    color: #fb5d5d;
    text-decoration: underline;
    white-space: nowrap;
    transition: color var(--transition);
}

.cart-item__remove:hover {
    color: #fb5d5d;
}

.cart-item__price {
    font-size: 15px;
    font-weight: 600;
    color: #262626;
}

.cart-item__bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cart-item__qty {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    border: 1px solid #ddd6d1;
    border-radius: 999px;
    padding: 6px 10px;
}

.cart-item__qty button {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    font-size: 18px;
    line-height: 1;
    color: #262626;
}

.qty-value {
    font-size: 14px;
    font-weight: 500;
    min-width: 12px;
    text-align: center;
}

.cart-drawer__footer {
    border-top: 1px solid #e7e3df;
    padding: 20px;
    background: #fff;
    flex-shrink: 0;
}

.cart-summary {
    margin-bottom: 18px;
}

.cart-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.cart-summary__row span,
.cart-summary__row strong {
    font-size: 16px;
    color: #262626;
}

.cart-summary p {
    margin: 0;
    font-size: 13px;
    color: #7a7a7a;
}

.cart-drawer__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-btn-full {
    width: 100%;
}

/* IMPORTANT: empty state hidden by default */
.cart-empty {
    display: none;
    min-height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 10px;
}

.cart-empty.is-visible {
    display: flex;
}

.cart-empty__icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.cart-empty h4 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #262626;
}

.cart-empty p {
    margin: 0 0 20px;
    font-size: 14px;
    color: #7a7a7a;
}

.btn--dark {
    background: #262626;
    color: #ffffff;
    border: 1px solid #262626;
}

.btn--dark:hover {
    background: #444444;
    border-color: #444444;
    color: #ffffff;
}

/* OFFER POPUP */
.offer-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.87);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.35s ease;
    z-index: 200;
}

.offer-popup-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.offer-popup {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.35s ease;
    z-index: 201;
}

.offer-popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.offer-popup__box {
    position: relative;
    width: min(100%, 1024px);
    transform: scale(0.94);
    transition: transform 0.35s ease;
}

.offer-popup.is-open .offer-popup__box {
    transform: scale(1);
}

.offer-popup__link {
    display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.offer-popup__image {
    width: 100%;
    height: auto;
    display: block;
}

.offer-popup__close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    color: #262626;
    font-size: 28px;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    z-index: 2;
    transition: transform 0.3s ease, background 0.3s ease;
}

.offer-popup__close:hover {
    background: #f2f2f2;
    transform: rotate(90deg);
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
    position: fixed;
    left: 20px;
    bottom: 24px;
    z-index: 98;
}

.floating-whatsapp a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp a:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.floating-whatsapp img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fb5d5d;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 120;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #fd7863;
    transform: translateY(-3px);
}

.back-to-top img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}


/* TABLET / LARGE TABLET */
@media (max-width: 1199px) {
    .container {
        width: min(calc(100% - 48px), var(--container));
    }

    .header-left {
        gap: 18px;
    }

    .header-link,
    .subnav {
        font-size: 14px;
    }

    .hero {
        height: 680px;
    }

    .hero-overlay {
        width: 100%;
        height: 100%;
        left: 0;
        padding: 0 48px;
    }

    .hero-copy {
        max-width: 500px;
        margin-left: 0;
        gap: 20px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .hero-copy p {
        font-size: 15px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 225 / 263;
    }

    .welcome__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome__media {
        display: flex;
        justify-content: center;
    }

    .welcome__content {
        align-items: center;
        text-align: center;
        padding-bottom: 30px;
    }

    .welcome__content p {
        text-align: center;
    }

    .welcome__image-wrap {
        width: min(100%, 658px);
        height: auto;
        aspect-ratio: 658 / 455;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 22px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-newsletter {
        grid-column: span 2;
    }

    .footer-brand__text {
        max-width: 100%;
    }
}

/* TABLET / MOBILE HEADER */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: inline-flex;
    }

    .header-main {
        grid-template-columns: auto 1fr auto;
        gap: 16px;
        height: 72px;
    }

    .header-left {
        display: none;
    }

    .logo {
        justify-self: center;
    }

    .logo img {
        width: 120px;
        height: auto;
    }

    .header-icons {
        gap: 4px;
    }

    .icon-btn {
        width: 36px;
        height: 36px;
    }

    .icon-btn img {
        width: 20px;
        height: 20px;
    }

    .subnav-wrap {
        display: none;
    }

    .hero {
        height: 560px;
    }

    .hero-overlay {
        padding: 0 32px;
    }

    .hero-copy {
        max-width: 380px;
    }

    .hero-copy h1 {
        font-size: 36px;
    }

    .hero-copy p {
        max-width: 260px;
    }

    .hero-slider,
    .hero-slider .swiper-slide {
        height: 560px;
    }

    .section {
        padding-top: 48px;
    }

    .section--occasion {
        padding-bottom: 48px;
    }

    .section-heading {
        margin-bottom: 24px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .section-heading p {
        font-size: 14px;
        line-height: 1.6;
    }

    .custom-swiper {
        padding-bottom: 34px;
    }

    .product-thumb img {
        height: 360px;
    }

    .occasion-normal-swiper .swiper-slide {
        height: auto;
    }

    .occasion-card {
        min-height: 440px;
        border-radius: 90px;
    }

    .occasion-overlay h3 {
        font-size: 30px;
    }

    .welcome__content h2 {
        font-size: 28px;
    }

    .welcome__content p,
    .eyebrow {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 20px 24px;
        min-height: 260px;
    }

    .testimonial-kicker,
    .testimonial-card p {
        font-size: 14px;
    }

    .testimonial-card blockquote {
        font-size: 18px;
    }

    .features {
        padding: 48px 0;
    }

    .features-grid {
        padding: 48px 0;
    }

    .feature img {
        width: 56px;
        height: 56px;
    }

    .feature h3,
    .feature p {
        font-size: 14px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .top-strip {
        font-size: 12px;
    }

    .top-strip__inner {
        min-height: 34px;
        padding: 6px 12px;
        line-height: 1.4;
    }

    .header-main {
        height: 64px;
    }

    .logo img {
        width: 100px;
    }

    .header-icons {
        gap: 0;
    }

    .hero {
        height: 420px;
    }

    .hero-overlay {
        width: 100%;
        height: 100%;
        left: 0;
        padding: 0 20px;
    }

    .hero-copy {
        max-width: 260px;
        gap: 14px;
    }

    .hero-copy h1 {
        font-size: 26px;
        line-height: 1.25;
    }

    .hero-copy p {
        font-size: 14px;
        max-width: 210px;
    }

    .hero-slider,
    .hero-slider .swiper-slide {
        height: 420px;
    }

    .btn {
        min-height: 40px;
        padding: 0 18px;
        font-size: 13px;
    }

    .btn--tiny {
        min-height: 34px;
        font-size: 13px;
    }

    .section {
        padding-top: 36px;
    }

    .section--occasion {
        padding-bottom: 36px;
    }

    .section-heading {
        margin-bottom: 18px;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .section-heading p {
        font-size: 13px;
        line-height: 1.5;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .category-card {
        gap: 8px;
    }

    .category-card img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .category-card span {
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
    }

    .custom-swiper {
        padding-bottom: 28px;
    }

    .product-card h3 {
        font-size: 14px;
    }

    .product-card p {
        font-size: 12px;
    }

    .product-thumb img {
        height: 300px;
    }

    .product-info {
        flex-direction: column;
        gap: 4px;
    }

    .occasion-card {
        min-height: 360px;
        border-radius: 40px;
    }

    .occasion-overlay h3 {
        font-size: 24px;
    }

    .welcome__inner {
        gap: 24px;
    }

    .welcome__content {
        gap: 14px;
        align-items: center;
        text-align: center;
    }

    .welcome__content p {
        text-align: center;
    }

    .welcome__content h2 {
        font-size: 24px;
    }

    .eyebrow {
        font-size: 13px;
    }

    .testimonial-card {
        min-height: 260px;
        padding: 18px 20px;
    }

    .testimonial-card blockquote {
        font-size: 16px;
        -webkit-line-clamp: 7;
    }

    .testimonial-card p {
        font-size: 13px;
    }

    .testimonial-kicker {
        font-size: 13px;
    }

    .features {
        padding: 36px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 36px 0;
        row-gap: 28px;
    }

    .feature {
        gap: 14px;
    }

    .feature img {
        width: 48px;
        height: 48px;
    }

    .feature h3,
    .feature p {
        font-size: 14px;
    }

    .site-footer {
        padding-top: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-bottom: 24px;
    }

    .footer-brand,
    .footer-newsletter {
        grid-column: auto;
    }

    .footer-col {
        width: 100%;
        gap: 14px;
        align-items: flex-start;
        text-align: left;
    }

    .footer-col-heading,
    .footer-col-links {
        width: 100%;
    }

    .footer-col-heading h4 {
        font-size: 18px;
        text-align: left;
    }

    .footer-col-links a,
    .footer-col-links p {
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }

    .footer-logo img {
        width: 130px;
    }

    .footer-brand__text {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.7;
    }

    .footer-socials {
        gap: 10px;
    }

    .footer-social {
        width: 36px;
        height: 36px;
    }

    .footer-social img {
        width: 16px;
        height: 16px;
    }

    .payment-img {
        max-width: 160px;
    }

    .newsletter-form {
        width: 100%;
    }

    .newsletter-form input {
        height: 48px;
        font-size: 14px;
    }

    .newsletter-form button {
        width: 48px;
        height: 48px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
        padding: 16px 0;
    }

    .footer-bottom a {
        font-size: 13px;
        line-height: 1.5;
    }

    .copyright {
        font-size: 13px;
        padding: 14px 0;
    }

    .search-drawer__inner {
        padding-top: 20px;
        padding-bottom: 22px;
    }

    .search-drawer__top {
        margin-bottom: 18px;
    }

    .search-drawer__top h3 {
        font-size: 22px;
    }

    .search-drawer__close {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }

    .search-drawer-form__field {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .search-drawer-form__field input,
    .search-drawer-submit {
        width: 100%;
        height: 48px;
        font-size: 14px;
        padding: 10px 20px;
    }

    .search-tags a {
        min-height: 34px;
        font-size: 13px;
        padding: 0 12px;
    }

    .cart-drawer {
        width: 100%;
    }

    .cart-drawer__header {
        padding: 16px;
    }

    .cart-drawer__header h3 {
        font-size: 22px;
    }

    .cart-drawer__body {
        padding: 16px;
    }

    .cart-drawer__footer {
        padding: 16px;
    }

    .cart-item {
        grid-template-columns: 84px 1fr;
        gap: 12px;
    }

    .cart-item__image {
        width: 84px;
        height: 108px;
    }

    .cart-item__top h4 {
        font-size: 14px;
    }

    .cart-item__top p,
    .cart-item__price {
        font-size: 13px;
    }

    .cart-empty h4 {
        font-size: 20px;
    }

    .offer-popup {
        padding: 14px;
    }

    .offer-popup__box {
        width: 100%;
    }

    .offer-popup__close {
        top: -10px;
        right: -10px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .floating-whatsapp {
        left: 14px;
        bottom: 18px;
    }

    .floating-whatsapp a {
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp img {
        width: 22px;
        height: 22px;
    }

    .back-to-top {
        right: 14px;
        bottom: 18px;
        width: 50px;
        height: 50px;
    }

    .back-to-top img {
        width: 22px;
        height: 22px;
    }
}

/* SMALL MOBILE */
@media (max-width: 479px) {
    .hero {
        height: 360px;
    }

    .hero-copy {
        max-width: 220px;
    }

    .hero-copy h1 {
        font-size: 22px;
    }

    .hero-copy p {
        font-size: 13px;
        max-width: 180px;
    }

    .hero-slider,
    .hero-slider .swiper-slide {
        height: 360px;
    }

    .btn {
        font-size: 12px;
        padding: 0 14px;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .product-thumb img {
        height: 260px;
    }

    .occasion-card {
        min-height: 320px;
    }

    .occasion-overlay h3 {
        font-size: 20px;
    }

    .testimonial-card blockquote {
        font-size: 15px;
    }

    .footer-col .footer-col-heading h4 {
        font-size: 16px;
    }

    .footer-col .footer-col-links a,
    .footer-bottom,
    .copyright {
        font-size: 13px;
    }
}