:root {
    --primary-bg: #fff5f7;
    /* Blush pink */
    --secondary-bg: #f3e9f1;
    /* Soft lavender */
    --accent-color: #e8b4b8;
    /* Rose gold */
    --accent-hover: #d89ca0;
    /* Deeper rose */
    --highlight-color: #f9e4e8;
    /* Pale pink */
    --title-color: #2e1e2a;
    /* Deep plum */
    --text-color: #5a4a56;
    /* Soft gray */
    --container-width: 1400px;
    --padding-large: 100px;
    --padding-medium: 60px;
    --padding-small: 30px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 15px rgba(232, 180, 184, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUnderline {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.hidden {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible-main {
    animation: fadeInUp 0.8s ease-out forwards;
}

.visible-about-us {
    animation: slideInRight 0.8s ease-out forwards;
}

.visible-makeup-performance {
    animation: scaleIn 0.8s ease-out forwards;
}

.visible-makeup-pricing {
    animation: slideInLeft 0.8s ease-out forwards;
}

.visible-footer {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Staggered animations for section children */
section.visible-main .left,
section.visible-main .buttons {
    animation: fadeInUp 0.8s ease-out forwards;
}

section.visible-main .left {
    animation-delay: 0.2s;
}

section.visible-main .buttons {
    animation-delay: 0.4s;
}

section.visible-about-us .image-section,
section.visible-about-us .text-section,
section.visible-about-us .quote-symbol {
    animation: slideInRight 0.8s ease-out forwards;
}

section.visible-about-us .image-section {
    animation-delay: 0.2s;
}

section.visible-about-us .text-section {
    animation-delay: 0.4s;
}

section.visible-about-us .quote-symbol {
    animation-delay: 0.6s;
}

section.visible-makeup-performance .title,
section.visible-smakeup-performance .grid,
section.visible-makeup-performance .footer {
    animation: scaleIn 0.8s ease-out forwards;
}

section.visible-makeup-performance .title {
    animation-delay: 0.2s;
}

section.visible-makeup-performance .grid {
    animation-delay: 0.4s;
}

section.visible-makeup-performance .footer {
    animation-delay: 0.6s;
}

section.visible-makeup-pricing .title,
section.visible-makeup-pricing .grid,
section.visible-makeup-pricing .commitment {
    animation: slideInLeft 0.8s ease-out forwards;
}

section.visible-makeup-pricing .title {
    animation-delay: 0.2s;
}

section.visible-makeup-pricing .grid {
    animation-delay: 0.4s;
}

section.visible-makeup-pricing .commitment {
    animation-delay: 0.6s;
}

section.visible-footer .footer-content,
section.visible-footer .footer-bottom {
    animation: fadeIn 0.8s ease-out forwards;
}

section.visible-footer .footer-content {
    animation-delay: 0.2s;
}

section.visible-footer .footer-bottom {
    animation-delay: 0.4s;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--padding-medium) var(--padding-small);
    position: relative;
    border-radius: 20px;
}

h1,
h2 {
    font-family: 'Playfair Display', serif;
    color: var(--title-color);
    line-height: 1.3;
    text-transform: capitalize;
    letter-spacing: 1.2px;
}

h1 {
    font-size: 60px;
    font-weight: 700;
}

h2 {
    font-size: 38px;
    font-weight: 600;
}

p {
    font-family: 'Lora', serif;
    line-height: 2;
    font-size: 18px;
}

button,
a {
    transition: all 0.4s ease-in-out;
}

button:hover,
a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
    animation: slideInLeft 0.8s ease-out;
}

header.scrolled {
    background: rgba(255, 245, 247, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header.at-home {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.logo {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--title-color);
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.8), 0 0 8px rgba(255, 255, 255, 0.5);
    animation: fadeInUp 1s ease-out;
}

nav.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    gap: 50px;
}

nav.nav-menu a {
    color: var(--title-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 1px;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    padding: 10px 25px;
    border-radius: 30px;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

nav.nav-menu a:hover,
nav.nav-menu a.active {
    color: #fff;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-hover));
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    text-shadow: none;
}

.nav-button {
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.nav-button:hover,
.nav-button.active {
    color: #fff;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-hover));
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    text-shadow: none;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--title-color);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.close-menu {
    display: none;
}

main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 100px;
    gap: 80px;
    flex-wrap: wrap;
    background-image: url('img/web.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin-top: 0;
    min-height: 600px;
}

main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 245, 247, 0.6);
    z-index: 1;
}

main>* {
    position: relative;
    z-index: 2;
}

.left {
    max-width: 550px;
    width: 100%;
    padding: 30px;
}

.left h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
    color: var(--title-color);
    letter-spacing: 0.8px;
}

.left p {
    font-size: 17px;
    color: var(--text-color);
    line-height: 1.9;
    margin-bottom: 40px;
    font-family: 'Lora', serif;
}

.buttons {
    display: flex;
    gap: 25px;
}

.add-to-cart,
.shop-now {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 35px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.add-to-cart {
    background: linear-gradient(45deg, var(--accent-color), var(--accent-hover));
    color: #fff;
}

.add-to-cart:hover {
    background: linear-gradient(45deg, var(--accent-hover), var(--accent-color));
}

.shop-now {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.shop-now:hover {
    background: var(--accent-color);
    color: #fff;
}

/* About Us */
.about-us .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: 80px 0;
    padding: 0;
    gap: 50px;
}

.about-us .image-section {
    flex: 0 0 50%;
    width: 50%;
    align-self: flex-start;
    margin: 0;
}

.about-us .image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease;
}

.about-us .image-section img:hover {
    transform: scale(1.03);
}

.about-us .text-section {
    max-width: 600px;
    position: relative;
    padding: 0px;
    margin: 0;
}

.about-us .text-section h2 {
    font-size: 44px;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.4;
}

.about-us .text-section h2 span {
    font-weight: 700;
    color: var(--title-color);
}

.about-us .text-section h2 em {
    font-style: normal;
    font-family: 'Great Vibes', cursive;
    color: var(--accent-color);
    font-size: 50px;
    font-weight: 400;
}

.about-us .paragraph {
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 30px;
    color: var(--text-color);
}

.about-us .quote-symbol {
    position: absolute;
    bottom: -250px;
    right: 0px;
    font-size: 320px;
    color: var(--highlight-color);
    font-family: 'Playfair Display', serif;
    opacity: 0.7;
    z-index: -1;
    line-height: 1;
}

/* Makeup Pricing */
.makeup-pricing {
    background: linear-gradient(135deg, #fff5f9 0%, #f9e4e8 100%);
    padding: 80px 0;
}

.makeup-pricing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.makeup-pricing .title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--title-color);
    margin-bottom: 60px;
    position: relative;
    font-weight: 700;
    letter-spacing: 2px;
}

.makeup-pricing .title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.makeup-pricing .grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px 0;
}

.makeup-pricing .grid-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-items: center;
}

.makeup-pricing .box {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(232, 180, 184, 0.2);
}

.makeup-pricing .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.makeup-pricing .box:hover::before {
    left: 100%;
}

.makeup-pricing .box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.makeup-pricing .box h2 {
    font-family: 'Lora', serif;
    font-size: 22px;
    color: var(--title-color);
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.makeup-pricing .box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.makeup-pricing .box h2 span {
    font-weight: normal;
    font-size: 13px;
    color: var(--text-color);
    display: block;
    margin-top: 8px;
}

.makeup-pricing .box ul {
    padding: 0;
    margin: 15px 0;
    list-style: none;
}

.makeup-pricing .box ul li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(232, 180, 184, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: var(--title-color);
    font-family: 'Lora', serif;
    transition: background 0.3s ease;
}

.makeup-pricing .box ul li:hover {
    background: rgba(249, 228, 232, 0.2);
    border-radius: 8px;
    padding-left: 10px;
}

.makeup-pricing .box ul li span {
    font-weight: 600;
    color: var(--accent-color);
    background: none;
    -webkit-text-fill-color: var(--accent-color);
}

.makeup-pricing .note {
    margin-top: 15px;
    font-style: italic;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 13px;
    text-align: center;
}

.makeup-pricing .commitment {
    margin: 40px auto 0;
    max-width: 800px;
    background: linear-gradient(135deg, #fff, #fff5f9);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid rgba(232, 180, 184, 0.3);
    overflow: hidden;
}

.makeup-pricing .commitment::before {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    color: var(--accent-color);
    opacity: 0.5;
    transform: rotate(15deg);
}

.makeup-pricing .commitment::after {
    content: '✨';
    position: absolute;
    bottom: 10px;
    left: 20px;
    font-size: 40px;
    color: var(--accent-color);
    opacity: 0.5;
    transform: rotate(-15deg);
}

.makeup-pricing .commitment h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--title-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.makeup-pricing .commitment h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
    border-radius: 1.5px;
}

.makeup-pricing .commitment ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.makeup-pricing .commitment ul li {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.8;
    position: relative;
    padding-left: 35px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.makeup-pricing .commitment ul li:hover {
    transform: translateX(5px);
    color: var(--accent-color);
}

.makeup-pricing .commitment ul li::before {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
    font-size: 20px;
}

.makeup-pricing .commitment .contact-info {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.makeup-pricing .commitment .contact-info:hover {
    color: var(--accent-color);
}

.makeup-pricing .commitment .contact-info span {
    font-weight: 600;
    color: var(--accent-color);
    background: linear-gradient(45deg, var(--accent-color), var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.makeup-pricing .commitment .thanks {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: var(--accent-color);
    margin-top: 25px;
    position: relative;
    display: inline-block;
}

.makeup-pricing .commitment .thanks::before {
    content: '♥';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-hover);
    font-size: 20px;
}

.makeup-pricing .commitment .thanks::after {
    content: '♥';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-hover);
    font-size: 20px;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #fff, var(--primary-bg));
    padding: 60px 80px 30px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-brand,
.footer-social,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    font-size: 28px;
}

.footer-brand p {
    font-family: 'Lora', serif;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.7;
}

.footer-social h3,
.footer-contact h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 20px;
}

.footer-contact p {
    font-family: 'Lora', serif;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--highlight-color);
}

.footer-bottom p {
    font-family: 'Lora', serif;
    font-size: 14px;
    color: var(--text-color);
}

ul {
    list-style: none;
}

.example-2 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.example-2 .icon-content {
    margin: 0;
    position: relative;
}

.example-2 .icon-content .tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    font-size: 13px;
    font-family: 'Lora', serif;
    transition: all 0.3s ease;
}

.example-2 .icon-content:hover .tooltip {
    opacity: 1;
    visibility: visible;
    top: -50px;
}

.example-2 .icon-content a {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--title-color);
    background-color: var(--primary-bg);
    border: 1px solid var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.example-2 .icon-content a svg {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
}

.example-2 .icon-content a:hover {
    color: #fff;
}

.example-2 .icon-content a .filled {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover .filled {
    height: 100%;
}

.example-2 .icon-content a[data-social="whatsapp"] .filled,
.example-2 .icon-content a[data-social="whatsapp"]~.tooltip {
    background-color: #128c7e;
}

.example-2 .icon-content a[data-social="facebook"] .filled,
.example-2 .icon-content a[data-social="facebook"]~.tooltip {
    background-color: #3b5998;
}

.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"]~.tooltip {
    background: linear-gradient(45deg, #405de6, #5b51db, #b33ab4, #c135b4, #e1306c, #fd1f1f);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: var(--padding-medium) 40px;
    }

    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 34px;
    }

    header {
        padding: 20px 40px;
    }

    main {
        padding: 80px 50px;
        gap: 50px;
    }

    .left h1 {
        font-size: 38px;
    }

    .left p {
        font-size: 16px;
    }

    .add-to-cart,
    .shop-now {
        padding: 12px 25px;
        font-size: 15px;
    }

    footer {
        padding: 50px 50px 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .about-us .container {
        margin: 60px auto;
        gap: 20px;
        padding: 0 30px;
    }

    .about-us .image-section {
        flex: 0 0 50%;
        width: 50%;
        margin: 0;
    }

    .about-us .text-section h2 {
        font-size: 38px;
    }

    .about-us .text-section h2 em {
        font-size: 44px;
    }

    .about-us .paragraph {
        font-size: 16px;
    }

    .about-us .quote-symbol {
        font-size: 280px;
        bottom: -70px;
    }

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

@media screen and (max-width: 768px) {
    .container {
        padding: var(--padding-small) 20px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    p {
        font-size: 16px;
    }

    header {
        padding: 15px 20px;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    nav.nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 245, 247, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(-100%);
        opacity: 0;
        z-index: 1000;
    }

    nav.nav-menu.active {
        transform: translateX(0);
        left: 0;
        opacity: 1;
    }

    nav.nav-menu a {
        font-size: 18px;
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        border-radius: 10px;
        margin-bottom: 10px;
        transition: all 0.3s ease;
    }

    .nav-button {
        padding: 15px 20px;
        font-size: 18px;
    }

    .close-menu {
        display: none;
    }

    main {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .left {
        max-width: 100%;
        text-align: center;
    }

    .left h1 {
        font-size: 34px;
    }

    .left p {
        font-size: 15px;
    }

    .buttons {
        justify-content: center;
    }

    .add-to-cart,
    .shop-now {
        padding: 10px 20px;
        font-size: 14px;
    }

    footer {
        padding: 40px 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .example-2 {
        justify-content: center;
    }

    .about-us .container {
        flex-direction: column;
        margin: 40px auto;
        gap: 15px;
        padding: 0 20px;
    }

    .about-us .image-section {
        flex: 0 0 100%;
        width: 100%;
        align-self: center;
        margin: 0;
    }

    .about-us .text-section h2 {
        font-size: 32px;
    }

    .about-us .text-section h2 em {
        font-size: 38px;
    }

    .about-us .paragraph {
        font-size: 15px;
    }

    .about-us .quote-symbol {
        font-size: 200px;
        bottom: -60px;
        right: 0;
        text-align: center;
        width: 100%;
    }

    .makeup-pricing .grid-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .makeup-pricing .title {
        font-size: 40px;
    }

    .makeup-pricing .box {
        padding: 25px;
    }

    .makeup-pricing .box h2 {
        font-size: 20px;
    }

    .makeup-pricing .commitment {
        padding: 30px;
        margin: 30px auto 0;
    }

    .makeup-pricing .commitment h2 {
        font-size: 24px;
    }

    .makeup-pricing .commitment ul li {
        font-size: 15px;
        padding-left: 30px;
    }

    .makeup-pricing .commitment .contact-info {
        font-size: 15px;
    }

    .makeup-pricing .commitment .thanks {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: var(--padding-small) 15px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    p {
        font-size: 14px;
    }

    header {
        padding: 10px 15px;
    }

    .logo {
        font-size: 28px;
    }

    .hamburger {
        width: 25px;
        height: 18px;
    }

    .hamburger span {
        height: 2px;
    }

    nav.nav-menu {
        max-width: 250px;
        padding: 60px 20px 20px;
    }

    nav.nav-menu a {
        font-size: 16px;
        padding: 12px 15px;
    }

    .nav-button {
        padding: 12px 15px;
        font-size: 16px;
    }

    main {
        padding: 40px 20px;
        gap: 30px;
    }

    .left h1 {
        font-size: 30px;
    }

    .left p {
        font-size: 14px;
        line-height: 1.7;
    }

    .buttons {
        flex-direction: column;
        gap: 15px;
    }

    .add-to-cart,
    .shop-now {
        padding: 10px 18px;
        font-size: 13px;
    }

    footer {
        padding: 30px 20px 15px;
    }

    .footer-brand .logo {
        font-size: 24px;
    }

    .footer-social h3,
    .footer-contact h3 {
        font-size: 18px;
    }

    .footer-brand p,
    .footer-contact p,
    .footer-bottom p {
        font-size: 13px;
    }

    .example-2 .icon-content a {
        width: 38px;
        height: 38px;
    }

    .example-2 .icon-content a svg {
        width: 22px;
        height: 22px;
    }

    .about-us .container {
        margin: 30px auto;
        padding: 0 15px;
        gap: 15px;
    }

    .about-us .image-section {
        flex: 0 0 100%;
        width: 100%;
        margin: 0;
    }

    .about-us .text-section h2 {
        font-size: 28px;
    }

    .about-us .text-section h2 em {
        font-size: 34px;
    }

    .about-us .paragraph {
        font-size: 14px;
    }

    .about-us .quote-symbol {
        font-size: 150px;
        bottom: -50px;
    }

    .makeup-pricing .container {
        margin: 30px auto;
        padding: 0 15px;
    }

    .makeup-pricing .title {
        font-size: 34px;
    }

    .makeup-pricing .box h2 {
        font-size: 18px;
    }

    .makeup-pricing .box ul li {
        font-size: 14px;
    }

    .makeup-pricing .commitment {
        padding: 25px;
        margin: 20px auto 0;
    }

    .makeup-pricing .commitment h2 {
        font-size: 22px;
    }

    .makeup-pricing .commitment ul li {
        font-size: 14px;
        margin-bottom: 12px;
        padding-left: 25px;
    }

    .makeup-pricing .commitment ul li::before {
        font-size: 18px;
    }

    .makeup-pricing .commitment .contact-info {
        font-size: 14px;
    }

    .makeup-pricing .commitment .thanks {
        font-size: 22px;
    }

    .makeup-pricing .commitment .thanks::before,
    .makeup-pricing .commitment .thanks::after {
        font-size: 18px;
    }
}

/* BEGIN: Makeup Landing Styles (inserted) */
.service-landing { padding: 40px 16px; max-width: 1000px; margin: 0 auto; }
.service-landing .container { max-width: 960px; margin: 0 auto; }
.service-landing h1, .service-landing h2 { line-height: 1.25; margin: 16px 0; }
.service-landing p { margin: 8px 0 16px; }
.service-landing .price-list { list-style: none; padding: 0; margin: 0 0 16px; }
.service-landing .price-list li { padding: 8px 12px; border: 1px solid #e5e7eb; border-radius: 10px; margin-bottom: 8px; }
.service-landing .bullets { padding-left: 18px; }
.service-landing .faq details { border: 1px solid #e5e7eb; padding: 10px 12px; border-radius: 10px; margin-bottom: 8px; }
.service-landing .cta { display: inline-block; padding: 12px 18px; border-radius: 999px; text-decoration: none; border: 1px solid #111827; }
.service-landing .cta:hover { opacity: .9; }
.service-landing .gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-top: 16px; }
.service-landing .gallery img { width: 100%; height: auto; border-radius: 12px; display: block; }
@media (min-width: 768px) {
  .service-landing { padding: 56px 24px; }
}
/* END: Makeup Landing Styles */
