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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #F5F1E8;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: sticky;
    top: 0;
    background-color: #F5F1E8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 10px 0;
}

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

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    opacity: 1;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-icon i {
    font-size: 24px;
    color: #1a90df;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-icon i {
    transform: scale(1.1) rotate(-8deg);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.login-btn:hover {
    opacity: 0.7;
}

.products-slider {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

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

.products-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #1a1a1a;
    transform: scale(1.2);
}

.products-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-carousel-btn.prev { left: -22px; }
.products-carousel-btn.next { right: -22px; }


.cart-btn {
    position: relative;
    padding: 8px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #000;
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    text-decoration: none;
    color: inherit;
}

.footer-logo .logo-icon i {
    font-size: 22px;
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 48px 0 80px;
    background-color: #F5F1E8;
}

.hero-header-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 64px;
}

.hero-title {
    font-size: 88px;
    line-height: 0.85;
    font-weight: 500;
    margin: 0;
    letter-spacing: -2px;
}

.hero-description {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
    max-width: 360px;
}

.hero-btn-col {
    display: flex;
    justify-content: flex-end;
}

.hero-images-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.hero-image-item {
    aspect-ratio: 1/1.2;
    overflow: hidden;
}

.hero-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-image-item:hover img {
    transform: scale(1.08);
}

.btn {
    padding: 18px 48px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #1a1a1a;
    color: #fff;
}

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-outline:hover {
    background-color: #000;
    color: #fff;
}

.announcement-banner {
    background-color: #E8B5E8;
    padding: 16px 0;
    overflow: hidden;
}

.announcement-content {
    display: flex;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    font-size: 14px;
    font-weight: 500;
}

.announcement-item i {
    font-size: 16px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.special-discounts,
.storytellers-section {
    padding: 64px 0;
    background-color: #F5F1E8;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.split-content {
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-pink {
    background-color: #E8B5E8;
}

.decorative-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
}

.split-title {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.split-description {
    color: #4a4a4a;
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.split-image {
    position: relative;
    aspect-ratio: 1;
}

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

/* Featured Section */
.featured-section {
    padding: 64px 0;
    background-color: #F5F1E8;
}

.carousel-container {
    position: relative;
    margin-bottom: 32px;
}

.carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 16px 0;
}

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

.carousel-item {
    flex: 0 0 280px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: background-color 0.2s;
}

.carousel-btn:hover {
    background-color: #f5f5f5;
}

.carousel-btn i {
    font-size: 24px;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.load-more-container {
    text-align: center;
}

/* Gallery Section */
.gallery-section {
    padding: 64px 0;
    background-color: #F5F1E8;
}

.gallery-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

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

.gallery-item {
    flex: 0 0 320px;
    height: 400px;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

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

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 24px;
    background-color: #FFB7F5;
    /* Pink background */
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-content {
    text-align: center;
    max-width: 600px;
    z-index: 2;
}

.review-content .section-title {
    font-size: 56px;
    margin-bottom: 24px;
    font-weight: 400;
}

.stars {
    color: #fff;
    font-size: 24px;
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.review-quote {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.review-author {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 32px;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination-dots span {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.5;
}

.pagination-dots span.active {
    opacity: 1;
}

.review-corner-img {
    position: absolute;
    width: 140px;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 8px;
    /* white border effect */
}

.top-left {
    top: -40px;
    left: 40px;
    transform: rotate(-10deg);
}

.top-right {
    top: -40px;
    right: 40px;
    transform: rotate(10deg);
}

.bottom-left {
    bottom: -40px;
    left: 40px;
    transform: rotate(5deg);
}

.bottom-right {
    bottom: -40px;
    right: 40px;
    transform: rotate(-5deg);
}

@media (max-width: 768px) {
    .review-corner-img {
        width: 100px;
        height: 140px;
    }

    .top-left {
        left: 10px;
    }

    .top-right {
        right: 10px;
    }

    .bottom-left {
        left: 10px;
    }

    .bottom-right {
        right: 10px;
    }

    .review-content .section-title {
        font-size: 40px;
    }
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-description {
    color: #999;
    font-size: 14px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #999;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #999;
    font-size: 14px;
}

.footer-contact i {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }

    .hero-header-content {
        grid-template-columns: 1.5fr 1fr;
        gap: 32px;
    }

    .hero-btn-col {
        display: none;
    }

    .section-title {
        font-size: 48px;
    }

    .gallery-grid {
        columns: 3;
    }

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

@media (max-width: 768px) {

    .nav-left,
    .login-btn span {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        width: 24px;
        height: 24px;
    }

    .hero-header-content {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

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

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .split-content {
        padding: 48px 32px;
    }

    .split-title {
        font-size: 36px;
    }

    .gallery-grid {
        columns: 2;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .review-quote {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-images-row {
        grid-template-columns: 1fr;
    }

    .carousel-item {
        flex: 0 0 240px;
    }
}