/* ===== LAKEVIEW PETALS LTD — MAIN STYLESHEET ===== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
    --pink: #E8A0B0;
    --pink-dark: #C96B85;
    --pink-light: #F5D5DE;
    --pink-pale: #FBF0F3;
    --green: #3A6B4A;
    --green-light: #5A8C6A;
    --green-pale: #EBF3EE;
    --black: #1A1A1A;
    --dark: #2D2D2D;
    --gray: #6B6B6B;
    --gray-light: #D4D4D4;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --border: #E8E8E8;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.header-top {
    background: var(--green);
    color: var(--white);
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.02em;
}

.logo-tagline {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 2px;
}

.main-nav ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-nav a {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--dark);
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green);
    border-color: var(--green);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 0.05em;
    font-weight: 500;
    transition: background 0.2s;
}

.cart-btn:hover { background: var(--green-light); }

.cart-count {
    background: var(--pink-dark);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: var(--dark);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 26, 26, 1) 0%, rgba(26, 26, 26, 0.65) 40%, rgba(26, 26, 26, 0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 700px;
    color: var(--white);
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--pink-light);
    margin-bottom: 20px;
}

.hero-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--pink-light);
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero h1 em {
    font-style: italic;
    color: var(--pink-light);
}

.hero-desc {
    font-size: 17px;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Quality Badge */
.hero-quality-badge {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.badge-inner {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(232, 160, 176, 0.15);
    border: 3px solid var(--pink-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--pink-light);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(201, 107, 133, 0.15);
}

.badge-inner i {
    font-size: 36px;
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--pink-dark);
    color: var(--white);
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid var(--pink-dark);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-green {
    background: var(--green);
    color: var(--white);
    padding: 13px 30px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid var(--green);
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-green:hover { background: var(--green-light); border-color: var(--green-light); }

.btn-pink {
    background: var(--pink-dark);
    color: var(--white);
    padding: 13px 30px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid var(--pink-dark);
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-pink:hover { background: var(--pink); border-color: var(--pink); }

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--green);
    color: var(--white);
    padding: 30px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.stat-item p {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 4px;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 90px 60px;
}

.section-alt { background: var(--pink-pale); }
.section-dark { background: var(--green); color: var(--white); }
.section-green-pale { background: var(--green-pale); }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--pink-dark);
    margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--pink-dark);
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 16px;
}

.section-dark .section-header h2,
.section-dark .section-label {
    color: var(--white);
}

.section-dark .section-label::before,
.section-dark .section-label::after {
    background: var(--pink-light);
}

.section-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===== INTRO SECTION ===== */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-image-wrap {
    position: relative;
}

.intro-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
}

.intro-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--pink-dark);
    color: var(--white);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
}

.intro-badge span:first-child {
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}

.intro-badge span:last-child {
    font-size: 11px;
    font-weight: 400;
}

.intro-content .section-label { justify-content: flex-start; }
.intro-content .section-label::before { display: none; }

.intro-content h2 {
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--black);
}

.intro-content p {
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.9;
}

.intro-features {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.intro-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.intro-feature i {
    color: var(--green);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.intro-feature span {
    font-size: 15px;
    color: var(--dark);
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--pink-dark);
    color: var(--white);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.product-card-body {
    padding: 20px;
}

.product-card-body h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--black);
}

.product-card-body p {
    font-size: 14px;
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 16px;
}

.product-price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    font-family: 'Jost', sans-serif;
}

.product-card-footer {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
}

.btn-view {
    flex: 1;
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
    padding: 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-view:hover {
    background: var(--green);
    color: var(--white);
}

.btn-cart {
    background: var(--pink-dark);
    color: var(--white);
    border: 2px solid var(--pink-dark);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
    font-size: 14px;
}

.btn-cart:hover { background: var(--pink); border-color: var(--pink); }

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--pink-dark);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--pink-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--pink-dark);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--black);
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-item i {
    font-size: 32px;
    color: var(--pink-light);
    margin-bottom: 16px;
}

.why-item h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--white);
}

.why-item p {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 300;
    line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    padding: 36px;
    border: 1px solid var(--border);
}

.testimonial-stars {
    color: var(--pink-dark);
    font-size: 14px;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--pink-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-dark);
    font-size: 18px;
}

.testimonial-author-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    font-family: 'Jost', sans-serif;
}

.testimonial-author-info span {
    font-size: 12px;
    color: var(--gray);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 60px;
    background: var(--pink-pale);
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(28px, 3.5vw, 50px);
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--black);
}

.cta-banner p {
    font-size: 16px;
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 36px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 70px 60px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--pink-light);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    opacity: 0.7;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.2s, border-color 0.2s;
}

.footer-social a:hover {
    opacity: 1;
    border-color: var(--pink-light);
    color: var(--pink-light);
}

.footer-col h4 {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    opacity: 0.7;
    font-weight: 300;
    transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--pink-light);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    opacity: 0.7;
    font-weight: 300;
}

.footer-contact-item i {
    color: var(--pink-light);
    margin-top: 2px;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.5;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: var(--green);
    color: var(--white);
    padding: 70px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 300;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 16px;
    opacity: 0.8;
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0.7;
    margin-top: 16px;
}

.breadcrumb a:hover { color: var(--pink-light); }
.breadcrumb i { font-size: 10px; }

/* ===== ABOUT PAGE ===== */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.mv-card {
    border-radius: 8px;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border);
}

.mv-card h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--green);
}

.mv-card p {
    font-size: 15px;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.team-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.team-card-body {
    padding: 20px;
}

.team-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 4px;
}

.team-card span {
    font-size: 13px;
    color: var(--pink-dark);
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ===== SINGLE PRODUCT ===== */
.product-single-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.product-single-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 8px;
}

.product-single-info h1 {
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 400;
    margin-bottom: 14px;
}

.product-single-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 24px;
}

.product-single-desc {
    font-size: 15px;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 30px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
}

.qty-label {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-right: 16px;
    color: var(--dark);
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.qty-btn:hover { background: var(--pink-pale); }

.qty-btn:first-of-type { border-radius: 6px 0 0 6px; }
.qty-btn:last-of-type { border-radius: 0 6px 6px 0; }

.qty-input {
    width: 60px;
    height: 40px;
    border: 1px solid var(--border);
    border-left: none;
    border-right: none;
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.add-to-cart-btn {
    width: 100%;
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
}

.add-to-cart-btn:hover { background: var(--green-light); }

.product-meta {
    margin-top: 24px;
    font-size: 14px;
    color: var(--gray);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-meta i {
    color: var(--green);
    width: 16px;
}

/* ===== CART ===== */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gray);
    padding: 0 0 16px;
    border-bottom: 2px solid var(--border);
}

.cart-table td {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
}

.cart-item-price, .cart-item-total {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--green);
}

.cart-qty-input {
    width: 60px;
    padding: 6px;
    border: 1px solid var(--border);
    border-radius: 4px;
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--gray-light);
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s;
}

.remove-btn:hover { color: var(--pink-dark); }

.cart-summary {
    background: var(--pink-pale);
    border-radius: 8px;
    padding: 30px;
    position: sticky;
    top: 120px;
}

.cart-summary h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    padding-top: 16px;
    border-top: 2px solid var(--border);
    margin-top: 8px;
    color: var(--green);
}

/* ===== CHECKOUT ===== */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.checkout-form-section h2 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: var(--black);
    background: var(--white);
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--green);
}

textarea.form-control { resize: vertical; min-height: 100px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.order-summary-box {
    background: var(--pink-pale);
    border-radius: 8px;
    padding: 30px;
    position: sticky;
    top: 120px;
}

.order-summary-box h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.order-item-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.order-item-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.order-item-name {
    font-size: 14px;
    font-weight: 500;
}

.order-item-qty {
    font-size: 12px;
    color: var(--gray);
}

.order-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--green);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: var(--pink-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-dark);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--dark);
    font-family: 'Jost', sans-serif;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 15px;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.7;
}

.contact-info-item a:hover { color: var(--green); }

.contact-hours { margin-top: 30px; }
.contact-hours h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--black);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.hours-row:last-child { border-bottom: none; }

.hours-status {
    color: var(--green);
    font-weight: 600;
    font-size: 12px;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
}

/* ===== SUCCESS / THANK YOU ===== */
.success-page {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 30px;
}

.success-icon {
    width: 90px;
    height: 90px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 36px;
    color: var(--green);
}

.success-page h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--black);
}

.success-page p {
    font-size: 16px;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 36px;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

.alert {
    padding: 14px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success { background: var(--green-pale); color: var(--green); border: 1px solid var(--green); }
.alert-error { background: #fef0f0; color: #c0392b; border: 1px solid #e74c3c; }

.empty-state {
    text-align: center;
    padding: 80px 30px;
}

.empty-state i {
    font-size: 60px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 28px;
    color: var(--gray);
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 30px;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
    .header-main { padding: 0 24px; }
    .main-nav, .header-top { display: none; }
    .main-nav.open { display: block; position: absolute; top: 80px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 24px; }
    .main-nav.open ul { flex-direction: column; gap: 16px; }
    .mobile-menu-btn { display: block; }
    .site-header { position: relative; }
    .site-header.sticky-active { position: sticky; top: 0; }

    .hero { height: 70vh; }
    .hero-content { padding: 0 24px; }
    .hero h1 { font-size: 34px; }

    .section { padding: 60px 24px; }
    .stats-bar { grid-template-columns: 2fr 2fr; padding: 30px 24px; gap: 30px; }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .intro-badge { bottom: -16px; right: -8px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .cart-layout, .checkout-layout, .contact-grid, .product-single-grid, .mission-vision-grid { grid-template-columns: 1fr; }
    .cart-summary, .order-summary-box { position: static; }
    .form-row { grid-template-columns: 1fr; }
    .page-hero { padding: 50px 24px; }
    .cta-banner { padding: 60px 24px; }
    .site-footer { padding: 50px 24px 24px; }
}

@media (max-width: 580px) {
    .products-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    .team-grid { grid-template-columns: 1fr 1fr; }
}
