* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
body {
    color: #222;
    background: #ffffff;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Top */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    border-bottom: 1px solid #eee;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.menu-icon {
    font-size: 22px;
    cursor: pointer;
}
.search-box {
    display: flex;
}
.search-box input {
    border: 1px solid #ddd;
    padding: 6px 10px;
    width: 220px;
    outline: none;
}
.search-box button {
    border: 1px solid #ddd;
    background: #fff;
    padding: 0 10px;
    cursor: pointer;
}
.header-right {
    display: flex;
    gap: 22px;
    font-size: 20px;
}
.header-right span {
    cursor: pointer;
    position: relative;
}
.header-right .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e08c8c;
    color: #fff;
    font-size: 10px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    text-align: center;
}

/* Nav Menu */
.nav-title {
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 500;
}
.nav-main {
    display: flex;
    justify-content: center;
    gap: 36px;
    padding: 14px 0;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.4px;
}
.nav-main a:hover {
    color: #e08c8c;
}

/* Banner Slider */
.banner {
    width: 100%;
    height: 520px;
    position: relative;
    overflow: hidden;
}
.banner-item {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)), url("../pitures/banner.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8%;
    color: white;
}
.banner-text h2 {
    font-size: 90px;
    font-style: italic;
    line-height: 1;
}
.banner-text p {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}
.btn-shop {
    padding: 12px 32px;
    background: #fff;
    color: #222;
    font-weight: 500;
    border: none;
    cursor: pointer;
}
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
}
.arrow-left { left: 20px; }
.arrow-right { right: 20px; }

/* Section Title */
.section-title {
    text-align: center;
    font-size: 28px;
    margin: 70px 0 40px;
    letter-spacing: 0.5px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin-bottom: 50px;
}
.product-card {
    cursor: pointer;
    transition: transform 0.25s ease;
}
.product-card:hover {
    transform: translateY(-6px);
}
.product-img {
    width: 100%;
    height: 280px;
    background: #f7f7f7;
    overflow: hidden;
    margin-bottom: 14px;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-name {
    font-size: 14px;
    margin-bottom: 6px;
}
.product-price {
    color: #c84646;
    font-weight: 600;
    font-size: 15px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 60px 0;
}
.page-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #ddd;
    display: grid;
    place-items: center;
    cursor: pointer;
}
.page-btn.active {
    background: #e08c8c;
    color: #fff;
    border-color: #e08c8c;
}

/* Testimonial Section */
.testimonial-wrap {
    background: #f9f4f4;
    padding: 80px 0;
    margin: 80px 0;
    background-image: url("static/pitures/testi-bg.webp");
    background-size: cover;
    background-position: center;
}
.testimonial-box {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}
.testimonial-text {
    font-size: 16px;
    margin-bottom: 12px;
}
.testimonial-author {
    font-weight: 600;
    font-size: 14px;
}
.testi-card {
    background: #fff;
    padding: 30px;
    max-width: 420px;
    margin: 20px auto;
}

/* Newsletter */
.newsletter {
    text-align: center;
    padding: 60px 0;
}
.newsletter h3 {
    font-size: 26px;
    margin-bottom: 10px;
}
.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 24px auto 0;
}
.newsletter-form input {
    flex: 1;
    padding: 14px;
    border: 1px solid #eee;
    outline: none;
}
.newsletter-form button {
    background: #e08c8c;
    color: #fff;
    border: none;
    padding: 0 30px;
    cursor: pointer;
}

/* Footer */
footer {
    background: #f7f7f7;
    padding: 60px 0 30px;
    margin-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.footer-col li {
    margin-bottom: 9px;
    font-size: 14px;
    color: #444;
}
.footer-col a:hover {
    color: #e08c8c;
}
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    font-size: 13px;
    color: #555;
}
.payment-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}

/* Product Detail Page */
.detail-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 70px 0;
}
.detail-img {
    height: 520px;
    background: #f7f7f7;
}
.detail-title {
    font-size: 32px;
    margin-bottom: 14px;
}
.detail-price {
    font-size: 26px;
    color: #c84646;
    margin-bottom: 24px;
}
.detail-desc {
    margin: 30px 0;
    line-height: 1.8;
}
.detail-btns {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}
.btn-cart {
    padding: 14px 36px;
    background: #e08c8c;
    color: #fff;
    border: none;
    cursor: pointer;
}
.btn-wish {
    padding: 14px 36px;
    border: 1px solid #e08c8c;
    color: #e08c8c;
    background: transparent;
    cursor: pointer;
}

/* Page Content (About / Contact / Policy) */
.page-content {
    max-width: 1000px;
    margin: 80px auto;
}
.page-content h2 {
    font-size: 32px;
    margin-bottom: 26px;
    text-align: center;
}
.form-group {
    margin-bottom: 22px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #ddd;
    outline: none;
}
.contact-info {
    margin-top: 40px;
    line-height: 2.2;
}

/* Back To Top */
.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: #e08c8c;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
}