/* ── Hero & Copywriting Sections ── */
.hero-section {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 760px;
    margin: 0 auto;
}
.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 16px;
    font-weight: 500;
}
.hero-headline {
    font-size: clamp(1.9rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 16px;
}
.hero-headline span {
    position: relative;
    display: inline-block;
}
.hero-headline span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    opacity: 0.15;
}
.hero-subheadline {
    font-size: 1rem;
    color: #666;
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.hero-cta-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hero-cta-group .btn {
    width: auto;
    padding: 13px 28px;
    font-size: 0.82rem;
}
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 18px 20px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 50px;
    background: #fff;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #555;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.trust-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
/* Category hero variant */
.cat-hero {
    padding: 50px 20px 30px;
}
.cat-hero .hero-headline {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}
.cat-feature-strip {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.cat-feature-chip {
    background: #f5f5f5;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #555;
    letter-spacing: 0.3px;
}
/* Section divider */
.section-label {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 20px;
    font-weight: 500;
}
/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fafafa;
    color: #1a1a1a;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
header {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 20px;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}
.nav-item {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: #666;
    transition: color 0.3s;
}
.nav-item:hover, .nav-item.active {
    color: #1a1a1a;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    z-index: 1001;
    top: 100%;
    left: 0;
}
.dropdown-content a {
    color: #666;
    padding: 12px 16px;
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: #1a1a1a;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    transition: 0.3s;
}
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    min-height: 70vh;
}
.page-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}
.product-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.mockup-container {
    background-color: #fcfcfc;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    aspect-ratio: 9/16;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
}
.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.product-category {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.category-wedding    { background: #fdf0f5; color: #c2627a; border: 1px solid #f5c9d5; }
.category-khitanan   { background: #eef4ff; color: #4a72c4; border: 1px solid #c2d4f0; }
.category-birthday   { background: #fff8ec; color: #c07a1a; border: 1px solid #f5dba0; }
.category-reunion    { background: #f0fdf4; color: #2e7d52; border: 1px solid #b2dfc5; }
.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}
.product-name {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    font-weight: 500;
}
.btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    text-align: center;
}
.btn-demo {
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}
.btn-demo:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}
.btn-order {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #1a1a1a;
}
.btn-order:hover {
    background-color: #333333;
    border-color: #333333;
}
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    font-size: 30px;
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 2000;
    text-align: center;
    border: 1px solid #eaeaea;
    max-width: 90%;
    width: 400px;
}
.popup h3 {
    margin-bottom: 10px;
    font-weight: 600;
}
.popup p {
    color: #666;
    margin-bottom: 20px;
}
.popup-close {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1999;
}
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        border-bottom: 1px solid #eaeaea;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    .nav-menu.active { display: flex; }
    .dropdown-content {
        position: relative;
        box-shadow: none;
        border: none;
        padding-left: 15px;
        display: block;
    }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .product-card { padding: 12px; border-radius: 12px; }
    .product-price { font-size: 0.95rem; }
    .product-name { font-size: 0.85rem; margin-bottom: 10px; }
    .btn { padding: 8px; font-size: 0.75rem; }
}
