
/* =================================================================
   RECIPE SECTION
   ================================================================= */
.recipe-section {
    padding: 100px 0;
    background: #ffffff;
}

.recipe-section .container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 30px;
}

.recipe-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

/* =================================================================
   RECIPE HERO IMAGE
   ================================================================= */
.recipe-hero-image {
	max-width: 786px;
    width: 100%;
    aspect-ratio: 305/216;
    margin: 0 auto;
    overflow: hidden;
}

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

/* =================================================================
   RECIPE TITLE CONTAINER
   ================================================================= */
.recipe-title-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.recipe-title-jp {
    font-family: 'Shippori Mincho B1', serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.4;
    color: #3f3d3c;
    margin: 0;
}

.recipe-title-en {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #3f3d3c;
    margin: 0;
    font-variation-settings: 'wdth' 100;
}

/* =================================================================
   RECIPE CONTENT
   ================================================================= */
.recipe-content {
    display: flex;
	justify-content: space-between;
    gap: 30px;
    width: 100%;
    align-items: flex-start;
}

/* =================================================================
   LEFT COLUMN
   ================================================================= */
.recipe-left-column {
    flex: 1;
	width: 100%;
    max-width: 58.333333%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.recipe-description {
}

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

/* =================================================================
   SECTION HEADERS
   ================================================================= */
.section-header {
    padding-bottom: 5px;
    border-bottom: 1px solid #3f3d3c;
    margin-bottom: 10px;
	
}

.section-title {
    font-family: 'Shippori Mincho B1', serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.4;
    color: #3f3d3c;
    margin: 0;
    text-align: left;
	
}

/* =================================================================
   INGREDIENTS SECTION
   ================================================================= */
.ingredients-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ingredients-list {
    display: flex;
    flex-direction: column;
}

.ingredient-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e6e7e8;
}

.ingredient-item:last-child {
   
}

.ingredient-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: #3f3d3c;
}

/* =================================================================
   INSTRUCTIONS SECTION
   ================================================================= */
.instructions-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.instructions-list {
    display: flex;
    flex-direction: column;
}

.instruction-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e6e7e8;
}

.instruction-item:last-child {
}

.instruction-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: #3f3d3c;
}

/* =================================================================
   RIGHT COLUMN - PRODUCT SECTION
   ================================================================= */
.recipe-right-column {
    width: 100%;
        max-width: 34%;
    flex-shrink: 0;
}

.product-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-title {
    font-family: 'Shippori Mincho B1', serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.4;
    color: #3f3d3c;
    margin: 0;
    text-align: left;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.product-header p {
    font-family: 'Bodoni SvtyTwo ITC TT', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #3f3d3c;
    margin: 0;
}

.product-divider {
    width: 100%;
    height: 1px;
    background: #c4c4c4;
}

.product-image-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.product-image {
    width: 100%;
}

.product-image img {
}

/* =================================================================
   ONLINE SHOP BUTTON
   ================================================================= */
.online-shop-btn {
    background: #3f3d3c;
    color: #ffffff;
    border: none;
    padding: 6px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-width: 162px;
    height: 36px;
    font-variation-settings: 'wdth' 100;
}

.online-shop-btn:hover {
    background: #2f2d2c;
    transform: translateY(-1px);
}

/* =================================================================
   OTHER RECIPES SECTION
   ================================================================= */
.other-recipes-section {
	overflow: hidden;
}

.other-recipes-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.other-recipes-section .section-title {
    font-family: 'Shippori Mincho B1', serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    color: #3f3d3c;
    text-align: center;
    margin: 0;
    max-width: 1116px;
    width: 100%;
	margin-bottom: 60px;
}

/* =================================================================
   RECIPES CAROUSEL
   ================================================================= */
.carousel-recipe-item {
	padding: 0 15px;
}

.carousel-recipe-item figure {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	margin: 0;
}
.carousel-recipe-item figure img {
	object-fit: cover;
}
.arrow_box{
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}
.arrow_box .slide-arrow{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #3F3D3C;	
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px;
	cursor:pointer
}
.arrow_box .slide-arrow:hover{
    opacity: .8;
}



/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

/* Large screens and down */
@media (max-width: 1440px) {
    .recipe-section .container,
    .other-recipes-section .container {
    }
    
    .recipes-carousel-container {
        max-width: 100%;
    }
}

/* Medium screens and down */
@media (max-width: 1200px) {
    .recipe-content {
    gap: 100px;
}
    .recipe-right-column {
        max-width: 41.666667%;
}
  
    
    .carousel-navigation {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Tablet and mobile */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }
    

    
    .recipe-section,
    .other-recipes-section {
        padding: 60px 0;
    }
    
    .recipe-section .container,
    .page-header .container,
    .other-recipes-section .container {
        padding: 0 20px;
    }
    
    .recipe-container {
        gap: 40px;
    }
    
    .recipe-title-jp {
        font-size: 32px;
    }
    
    .recipe-title-en {
        font-size: 14px;
    }
    
    .recipe-content {
    gap: 40px;
}
    
   
    
    .section-title {
        font-size: 20px;
    }
    
    .other-recipes-section .section-title {
        font-size: 24px;
    }
    
    .recipes-carousel-container {
        height: 200px;
    }
    
    .carousel-recipe-item {
        flex: 0 0 280px;
        height: 180px;
    }
    
    .carousel-navigation {
        top: auto;
        bottom: 20px;
    }
}

/* Small screens */
@media (max-width: 576px) {
	.recipe-content {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }
	.recipe-right-column {
        max-width: 100%;
}
	.recipe-left-column {
    max-width: 100%;
}.product-image {
  width: 70%;
	display: block;
	margin: auto;
}

    .recipe-content {
  padding-top: 0px;
}
	.recipe-description {
}
    .recipe-title-jp {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .other-recipes-section .section-title {
        font-size: 20px;
    }
    
    .ingredient-item,
    .instruction-item {
        padding: 15px 0;
    }
    
    .ingredient-name,
    .instruction-text {
        font-size: 14px;
    }
    
    .recipe-description p {
    }
    
    .product-title {
    }
    
    .product-header h4 {
        font-size: 18px;
    }
    
    .carousel-recipe-item {
        flex: 0 0 240px;
        height: 160px;
    }
    
    .recipes-carousel-container {
        height: 180px;
    }
}

/* =================================================================
   ACCESSIBILITY ENHANCEMENTS
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
    .recipes-carousel-track {
        transition: none;
    }
    
    .carousel-recipe-item {
        transition: none;
    }
    
    .carousel-recipe-item:hover {
        transform: none;
    }
    
    .carousel-recipe-item:hover img {
        transform: none;
    }
    
    .online-shop-btn:hover,
    .carousel-prev:hover,
    .carousel-next:hover {
        transform: none;
    }
}







/* =================================================================
   PRINT STYLES
   ================================================================= */
@media print {
    .other-recipes-section {
        display: none;
    }
    
    .carousel-navigation {
        display: none;
    }
    
    .online-shop-btn {
        display: none;
    }
    
    .recipe-title-jp {
        font-size: 24pt;
    }
    
    .section-title {
        font-size: 18pt;
    }
    
    .ingredient-name,
    .instruction-text,
    .recipe-description p {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .recipe-content {
        flex-direction: column;
        gap: 30pt;
    }
}


.carousel-title {
    font-family: 'Shippori Mincho B1', serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    color: #3f3d3c;
    text-align: center;
    margin: 0;
    width: 1116px;
    max-width: 100%;
    margin-bottom: 60px;
}


@media (max-width: 768px) {
    .carousel-title {
        font-size: 24px;
        width: 100%;
    }}

@media (max-width: 576px) {
    .carousel-title {
        font-size: 20px;
    }}