/* Pierre Zero - Product Page Styles (Based on Figma Design) */





.nav-line {
    width: 0%;
    height: 1px;
    background: #D6C677;
    margin-top: -1px;
	transition: all 0.5s ease-out;
}

.product-nav-item:hover .nav-line {
	width: 100%;
}

.product-nav-item.active p,
.product-nav-item.active span {
    color: #D6C677;
}

/* =================================================================
   PRODUCTS CONTAINER
   ================================================================= */
.products-container {
    width: 100%;
}

/* =================================================================
   PRODUCT SECTIONS
   ================================================================= */
.product-section {
    padding: 100px 0;
    /*scroll-margin-top: 120px;*/
}

.product-section:not(:last-child) {
    /*border-bottom: 150px solid transparent;*/
}

/* =================================================================
   PRODUCT HEADER
   ================================================================= */
.product-header {
    text-align: center;
    margin-bottom: 40px;
}

.product-header h2 {
    font-family: 'Shippori Mincho B1', serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.4;
    color: #3f3d3c;
    margin: 0 0 6px 0;
}

.product-header p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #3f3d3c;
    margin: 0;
    font-variation-settings: 'wdth' 100;
}

/* =================================================================
   PRODUCT CONTENT
   ================================================================= */
.product-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 30px;
}

.product-image {
    flex: 1;
    max-width: 540px;
    margin: 0;
}

.product-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 540/597;
    object-fit: cover;
    background-size: cover;
}

.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 540px;
}

/* =================================================================
   DETAIL ITEMS
   ================================================================= */
.detail-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
	padding-bottom: 1em;
	border-bottom:1px #c3c3c3 dotted;
}

.detail-item h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1;
    color: #d6c677;
    margin: 0;
	font-weight: normal;
}

.detail-item p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: #3f3d3c;
    margin: 0;
}

/* =================================================================
   CERTIFICATION BADGE
   ================================================================= */
.certification-badge {
    margin: 10px 0;
}

.certification-badge figure {
    margin: 0;
    width: 96px;
    height: 97px;
}

.certification-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



/* =================================================================
   RECIPE SECTION
   ================================================================= */
.recipe-section {
    padding: 40px 0;
    margin-top: 40px;
}
.recipe-section:last-child {
    margin-top: 40px 0 0 0;
}
.recipe-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.8;
    color: #3f3d3c;
    text-align: center;
    margin: 0 0 30px 0;
    font-variation-settings: 'wdth' 100;
}

.recipe-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.recipe-card {
   
	max-width: 29%
}
.recipe-card a {
	transition: 0.8s;
    text-decoration: none;
	 display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.recipe-card a figure {
   overflow: hidden;
	
}
.recipe-card a:hover img {
    transform: scale(1.1, 1.1);
	transition: 0.8s;
}
.recipe-image {
    width: 100%;
    height: auto;
    margin: 0;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #3f3d3c;
    text-align: center;
    margin: 0;
}
.more-btn-content{
	display: flex;
	justify-content: flex-start;
}
@media (max-width: 1200px) {
	.product-header h2 {
        font-size: 36px;
    }

}

@media (max-width: 768px) {
	.product-header h2 {
        font-size: 30px;
    }
    .product-content {
  padding: 0;
}
	.recipe-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
	.product-navigation {
    padding: 70px 0;
}
	.product-section {
    padding: 70px 0;
    /*scroll-margin-top: 120px;*/
}
}

@media (max-width: 576px) {
	.product-header h2 {
        font-size: 24px;
    }
	.product-navigation {
    padding: 40px 0;
}
	.product-content {
 flex-flow: column;
		gap: 20px;
}
	.more-btn-content{
	display: flex;
	justify-content: center;
}
	.recipe-card {
	max-width: 100%
}
	.product-section {
    padding: 30px 0;
    /*scroll-margin-top: 120px;*/
}
}


.bg-gray{
	background-color: #f7f7f7;
}


