/* DESIGN STYLE SYSTEM RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --light-peach-bg: #fff5f0;
    --peach-accent: #fcdbd0;
    --peach-dark: #e8a995;
    --dark-charcoal: #1c2229;
    --text-muted: #5e6873;
    --pure-white: #ffffff;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark-charcoal);
    background-color: var(--pure-white);
    overflow-x: hidden;
}

/* NAVBAR DESIGN */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    background-color: var(--pure-white);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo span {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-top: -4px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--dark-charcoal);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--peach-dark);
}

.btn-shop-now {
    background-color: var(--dark-charcoal);
    color: var(--pure-white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-shop-now:hover {
    transform: translateY(-2px);
}

/* HERO LAYER */
.hero-section {
    display: flex;
    align-items: center;
    padding: 40px 6% 80px 6%;
    background-color: var(--light-peach-bg);
    min-height: calc(100vh - 90px);
    gap: 5%;
}

.hero-content {
    flex: 1.1;
}

.badge-accent {
    background-color: var(--pure-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--peach-accent);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.15;
    margin: 24px 0;
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 85%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.btn-primary {
    background-color: var(--dark-charcoal);
    color: var(--pure-white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-charcoal);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #d2d7df;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--light-peach-bg);
    margin-right: -12px;
}

.proof-text {
    font-size: 0.85rem;
    font-weight: 600;
}

.stars {
    font-size: 0.8rem;
    color: var(--peach-dark);
    margin-top: 2px;
}

.stars span {
    color: var(--dark-charcoal);
    font-weight: 600;
    margin-left: 6px;
}

/* HERO IMAGE & FLOATING BOX */
.hero-image-container {
    flex: 0.9;
    position: relative;
}

.hero-main-img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.floating-results-card {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background-color: var(--pure-white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    width: 240px;
    border: 1px solid var(--light-peach-bg);
}

.floating-results-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f8f9fa;
}

.result-row strong {
    color: var(--dark-charcoal);
}

.results-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
    margin-top: 12px;
}

/* CORE VALUE PROPOSITIONS */
.values-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 60px 6%;
    gap: 30px;
    background-color: var(--pure-white);
    border-bottom: 1px solid var(--light-peach-bg);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-item i {
    font-size: 1.2rem;
    color: var(--dark-charcoal);
    background-color: var(--light-peach-bg);
    padding: 12px;
    border-radius: 50%;
}

.value-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FEATURED PRODUCTION GRID */
.collection-section {
    padding: 80px 6%;
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.view-all-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    text-decoration: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background-color: var(--pure-white);
}

.product-img-wrapper {
    position: relative;
    background-color: var(--light-peach-bg);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.btn-add-cart {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-charcoal);
    color: var(--pure-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-meta {
    padding: 16px 4px;
}

.product-meta h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-meta p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.product-meta .price {
    font-weight: 700;
    font-size: 0.95rem;
}

/* TESTIMONIAL DISPLAY CAROUSEL */
.testimonials-section {
    padding: 80px 6%;
    background-color: var(--light-peach-bg);
    text-align: center;
}

.testimonials-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 16px 0 48px 0;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--pure-white);
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
}

.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--peach-dark);
    height: 30px;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-profile img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.user-profile h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.user-profile span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #d2d7df;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: var(--dark-charcoal);
    width: 20px;
    border-radius: 10px;
}

/* ACCORDION FAQ SYSTEM */
.faq-section {
    padding: 80px 6%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 16px 0 40px 0;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
}

.faq-trigger h3 {
    font-size: 1.05rem;
    font-weight: 500;
}

.faq-trigger i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content p {
    padding-bottom: 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-trigger i {
    transform: rotate(45deg);
}

/* FOOTER ARCHITECTURE */
.main-footer {
    background-color: var(--dark-charcoal);
    color: var(--pure-white);
    padding: 80px 6% 40px 6%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    border-bottom: 1px solid #2e3742;
    padding-bottom: 60px;
}

.footer-brand .logo {
    color: var(--pure-white);
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: var(--pure-white);
    opacity: 0.6;
    font-size: 1.2rem;
    transition: opacity 0.2s ease;
}

.social-icons a:hover {
    opacity: 1;
}

.footer-links-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    color: var(--peach-accent);
}

.footer-links-col a {
    display: block;
    color: var(--pure-white);
    opacity: 0.7;
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-links-col a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-bottom a {
    color: var(--pure-white);
    text-decoration: none;
}

/* RESPONSIVE DESIGN ADJUSTMENTS */
@media (max-width: 1024px) {
    .hero-section { flex-direction: column; text-align: center; padding-top: 60px; }
    .hero-content h1 { font-size: 3rem; }
    .hero-subtext { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-social-proof { justify-content: center; }
    .floating-results-card { position: relative; bottom: 0; right: 0; margin: 40px auto 0 auto; }
    .values-section { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-container { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* GLOBAL SYSTEM RESETS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --light-peach-bg: #fff5f0;
    --peach-accent: #fcdbd0;
    --peach-dark: #e8a995;
    --dark-charcoal: #1c2229;
    --text-muted: #5e6873;
    --pure-white: #ffffff;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark-charcoal);
    background-color: var(--pure-white);
    overflow-x: hidden;
}

/* NAVBAR (Same across all pages) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    background-color: var(--pure-white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #fcfcfc;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo span {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-top: -4px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--dark-charcoal);
    font-weight: 600;
}

.btn-shop-now {
    background-color: var(--dark-charcoal);
    color: var(--pure-white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
}

/* INNER PAGE HERO HEADER (Reusable template) */
.page-header {
    background-color: var(--light-peach-bg);
    text-align: center;
    padding: 80px 6%;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* FOOTER ARCHITECTURE */
.main-footer {
    background-color: var(--dark-charcoal);
    color: var(--pure-white);
    padding: 80px 6% 40px 6%;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    border-bottom: 1px solid #2e3742;
    padding-bottom: 60px;
}

.footer-brand .logo { color: var(--pure-white); margin-bottom: 24px; }
.social-icons { display: flex; gap: 16px; }
.social-icons a { color: var(--pure-white); opacity: 0.6; font-size: 1.2rem; }
.footer-links-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 24px; color: var(--peach-accent); }
.footer-links-col a { display: block; color: var(--pure-white); opacity: 0.7; font-size: 0.9rem; text-decoration: none; margin-bottom: 12px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 40px; font-size: 0.85rem; opacity: 0.6; }
.footer-bottom a { color: var(--pure-white); text-decoration: none; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* SHOP PAGE ARCHITECTURE */
.shop-layout {
    display: flex;
    padding: 60px 6%;
    gap: 5%;
}

.shop-sidebar {
    flex: 0.6;
}

.shop-sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.shop-sidebar ul {
    list-style: none;
}

.shop-sidebar ul li {
    margin-bottom: 14px;
}

.shop-sidebar ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
}

.shop-sidebar ul li a.active {
    color: var(--dark-charcoal);
    font-weight: 600;
}

.products-grid-main {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.img-frame {
    background-color: var(--light-peach-bg);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
    aspect-ratio: 1/1;
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-product-card h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.shop-product-card p {
    font-weight: 700;
}

@media (max-width: 900px) {
    .shop-layout { flex-direction: column; gap: 40px; }
    .products-grid-main { grid-template-columns: repeat(2, 1fr); }
}

/* STORY EDITORIAL STYLE */
.story-container {
    display: flex;
    align-items: center;
    padding: 80px 6%;
    gap: 8%;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text {
    flex: 1;
}

.story-text span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--peach-dark);
}

.story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 16px 0 24px 0;
}

.story-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-visual {
    flex: 1;
}

.story-visual img {
    width: 100%;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .story-container { flex-direction: column; text-align: center; gap: 40px; }
}

/* BLOG SYSTEM LAYOUT */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 60px 6%;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    cursor: pointer;
}

.blog-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}

.blog-meta span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--peach-dark);
    letter-spacing: 0.5px;
}

.blog-meta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin: 10px 0;
    color: var(--dark-charcoal);
}

.blog-meta p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* CONTACT AREA LAYOUT */
.contact-section {
    display: flex;
    padding: 80px 6%;
    gap: 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-details p {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-block {
    margin-bottom: 24px;
}

.info-block strong {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--peach-dark);
}

.info-block p {
    font-size: 1.1rem;
    color: var(--dark-charcoal);
    margin-top: 4px;
}

.contact-form-wrapper {
    flex: 1.2;
    background-color: var(--light-peach-bg);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--peach-accent);
    background-color: var(--pure-white);
    border-radius: 8px;
    outline: none;
    font-family: inherit;
}

.btn-submit {
    background-color: var(--dark-charcoal);
    color: var(--pure-white);
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-section { flex-direction: column; gap: 50px; }
}