
/* Body */
.product-body {
    background: #fff;
    padding: 96px 24px;
}

.product-container {
    max-width: 980px;
    margin: 0 auto;
}

.product-overview h2 {
	color :#464646;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 0 0 20px 0;
}

.product-overview p {
	color :#464646;
    font-size: 19px;
    line-height: 1.65;
    color: #424245;
    margin: 0;
}

.product-specs {
    margin-top: 80px;
}

.product-specs h3 {
	color :#464646;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 28px 0;
}

.specs-grid {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.spec-row {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 32px;
	align-items: baseline;
	padding: 18px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.spec-label {
	font-size: 16px;
	color: #86868b;
}

.spec-value {
	font-size: 17px;
	font-weight: 500;
	color: #1d1d1f;
	text-align: left;
}

.specs-cta {
    display: flex;
    justify-content: flex-start; /* Tombol ikut sejajar rata kiri biar manis */
    margin-top: 32px;
}

/* Premium Light Capsule Button ala Apple Silicon Launch */
.btn-apple-secondary {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 980px; /* Lengkungan kapsul mulus */
    font-size: 15px;
    font-weight: 400; /* Tipis, rileks, berkelas */
    background: #e8e8ed; /* Abu-abu subtle mewah */
    color: #1d1d1f !important;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-apple-secondary:hover {
    background: #d2d2d7; /* Gelap dikit pas disentuh mouse */
}

.product-meta {
    display: flex;
    gap: 56px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-item span {
    font-size: 13px;
    color: #86868b;
}

.meta-item strong {
    font-size: 16px;
    font-weight: 500;
 color: #86868b;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 44px; }
    .hero-subtitle { font-size: 19px; }
}

@media (max-width: 734px) {
    .product-hero { padding: 56px 16px 72px; }
    .hero-header { margin-bottom: 40px; }
    .hero-title { font-size: 36px; }
    .hero-image { margin-bottom: 40px; }
    .hero-subtitle { font-size: 17px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
    .product-body { padding: 64px 16px; }
    .product-overview h2 { font-size: 32px; }
    .spec-row { flex-direction: column; gap: 4px; align-items: flex-start; }
    .spec-value { text-align: left; }
    .product-meta { flex-direction: column; gap: 24px; }
}