/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {
    /* Main Bakery Colors */
    --pink: #e88ba8;
    --pink-dark: #d96f91;
    --pink-light: #fff1f5;

    --cream: #fffaf6;
    --white: #ffffff;

    --chocolate: #4a2d2d;
    --text: #5b4549;
    --text-light: #8a7478;

    /* Border */
    --border: #f1dfe4;

    /* Typography */
    --font-heading: "Playfair Display", serif;
    --font-body: "DM Sans", sans-serif;

    /* Transition */
    --transition: 0.3s ease;
}

/* =========================================================
   2. BASIC RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =========================================================
   3. BASIC TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: var(--font-heading);
    color: var(--chocolate);
    line-height: 1.2;
}

p {
    margin-top: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

/* =========================================================
   4. MAIN CONTENT
========================================================= */

#main {
    position: relative;
    width: 100%;
    min-height: 60vh;
}

/* =========================================================
   5. SCROLL TOP
========================================================= */

.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--pink);
    color: var(--white);
    font-size: 24px;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    box-shadow:
        0 8px 25px rgba(217, 111, 145, 0.25);
    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition),
        background var(--transition);
}

.scroll-top:hover {
    background: var(--pink-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================================================
   6. PRELOADER
========================================================= */

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-light);
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

/*
|--------------------------------------------------------------------------
| Preloader Loading Circle
|--------------------------------------------------------------------------
*/

#preloader::before {
    content: "";
    width: 48px;
    height: 48px;
    border: 3px solid #f5c8d5;
    border-top-color: var(--pink);
    border-radius: 50%;
    animation: bakeryPreloaderSpin 0.8s linear infinite;
}

/*
|--------------------------------------------------------------------------
| Preloader Animation
|--------------------------------------------------------------------------
*/

@keyframes bakeryPreloaderSpin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

/*
|--------------------------------------------------------------------------
| Hide Preloader
|--------------------------------------------------------------------------
*/

#preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* =========================================================
   7. TEXT SELECTION
========================================================= */

::selection {
    background: var(--pink);
    color: var(--white);
}

/* =========================================================
   8. MOBILE
========================================================= */

@media (max-width: 767px) {

    body {
        font-size: 15px;
    }

    .scroll-top {
        right: 18px;
        bottom: 18px;
        width: 42px;
        height: 42px;
        font-size: 21px;
    }

}


/* =========================================================
   9. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .scroll-top {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

}

/* =========================================================
   HEADER CSS
========================================================= */

/* =========================================================
   1. HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.header-container {
    width: min(1200px, calc(100% - 48px));
    min-height: 88px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================================================
   2. LOGO
========================================================= */

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    color: var(--chocolate);
}

.site-logo:hover {
    color: var(--pink-dark);
}

.site-logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--pink-light);
    color: var(--pink);
    font-size: 23px;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.site-logo:hover .site-logo-icon {
    transform: rotate(-8deg) scale(1.05);
    background: var(--pink);
    color: var(--white);
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.site-logo-name {
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.site-logo-subtitle {
    margin-top: 5px;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink);
}

/* =========================================================
   3. MAIN NAVIGATION
========================================================= */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.nav-link {
    position: relative;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: var(--pink);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 22px;
}

/* =========================================================
   4. HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-action {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--chocolate);
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.header-action:hover {
    color: var(--pink-dark);
    background: var(--pink-light);
    transform: translateY(-2px);
}

.action-icon {
    display: block;
    font-size: 22px;
    line-height: 1;
}

/* =========================================================
   5. CART COUNT
========================================================= */

.cart-count {
    position: absolute;
    top: 1px;
    right: 0;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: var(--pink);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    border: 2px solid var(--white);
}

/* =========================================================
   6. MOBILE MENU BUTTON
========================================================= */

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition:
        background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--pink-light);
}

.mobile-menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 10px;
    background: var(--chocolate);
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        width 0.3s ease;
}

/* =========================================================
   7. MOBILE MENU ACTIVE STATE
========================================================= */

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   8. TABLET
========================================================= */

@media (max-width: 1100px) {

    .header-container {
        width: min(100% - 36px, 1100px);
        gap: 20px;
    }

    .main-navigation {
        gap: 22px;
    }

    .nav-link {
        font-size: 13px;
    }

}

/* =========================================================
   9. TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

    .header-container {
        min-height: 78px;
    }

    .main-navigation {
        gap: 16px;
    }

    .site-logo-name {
        font-size: 23px;
    }

    .site-logo-icon {
        width: 40px;
        height: 40px;
    }

    .header-action {
        width: 39px;
        height: 39px;
    }

}

/* =========================================================
   10. MOBILE
========================================================= */

@media (max-width: 767px) {

    .site-header {
        background: var(--white);
    }

    .header-container {
        width: calc(100% - 30px);
        min-height: 72px;
        gap: 10px;
    }

    /* Mobile Navigation */
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 10px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 18px;
        box-shadow:
            0 18px 45px rgba(74, 45, 45, 0.10);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .main-navigation.mobile-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        padding: 13px 14px;
        border-radius: 10px;
        font-size: 14px;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--pink-light);
    }

    .nav-link::after {
        display: none;
    }

    /* Header Actions */
    .header-actions {
        gap: 2px;
    }

    .search-action,
    .account-action {
        display: none;
    }

    .header-action {
        width: 38px;
        height: 38px;
    }

    .action-icon {
        font-size: 20px;
    }

    /* Mobile Toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    .site-logo {
        gap: 8px;
    }

    .site-logo-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .site-logo-name {
        font-size: 21px;
    }

    .site-logo-subtitle {
        margin-top: 4px;
        font-size: 8px;
        letter-spacing: 2.5px;
    }

}

/* =========================================================
   11. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .header-container {
        width: calc(100% - 22px);
        min-height: 68px;
    }

    .site-logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .site-logo-name {
        font-size: 19px;
    }

    .site-logo-subtitle {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .header-action,
    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
    }

    .cart-count {
        top: 0;
        right: -1px;
        min-width: 16px;
        height: 16px;
        font-size: 8px;
    }

    .main-navigation {
        left: 11px;
        right: 11px;
    }

}

/* =========================================================
   12. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .site-header,
    .site-logo-icon,
    .header-action,
    .nav-link::after,
    .main-navigation,
    .mobile-menu-toggle span {
        transition: none;
    }

}

/* =========================================================
   FOOTER CSS
========================================================= */

/* =========================================================
   1. FOOTER
========================================================= */

.site-footer {
    position: relative;
    width: 100%;
    background: var(--chocolate);
    color: #f9e9ed;
}

/* =========================================================
   2. COMMON CONTAINER
========================================================= */

.footer-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

/* =========================================================
   3. FOOTER MAIN
========================================================= */

.footer-main {
    padding: 75px 0 65px;
}

.footer-main .footer-container {
    display: grid;
    grid-template-columns:
        1.5fr 0.8fr 0.9fr 1.2fr;
    gap: 55px;
}

/* =========================================================
   4. FOOTER BRAND
========================================================= */

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
}

.footer-logo:hover {
    color: var(--white);
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(232, 139, 168, 0.15);
    color: #f2a8bd;
    font-size: 23px;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.footer-logo:hover .footer-logo-icon {
    transform: rotate(-8deg) scale(1.05);
    background: var(--pink);
    color: var(--white);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-name {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
}

.footer-logo-subtitle {
    margin-top: 5px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f2a8bd;
}

/* =========================================================
   5. FOOTER DESCRIPTION
========================================================= */

.footer-description {
    margin: 22px 0 25px;
    max-width: 315px;
    color: #d9c3c8;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================================
   6. SOCIAL LINKS
========================================================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-social {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    color: #ead9dd;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-social:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
    transform: translateY(-3px);
}

/* =========================================================
   7. FOOTER TITLES
========================================================= */

.footer-title {
    margin: 4px 0 22px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
}

/* =========================================================
   8. FOOTER LINKS
========================================================= */

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    position: relative;
    display: inline-block;
    color: #d9c3c8;
    font-size: 14px;
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.footer-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--pink);
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    padding-left: 12px;
    color: #f2a8bd;
}

.footer-links a:hover::before {
    width: 7px;
}

/* =========================================================
   9. CONTACT
========================================================= */

.footer-contact {
    min-width: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(232, 139, 168, 0.12);
    color: #f2a8bd;
    font-size: 16px;
}

.footer-contact-item>div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-contact-label {
    color: #a99097;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-contact-value {
    display: block;
    color: #e8d7db;
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
}

a.footer-contact-value:hover {
    color: #f2a8bd;
}

/* =========================================================
   10. NEWSLETTER
========================================================= */

.footer-newsletter {
    padding: 32px 0;
    background: rgba(255, 255, 255, 0.035);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.newsletter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content {
    flex: 1;
}

.newsletter-small-title {
    display: block;
    margin-bottom: 6px;
    color: #f2a8bd;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.newsletter-content h3 {
    margin: 0;
    color: var(--white);
    font-size: 23px;
    font-weight: 500;
}

/* =========================================================
   11. NEWSLETTER FORM
========================================================= */

.newsletter-form {
    width: min(100%, 460px);
}

.newsletter-input-wrapper {
    display: flex;
    width: 100%;
    padding: 5px;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
}

.newsletter-input-wrapper input {
    min-width: 0;
    flex: 1;
    height: 44px;
    padding: 0 18px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--chocolate);
    font-size: 13px;
}

.newsletter-input-wrapper input::placeholder {
    color: #a99097;
}

.newsletter-input-wrapper button {
    flex-shrink: 0;
    min-width: 105px;
    height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 50px;
    background: var(--pink);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.newsletter-input-wrapper button:hover {
    background: var(--pink-dark);
    transform: translateY(-1px);
}

/* =========================================================
   12. FOOTER BOTTOM
========================================================= */

.footer-bottom {
    padding: 22px 0;
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.copyright {
    margin: 0;
    color: #a99097;
    font-size: 12px;
}

.copyright strong {
    color: #d9c3c8;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-bottom-links a {
    color: #a99097;
    font-size: 12px;
}

.footer-bottom-links a:hover {
    color: #f2a8bd;
}

/* =========================================================
   13. LARGE TABLET
========================================================= */

@media (max-width: 1050px) {

    .footer-main .footer-container {
        grid-template-columns:
            1.3fr 0.8fr 0.8fr;
        gap: 45px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

}

/* =========================================================
   14. TABLET
========================================================= */

@media (max-width: 800px) {

    .footer-main {
        padding: 60px 0 50px;
    }

    .footer-main .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 45px 35px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-contact {
        grid-column: auto;
    }

    .newsletter-container {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .newsletter-form {
        width: 100%;
    }

}

/* =========================================================
   15. MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer-container {
        width: calc(100% - 30px);
    }

    .footer-main {
        padding: 50px 0 40px;
    }

    .footer-main .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-title {
        margin-bottom: 17px;
        font-size: 19px;
    }

    .footer-description {
        max-width: 100%;
        margin-top: 18px;
        font-size: 13px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-contact-item {
        margin-bottom: 17px;
    }

    .footer-newsletter {
        padding: 28px 0;
    }

    .newsletter-content h3 {
        font-size: 21px;
    }

    .newsletter-input-wrapper {
        padding: 4px;
        border-radius: 16px;
        flex-direction: column;
        background: var(--white);
    }

    .newsletter-input-wrapper input {
        width: 100%;
        height: 45px;
    }

    .newsletter-input-wrapper button {
        width: 100%;
        height: 43px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 20px;
    }

}

/* =========================================================
   16. SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .footer-container {
        width: calc(100% - 22px);
    }

    .footer-main {
        padding: 42px 0 35px;
    }

    .footer-logo-name {
        font-size: 23px;
    }

    .footer-logo-icon {
        width: 40px;
        height: 40px;
    }

    .newsletter-content h3 {
        font-size: 19px;
    }

    .copyright {
        font-size: 11px;
    }

    .footer-bottom-links a {
        font-size: 11px;
    }

}

/* =========================================================
   17. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .footer-logo-icon,
    .footer-social,
    .footer-links a,
    .footer-links a::before,
    .newsletter-input-wrapper button {
        transition: none;
    }

}

/* =========================================================
   HERO SECTION
========================================================= */

/* =========================================================
   1. HERO
========================================================= */

.bakery-hero {
    position: relative;
    width: 100%;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(120deg,
            #fffaf6 0%,
            #fff5f7 48%,
            #fff0f4 100%);
}

/* =========================================================
   2. HERO CONTAINER
========================================================= */

.bakery-hero-container {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 48px));
    min-height: 720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 30px;
}

/* =========================================================
   3. HERO CONTENT
========================================================= */

.bakery-hero-content {
    position: relative;
    z-index: 5;
    padding: 60px 0;
}

/* =========================================================
   4. EYEBROW
========================================================= */

.bakery-hero-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--pink-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.bakery-hero-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--pink);
}

/* =========================================================
   5. HERO TITLE
========================================================= */

.bakery-hero-title {
    max-width: 620px;
    margin: 0;
    color: var(--chocolate);
    font-family: var(--font-heading);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.bakery-hero-title span {
    display: block;
    color: var(--pink-dark);
    font-style: italic;
    font-weight: 500;
}

/* =========================================================
   6. DESCRIPTION
========================================================= */

.bakery-hero-description {
    max-width: 535px;
    margin: 25px 0 0;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

/* =========================================================
   7. HERO BUTTONS
========================================================= */

.bakery-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

.bakery-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

/* Primary */
.bakery-btn-primary {
    background: var(--pink);
    color: var(--white);
    box-shadow:
        0 12px 28px rgba(217, 111, 145, 0.22);
}

.bakery-btn-primary:hover {
    background: var(--pink-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow:
        0 16px 32px rgba(217, 111, 145, 0.28);
}

.bakery-btn-arrow {
    font-size: 17px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.bakery-btn-primary:hover .bakery-btn-arrow {
    transform: translateX(4px);
}

/* Secondary */
.bakery-btn-secondary {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.65);
    color: var(--chocolate);
}

.bakery-btn-secondary:hover {
    border-color: var(--pink);
    background: var(--white);
    color: var(--pink-dark);
    transform: translateY(-3px);
}

/* =========================================================
   8. TRUST AREA
========================================================= */

.bakery-hero-trust {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 45px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-trust-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--pink);
    font-size: 15px;
    box-shadow:
        0 6px 20px rgba(74, 45, 45, 0.06);
}

.hero-trust-item div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.hero-trust-item strong {
    color: var(--chocolate);
    font-size: 11px;
    font-weight: 700;
}

.hero-trust-item div span {
    color: var(--text-light);
    font-size: 10px;
}

.hero-trust-divider {
    width: 1px;
    height: 30px;
    background: var(--border);
}

/* =========================================================
   9. HERO VISUAL
========================================================= */

.bakery-hero-visual {
    position: relative;
    width: 100%;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================================
   10. PINK BACKGROUND CIRCLE
========================================================= */

.hero-pink-circle {
    position: absolute;
    width: 570px;
    height: 570px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 40% 35%,
            #ffe8ef 0%,
            #fbd7e1 52%,
            #f7c8d5 100%);
    opacity: 0.9;
    transform: translate(25px, 5px);
    animation: heroCircleFloat 7s ease-in-out infinite;
}

/* =========================================================
   11. MAIN IMAGE
========================================================= */

.hero-image-wrapper {
    position: relative;
    z-index: 3;
    width: min(580px, 90%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    width: 100%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 28px 30px rgba(74, 45, 45, 0.13));
    animation: heroCakeFloat 6s ease-in-out infinite;
}

/* =========================================================
   12. FLOATING DECORATIONS
========================================================= */

.hero-decoration {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    color: var(--pink);
    box-shadow:
        0 10px 30px rgba(74, 45, 45, 0.07);
    backdrop-filter: blur(5px);
    animation:
        heroDecorationFloat 5s ease-in-out infinite;
}

.hero-decoration span {
    line-height: 1;
}

.hero-decoration-one {
    top: 15%;
    right: 7%;
    width: 43px;
    height: 43px;
    font-size: 17px;
    animation-delay: -1s;
}

.hero-decoration-two {
    top: 47%;
    left: 3%;
    width: 50px;
    height: 50px;
    color: #d96f91;
    font-size: 18px;
    animation-delay: -2.5s;
}

.hero-decoration-three {
    right: 10%;
    bottom: 14%;
    width: 32px;
    height: 32px;
    font-size: 12px;
    animation-delay: -3.5s;
}

/* =========================================================
   13. FRESH BADGE
========================================================= */

.hero-badge-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--pink-light);
    color: var(--pink);
    font-size: 15px;
}

.hero-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.hero-badge-text strong {
    color: var(--chocolate);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
}

.hero-badge-text small {
    margin-top: 3px;
    color: var(--text-light);
    font-size: 9px;
}

/* =========================================================
   14. BOTTOM DECORATIVE SHAPE
========================================================= */

.hero-bottom-shape {
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -55px;
    z-index: 7;
    height: 100px;
    border-radius: 50% 50% 0 0;
    background: var(--white);
}

/* =========================================================
   15. ANIMATIONS
========================================================= */

@keyframes heroCakeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

@keyframes heroCircleFloat {

    0%,
    100% {
        transform: translate(25px, 5px) scale(1);
    }

    50% {
        transform: translate(25px, -5px) scale(1.015);
    }

}

@keyframes heroDecorationFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(5deg);
    }

}

@keyframes heroBadgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}

/* =========================================================
   16. LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .bakery-hero {
        min-height: 650px;
    }

    .bakery-hero-container {
        min-height: 650px;

        gap: 10px;
    }

    .bakery-hero-title {
        font-size: clamp(45px, 5.2vw, 62px);
    }

    .bakery-hero-description {
        max-width: 490px;

        font-size: 15px;
    }

    .bakery-hero-visual {
        height: 580px;
    }

    .hero-pink-circle {
        width: 490px;
        height: 490px;
    }

}

/* =========================================================
   17. TABLET
========================================================= */

@media (max-width: 900px) {

    .bakery-hero {
        min-height: auto;
        padding: 40px 0 90px;
    }

    .bakery-hero-container {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bakery-hero-content {
        padding: 45px 0 20px;
        text-align: center;
    }

    .bakery-hero-eyebrow {
        justify-content: center;
    }

    .bakery-hero-title {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(45px, 7vw, 62px);
    }

    .bakery-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .bakery-hero-actions {
        justify-content: center;
    }

    .bakery-hero-trust {
        justify-content: center;
    }

    .bakery-hero-visual {
        height: 540px;
        margin-top: 10px;
    }

    .hero-pink-circle {
        width: 450px;
        height: 450px;
        transform: translate(0, 0);
    }

    .hero-image-wrapper {
        width: min(500px, 80%);
    }

    .hero-decoration-two {
        left: 10%;
    }

    .hero-bottom-shape {
        bottom: -65px;
    }

}

/* =========================================================
   18. MOBILE
========================================================= */

@media (max-width: 767px) {

    .bakery-hero {
        padding: 25px 0 75px;
    }

    .bakery-hero-container {
        width: calc(100% - 30px);
    }

    .bakery-hero-content {
        padding: 35px 0 10px;
    }

    .bakery-hero-eyebrow {
        margin-bottom: 16px;
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .bakery-hero-eyebrow::before {
        width: 20px;
    }

    .bakery-hero-title {
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .bakery-hero-description {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.7;
    }

    .bakery-hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 27px;
    }

    .bakery-btn {
        width: min(100%, 280px);
        min-height: 50px;
    }

    .bakery-hero-trust {
        flex-direction: column;
        gap: 15px;
        margin-top: 35px;
    }

    .hero-trust-divider {
        width: 45px;
        height: 1px;
    }

    .bakery-hero-visual {
        height: 400px;
        margin-top: 15px;
    }

    .hero-pink-circle {
        width: 320px;
        height: 320px;
    }

    .hero-image-wrapper {
        width: 88%;
    }

    .hero-badge-icon {
        width: 30px;
        height: 30px;
    }

    .hero-badge-text strong {
        font-size: 13px;
    }

    .hero-badge-text small {
        font-size: 8px;
    }

    .hero-decoration-one {
        top: 8%;
        right: 4%;
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .hero-decoration-two {
        top: 42%;
        left: 1%;
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .hero-decoration-three {
        right: 5%;
        bottom: 17%;
        width: 27px;
        height: 27px;
    }

    .hero-bottom-shape {
        bottom: -70px;
        height: 100px;
    }

}

/* =========================================================
   19. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .bakery-hero-container {
        width: calc(100% - 22px);
    }

    .bakery-hero {
        padding-top: 18px;
    }

    .bakery-hero-content {
        padding-top: 28px;
    }

    .bakery-hero-title {
        font-size: clamp(35px, 11.5vw, 45px);
    }

    .bakery-hero-description {
        font-size: 13px;
    }

    .bakery-btn {
        width: 100%;
        max-width: 300px;
    }

    .bakery-hero-trust {
        margin-top: 30px;
    }

    .bakery-hero-visual {
        height: 330px;
        margin-top: 10px;
    }

    .hero-pink-circle {
        width: 270px;
        height: 270px;
    }

    .hero-image-wrapper {
        width: 94%;
    }

    .hero-badge-icon {
        width: 27px;
        height: 27px;
        font-size: 12px;
    }

    .hero-badge-text strong {
        font-size: 12px;
    }

    .hero-badge-text small {
        font-size: 7px;
    }

    .hero-decoration-one {
        right: 1%;
    }

    .hero-decoration-two {
        left: 0;
    }

}

/* =========================================================
   20. VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .bakery-hero-title {
        font-size: 34px;
    }

    .bakery-hero-description {
        font-size: 12.5px;
    }

    .bakery-hero-visual {
        height: 290px;
    }

    .hero-pink-circle {
        width: 235px;
        height: 235px;
    }

    .hero-decoration-two {
        transform: scale(0.85);
    }

}

/* =========================================================
   21. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-pink-circle,
    .hero-main-image,
    .hero-decoration {
        animation: none;
    }

    .bakery-btn,
    .bakery-btn-arrow {
        transition: none;
    }

}

/* =========================================================
   WHY SWEET BAKERY / FEATURES SECTION
========================================================= */

/* =========================================================
   1. SECTION
========================================================= */

.bakery-features {
    position: relative;
    width: 100%;
    padding: 110px 0 115px;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            #fffaf6 0%,
            #fff7f8 100%);
}

/* =========================================================
   2. BACKGROUND DECORATION
========================================================= */

.bakery-features::before {
    content: "";
    position: absolute;
    top: -170px;
    left: -170px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(248, 193, 208, 0.28) 0%,
            rgba(248, 193, 208, 0) 70%);
    pointer-events: none;
}

.bakery-features::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -170px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(255, 221, 211, 0.32) 0%,
            rgba(255, 221, 211, 0) 70%);
    pointer-events: none;
}

/* =========================================================
   3. CONTAINER
========================================================= */

.bakery-features-container {
    position: relative;
    z-index: 2;
    width: min(1120px,
            calc(100% - 48px));
    margin: 0 auto;
}

/* =========================================================
   4. HEADER
========================================================= */

.bakery-features-header {
    max-width: 680px;
    margin: 0 auto 55px;
    text-align: center;
}

/* =========================================================
   5. EYEBROW
========================================================= */

.bakery-features-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 17px;
    color: var(--pink-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.4px;
    line-height: 1;
    text-transform: uppercase;
}

.bakery-features-eyebrow span {
    color: var(--pink);
    font-size: 11px;
    animation:
        featureSparkle 2.5s ease-in-out infinite;
}

.bakery-features-eyebrow span:last-child {
    animation-delay: -1.2s;
}

/* =========================================================
   6. TITLE
========================================================= */

.bakery-features-title {
    margin: 0;
    color: var(--chocolate);
    font-family: var(--font-heading);
    font-size: clamp(40px,
            4vw,
            56px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.bakery-features-title span {
    display: block;
    color: var(--pink-dark);
    font-style: italic;
}

/* =========================================================
   7. DESCRIPTION
========================================================= */

.bakery-features-description {
    max-width: 590px;
    margin: 19px auto 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================================
   8. FEATURE GRID
========================================================= */

.bakery-features-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 18px;
}

/* =========================================================
   9. FEATURE CARD
========================================================= */

.bakery-feature-card {
    position: relative;
    min-height: 250px;
    padding: 32px 25px 28px;
    overflow: hidden;
    border: 1px solid rgba(241, 223, 228, 0.9);
    border-radius: 24px;
    background:rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 35px rgba(74, 45, 45, 0.045);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease,
        border-color 0.35s ease;
}

.bakery-feature-card:hover {
    transform: translateY(-8px);
    border-color:rgba(232, 139, 168, 0.28);
    box-shadow: 0 23px 48px rgba(74, 45, 45, 0.09);
}

/* =========================================================
   10. CARD GLOW
========================================================= */

.bakery-feature-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(255, 222, 233, 0.75) 0%,
            rgba(255, 222, 233, 0) 70%);
    transition:
        transform 0.55s ease;
}

.bakery-feature-card:hover::before {
    transform: scale(1.35);
}

/* =========================================================
   11. ICON
========================================================= */

.feature-icon-wrap {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 23px;
    border: 1px solid rgba(232, 139, 168, 0.15);
    border-radius: 18px;
    background:
        linear-gradient(145deg,
            #fff4f7,
            #ffe8ef);
    box-shadow: 0 9px 25px rgba(217, 111, 145, 0.08);
    transition:
        transform 0.4s ease,
        border-radius 0.4s ease;
}

.bakery-feature-card:hover .feature-icon-wrap {
    transform:
        translateY(-4px) rotate(-4deg);
    border-radius: 20px;
}

.feature-icon {
    color: var(--pink-dark);
    font-size: 21px;
    line-height: 1;
}

/* =========================================================
   12. NUMBER
========================================================= */

.feature-number {
    position: absolute;
    top: 27px;
    right: 24px;
    color: rgba(217, 111, 145, 0.17);
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
}

/* =========================================================
   13. CARD TITLE
========================================================= */

.bakery-feature-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--chocolate);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

/* =========================================================
   14. CARD TEXT
========================================================= */

.bakery-feature-card p {
    position: relative;
    z-index: 2;

    max-width: 210px;

    margin: 10px 0 0;

    color: var(--text-light);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   15. BOTTOM NOTE
========================================================= */

.bakery-features-note {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    margin-top: 47px;

    color: var(--text-light);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


.features-note-line {
    width: 48px;
    height: 1px;

    background:
        rgba(232, 139, 168, 0.28);
}


.features-note-icon {
    color: var(--pink);

    font-size: 13px;

    animation:
        noteHeart 2.5s ease-in-out infinite;
}


/* =========================================================
   16. ANIMATIONS
========================================================= */

@keyframes featureSparkle {

    0%,
    100% {
        opacity: 0.45;

        transform:
            scale(0.8) rotate(0deg);
    }

    50% {
        opacity: 1;

        transform:
            scale(1.15) rotate(25deg);
    }
}


@keyframes noteHeart {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.18);
        opacity: 1;
    }
}


/* =========================================================
   17. LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .bakery-features {
        padding: 95px 0 100px;
    }

    .bakery-features-grid {
        gap: 15px;
    }

    .bakery-feature-card {
        padding: 28px 21px 25px;
    }

}


/* =========================================================
   18. TABLET
========================================================= */

@media (max-width: 900px) {

    .bakery-features {
        padding: 85px 0 90px;
    }

    .bakery-features-container {
        width: min(700px,
                calc(100% - 40px));
    }

    .bakery-features-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 17px;
    }

    .bakery-feature-card {
        min-height: 235px;
    }

}


/* =========================================================
   19. MOBILE
========================================================= */

@media (max-width: 767px) {

    .bakery-features {
        padding: 75px 0 80px;
    }

    .bakery-features-container {
        width: calc(100% - 30px);
    }

    .bakery-features-header {
        margin-bottom: 40px;
    }

    .bakery-features-eyebrow {
        font-size: 8px;
        letter-spacing: 1.7px;
    }

    .bakery-features-title {
        font-size: clamp(36px,
                10vw,
                48px);

        letter-spacing: -1px;
    }

    .bakery-features-description {
        font-size: 13px;
        line-height: 1.75;
    }

    .bakery-features-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }

    .bakery-feature-card {
        min-height: auto;

        padding: 25px 23px;

        border-radius: 20px;
    }

    .feature-icon-wrap {
        width: 52px;
        height: 52px;

        margin-bottom: 19px;

        border-radius: 16px;
    }

    .feature-icon {
        font-size: 19px;
    }

    .feature-number {
        top: 25px;
        right: 22px;

        font-size: 21px;
    }

    .bakery-feature-card h3 {
        font-size: 19px;
    }

    .bakery-feature-card p {
        max-width: 280px;

        margin-top: 8px;

        font-size: 11px;
    }

    .bakery-features-note {
        gap: 9px;

        margin-top: 35px;

        font-size: 8px;

        letter-spacing: 0.6px;
    }

    .features-note-line {
        width: 30px;
    }

}


/* =========================================================
   20. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .bakery-features {
        padding: 65px 0 70px;
    }

    .bakery-features-container {
        width: calc(100% - 22px);
    }

    .bakery-features-title {
        font-size: clamp(33px,
                10.5vw,
                43px);
    }

    .bakery-features-description {
        font-size: 12.5px;
    }

    .bakery-feature-card {
        padding: 22px 20px;
    }

    .feature-icon-wrap {
        width: 48px;
        height: 48px;

        margin-bottom: 17px;
    }

    .feature-icon {
        font-size: 17px;
    }

    .bakery-feature-card h3 {
        font-size: 18px;
    }

    .bakery-feature-card p {
        font-size: 10.5px;
    }

}


/* =========================================================
   21. VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .bakery-features-container {
        width: calc(100% - 18px);
    }

    .bakery-features-title {
        font-size: 31px;
    }

    .bakery-features-description {
        font-size: 12px;
    }

    .bakery-feature-card {
        padding: 20px 18px;
    }

    .bakery-features-note {
        font-size: 7px;
    }

}


/* =========================================================
   22. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .bakery-features-eyebrow span,
    .features-note-icon {
        animation: none;
    }

    .bakery-feature-card,
    .feature-icon-wrap {
        transition: none;
    }

}

/* =========================================================
   SWEET BAKERY
   PRODUCTS SHOWCASE SECTION
========================================================= */


/* =========================================================
   1. SECTION
========================================================= */

.bakery-products {
    position: relative;
    width: 100%;
    padding: 115px 0 125px;
    overflow: hidden;
    background: #ffffff;
}


/* =========================================================
   2. BACKGROUND DETAILS
========================================================= */

.bakery-products::before {
    content: "";
    position: absolute;
    top: 120px;
    left: -220px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(255, 225, 234, 0.55) 0%,
            rgba(255, 225, 234, 0) 70%);
    pointer-events: none;
}

.bakery-products::after {
    content: "";
    position: absolute;
    right: -220px;
    bottom: 100px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(255, 236, 222, 0.45) 0%,
            rgba(255, 236, 222, 0) 70%);
    pointer-events: none;
}


/* =========================================================
   3. CONTAINER
========================================================= */

.bakery-products-container {
    position: relative;
    z-index: 2;
    width: min(1120px,
            calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   4. SECTION HEADER
========================================================= */

.bakery-products-header {
    max-width: 680px;
    margin: 0 auto 75px;
    text-align: center;
}


/* =========================================================
   5. EYEBROW
========================================================= */

.bakery-products-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 17px;
    color: var(--pink-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.4px;
    line-height: 1;
    text-transform: uppercase;
}

.bakery-products-eyebrow span {
    color: var(--pink);
    font-size: 11px;
    animation:
        productsSparkle 2.5s ease-in-out infinite;
}

.bakery-products-eyebrow span:last-child {
    animation-delay: -1.2s;
}


/* =========================================================
   6. TITLE
========================================================= */

.bakery-products-title {
    margin: 0;
    color: var(--chocolate);
    font-family: var(--font-heading);
    font-size: clamp(40px,
            4vw,
            56px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.bakery-products-title span {
    display: block;
    color: var(--pink-dark);
    font-style: italic;
}


/* =========================================================
   7. DESCRIPTION
========================================================= */

.bakery-products-description {
    max-width: 590px;
    margin: 19px auto 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   8. CATEGORY
========================================================= */

.bakery-product-category {
    position: relative;
}

.bakery-product-category+.bakery-product-category {
    margin-top: 105px;
}


/* =========================================================
   9. CATEGORY HEADING
========================================================= */

.product-category-heading {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 32px;
}

.product-category-heading>div {
    display: flex;
    align-items: baseline;
    gap: 13px;
    flex-shrink: 0;
}

.product-category-number {
    color: var(--pink);
    font-family: var(--font-heading);
    font-size: 13px;
    font-style: italic;
    font-weight: 600;
}

.product-category-heading h3 {
    margin: 0;
    color: var(--chocolate);
    font-family: var(--font-heading);
    font-size: 29px;
    font-weight: 600;
    line-height: 1;
}

.product-category-line {
    width: 100%;
    height: 1px;
    background:
        linear-gradient(90deg,
            var(--border),
            rgba(241, 223, 228, 0));
}


/* =========================================================
   10. PRODUCT GRID
========================================================= */

.bakery-products-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 18px;
}


/* =========================================================
   11. PRODUCT CARD
========================================================= */

.bakery-product-card {
    position: relative;
    overflow: hidden;
    border:
        1px solid rgba(241, 223, 228, 0.85);
    border-radius: 22px;
    background: #ffffff;
    box-shadow:
        0 10px 30px rgba(74, 45, 45, 0.045);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease,
        border-color 0.35s ease;
}

.bakery-product-card:hover {
    transform: translateY(-9px);
    border-color:
        rgba(232, 139, 168, 0.3);
    box-shadow:
        0 24px 48px rgba(74, 45, 45, 0.10);
}


/* =========================================================
   12. PRODUCT IMAGE
========================================================= */

.product-image-wrap {
    position: relative;
    height: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(145deg,
            #fff8f8,
            #fff0f4);
}

.product-image-wrap::after {
    content: "";
    position: absolute;
    inset: auto 18% -80px;
    height: 120px;
    border-radius: 50%;
    background:
        rgba(232, 139, 168, 0.10);
    filter: blur(18px);
}

.product-image {
    position: relative;
    z-index: 2;
    width: 88%;
    height: 88%;
    object-fit: contain;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.bakery-product-card:hover .product-image {
    transform:
        scale(1.07) translateY(-4px);
}


/* =========================================================
   13. PRODUCT TAG
========================================================= */

.product-tag {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 4;
    padding: 6px 10px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--pink-dark);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow:
        0 6px 18px rgba(74, 45, 45, 0.07);
}


/* =========================================================
   14. QUICK BUTTON
========================================================= */

.product-quick-btn {
    position: absolute;
    right: 13px;
    bottom: 13px;
    z-index: 4;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--pink-dark);
    font-size: 16px;
    line-height: 1;
    box-shadow:
        0 7px 20px rgba(74, 45, 45, 0.10);
    opacity: 0;
    transform:
        translateY(8px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.bakery-product-card:hover .product-quick-btn {
    opacity: 1;
    transform:
        translateY(0);
}

.product-quick-btn:hover {
    background: var(--pink);
    color: var(--white);
}


/* =========================================================
   15. PRODUCT CONTENT
========================================================= */

.product-content {
    padding: 20px 19px 19px;
}

.product-category-label {
    display: block;
    margin-bottom: 7px;
    color: var(--pink);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.product-content h4 {
    margin: 0;
    color: var(--chocolate);
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.25;
}

.product-content p {
    min-height: 35px;
    margin: 7px 0 15px;
    color: var(--text-light);
    font-size: 10.5px;
    line-height: 1.65;
}


/* =========================================================
   16. PRODUCT BOTTOM
========================================================= */

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 13px;
    border-top:
        1px solid rgba(241, 223, 228, 0.8);
}

.product-bottom strong {
    color: var(--chocolate);
    font-size: 14px;
    font-weight: 700;
}

.product-view-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--pink-dark);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.product-view-link span {
    font-size: 13px;
    transition:
        transform 0.3s ease;
}

.product-view-link:hover {
    color: var(--chocolate);
}

.product-view-link:hover span {
    transform:
        translateX(3px);
}


/* =========================================================
   17. VIEW MORE
========================================================= */

.product-category-action {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.product-view-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 48px;
    padding: 0 22px;
    border:
        1px solid var(--border);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--chocolate);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.product-view-more::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    background: var(--pink);
    transition:
        width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-view-more span,
.product-view-more strong {
    position: relative;
    z-index: 2;
}

.product-view-more strong {
    font-size: 16px;
    font-weight: 400;
    transition:
        transform 0.35s ease;
}

.product-view-more:hover {
    border-color: var(--pink);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow:
        0 12px 28px rgba(217, 111, 145, 0.18);
}

.product-view-more:hover::before {
    width: 100%;
}

.product-view-more:hover strong {
    transform:
        translateX(4px);
}


/* =========================================================
   18. ANIMATION
========================================================= */

@keyframes productsSparkle {

    0%,
    100% {
        opacity: 0.45;
        transform:
            scale(0.8) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform:
            scale(1.15) rotate(25deg);
    }

}


/* =========================================================
   19. LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .bakery-products {
        padding: 100px 0 110px;
    }

    .bakery-products-grid {
        gap: 14px;
    }

    .product-image-wrap {
        height: 210px;
    }

    .product-content {
        padding: 18px 16px;
    }

}


/* =========================================================
   20. TABLET
========================================================= */

@media (max-width: 900px) {

    .bakery-products {
        padding: 90px 0 100px;
    }

    .bakery-products-container {
        width: min(700px,
                calc(100% - 40px));
    }

    .bakery-products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 17px;
    }

    .product-image-wrap {
        height: 240px;
    }

    .product-quick-btn {
        opacity: 1;
        transform: translateY(0);
    }

    .bakery-product-category+.bakery-product-category {
        margin-top: 80px;
    }

}


/* =========================================================
   21. MOBILE
========================================================= */

@media (max-width: 767px) {

    .bakery-products {
        padding: 75px 0 85px;
    }

    .bakery-products-container {
        width: calc(100% - 30px);
    }

    .bakery-products-header {
        margin-bottom: 55px;
    }

    .bakery-products-eyebrow {
        font-size: 8px;
        letter-spacing: 1.7px;
    }

    .bakery-products-title {
        font-size: clamp(36px,
                10vw,
                48px);
        letter-spacing: -1px;
    }

    .bakery-products-description {
        font-size: 13px;
        line-height: 1.75;
    }

    .product-category-heading {
        gap: 15px;
        margin-bottom: 24px;
    }

    .product-category-heading h3 {
        font-size: 25px;
    }

    .product-category-number {
        font-size: 11px;
    }

    .bakery-products-grid {
        gap: 13px;
    }

    .product-image-wrap {
        height: 210px;
    }

    .product-content {
        padding: 17px 15px 16px;
    }

    .product-content h4 {
        font-size: 17px;
    }

    .product-content p {
        font-size: 10px;
    }

    .product-bottom strong {
        font-size: 13px;
    }

    .product-view-link {
        font-size: 8px;
    }

    .product-category-action {
        margin-top: 28px;
    }

    .product-view-more {
        min-height: 45px;
        padding: 0 19px;
        font-size: 9px;
    }

    .bakery-product-category+.bakery-product-category {
        margin-top: 70px;
    }

}


/* =========================================================
   22. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .bakery-products {
        padding: 65px 0 75px;
    }

    .bakery-products-container {
        width: calc(100% - 22px);
    }

    .bakery-products-title {
        font-size: clamp(33px,
                10.5vw,
                43px);
    }

    .bakery-products-description {
        font-size: 12.5px;
    }

    .product-category-heading h3 {
        font-size: 23px;
    }

    .bakery-products-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .product-image-wrap {
        height: 235px;
    }

    .product-content {
        padding: 19px 18px;
    }

    .product-content h4 {
        font-size: 19px;
    }

    .product-content p {
        font-size: 10.5px;
    }

    .product-quick-btn {
        width: 34px;
        height: 34px;
    }

}


/* =========================================================
   23. VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .bakery-products-container {
        width: calc(100% - 18px);
    }

    .product-category-heading h3 {
        font-size: 21px;
    }

    .product-image-wrap {
        height: 210px;
    }

    .product-content h4 {
        font-size: 18px;
    }

}


/* =========================================================
   24. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .bakery-products-eyebrow span {
        animation: none;
    }

    .bakery-product-card,
    .product-image,
    .product-quick-btn,
    .product-view-more,
    .product-view-more::before,
    .product-view-more strong {
        transition: none;
    }

}

/* =========================================================
   SWEET BAKERY
   BAKERY EXPERIENCE SECTION
========================================================= */


/* =========================================================
   1. SECTION
========================================================= */

.bakery-experience {
    position: relative;
    width: 100%;
    padding: 120px 0 115px;
    overflow: hidden;
    background: #fffaf6;
}


/* =========================================================
   2. BACKGROUND
========================================================= */

.bakery-experience::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(248, 202, 216, 0.20) 0%,
            rgba(248, 202, 216, 0) 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}


/* =========================================================
   3. CONTAINER
========================================================= */

.bakery-experience-container {
    position: relative;
    z-index: 2;
    width: min(1120px,
            calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   4. THREE PANEL GRID
========================================================= */

.bakery-experience-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    align-items: stretch;
}


/* =========================================================
   5. COMMON PANEL
========================================================= */

.experience-panel {
    position: relative;
    min-height: 420px;
    padding: 50px 38px 45px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* =========================================================
   6. LIGHT PANELS
========================================================= */

.experience-panel-light {
    border:
        1px solid rgba(241, 223, 228, 0.95);
    background:
        linear-gradient(145deg,
            #ffffff 0%,
            #fff7f8 100%);
    box-shadow:
        0 18px 45px rgba(74, 45, 45, 0.055);
}


/* Left rounded corners */

.experience-panel-left {
    border-radius: 30px 0 0 30px;
}


/* Right rounded corners */

.experience-panel-right {
    border-radius: 0 30px 30px 0;
}


/* =========================================================
   7. DARK CENTER PANEL
========================================================= */

.experience-panel-dark {
    z-index: 3;
    margin: -14px 0;
    min-height: 448px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 50% 25%,
            #704a4a 0%,
            #553535 42%,
            #432929 100%);
    color: #ffffff;
    box-shadow:
        0 25px 60px rgba(74, 45, 45, 0.20);
}


/* =========================================================
   8. PANEL NUMBER
========================================================= */

.experience-panel-number {
    position: absolute;
    top: 25px;
    right: 28px;
    color:
        rgba(217, 111, 145, 0.22);
    font-family: var(--font-heading);
    font-size: 25px;
    font-style: italic;
    font-weight: 600;
    line-height: 1;
}

.experience-panel-dark .experience-panel-number {
    color:
        rgba(255, 255, 255, 0.13);
}


/* =========================================================
   9. ICON
========================================================= */

.experience-icon,
.experience-center-icon {
    position: relative;
    z-index: 5;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 50%;
    line-height: 1;
}


/* Light icon */

.experience-icon {
    border:
        1px solid rgba(232, 139, 168, 0.18);
    background:
        linear-gradient(145deg,
            #fff2f6,
            #ffe4ec);
    color: var(--pink-dark);
    font-size: 21px;
    box-shadow:
        0 10px 25px rgba(217, 111, 145, 0.10);
}


/* Center icon */

.experience-center-icon {
    border:
        1px solid rgba(255, 255, 255, 0.16);
    background:
        rgba(255, 255, 255, 0.08);
    color: #f9c6d5;
    font-size: 22px;
    box-shadow:
        0 0 35px rgba(248, 177, 201, 0.13);
    animation:
        centerIconPulse 3s ease-in-out infinite;
}


/* =========================================================
   10. LABEL
========================================================= */

.experience-panel-label {
    position: relative;
    z-index: 5;
    margin-bottom: 12px;
    color: var(--pink-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.experience-panel-dark .experience-panel-label {
    color: #efb4c7;
}


/* =========================================================
   11. TITLE
========================================================= */

.experience-panel h3 {
    position: relative;
    z-index: 5;
    max-width: 280px;
    margin: 0;
    color: var(--chocolate);
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.6px;
}

.experience-panel h3 span {
    display: block;
    color: var(--pink-dark);
    font-style: italic;
}

.experience-panel-dark h3 {
    color: #ffffff;
}

.experience-panel-dark h3 span {
    color: #f3b9ca;
}


/* =========================================================
   12. DESCRIPTION
========================================================= */

.experience-panel p {
    position: relative;
    z-index: 5;
    max-width: 265px;
    margin: 17px 0 0;
    color: var(--text-light);
    font-size: 11px;
    line-height: 1.75;
}

.experience-panel-dark p {
    color:
        rgba(255, 255, 255, 0.65);
}


/* =========================================================
   13. DECORATIVE CORNER
========================================================= */

.experience-decoration {
    position: absolute;
    right: 28px;
    bottom: 24px;
    color:
        rgba(232, 139, 168, 0.30);
    font-size: 16px;
    animation:
        experienceFloat 4s ease-in-out infinite;
}

.experience-panel-right .experience-decoration {
    animation-delay: -2s;
}


/* =========================================================
   14. CENTER ORBITS
========================================================= */

.experience-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border:
        1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
    transform:
        translate(-50%, -50%);
}

.experience-orbit-one {
    width: 270px;
    height: 270px;
    animation:
        orbitRotate 16s linear infinite;
}

.experience-orbit-two {
    width: 390px;
    height: 390px;
    border-style: dashed;
    border-color:
        rgba(255, 255, 255, 0.045);
    animation:
        orbitRotateReverse 22s linear infinite;
}


/* =========================================================
   15. ORBIT DOTS
========================================================= */

.experience-orbit::before,
.experience-orbit::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #efb4c7;
    box-shadow:
        0 0 15px rgba(239, 180, 199, 0.55);
}

.experience-orbit::before {
    top: 12%;
    left: 8%;
}

.experience-orbit::after {
    right: 9%;
    bottom: 14%;
}


/* =========================================================
   16. CENTER SPARKLES
========================================================= */

.experience-sparkles {
    position: absolute;
    bottom: 28px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 9px;
    transform: translateX(-50%);
}

.experience-sparkles span:nth-child(1) {
    animation:
        sparkleMove 2.4s ease-in-out infinite;
}

.experience-sparkles span:nth-child(3) {
    animation:
        sparkleMove 2.4s ease-in-out infinite -0.8s;
}

.experience-sparkles span:nth-child(5) {
    animation:
        sparkleMove 2.4s ease-in-out infinite -1.5s;
}


/* =========================================================
   17. BOTTOM MESSAGE
========================================================= */

.experience-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 55px;
    color: var(--text-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.experience-bottom-line {
    width: 55px;
    height: 1px;
    background:
        rgba(232, 139, 168, 0.25);
}


/* =========================================================
   18. HOVER EFFECT
========================================================= */

.experience-panel-light {
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s ease;
}

.experience-panel-left:hover {
    transform: translateX(-5px);
    box-shadow:
        0 25px 55px rgba(74, 45, 45, 0.09);
}

.experience-panel-right:hover {
    transform: translateX(5px);
    box-shadow:
        0 25px 55px rgba(74, 45, 45, 0.09);
}

.experience-panel-dark {
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s ease;
}

.experience-panel-dark:hover {
    transform:
        translateY(-6px) scale(1.015);
    box-shadow:
        0 32px 70px rgba(74, 45, 45, 0.28);
}

.experience-panel-light:hover .experience-icon {
    transform:
        rotate(-8deg) scale(1.08);
}

.experience-icon {
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   19. ANIMATIONS
========================================================= */

@keyframes centerIconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 35px rgba(248, 177, 201, 0.13);
    }

    50% {
        transform: scale(1.08);
        box-shadow:
            0 0 48px rgba(248, 177, 201, 0.25);
    }

}


@keyframes orbitRotate {

    from {
        transform:
            translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%) rotate(360deg);
    }

}


@keyframes orbitRotateReverse {

    from {
        transform:
            translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform:
            translate(-50%, -50%) rotate(0deg);
    }

}


@keyframes experienceFloat {

    0%,
    100% {
        transform:
            translateY(0) rotate(0deg);
    }

    50% {
        transform:
            translateY(-8px) rotate(8deg);
    }

}


@keyframes sparkleMove {

    0%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-5px);
    }

}


/* =========================================================
   20. TABLET
========================================================= */

@media (max-width: 900px) {

    .bakery-experience {
        padding: 95px 0 100px;
    }

    .bakery-experience-container {
        width: min(700px,
                calc(100% - 40px));
    }

    .experience-panel {
        min-height: 390px;
        padding:
            42px 25px 38px;
    }

    .experience-panel-dark {
        min-height: 418px;
    }

    .experience-panel h3 {
        font-size: 23px;
    }

    .experience-panel p {
        font-size: 10px;
    }

    .experience-orbit-one {
        width: 220px;
        height: 220px;
    }

    .experience-orbit-two {
        width: 320px;
        height: 320px;
    }

}


/* =========================================================
   21. MOBILE
========================================================= */

@media (max-width: 767px) {

    .bakery-experience {
        padding: 75px 0 80px;
    }

    .bakery-experience-container {
        width: calc(100% - 30px);
    }

    .bakery-experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-panel {
        min-height: 340px;
        padding:
            42px 28px 38px;
    }

    .experience-panel-left {
        border-radius:
            25px 25px 0 0;
    }

    .experience-panel-right {
        border-radius:
            0 0 25px 25px;
    }

    .experience-panel-dark {
        min-height: 365px;
        margin: 0;
        border-radius: 25px;
    }

    .experience-panel-left:hover,
    .experience-panel-right:hover {
        transform: translateY(-4px);
    }

    .experience-panel-dark:hover {
        transform:
            translateY(-5px) scale(1.01);
    }

    .experience-panel h3 {
        font-size: 26px;
    }

    .experience-panel p {
        max-width: 290px;
        font-size: 11px;
    }

    .experience-orbit-one {
        width: 230px;
        height: 230px;
    }

    .experience-orbit-two {
        width: 330px;
        height: 330px;
    }

    .experience-bottom {
        margin-top: 40px;
        gap: 8px;
        font-size: 7px;
        letter-spacing: 1px;
    }

    .experience-bottom-line {
        width: 30px;
    }

}


/* =========================================================
   22. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .bakery-experience {
        padding: 65px 0 70px;
    }

    .bakery-experience-container {
        width: calc(100% - 22px);
    }

    .experience-panel {
        min-height: 320px;
        padding:
            38px 22px 34px;
    }

    .experience-panel-dark {
        min-height: 345px;
    }

    .experience-icon,
    .experience-center-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 20px;
    }

    .experience-panel h3 {
        font-size: 23px;
    }

    .experience-panel p {
        font-size: 10.5px;
    }

    .experience-panel-number {
        top: 20px;
        right: 21px;
        font-size: 21px;
    }

    .experience-decoration {
        right: 20px;
        bottom: 19px;
    }

}


/* =========================================================
   23. VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .bakery-experience-container {
        width: calc(100% - 18px);
    }

    .experience-panel {
        min-height: 300px;
        padding:
            35px 18px 30px;
    }

    .experience-panel-dark {
        min-height: 325px;
    }

    .experience-panel h3 {
        font-size: 21px;
    }

    .experience-panel p {
        font-size: 10px;
    }

    .experience-orbit-one {
        width: 200px;
        height: 200px;
    }

    .experience-orbit-two {
        width: 285px;
        height: 285px;
    }

}


/* =========================================================
   24. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .experience-center-icon,
    .experience-orbit-one,
    .experience-orbit-two,
    .experience-decoration,
    .experience-sparkles span {
        animation: none;
    }

    .experience-panel,
    .experience-icon {
        transition: none;
    }

}

/* =========================================================
   SWEET BANNER
========================================================= */

.bakery-sweet-banner {
    position: relative;
    padding: 35px 20px 65px;
    background: var(--white);
    overflow: hidden;
}

.bakery-sweet-banner-container {
    position: relative;

    width: 100%;
    max-width: 100%;
    min-height: 290px;

    margin: 0 auto;
    padding: 30px 7%;

    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;

    overflow: hidden;

    background: var(--chocolate);
    border-radius: 28px;

    box-shadow: 0 18px 45px rgba(74, 45, 45, 0.14);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.bakery-sweet-banner-container:hover {
    transform: translateY(-3px);

    box-shadow: 0 24px 55px rgba(74, 45, 45, 0.20);
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.bakery-sweet-banner-container::before {
    content: "";

    position: absolute;
    width: 330px;
    height: 330px;

    left: -150px;
    top: -170px;

    border-radius: 50%;

    background: rgba(232, 139, 168, 0.13);

    pointer-events: none;

    animation: sweetBannerGlow 5s ease-in-out infinite;
}

.bakery-sweet-banner-container::after {
    content: "";

    position: absolute;
    width: 280px;
    height: 280px;

    right: -140px;
    bottom: -160px;

    border-radius: 50%;

    background: rgba(255, 241, 245, 0.06);

    pointer-events: none;

    animation: sweetBannerGlow 5s ease-in-out infinite reverse;
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.sweet-banner-visual {
    position: relative;

    height: 235px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Glow */

.sweet-banner-glow {
    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: rgba(232, 139, 168, 0.16);

    animation: sweetImageCircle 4s ease-in-out infinite;
}


/* Image */

.sweet-banner-image-wrap {
    position: relative;
    z-index: 2;

    width: 250px;
    height: 250px;

    display: flex;
    align-items: center;
    justify-content: center;

    animation: sweetImageFloat 4s ease-in-out infinite;
}

.sweet-banner-image {
    width: 100%;
    height: 100%;

    object-fit: contain;

    filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.26));
}


/* =========================================================
   FLOATING DECORATIONS
========================================================= */

.sweet-banner-decoration {
    position: absolute;
    z-index: 4;

    color: #efabc0;

    line-height: 1;

    animation: sweetDecorationFloat 3.5s ease-in-out infinite;
}

.sweet-banner-decoration-one {
    top: 18px;
    left: 12%;

    font-size: 21px;
}

.sweet-banner-decoration-two {
    top: 38px;
    right: 10%;

    font-size: 18px;

    animation-delay: 0.7s;
}

.sweet-banner-decoration-three {
    bottom: 18px;
    left: 18%;

    font-size: 24px;

    animation-delay: 1.1s;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.sweet-banner-content {
    position: relative;
    z-index: 5;

    padding-left: 30px;
}

.sweet-banner-eyebrow {
    display: inline-block;

    margin-bottom: 9px;

    color: #e9a8bb;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.sweet-banner-title {
    margin: 0;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 500;

    line-height: 1.15;
}

.sweet-banner-title span {
    display: block;

    color: #f2b5c8;

    font-style: italic;
}

.sweet-banner-description {
    max-width: 480px;

    margin: 14px 0 22px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   BUTTON
========================================================= */

.sweet-banner-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 11px 20px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;

    color: var(--white);

    font-size: 12px;
    font-weight: 600;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.sweet-banner-button span,
.sweet-banner-button strong {
    position: relative;
    z-index: 2;
}

.sweet-banner-button strong {
    font-size: 16px;
    font-weight: 500;

    line-height: 1;

    transition: transform 0.3s ease;
}

.sweet-banner-button:hover {
    background: var(--pink);
    border-color: var(--pink);

    color: var(--white);

    transform: translateY(-2px);
}

.sweet-banner-button:hover strong {
    transform: translateX(4px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes sweetImageFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes sweetImageCircle {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.75;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes sweetDecorationFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-7px) rotate(7deg);
    }
}

@keyframes sweetBannerGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 767px) {

    .bakery-sweet-banner {
        padding: 30px 18px 55px;
    }

    .bakery-sweet-banner-container {
        min-height: 280px;

        padding: 30px 45px;

        grid-template-columns: 42% 58%;
    }

    .sweet-banner-visual {
        height: 210px;
    }

    .sweet-banner-image-wrap {
        width: 215px;
        height: 215px;
    }

    .sweet-banner-glow {
        width: 190px;
        height: 190px;
    }

    .sweet-banner-content {
        padding-left: 20px;
    }

    .sweet-banner-title {
        font-size: 30px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .bakery-sweet-banner {
        padding: 25px 15px 50px;
    }

    .bakery-sweet-banner-container {
        min-height: auto;

        grid-template-columns: 1fr;
        gap: 5px;

        padding: 28px 22px 32px;

        text-align: center;
    }

    .sweet-banner-visual {
        height: 195px;
    }

    .sweet-banner-image-wrap {
        width: 195px;
        height: 195px;
    }

    .sweet-banner-glow {
        width: 170px;
        height: 170px;
    }

    .sweet-banner-content {
        padding-left: 0;
    }

    .sweet-banner-title {
        font-size: 28px;
    }

    .sweet-banner-description {
        margin-left: auto;
        margin-right: auto;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .bakery-sweet-banner-container {
        padding: 25px 18px 30px;
    }

    .sweet-banner-visual {
        height: 175px;
    }

    .sweet-banner-image-wrap {
        width: 175px;
        height: 175px;
    }

    .sweet-banner-glow {
        width: 155px;
        height: 155px;
    }

    .sweet-banner-title {
        font-size: 25px;
    }

    .sweet-banner-description {
        font-size: 12px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .bakery-sweet-banner-container,
    .sweet-banner-image-wrap,
    .sweet-banner-glow,
    .sweet-banner-decoration,
    .bakery-sweet-banner-container::before,
    .bakery-sweet-banner-container::after {
        animation: none;
        transition: none;
    }
}

/* =========================================================
   SWEET BAKERY
   GALLERY SECTION
========================================================= */


/* =========================================================
   1. SECTION
========================================================= */

.bakery-gallery {
    position: relative;
    width: 100%;
    padding: 120px 0 125px;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            #fffaf6 0%,
            #fff7f8 100%);
}


/* =========================================================
   2. BACKGROUND DECORATION
========================================================= */

.bakery-gallery::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(247, 197, 211, 0.30) 0%,
            rgba(247, 197, 211, 0) 70%);
    pointer-events: none;
}

.bakery-gallery::after {
    content: "";
    position: absolute;
    left: -180px;
    bottom: -180px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(255, 221, 207, 0.30) 0%,
            rgba(255, 221, 207, 0) 70%);
    pointer-events: none;
}


/* =========================================================
   3. CONTAINER
========================================================= */

.bakery-gallery-container {
    position: relative;
    z-index: 2;
    width: min(1120px,
            calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   4. HEADER
========================================================= */

.bakery-gallery-header {
    max-width: 680px;
    margin: 0 auto 62px;
    text-align: center;
}


/* =========================================================
   5. EYEBROW
========================================================= */

.bakery-gallery-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 17px;
    color: var(--pink-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.4px;
    line-height: 1;
    text-transform: uppercase;
}

.bakery-gallery-eyebrow span {
    color: var(--pink);
    font-size: 12px;
    animation:
        galleryHeartBeat 2.6s ease-in-out infinite;
}

.bakery-gallery-eyebrow span:last-child {
    animation-delay: -1.3s;
}


/* =========================================================
   6. TITLE
========================================================= */

.bakery-gallery-title {
    margin: 0;
    color: var(--chocolate);
    font-family: var(--font-heading);
    font-size: clamp(40px,
            4vw,
            56px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.bakery-gallery-title span {
    display: block;
    color: var(--pink-dark);
    font-style: italic;
}


/* =========================================================
   7. DESCRIPTION
========================================================= */

.bakery-gallery-description {
    max-width: 590px;
    margin: 19px auto 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   8. GALLERY GRID
========================================================= */

.bakery-gallery-grid {
    display: grid;
    grid-template-columns:
        1.15fr 0.85fr 1fr 0.85fr;
    grid-auto-rows: 235px;
    gap: 16px;
}


/* =========================================================
   9. GALLERY ITEM
========================================================= */

.gallery-item {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #fcecef;
    box-shadow:
        0 12px 35px rgba(74, 45, 45, 0.065);
    isolation: isolate;
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-7px);
    box-shadow:
        0 24px 50px rgba(74, 45, 45, 0.12);
}


/* =========================================================
   10. IMAGE
========================================================= */

.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.08);
}


/* =========================================================
   11. GRID VARIATIONS
========================================================= */

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}


/* =========================================================
   12. IMAGE OVERLAY
========================================================= */

.gallery-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background:
        linear-gradient(180deg,
            rgba(67, 41, 41, 0.02),
            rgba(67, 41, 41, 0.48));
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    opacity: 0;
    transition:
        opacity 0.45s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/* =========================================================
   13. OVERLAY ICON
========================================================= */

.gallery-overlay-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:
        1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background:
        rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    font-size: 17px;
    transform:
        translateY(12px) scale(0.85);
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover .gallery-overlay-icon {
    transform:
        translateY(0) scale(1);
}


/* =========================================================
   14. FLOATING SYMBOLS
========================================================= */

.gallery-floating-symbol {
    position: absolute;
    right: 18px;
    bottom: 17px;
    z-index: 4;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:
        1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background:
        rgba(255, 255, 255, 0.65);
    color: var(--pink-dark);
    font-size: 13px;
    backdrop-filter: blur(7px);
    box-shadow:
        0 7px 20px rgba(74, 45, 45, 0.10);
    animation:
        galleryFloat 4s ease-in-out infinite;
}

.gallery-item-tall .gallery-floating-symbol {
    animation-delay: -1.3s;
}

.gallery-item-wide .gallery-floating-symbol {
    animation-delay: -2.2s;
}


/* =========================================================
   15. BOTTOM NOTE
========================================================= */

.bakery-gallery-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 48px;
    color: var(--text-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.gallery-note-line {
    width: 52px;
    height: 1px;
    background:
        rgba(232, 139, 168, 0.27);
}

.gallery-note-heart {
    color: var(--pink);
    font-size: 13px;
    animation:
        galleryHeartBeat 2.5s ease-in-out infinite;
}


/* =========================================================
   16. CUTE ANIMATIONS
========================================================= */

@keyframes galleryHeartBeat {

    0%,
    100% {
        transform:
            scale(1);
        opacity: 0.55;
    }

    50% {
        transform:
            scale(1.18);
        opacity: 1;
    }

}


@keyframes galleryFloat {

    0%,
    100% {
        transform:
            translateY(0) rotate(0deg);
    }

    50% {
        transform:
            translateY(-7px) rotate(7deg);
    }

}


/* =========================================================
   17. TABLET
========================================================= */

@media (max-width: 900px) {

    .bakery-gallery {
        padding: 95px 0 105px;
    }

    .bakery-gallery-container {
        width: min(700px,
                calc(100% - 40px));
    }

    .bakery-gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        grid-auto-rows: 230px;
        gap: 14px;
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .gallery-overlay {
        opacity: 1;
        background:
            linear-gradient(180deg,
                transparent 45%,
                rgba(67, 41, 41, 0.48));
        justify-content: flex-end;
        align-items: flex-start;
        padding: 20px;
    }

    .gallery-overlay-icon {
        display: none;
    }

}


/* =========================================================
   18. MOBILE
========================================================= */

@media (max-width: 767px) {

    .bakery-gallery {
        padding: 75px 0 85px;
    }

    .bakery-gallery-container {
        width: calc(100% - 30px);
    }

    .bakery-gallery-header {
        margin-bottom: 45px;
    }

    .bakery-gallery-eyebrow {
        font-size: 8px;
        letter-spacing: 1.7px;
    }

    .bakery-gallery-title {
        font-size: clamp(36px,
                10vw,
                48px);
        letter-spacing: -1px;
    }

    .bakery-gallery-description {
        font-size: 13px;
        line-height: 1.75;
    }

    .bakery-gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        grid-auto-rows: 175px;
        gap: 11px;
    }

    .gallery-item {
        border-radius: 18px;
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .gallery-overlay {
        padding: 14px;
        font-size: 8px;
        letter-spacing: 1px;
    }

    .gallery-floating-symbol {
        right: 11px;
        bottom: 11px;
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .bakery-gallery-note {
        gap: 8px;
        margin-top: 35px;
        font-size: 7px;
        letter-spacing: 0.8px;
        text-align: center;
    }

    .gallery-note-line {
        width: 28px;
    }

}


/* =========================================================
   19. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .bakery-gallery {
        padding: 65px 0 75px;
    }

    .bakery-gallery-container {
        width: calc(100% - 22px);
    }

    .bakery-gallery-title {
        font-size: clamp(33px,
                10.5vw,
                43px);
    }

    .bakery-gallery-description {
        font-size: 12.5px;
    }

    .bakery-gallery-grid {
        grid-auto-rows: 145px;
        gap: 9px;
    }

    .gallery-item {
        border-radius: 15px;
    }

    .gallery-overlay {
        padding: 11px;
        font-size: 7px;
    }

    .gallery-floating-symbol {
        width: 25px;
        height: 25px;
        right: 8px;
        bottom: 8px;
        font-size: 9px;
    }

}


/* =========================================================
   20. VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .bakery-gallery-container {
        width: calc(100% - 18px);
    }

    .bakery-gallery-grid {
        grid-auto-rows: 125px;
        gap: 8px;
    }

    .gallery-overlay {
        font-size: 6.5px;
    }

    .bakery-gallery-note {
        font-size: 6px;
    }

}


/* =========================================================
   21. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .bakery-gallery-eyebrow span,
    .gallery-floating-symbol,
    .gallery-note-heart {
        animation: none;
    }

    .gallery-item,
    .gallery-item img,
    .gallery-overlay,
    .gallery-overlay-icon {
        transition: none;
    }

}

/* =========================================================
   ABOUT PAGE
========================================================= */

.about-page {
    position: relative;

    min-height: calc(100vh - 80px);

    padding: 90px 20px 110px;

    display: flex;
    align-items: center;

    background: var(--cream);

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.about-page::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -260px;
    right: -180px;

    border-radius: 50%;

    background: rgba(232, 139, 168, 0.08);

    animation: aboutBackgroundFloat 8s ease-in-out infinite;
}

.about-page::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -220px;
    left: -160px;

    border-radius: 50%;

    background: rgba(232, 139, 168, 0.07);

    animation: aboutBackgroundFloat 8s ease-in-out infinite reverse;
}


/* =========================================================
   CONTAINER
========================================================= */

.about-page-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1150px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;

    gap: 90px;
}


/* =========================================================
   LEFT IMAGE
========================================================= */

.about-page-visual {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Soft image background */

.about-image-bg {
    position: absolute;

    width: 410px;
    height: 480px;

    border-radius: 220px 220px 35px 35px;

    background: var(--pink-light);

    transform: rotate(-5deg);

    transition: transform 0.5s ease;
}


/* Image frame */

.about-image-frame {
    position: relative;
    z-index: 2;

    width: 390px;
    height: 480px;

    overflow: hidden;

    border-radius: 220px 220px 35px 35px;

    background: var(--white);

    box-shadow:
        0 25px 60px rgba(74, 45, 45, 0.14);

    animation: aboutImageFloat 5s ease-in-out infinite;
}


/* Image */

.about-page-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.about-image-frame:hover .about-page-image {
    transform: scale(1.06);
}

.about-image-frame:hover+.about-decoration {
    transform: translateY(-5px);
}


/* =========================================================
   IMAGE DECORATIONS
========================================================= */

.about-decoration {
    position: absolute;
    z-index: 4;

    color: var(--pink-dark);

    line-height: 1;

    animation: aboutDecorationFloat 3.5s ease-in-out infinite;
}

.about-decoration-one {
    top: 70px;
    left: 35px;

    font-size: 25px;
}

.about-decoration-two {
    top: 125px;
    right: 20px;

    font-size: 18px;

    animation-delay: 0.7s;
}

.about-decoration-three {
    bottom: 70px;
    left: 35px;

    font-size: 26px;

    animation-delay: 1.1s;
}


/* Floating heart */

.about-floating-heart {
    position: absolute;
    z-index: 5;

    right: 5px;
    bottom: 55px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--white);

    color: var(--pink-dark);

    font-size: 23px;

    box-shadow:
        0 12px 30px rgba(74, 45, 45, 0.12);

    animation: aboutHeartFloat 4s ease-in-out infinite;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.about-page-content {
    position: relative;
    z-index: 3;

    max-width: 570px;
}


/* Eyebrow */

.about-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 17px;

    color: var(--pink-dark);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.about-page-eyebrow span {
    font-size: 15px;
}


/* Heading */

.about-page-title {
    margin: 0;

    color: var(--chocolate);

    font-family: var(--font-heading);

    font-size: clamp(43px, 5vw, 64px);
    font-weight: 500;

    line-height: 1.08;
}

.about-page-title span {
    display: block;

    color: var(--pink-dark);

    font-style: italic;
}


/* =========================================================
   DIVIDER
========================================================= */

.about-page-divider {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 150px;

    margin: 25px 0 25px;
}

.about-page-divider span {
    width: 45px;
    height: 1px;

    background: #e5c4cc;
}

.about-page-divider i {
    color: var(--pink-dark);

    font-size: 12px;
    font-style: normal;

    animation: aboutSparkle 2.5s ease-in-out infinite;
}


/* =========================================================
   STORY
========================================================= */

.about-page-content p {
    margin: 0 0 15px;

    color: var(--text-light);

    font-size: 15px;
    line-height: 1.85;
}

.about-page-content p:last-of-type {
    margin-bottom: 0;
}


/* =========================================================
   SIGNATURE
========================================================= */

.about-page-signature {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-top: 28px;
}

.about-signature-heart {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--pink-light);

    color: var(--pink-dark);

    font-size: 19px;

    animation: aboutHeartBeat 2.5s ease-in-out infinite;
}

.about-page-signature strong,
.about-page-signature span {
    display: block;
}

.about-page-signature strong {
    color: var(--chocolate);

    font-family: var(--font-heading);

    font-size: 17px;
    font-weight: 600;
}

.about-page-signature span {
    margin-top: 2px;

    color: var(--text-light);

    font-size: 11px;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes aboutImageFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


@keyframes aboutDecorationFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-8px) rotate(7deg);
    }
}


@keyframes aboutHeartFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


@keyframes aboutHeartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.12);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.08);
    }

    40% {
        transform: scale(1);
    }
}


@keyframes aboutSparkle {

    0%,
    100% {
        transform: scale(1) rotate(0);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.3) rotate(15deg);
        opacity: 1;
    }
}


@keyframes aboutBackgroundFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(15px) scale(1.05);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .about-page {
        padding: 75px 20px 90px;
    }

    .about-page-container {
        gap: 50px;
    }

    .about-page-visual {
        min-height: 450px;
    }

    .about-image-bg {
        width: 340px;
        height: 410px;
    }

    .about-image-frame {
        width: 320px;
        height: 410px;
    }

    .about-page-title {
        font-size: 45px;
    }

    .about-page-content p {
        font-size: 14px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .about-page {
        padding: 55px 18px 75px;
    }

    .about-page-container {
        grid-template-columns: 1fr;

        gap: 55px;

        text-align: center;
    }


    /* Image */

    .about-page-visual {
        min-height: 400px;

        order: 1;
    }

    .about-image-bg {
        width: 310px;
        height: 380px;
    }

    .about-image-frame {
        width: 290px;
        height: 380px;
    }

    .about-decoration-one {
        left: 10%;
    }

    .about-decoration-two {
        right: 8%;
    }

    .about-decoration-three {
        left: 12%;
    }

    .about-floating-heart {
        right: 5%;
        bottom: 35px;
    }


    /* Content */

    .about-page-content {
        order: 2;

        margin: 0 auto;
    }

    .about-page-title {
        font-size: 41px;
    }

    .about-page-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .about-page-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-page-signature {
        justify-content: center;

        text-align: left;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .about-page {
        padding: 45px 15px 65px;
    }

    .about-page-container {
        gap: 45px;
    }

    .about-page-visual {
        min-height: 350px;
    }

    .about-image-bg {
        width: 270px;
        height: 330px;
    }

    .about-image-frame {
        width: 250px;
        height: 330px;
    }

    .about-page-title {
        font-size: 35px;
    }

    .about-page-content p {
        font-size: 13px;
    }

    .about-floating-heart {
        width: 48px;
        height: 48px;

        font-size: 19px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-page::before,
    .about-page::after,
    .about-image-frame,
    .about-decoration,
    .about-floating-heart,
    .about-page-divider i,
    .about-signature-heart {
        animation: none;
    }

    .about-page-image,
    .about-image-bg {
        transition: none;
    }
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
    position: relative;

    min-height: calc(100vh - 80px);

    padding: 85px 20px 105px;

    display: flex;
    align-items: center;

    background: var(--cream);

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.contact-page::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: -290px;
    left: -180px;

    border-radius: 50%;

    background: rgba(232, 139, 168, 0.08);

    animation: contactBackgroundFloat 9s ease-in-out infinite;
}

.contact-page::after {
    content: "";

    position: absolute;

    width: 390px;
    height: 390px;

    right: -180px;
    bottom: -230px;

    border-radius: 50%;

    background: rgba(232, 139, 168, 0.07);

    animation: contactBackgroundFloat 9s ease-in-out infinite reverse;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.contact-page-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1160px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 85px;
}


/* =========================================================
   LEFT INFORMATION
========================================================= */

.contact-page-info {
    position: relative;

    max-width: 500px;
}


/* =========================================================
   EYEBROW
========================================================= */

.contact-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 17px;

    color: var(--pink-dark);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.contact-page-eyebrow span {
    font-size: 15px;

    animation: contactTinyHeartbeat 2.5s ease-in-out infinite;
}


/* =========================================================
   TITLE
========================================================= */

.contact-page-title {
    margin: 0;

    color: var(--chocolate);

    font-family: var(--font-heading);

    font-size: clamp(43px, 5vw, 64px);
    font-weight: 500;

    line-height: 1.08;
}

.contact-page-title span {
    display: block;

    color: var(--pink-dark);

    font-style: italic;
}


/* =========================================================
   INTRO
========================================================= */

.contact-page-intro {
    max-width: 470px;

    margin: 28px 0 13px;

    color: var(--text);

    font-size: 16px;
    font-weight: 500;

    line-height: 1.8;
}

.contact-page-text {
    max-width: 470px;

    margin: 0;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
    display: flex;
    flex-direction: column;

    gap: 19px;

    margin-top: 32px;
}


/* Detail Item */

.contact-detail-item {
    display: flex;
    align-items: center;

    gap: 15px;
}


/* Detail Icon */

.contact-detail-icon {
    width: 47px;
    height: 47px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--pink-light);

    color: var(--pink-dark);

    font-size: 18px;

    box-shadow:
        0 8px 20px rgba(217, 111, 145, 0.08);

    transition:
        transform var(--transition),
        background var(--transition);
}

.contact-detail-item:hover .contact-detail-icon {
    transform: translateY(-4px) rotate(5deg);

    background: #ffe6ee;
}


/* Detail Content */

.contact-detail-content {
    display: flex;
    flex-direction: column;
}

.contact-detail-label {
    margin-bottom: 2px;

    color: var(--pink-dark);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.contact-detail-content strong {
    color: var(--chocolate);

    font-family: var(--font-heading);

    font-size: 16px;
    font-weight: 600;

    line-height: 1.4;
}

.contact-detail-content>span:last-child {
    color: var(--text-light);

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   BOTTOM NOTE
========================================================= */

.contact-page-note {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-top: 38px;

    color: var(--text-light);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.7px;
}

.contact-note-line {
    width: 40px;
    height: 1px;

    background: #e6c9d0;
}

.contact-note-heart {
    color: var(--pink-dark);

    font-size: 14px;

    animation: contactTinyHeartbeat 2.5s ease-in-out infinite;
}


/* =========================================================
   LEFT DECORATIONS
========================================================= */

.contact-decoration {
    position: absolute;

    color: var(--pink-dark);

    line-height: 1;

    pointer-events: none;

    animation: contactDecorationFloat 4s ease-in-out infinite;
}

.contact-decoration-one {
    top: 45px;
    right: 20px;

    font-size: 21px;
}

.contact-decoration-two {
    right: -5px;
    bottom: 145px;

    font-size: 17px;

    animation-delay: 0.8s;
}

.contact-decoration-three {
    left: -18px;
    bottom: 35px;

    font-size: 23px;

    animation-delay: 1.3s;
}


/* =========================================================
   RIGHT FORM WRAPPER
========================================================= */

.contact-page-form-wrapper {
    position: relative;

    width: 100%;
}


/* =========================================================
   FORM CARD
========================================================= */

.contact-form-card {
    position: relative;

    padding: 38px 40px 34px;

    background: var(--white);

    border: 1px solid rgba(241, 223, 228, 0.9);

    border-radius: 28px;

    box-shadow:
        0 25px 65px rgba(74, 45, 45, 0.10);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.contact-form-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -105px;
    right: -75px;

    border-radius: 50%;

    background: var(--pink-light);

    opacity: 0.8;
}

.contact-form-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 32px 75px rgba(74, 45, 45, 0.13);
}


/* =========================================================
   FORM HEADER
========================================================= */

.contact-form-header {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 29px;
}


/* Header Icon */

.contact-form-mini-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--pink-light);

    color: var(--pink-dark);

    font-size: 18px;

    animation: contactTinyHeartbeat 3s ease-in-out infinite;
}


/* Header Label */

.contact-form-label {
    display: block;

    margin-bottom: 4px;

    color: var(--pink-dark);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* Header Title */

.contact-form-header h2 {
    margin: 0;

    color: var(--chocolate);

    font-family: var(--font-heading);

    font-size: 30px;
    font-weight: 500;

    line-height: 1.2;
}

.contact-form-header h2 span {
    color: var(--pink-dark);

    font-style: italic;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
    position: relative;
    z-index: 2;
}


/* Two-column row */

.contact-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 17px;
}


/* Form Group */

.contact-form-group {
    margin-bottom: 18px;
}


/* Label */

.contact-form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--chocolate);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.3px;
}


/* Inputs */

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: #fffdfc;

    color: var(--text);

    font-size: 13px;

    outline: none;

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}


/* Input / Select */

.contact-form-group input,
.contact-form-group select {
    height: 48px;

    padding: 0 14px;
}


/* Textarea */

.contact-form-group textarea {
    min-height: 125px;

    padding: 13px 14px;

    resize: vertical;

    line-height: 1.6;
}


/* Placeholder */

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #b8a7aa;
}


/* Focus */

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--pink);

    background: var(--white);

    box-shadow:
        0 0 0 4px rgba(232, 139, 168, 0.10);
}


/* Select */

.contact-form-group select {
    appearance: none;

    padding-right: 38px;

    background-image:
        linear-gradient(45deg, transparent 50%, var(--pink-dark) 50%),
        linear-gradient(135deg, var(--pink-dark) 50%, transparent 50%);

    background-position:
        calc(100% - 18px) 20px,
        calc(100% - 13px) 20px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit-button {
    width: 100%;

    min-height: 52px;

    margin-top: 2px;

    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    border: 0;

    border-radius: 14px;

    background: var(--pink);

    color: var(--white);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.3px;

    box-shadow:
        0 12px 28px rgba(217, 111, 145, 0.20);

    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.contact-submit-button strong {
    font-size: 18px;
    font-weight: 500;

    transition: transform var(--transition);
}

.contact-submit-button:hover {
    background: var(--pink-dark);

    transform: translateY(-2px);

    box-shadow:
        0 16px 32px rgba(217, 111, 145, 0.27);
}

.contact-submit-button:hover strong {
    transform: translateX(5px);
}

.contact-submit-button:active {
    transform: translateY(0);
}


/* =========================================================
   FORM BOTTOM NOTE
========================================================= */

.contact-form-bottom-note {
    margin: 14px 0 0;

    color: var(--text-light);

    font-size: 10px;

    text-align: center;
}

.contact-form-bottom-note span {
    color: var(--pink-dark);

    font-size: 13px;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes contactBackgroundFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(16px) scale(1.05);
    }
}


@keyframes contactDecorationFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.75;
    }

    50% {
        transform: translateY(-9px) rotate(8deg);
        opacity: 1;
    }
}


@keyframes contactTinyHeartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.12);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.08);
    }

    40% {
        transform: scale(1);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .contact-page {
        padding: 70px 20px 90px;
    }

    .contact-page-container {
        gap: 55px;
    }

    .contact-page-title {
        font-size: 48px;
    }

    .contact-form-card {
        padding: 34px 30px 30px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .contact-page {
        padding: 55px 18px 75px;
    }

    .contact-page-container {
        grid-template-columns: 1fr;

        gap: 55px;

        text-align: center;
    }


    /* Information */

    .contact-page-info {
        max-width: 560px;

        margin: 0 auto;
    }

    .contact-page-title {
        font-size: 42px;
    }

    .contact-page-intro,
    .contact-page-text {
        margin-left: auto;
        margin-right: auto;
    }


    /* Details */

    .contact-details {
        align-items: flex-start;

        width: fit-content;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }


    /* Note */

    .contact-page-note {
        justify-content: center;
    }


    /* Decorations */

    .contact-decoration-one {
        top: 20px;
        right: 8%;
    }

    .contact-decoration-two {
        right: 4%;
        bottom: 120px;
    }

    .contact-decoration-three {
        left: 4%;
        bottom: 25px;
    }


    /* Form */

    .contact-form-card {
        padding: 30px 24px 27px;

        border-radius: 23px;

        text-align: left;
    }

    .contact-form-header {
        text-align: left;
    }

    .contact-form-header h2 {
        font-size: 27px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .contact-page {
        padding: 45px 15px 65px;
    }

    .contact-page-container {
        gap: 45px;
    }

    .contact-page-title {
        font-size: 36px;
    }

    .contact-page-intro {
        font-size: 14px;
    }

    .contact-page-text {
        font-size: 13px;
    }


    /* Details */

    .contact-detail-item {
        gap: 12px;
    }

    .contact-detail-icon {
        width: 42px;
        height: 42px;

        font-size: 16px;
    }

    .contact-detail-content strong {
        font-size: 14px;
    }

    .contact-detail-content>span:last-child {
        font-size: 10px;
    }


    /* Form */

    .contact-form-card {
        padding: 27px 18px 24px;

        border-radius: 20px;
    }

    .contact-form-header {
        gap: 11px;

        margin-bottom: 24px;
    }

    .contact-form-mini-icon {
        width: 39px;
        height: 39px;

        font-size: 16px;
    }

    .contact-form-header h2 {
        font-size: 24px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .contact-form-group input,
    .contact-form-group select {
        height: 46px;
    }

    .contact-form-group textarea {
        min-height: 115px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .contact-page-title {
        font-size: 33px;
    }

    .contact-page-note {
        gap: 7px;

        font-size: 9px;
    }

    .contact-note-line {
        width: 25px;
    }

    .contact-form-header h2 {
        font-size: 22px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-page::before,
    .contact-page::after,
    .contact-page-eyebrow span,
    .contact-note-heart,
    .contact-decoration,
    .contact-form-mini-icon {
        animation: none;
    }

    .contact-form-card,
    .contact-detail-icon,
    .contact-submit-button,
    .contact-submit-button strong {
        transition: none;
    }
}

/* =========================================================
   PRODUCTS PAGE
========================================================= */

.products-page {
    position: relative;

    min-height: calc(100vh - 80px);

    padding: 85px 20px 105px;

    background: var(--cream);

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.products-page::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -280px;
    left: -180px;

    border-radius: 50%;

    background: rgba(232, 139, 168, 0.07);

    animation: productsPageBackgroundFloat 9s ease-in-out infinite;

    pointer-events: none;
}

.products-page::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -190px;
    bottom: -250px;

    border-radius: 50%;

    background: rgba(232, 139, 168, 0.07);

    animation: productsPageBackgroundFloat 9s ease-in-out infinite reverse;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.products-page-container {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}


/* =========================================================
   PAGE HEADER
========================================================= */

.products-page-header {
    max-width: 680px;

    margin: 0 auto;

    text-align: center;
}


/* Eyebrow */

.products-page-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-bottom: 17px;

    color: var(--pink-dark);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.products-page-eyebrow span {
    display: inline-block;

    font-size: 14px;

    animation: productsPageSparkle 2.5s ease-in-out infinite;
}


/* Title */

.products-page-title {
    margin: 0;

    color: var(--chocolate);

    font-family: var(--font-heading);

    font-size: clamp(44px, 5vw, 65px);
    font-weight: 500;

    line-height: 1.08;
}

.products-page-title span {
    display: block;

    color: var(--pink-dark);

    font-style: italic;
}


/* Description */

.products-page-description {
    max-width: 580px;

    margin: 23px auto 0;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   FILTER
========================================================= */

.products-page-filter {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    width: fit-content;

    margin: 40px auto 42px;

    padding: 5px;

    border: 1px solid var(--border);

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.72);

    box-shadow:
        0 8px 25px rgba(74, 45, 45, 0.04);
}


/* Filter Button */

.products-filter-button {
    min-width: 105px;

    padding: 10px 19px;

    border: 0;

    border-radius: 50px;

    background: transparent;

    color: var(--text-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.4px;

    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.products-filter-button:hover {
    color: var(--pink-dark);

    transform: translateY(-1px);
}

.products-filter-button.active {
    background: var(--pink);

    color: var(--white);

    box-shadow:
        0 7px 18px rgba(217, 111, 145, 0.20);
}


/* =========================================================
   PRODUCTS GRID
========================================================= */

.products-page-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.products-page-card {
    position: relative;

    min-width: 0;

    border: 1px solid rgba(241, 223, 228, 0.9);

    border-radius: 22px;

    background: var(--white);

    box-shadow:
        0 15px 40px rgba(74, 45, 45, 0.06);

    overflow: hidden;

    opacity: 1;

    transform: translateY(0);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.products-page-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 24px 52px rgba(74, 45, 45, 0.11);
}


/* Hidden State */

.products-page-card.is-hidden {
    display: none;
}


/* =========================================================
   CARD VISUAL
   IMPORTANT:
   - No circular image container
   - Product image uses the complete rectangular area
   - Full image remains visible
========================================================= */

.products-card-visual {
    position: relative;

    width: 100%;
    height: 275px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(145deg,
            #fff8fa 0%,
            #fff1f5 100%);

    overflow: hidden;
}


/*
|--------------------------------------------------------------------------
| Soft background decoration
|--------------------------------------------------------------------------
| This is intentionally NOT behind the product as a circular image
| container. It is only a subtle background glow.
*/

.products-card-visual::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: 50%;
    left: 50%;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);

    transform:
        translate(-50%, -50%) scale(1);

    transition:
        transform 0.6s ease,
        opacity 0.6s ease;

    pointer-events: none;
}

.products-page-card:hover .products-card-visual::before {
    transform:
        translate(-50%, -50%) scale(1.10);

    opacity: 0.75;
}


/* =========================================================
   PRODUCT IMAGE WRAPPER
========================================================= */

.products-card-image-wrap {
    position: absolute;

    inset: 0;

    z-index: 2;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 14px 18px;

    overflow: hidden;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.products-card-image {
    display: block;

    width: 100%;
    height: 100%;

    /*
     * contain = complete image visible
     * No circular crop
     * No unwanted cropping
     */
    object-fit: contain;

    object-position: center;

    filter:
        drop-shadow(0 16px 18px rgba(74, 45, 45, 0.12));

    transform:
        translateY(0) scale(1);

    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.55s ease;
}

.products-page-card:hover .products-card-image {
    transform:
        translateY(-6px) scale(1.05) rotate(-1deg);

    filter:
        drop-shadow(0 20px 22px rgba(74, 45, 45, 0.15));
}


/* =========================================================
   PRODUCT TAG
========================================================= */

.products-card-tag {
    position: absolute;

    z-index: 5;

    top: 15px;
    left: 15px;

    padding: 6px 10px;

    border-radius: 50px;

    background: var(--white);

    color: var(--pink-dark);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.7px;
    text-transform: uppercase;

    box-shadow:
        0 6px 18px rgba(74, 45, 45, 0.07);
}

.products-card-tag-new {
    background: var(--pink);

    color: var(--white);
}


/* =========================================================
   QUICK BUTTON
========================================================= */

.products-card-quick {
    position: absolute;

    z-index: 6;

    right: 15px;
    bottom: 15px;

    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: var(--white);

    color: var(--pink-dark);

    font-size: 17px;

    box-shadow:
        0 8px 20px rgba(74, 45, 45, 0.10);

    opacity: 0;

    transform:
        translateY(8px) scale(0.85);

    transition:
        opacity var(--transition),
        transform var(--transition),
        background var(--transition),
        color var(--transition);
}

.products-page-card:hover .products-card-quick {
    opacity: 1;

    transform:
        translateY(0) scale(1);
}

.products-card-quick:hover {
    background: var(--pink);

    color: var(--white);
}

.products-card-quick span {
    display: inline-block;

    transition:
        transform var(--transition);
}

.products-card-quick:hover span {
    transform: translateX(2px);
}


/* =========================================================
   CARD SPARKLES
========================================================= */

.products-card-sparkle {
    position: absolute;

    z-index: 4;

    color: var(--pink-dark);

    line-height: 1;

    pointer-events: none;

    animation:
        productsCardSparkle 3.5s ease-in-out infinite;
}

.products-card-sparkle-one {
    top: 57px;
    right: 32px;

    font-size: 17px;
}

.products-card-sparkle-two {
    bottom: 32px;
    left: 25px;

    font-size: 14px;

    animation-delay: 0.8s;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.products-card-content {
    padding: 22px 20px 21px;
}


/* Category */

.products-card-category {
    display: block;

    margin-bottom: 6px;

    color: var(--pink-dark);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.6px;
    text-transform: uppercase;
}


/* Product Name */

.products-card-content h2 {
    margin: 0;

    color: var(--chocolate);

    font-family: var(--font-heading);

    font-size: 21px;
    font-weight: 600;

    line-height: 1.25;
}


/* Description */

.products-card-content p {
    min-height: 58px;

    margin: 9px 0 17px;

    color: var(--text-light);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.products-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding-top: 13px;

    border-top: 1px solid #f5e7ea;
}


/* Price */

.products-card-price {
    color: var(--chocolate);

    font-family: var(--font-heading);

    font-size: 19px;
    font-weight: 600;

    white-space: nowrap;
}


/* View Product */

.products-card-view {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: var(--pink-dark);

    font-size: 10px;
    font-weight: 700;

    white-space: nowrap;
}

.products-card-view span {
    display: inline-block;

    font-size: 14px;

    transition:
        transform var(--transition);
}

.products-card-view:hover {
    color: var(--chocolate);
}

.products-card-view:hover span {
    transform: translateX(4px);
}


/* =========================================================
   BOTTOM NOTE
========================================================= */

.products-page-note {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 48px;

    color: var(--text-light);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.7px;
    text-align: center;
}

.products-note-line {
    width: 45px;
    height: 1px;

    background: #e5c8d0;
}

.products-note-heart {
    display: inline-block;

    color: var(--pink-dark);

    font-size: 14px;

    animation:
        productsHeartBeat 2.5s ease-in-out infinite;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes productsPageBackgroundFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(15px) scale(1.05);
    }
}


@keyframes productsCardSparkle {

    0%,
    100% {
        transform:
            translateY(0) rotate(0deg) scale(1);

        opacity: 0.65;
    }

    50% {
        transform:
            translateY(-7px) rotate(12deg) scale(1.18);

        opacity: 1;
    }
}


@keyframes productsPageSparkle {

    0%,
    100% {
        transform:
            scale(1) rotate(0);

        opacity: 0.7;
    }

    50% {
        transform:
            scale(1.3) rotate(12deg);

        opacity: 1;
    }
}


@keyframes productsHeartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.12);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.08);
    }

    40% {
        transform: scale(1);
    }
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1050px) {

    .products-page-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .products-page {
        padding: 70px 20px 90px;
    }

    .products-page-title {
        font-size: 48px;
    }

    .products-page-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

    .products-card-visual {
        height: 260px;
    }

    .products-card-image-wrap {
        padding: 12px 15px;
    }

    .products-card-content h2 {
        font-size: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .products-page {
        padding: 55px 17px 75px;
    }

    .products-page-title {
        font-size: 41px;
    }

    .products-page-description {
        font-size: 13px;
    }

    .products-page-filter {
        margin-top: 32px;
        margin-bottom: 35px;
    }

    .products-filter-button {
        min-width: 88px;

        padding: 9px 13px;

        font-size: 10px;
    }

    .products-page-grid {
        grid-template-columns: 1fr;

        max-width: 390px;

        margin: 0 auto;

        gap: 22px;
    }

    .products-card-visual {
        height: 290px;
    }

    .products-card-image-wrap {
        padding: 12px 16px;
    }

    .products-card-content {
        padding: 22px 20px 21px;
    }

    .products-card-content p {
        min-height: auto;
    }

    .products-card-quick {
        opacity: 1;

        transform:
            translateY(0) scale(1);
    }

    .products-page-note {
        gap: 8px;

        font-size: 9px;
    }

    .products-note-line {
        width: 28px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .products-page {
        padding-left: 14px;
        padding-right: 14px;
    }

    .products-page-title {
        font-size: 35px;
    }

    .products-page-eyebrow {
        font-size: 10px;
    }

    .products-page-filter {
        gap: 3px;
    }

    .products-filter-button {
        min-width: auto;

        padding: 9px 11px;

        font-size: 9px;
    }

    .products-card-visual {
        height: 270px;
    }

    .products-card-image-wrap {
        padding: 10px 13px;
    }

    .products-card-content h2 {
        font-size: 19px;
    }

    .products-card-price {
        font-size: 18px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .products-page::before,
    .products-page::after,
    .products-page-eyebrow span,
    .products-card-sparkle,
    .products-note-heart {
        animation: none;
    }

    .products-page-card,
    .products-card-image,
    .products-card-visual::before,
    .products-card-quick,
    .products-card-view span,
    .products-filter-button {
        transition: none;
    }
}

/* =========================================================
   PRODUCT DETAIL PAGE
========================================================= */

.product-detail-page {
    position: relative;

    min-height: calc(100vh - 80px);

    padding: 38px 20px 100px;

    background:
        linear-gradient(180deg,
            #fffaf6 0%,
            #fff5f8 100%);

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.product-detail-page::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -270px;
    left: -220px;

    border-radius: 50%;

    background: rgba(232, 139, 168, 0.07);

    pointer-events: none;
}

.product-detail-page::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -220px;
    bottom: -240px;

    border-radius: 50%;

    background: rgba(232, 139, 168, 0.07);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.product-detail-container {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.product-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 35px;

    color: var(--text-light);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.3px;
}

.product-detail-breadcrumb a {
    color: var(--text-light);
}

.product-detail-breadcrumb a:hover {
    color: var(--pink-dark);
}

.product-detail-breadcrumb span {
    color: #d8aeba;
}

.product-detail-breadcrumb strong {
    color: var(--pink-dark);

    font-weight: 700;
}


/* =========================================================
   MAIN GRID
========================================================= */

.product-detail-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.02fr) minmax(0, 0.98fr);

    align-items: center;

    gap: 75px;
}


/* =========================================================
   PRODUCT VISUAL
========================================================= */

.product-detail-visual {
    min-width: 0;
}


/* Image Card */

.product-detail-image-card {
    position: relative;

    width: 100%;
    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(241, 223, 228, 0.9);

    border-radius: 28px;

    background:
        linear-gradient(145deg,
            #fff8fa 0%,
            #fff0f4 100%);

    box-shadow:
        0 25px 65px rgba(74, 45, 45, 0.08);

    overflow: hidden;
}


/* Soft visual glow */

.product-detail-image-card::before {
    content: "";

    position: absolute;

    width: 390px;
    height: 390px;

    top: 50%;
    left: 50%;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.62);

    transform:
        translate(-50%, -50%);

    pointer-events: none;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-detail-image-wrap {
    position: relative;

    z-index: 2;

    width: 82%;
    height: 82%;

    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;
}

.product-detail-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center;

    filter:
        drop-shadow(0 24px 25px rgba(74, 45, 45, 0.15));

    animation:
        productDetailImageFloat 5s ease-in-out infinite;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.product-detail-image-card:hover .product-detail-image {
    transform: scale(1.035);

    filter:
        drop-shadow(0 28px 30px rgba(74, 45, 45, 0.17));
}


/* =========================================================
   PRODUCT TAG
========================================================= */

.product-detail-tag {
    position: absolute;

    z-index: 5;

    top: 22px;
    left: 22px;

    padding: 8px 13px;

    border-radius: 50px;

    background: var(--pink);

    color: var(--white);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.8px;
    text-transform: uppercase;

    box-shadow:
        0 8px 20px rgba(217, 111, 145, 0.20);
}


/* =========================================================
   FLOATING SYMBOLS
========================================================= */

.product-detail-floating-symbol {
    position: absolute;

    z-index: 4;

    color: var(--pink-dark);

    line-height: 1;

    pointer-events: none;

    animation:
        productDetailSymbolFloat 4s ease-in-out infinite;
}

.symbol-one {
    top: 78px;
    right: 65px;

    font-size: 20px;
}

.symbol-two {
    right: 42px;
    bottom: 75px;

    font-size: 16px;

    animation-delay: 0.9s;
}

.symbol-three {
    left: 48px;
    bottom: 65px;

    font-size: 21px;

    animation-delay: 1.5s;
}


/* =========================================================
   IMAGE NOTE
========================================================= */

.product-detail-image-note {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 22px;

    color: var(--text-light);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.7px;
    text-align: center;
}

.product-detail-image-note span:nth-child(3) {
    color: var(--pink-dark);

    font-size: 14px;
}

.product-detail-image-note>span:first-child,
.product-detail-image-note>span:last-child {
    width: 40px;
    height: 1px;

    background: #e5c8d0;
}


/* =========================================================
   CONTENT
========================================================= */

.product-detail-content {
    min-width: 0;

    padding: 15px 0;
}


/* Category */

.product-detail-category {
    display: block;

    margin-bottom: 13px;

    color: var(--pink-dark);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.2px;
    text-transform: uppercase;
}


/* Title */

.product-detail-title {
    max-width: 540px;

    margin: 0;

    color: var(--chocolate);

    font-family: var(--font-heading);

    font-size: clamp(43px, 5vw, 65px);
    font-weight: 500;

    line-height: 1.08;
}


/* Divider */

.product-detail-divider {
    display: flex;
    align-items: center;

    gap: 10px;

    width: 145px;

    margin: 25px 0;
}

.product-detail-divider span {
    flex: 1;

    height: 1px;

    background: #e6cbd2;
}

.product-detail-divider i {
    color: var(--pink-dark);

    font-size: 14px;

    font-style: normal;
}


/* Description */

.product-detail-description {
    max-width: 500px;

    margin: 0 0 25px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   PRICE
========================================================= */

.product-detail-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 28px;
}

.product-detail-price {
    color: var(--chocolate);

    font-family: var(--font-heading);

    font-size: 30px;
    font-weight: 600;
}

.product-detail-price-note {
    padding-left: 15px;

    border-left: 1px solid #ead6db;

    color: var(--text-light);

    font-size: 10px;
}


/* =========================================================
   QUANTITY
========================================================= */

.product-detail-option {
    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 500px;

    padding: 17px 0;

    border-top: 1px solid #f0dfe3;
    border-bottom: 1px solid #f0dfe3;
}

.product-detail-option-label {
    color: var(--chocolate);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.product-detail-quantity {
    display: flex;
    align-items: center;

    border: 1px solid var(--border);

    border-radius: 50px;

    background: var(--white);

    overflow: hidden;
}

.quantity-button {
    width: 38px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    background: transparent;

    color: var(--pink-dark);

    font-size: 18px;

    transition:
        background var(--transition),
        color var(--transition);
}

.quantity-button:hover {
    background: var(--pink-light);

    color: var(--chocolate);
}

#quantity-value {
    min-width: 30px;

    color: var(--chocolate);

    font-size: 12px;
    font-weight: 700;

    text-align: center;
}


/* =========================================================
   ACTIONS
========================================================= */

.product-detail-actions {
    display: flex;
    align-items: stretch;

    gap: 10px;

    max-width: 500px;

    margin-top: 24px;
}

.product-detail-add-button {
    flex: 1;

    min-height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;

    border: 0;

    border-radius: 14px;

    background: var(--pink);

    color: var(--white);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.8px;

    box-shadow:
        0 12px 28px rgba(217, 111, 145, 0.20);

    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.product-detail-add-button:hover {
    background: var(--pink-dark);

    transform: translateY(-3px);

    box-shadow:
        0 17px 32px rgba(217, 111, 145, 0.26);
}

.product-detail-add-button strong {
    font-size: 17px;

    transition:
        transform var(--transition);
}

.product-detail-add-button:hover strong {
    transform: translateX(5px);
}


/* Wishlist */

.product-detail-heart {
    width: 55px;
    min-width: 55px;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: var(--white);

    color: var(--pink-dark);

    font-size: 23px;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.product-detail-heart:hover {
    background: var(--pink-light);

    color: var(--pink-dark);

    transform: translateY(-3px);
}


/* =========================================================
   BENEFITS
========================================================= */

.product-detail-benefits {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;

    max-width: 500px;

    margin-top: 30px;
}

.product-benefit {
    display: flex;
    align-items: flex-start;

    gap: 9px;

    min-width: 0;
}

.product-benefit-icon {
    flex-shrink: 0;

    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--pink-light);

    color: var(--pink-dark);

    font-size: 12px;
}

.product-benefit div {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.product-benefit strong {
    color: var(--chocolate);

    font-size: 9px;
    font-weight: 700;

    line-height: 1.3;
}

.product-benefit div span {
    color: var(--text-light);

    font-size: 8px;

    line-height: 1.5;
}


/* =========================================================
   PRODUCT STORY
========================================================= */

.product-detail-story {
    margin-top: 105px;

    padding: 75px 30px;

    border-top: 1px solid #f0dfe3;
    border-bottom: 1px solid #f0dfe3;

    text-align: center;
}

.product-story-header {
    max-width: 650px;

    margin: 0 auto;
}

.product-story-header>span {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    color: var(--pink-dark);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-story-header>span i {
    font-size: 13px;

    font-style: normal;
}

.product-story-header h2 {
    margin: 0;

    color: var(--chocolate);

    font-family: var(--font-heading);

    font-size: clamp(36px, 4vw, 50px);
    font-weight: 500;

    line-height: 1.15;
}

.product-story-header h2 em {
    display: block;

    color: var(--pink-dark);

    font-style: italic;
}

.product-story-header p {
    max-width: 540px;

    margin: 20px auto 0;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   BACK TO PRODUCTS
========================================================= */

.product-detail-back {
    display: flex;
    justify-content: center;

    margin-top: 45px;
}

.product-detail-back a {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--pink-dark);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.5px;
}

.product-detail-back a:hover {
    color: var(--chocolate);
}

.product-detail-back a span {
    font-size: 17px;

    transition:
        transform var(--transition);
}

.product-detail-back a:hover span {
    transform: translateX(-4px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes productDetailImageFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes productDetailSymbolFloat {

    0%,
    100% {
        transform:
            translateY(0) rotate(0deg);

        opacity: 0.65;
    }

    50% {
        transform:
            translateY(-9px) rotate(10deg);

        opacity: 1;
    }
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1050px) {

    .product-detail-grid {
        gap: 45px;
    }

    .product-detail-image-card {
        min-height: 500px;
    }

    .product-detail-image-wrap {
        min-height: 390px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .product-detail-page {
        padding-top: 30px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;

        gap: 55px;

        max-width: 650px;

        margin: 0 auto;
    }

    .product-detail-image-card {
        min-height: 540px;
    }

    .product-detail-content {
        padding: 0;
    }

    .product-detail-title {
        max-width: 650px;
    }

    .product-detail-description {
        max-width: 620px;
    }

    .product-detail-option,
    .product-detail-actions,
    .product-detail-benefits {
        max-width: 620px;
    }

    .product-detail-story {
        margin-top: 80px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .product-detail-page {
        padding: 25px 17px 75px;
    }

    .product-detail-breadcrumb {
        margin-bottom: 25px;

        font-size: 9px;
    }

    .product-detail-grid {
        gap: 40px;
    }

    .product-detail-image-card {
        min-height: 390px;

        border-radius: 22px;
    }

    .product-detail-image-card::before {
        width: 270px;
        height: 270px;
    }

    .product-detail-image-wrap {
        width: 90%;
        height: 90%;

        min-height: 330px;

        padding: 15px;
    }

    .product-detail-tag {
        top: 15px;
        left: 15px;

        padding: 7px 10px;

        font-size: 8px;
    }

    .symbol-one {
        top: 55px;
        right: 35px;

        font-size: 16px;
    }

    .symbol-two {
        right: 25px;
        bottom: 45px;

        font-size: 13px;
    }

    .symbol-three {
        left: 25px;
        bottom: 40px;

        font-size: 17px;
    }

    .product-detail-image-note {
        margin-top: 17px;

        font-size: 8px;
    }

    .product-detail-image-note>span:first-child,
    .product-detail-image-note>span:last-child {
        width: 25px;
    }

    .product-detail-category {
        font-size: 9px;
    }

    .product-detail-title {
        font-size: 41px;
    }

    .product-detail-divider {
        margin: 20px 0;

        width: 125px;
    }

    .product-detail-description {
        font-size: 13px;
    }

    .product-detail-price {
        font-size: 27px;
    }

    .product-detail-option {
        padding: 15px 0;
    }

    .product-detail-actions {
        gap: 8px;
    }

    .product-detail-add-button {
        min-height: 52px;

        gap: 15px;

        border-radius: 12px;
    }

    .product-detail-heart {
        width: 52px;
        min-width: 52px;

        border-radius: 12px;
    }

    .product-detail-benefits {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 25px;
    }

    .product-benefit {
        align-items: center;
    }

    .product-benefit-icon {
        width: 32px;
        height: 32px;
    }

    .product-benefit strong {
        font-size: 10px;
    }

    .product-benefit div span {
        font-size: 9px;
    }

    .product-detail-story {
        margin-top: 65px;

        padding: 55px 10px;
    }

    .product-story-header h2 {
        font-size: 35px;
    }

    .product-story-header p {
        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .product-detail-page {
        padding-left: 14px;
        padding-right: 14px;
    }

    .product-detail-image-card {
        min-height: 350px;
    }

    .product-detail-image-wrap {
        min-height: 290px;
    }

    .product-detail-title {
        font-size: 35px;
    }

    .product-detail-price {
        font-size: 25px;
    }

    .product-detail-price-note {
        padding-left: 10px;

        font-size: 9px;
    }

    .product-detail-add-button {
        gap: 10px;

        font-size: 10px;
    }

    .product-story-header h2 {
        font-size: 31px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .product-detail-image,
    .product-detail-floating-symbol {
        animation: none;
    }

    .product-detail-image,
    .product-detail-image-card,
    .quantity-button,
    .product-detail-add-button,
    .product-detail-heart,
    .product-detail-back a span {
        transition: none;
    }
}

/* =========================================================
   ACCOUNT ACTION
========================================================= */

.account-action {
    position: relative;

    width: 42px !important;
    height: 42px !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    flex: 0 0 42px;

    padding: 0 !important;
    margin: 0;

    border: 0 !important;
    border-radius: 50%;

    outline: none;

    background: transparent !important;

    color: var(--chocolate);

    appearance: none;
    -webkit-appearance: none;

    opacity: 1 !important;
    visibility: visible !important;

    pointer-events: auto !important;

    cursor: pointer;

    z-index: 10003;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.account-action:hover {
    color: var(--pink-dark);

    background: var(--pink-light) !important;

    transform: translateY(-2px);
}

.account-action .action-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    color: inherit;

    font-size: 22px;
    line-height: 1;
}



/* =========================================================
   ACCOUNT OVERLAY
========================================================= */

.account-drawer-overlay {
    position: fixed;

    inset: 0;

    z-index: 9998;

    background: rgba(35, 24, 27, 0.48);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


.account-drawer-overlay.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}



/* =========================================================
   ACCOUNT DRAWER
========================================================= */

.account-drawer {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;

    z-index: 9999;

    width: min(460px, 100vw);

    height: 100dvh;

    display: flex;

    flex-direction: column;

    background: var(--cream);

    box-shadow:
        -18px 0 55px rgba(74, 45, 45, 0.18);

    transform: translate3d(100%, 0, 0);

    visibility: hidden;

    overflow: hidden;

    transition:
        transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.48s;
}


.account-drawer.active {
    transform: translate3d(0, 0, 0);

    visibility: visible;

    transition:
        transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0s;
}



/* =========================================================
   ACCOUNT HEADER
   LOGIN | SIGN UP              ×
========================================================= */

.account-drawer-header {
    position: relative;

    flex: 0 0 auto;

    width: 100%;

    min-height: 92px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 20px 27px;

    background: var(--cream);

    border-bottom: 1px solid rgba(241, 223, 228, 0.65);
}



/* =========================================================
   ACCOUNT TABS
========================================================= */

.account-tabs {
    flex: 1 1 auto;

    width: auto;

    height: 52px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 5px;

    padding: 5px;

    border-radius: 14px;

    background: #f7e9ed;

    overflow: visible;
}



/* =========================================================
   ACCOUNT TAB
========================================================= */

.account-tab {
    position: relative;

    width: 100%;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 0;

    border-radius: 10px;

    outline: none;

    background: transparent;

    color: var(--text-light);

    font-family: var(--font-body);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.5px;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}



/* =========================================================
   ACTIVE TAB
   NO SLIDER
========================================================= */

.account-tab.active {
    background: var(--pink);

    color: var(--white);

    box-shadow:
        0 7px 18px rgba(217, 111, 145, 0.22);
}



/* =========================================================
   TAB HOVER
========================================================= */

.account-tab:not(.active):hover {
    color: var(--pink-dark);

    background: rgba(255, 255, 255, 0.65);
}



/* =========================================================
   TAB FOCUS
========================================================= */

.account-tab:focus-visible {
    box-shadow:
        0 0 0 3px rgba(232, 139, 168, 0.18);
}



/* =========================================================
   CLOSE BUTTON
========================================================= */

.account-drawer-close {
    position: relative;

    flex: 0 0 46px;

    width: 46px;

    height: 46px;

    display: flex !important;

    align-items: center;

    justify-content: center;

    padding: 0;

    margin: 0;

    border: 1px solid var(--border);

    border-radius: 50%;

    outline: none;

    background: var(--white);

    color: var(--chocolate);

    font-family: Arial, sans-serif;

    font-size: 27px;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    z-index: 20;

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.account-drawer-close span {
    display: block;

    margin-top: -3px;

    line-height: 1;
}


.account-drawer-close:hover {
    border-color: var(--pink);

    background: var(--pink);

    color: var(--white);

    transform: rotate(90deg);

    box-shadow:
        0 8px 20px rgba(217, 111, 145, 0.18);
}


.account-drawer-close:focus-visible {
    outline: none;

    border-color: var(--pink);

    box-shadow:
        0 0 0 4px rgba(232, 139, 168, 0.14);
}



/* =========================================================
   DRAWER BODY
========================================================= */

.account-drawer-body {
    position: relative;

    flex: 1 1 auto;

    min-height: 0;

    width: 100%;

    overflow-x: hidden;

    overflow-y: auto;

    padding: 40px 35px 45px;

    scrollbar-width: thin;

    scrollbar-color:
        #e5c5ce transparent;
}


.account-drawer-body::-webkit-scrollbar {
    width: 5px;
}


.account-drawer-body::-webkit-scrollbar-track {
    background: transparent;
}


.account-drawer-body::-webkit-scrollbar-thumb {
    border-radius: 20px;

    background: #e5c5ce;
}



/* =========================================================
   AUTH PANEL
   DIRECT SWITCH ONLY
   NO SLIDER
========================================================= */

.account-auth-panel {
    width: 100%;

    margin: 0;

    padding: 0;

    display: none;

    box-sizing: border-box;

    transform: none !important;
}


.account-auth-panel.active {
    display: block;

    transform: none !important;

    animation: none;
}



/* =========================================================
   AUTH HEADING
========================================================= */

.account-auth-heading {
    width: 100%;

    margin: 0 0 30px;
}


.account-auth-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin: 0 0 13px;

    color: var(--pink-dark);

    font-size: 9px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.account-auth-eyebrow span {
    font-size: 12px;

    line-height: 1;
}


.account-auth-heading h2 {
    margin: 0;

    color: var(--chocolate);

    font-family: var(--font-heading);

    font-size: 38px;

    font-weight: 500;

    line-height: 1.12;
}


.account-auth-heading h2 span {
    display: block;

    margin-top: 2px;

    color: var(--pink-dark);

    font-style: italic;
}


.account-auth-heading p {
    max-width: 340px;

    margin: 16px 0 0;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.8;
}



/* =========================================================
   FORM
========================================================= */

.account-auth-form {
    width: 100%;

    margin: 0;

    padding: 0;
}


.account-form-group {
    width: 100%;

    margin: 0 0 18px;
}


.account-form-group>label,
.account-label-row label {
    display: block;

    margin: 0 0 8px;

    color: var(--chocolate);

    font-size: 10px;

    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 0.4px;
}


.account-label-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin: 0 0 8px;
}


.account-label-row label {
    margin: 0;
}



/* =========================================================
   FORGOT PASSWORD
========================================================= */

.account-forgot {
    flex: 0 0 auto;

    color: var(--pink-dark);

    font-size: 9px;

    font-weight: 700;

    line-height: 1.4;

    white-space: nowrap;
}


.account-forgot:hover {
    color: var(--chocolate);
}



/* =========================================================
   INPUT WRAPPER
========================================================= */

.account-input-wrap {
    position: relative;

    width: 100%;

    display: flex;

    align-items: center;
}


.account-input-icon {
    position: absolute;

    top: 50%;

    left: 15px;

    z-index: 2;

    color: var(--pink-dark);

    font-size: 13px;

    font-weight: 700;

    line-height: 1;

    pointer-events: none;

    transform: translateY(-50%);
}


.account-input-wrap input {
    width: 100%;

    min-width: 0;

    height: 51px;

    display: block;

    padding: 0 45px 0 42px;

    border: 1px solid var(--border);

    border-radius: 12px;

    outline: none;

    background: var(--white);

    color: var(--chocolate);

    font-family: var(--font-body);

    font-size: 11px;

    line-height: 1;

    appearance: none;

    -webkit-appearance: none;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}


.account-input-wrap input::placeholder {
    color: #b7a5a9;

    opacity: 1;
}


.account-input-wrap input:hover {
    border-color: #ead1d8;
}


.account-input-wrap input:focus {
    border-color: var(--pink);

    box-shadow:
        0 0 0 4px rgba(232, 139, 168, 0.10);
}



/* =========================================================
   PASSWORD TOGGLE
========================================================= */

.account-password-toggle {
    position: absolute;

    top: 50%;

    right: 9px;

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 0;

    border-radius: 8px;

    outline: none;

    background: transparent;

    color: #b99da4;

    font-size: 12px;

    line-height: 1;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}


.account-password-toggle:hover {
    color: var(--pink-dark);

    background: var(--pink-light);

    transform:
        translateY(-50%) scale(1.04);
}


.account-password-toggle.visible {
    color: var(--pink-dark);

    background: var(--pink-light);
}



/* =========================================================
   REMEMBER / TERMS
========================================================= */

.account-remember {
    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

    gap: 9px;

    margin: 4px 0 22px;

    color: var(--text-light);

    font-size: 9px;

    line-height: 1.5;

    cursor: pointer;
}


.account-remember input {
    position: absolute;

    width: 1px;

    height: 1px;

    margin: -1px;

    padding: 0;

    border: 0;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    opacity: 0;
}


.account-custom-checkbox {
    width: 15px;

    height: 15px;

    flex: 0 0 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #e4cbd2;

    border-radius: 4px;

    background: var(--white);

    transition:
        background var(--transition),
        border-color var(--transition);
}


.account-remember input:checked+.account-custom-checkbox {
    border-color: var(--pink);

    background: var(--pink);
}


.account-remember input:checked+.account-custom-checkbox::after {
    content: "✓";

    color: var(--white);

    font-size: 9px;

    font-weight: 700;

    line-height: 1;
}


.account-remember input:focus-visible+.account-custom-checkbox {
    box-shadow:
        0 0 0 3px rgba(232, 139, 168, 0.15);
}


.account-terms {
    align-items: flex-start;

    margin-top: 2px;

    line-height: 1.6;
}


.account-terms .account-custom-checkbox {
    margin-top: 1px;
}


.account-terms a {
    color: var(--pink-dark);

    font-weight: 700;
}


.account-terms a:hover {
    color: var(--chocolate);
}



/* =========================================================
   SUBMIT BUTTON
========================================================= */

.account-submit-button {
    width: 100%;

    min-height: 53px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 28px;

    padding: 0 20px;

    border: 0;

    border-radius: 13px;

    outline: none;

    background: var(--pink);

    color: var(--white);

    font-family: var(--font-body);

    font-size: 11px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.8px;

    box-shadow:
        0 12px 28px rgba(217, 111, 145, 0.20);

    cursor: pointer;

    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}


.account-submit-button:hover {
    background: var(--pink-dark);

    transform: translateY(-2px);

    box-shadow:
        0 16px 32px rgba(217, 111, 145, 0.25);
}


.account-submit-button:active {
    transform: translateY(0);
}


.account-submit-button strong {
    display: inline-block;

    font-size: 17px;

    font-weight: 500;

    line-height: 1;

    transition:
        transform var(--transition);
}


.account-submit-button:hover strong {
    transform: translateX(5px);
}



/* =========================================================
   LOGIN / SIGNUP SWITCH
========================================================= */

.account-switch {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 5px;

    margin: 23px 0 0;

    color: var(--text-light);

    font-size: 9px;

    line-height: 1.5;

    text-align: center;
}


.account-switch-button {
    padding: 0;

    border: 0;

    outline: none;

    background: transparent;

    color: var(--pink-dark);

    font-family: var(--font-body);

    font-size: 9px;

    font-weight: 700;

    cursor: pointer;
}


.account-switch-button:hover {
    color: var(--chocolate);
}



/* =========================================================
   BOTTOM NOTE
========================================================= */

.account-auth-note {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 9px;

    margin: 30px 0 0;

    color: #b49ca2;

    font-size: 8px;

    font-weight: 600;

    line-height: 1;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}


.account-auth-note span:first-child,
.account-auth-note span:last-child {
    flex: 1 1 auto;

    width: auto;

    height: 1px;

    background: #ead7dc;
}


.account-auth-note span:nth-child(2) {
    flex: 0 0 auto;

    white-space: nowrap;
}



/* =========================================================
   BODY LOCK
========================================================= */

body.account-drawer-is-open {
    overflow: hidden;
}

@media (max-width: 900px) {

    .account-action {
        display: flex !important;

        width: 39px !important;
        height: 39px !important;

        flex: 0 0 39px;

        opacity: 1 !important;
        visibility: visible !important;

        pointer-events: auto !important;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .account-drawer {
        width: 100vw;

        max-width: 100vw;
    }


    .account-drawer-header {
        min-height: 86px;

        padding: 18px 20px;

        gap: 10px;
    }


    .account-tabs {
        height: 50px;

        min-width: 0;
    }


    .account-tab {
        height: 40px;
    }


    .account-drawer-close {
        flex: 0 0 44px;

        width: 44px;

        height: 44px;

        font-size: 25px;
    }


    .account-drawer-body {
        padding: 34px 22px 40px;
    }


    .account-auth-heading {
        margin-bottom: 27px;
    }


    .account-auth-heading h2 {
        font-size: 35px;
    }


    .account-auth-heading p {
        font-size: 11px;
    }

}

@media (max-width: 480px) {

    .account-action {
        width: 36px !important;
        height: 36px !important;

        flex-basis: 36px;
    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .account-drawer-header {
        min-height: 80px;

        padding: 15px 16px;

        gap: 8px;
    }


    .account-tabs {
        height: 48px;

        padding: 4px;
    }


    .account-tab {
        height: 40px;

        font-size: 10px;
    }


    .account-drawer-close {
        flex: 0 0 42px;

        width: 42px;

        height: 42px;

        font-size: 23px;
    }


    .account-drawer-body {
        padding: 30px 18px 35px;
    }


    .account-auth-heading h2 {
        font-size: 31px;
    }


    .account-auth-heading p {
        font-size: 10px;

        line-height: 1.7;
    }


    .account-input-wrap input {
        height: 48px;

        font-size: 10px;
    }


    .account-submit-button {
        min-height: 50px;
    }

}



/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 320px) {

    .account-drawer-header {
        padding: 14px;

        gap: 7px;
    }


    .account-tabs {
        height: 46px;

        padding: 4px;
    }


    .account-tab {
        height: 38px;

        font-size: 9px;
    }


    .account-drawer-close {
        flex: 0 0 40px;

        width: 40px;

        height: 40px;

        font-size: 21px;
    }


    .account-drawer-body {
        padding: 26px 15px 30px;
    }


    .account-auth-heading h2 {
        font-size: 28px;
    }


    .account-auth-heading p {
        font-size: 9px;
    }


    .account-forgot {
        font-size: 8px;
    }


    .account-submit-button {
        gap: 18px;

        font-size: 10px;
    }

}



/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .account-drawer,
    .account-drawer-overlay,
    .account-drawer-close,
    .account-submit-button,
    .account-password-toggle,
    .account-tab {
        transition: none !important;

        animation: none !important;
    }

}
