/* Reset & Font */
* { margin: 0; padding: 0; box-box: border-box; font-family: 'Helvetica', sans-serif; }
body { background-color: #fdfdfd; color: #1c1c1c; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Announcement Bar */
.announcement-bar { background: #000; color: #fff; text-align: center; padding: 8px; font-size: 12px; letter-spacing: 1px; }

/* Header */
.main-header { padding: 20px 0; border-bottom: 1px solid #eee; background: #fff; position: sticky; top: 0; z-index: 100; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 22px; letter-spacing: 3px; }
.desktop-nav a { text-decoration: none; color: #1c1c1c; margin: 0 15px; font-size: 13px; font-weight: bold; }

/* Hero Section */
.hero { 
    height: 80vh; 
    background: url('https://www.masshiroandco.com/cdn/shop/files/MCO_WEBSITE_BANNER_SS_26-02.jpg') no-repeat center center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
}
.hero-content h1 { font-size: 48px; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.btn-shop { background: #fff; color: #000; padding: 12px 30px; text-decoration: none; font-weight: bold; transition: 0.3s; }
.btn-shop:hover { background: #000; color: #fff; }

/* Product Grid */
.section-title { text-align: center; padding: 60px 0 30px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; padding-bottom: 50px; }
.product-card { text-align: center; }
.product-card img { width: 100%; height: auto; transition: transform 0.5s; }
.product-card img:hover { transform: scale(1.02); }
.product-card h3 { font-size: 14px; margin: 15px 0 5px; text-transform: uppercase; }
.product-card p { font-size: 13px; color: #666; }

/* Footer */
footer { text-align: center; padding: 40px; border-top: 1px solid #eee; font-size: 12px; color: #999; }