/*
Theme Name: Elder no Shizuku
Theme URI: https://example.com/elder-no-shizuku
Description: とかちエルダーの雫のランディングページテーマ。北海道十勝産エルダーフラワーシロップの商品紹介サイト用テーマ。
Version: 1.0.0
Author: Your Name
Author URI: https://example.com
Text Domain: elder-no-shizuku
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: landing-page, one-page, responsive, japanese
*/

/* ========================================
   CSS Variables
   ======================================== */
:root {
  /* Colors */
  --color-cream: #f8f6f0;
  --color-beige: #e8e4d8;
  --color-brown: #8b7355;
  --color-pink: #f7f4f1;
  --color-dark-brown: #5c4a3a;
  --color-green: #4a6e51;
  --color-dark-green: #458252;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-light-blue: #e8f4f8;
  --color-text: #333333;
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --font-body: 'Noto Sans JP', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;
  
  /* Container */
  --container-width: 1200px;
  --container-padding: 2rem;
  
  /* Effects */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 8px;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.8;
  /*background-color: var(--color-cream);*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  opacity: 0.8;
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
    padding: 5rem 0 2rem;
}

.bg-white {
  background-color: var(--color-white);
}

.bg-cream {
  background-color: var(--color-cream);
}

.bg-light-blue {
  background-color: var(--color-light-blue);
}

/* ========================================
   Typography
   ======================================== */
.section-title {
    font-family: "scribo-brush-xl-regular", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 6.6rem;
    text-align: center;
    margin-bottom: 0.6rem;
    color: var(--color-brown);
    letter-spacing: 0.07em;
    line-height: 1.0;
    background-image: url(images/midashi-back.png);
    background-repeat: no-repeat;
    background-position: center bottom;
}

.section-subtitle {
  font-size: 0.9rem;
  text-align: center;
  color: var(--color-brown);
  letter-spacing: 0.1em;
  margin-bottom: 3.5rem;
  font-weight: 500;
}

/* ========================================
   Header
   ======================================== */
.header {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-beige);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.98);
}
.header .container {
  max-width: 100%;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  position: relative;
}

.logo a {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-dark-brown);
}

.shop-button-wrapper {
    position: fixed;
    top: 28px;
    right: 90px;
    z-index: 1000;
}

.shop-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 15px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;

}

.shop-button:hover {
  background-color: #3d6b4a;
  transform: translateY(-2px);
}

.shop-button:active {
  transform: translateY(0);
}

.shop-button .cart-icon {
  font-size: 16px;
}



/* ハンバーガーメニューボタン */
  .hamburger {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--color-white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 99;
    overflow-y: auto;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 5rem 2.5rem 2rem;
  }
  
  .nav-list li {
    border-bottom: 1px solid var(--color-beige);
  }
  
  .nav-list a {
    display: block;
    padding: 1.3rem 0;
    font-size: 1.05rem;
  }
  
  /* メニューオープン時のオーバーレイ */
  body.menu-open {
    overflow: hidden;
  }
  
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }



.hamburger {
  /*display: none;*/
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  transition: var(--transition);
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--color-brown);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* ナビゲーション */
.nav {
  display: block;
}

/*.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}*/
.nav-list {
    display: flex;
  list-style: none;
        flex-direction: column;
        gap: 0;
        padding: 5rem 2rem 2rem;
}
.nav-list a {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--color-text);
    font-family: "tot-shizukasmudgemin-stdn", sans-serif;
font-weight: 600;
font-style: normal;
}

.nav-list a:hover {
  color: var(--color-green);
}

/* ========================================
   Slide Section
   ======================================== */
.slide {
  background-color: var(--color-white);
}

.main-image {

}

.main-image img {
  width: 100%;
  height: auto;
}

/* ========================================
   Concept Section
   ======================================== */
.concept {
  background-color: var(--color-white);
}

.concept-content {
  max-width: 800px;
  margin: 0 auto;
}

.concept-text {
  margin-bottom: var(--spacing-lg);
}

.concept-text p {
  font-size: 1.1rem;
  line-height: 2.2;
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.concept-box {
    padding: 0rem 3rem 3rem;
    margin-bottom: 2.2rem;
}
.concept-box:last-child {
    margin-bottom: 0rem;
}

.concept-box h3 {
  font-size: 2.6rem;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.6rem;
  color: #151515;
    font-family: "tot-shizukasmudgemin-stdn", sans-serif;
font-weight: 600;
font-style: normal;
}

.concept-box-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.concept-box-text p:last-child {
  margin-bottom: 0;
}

/* ========================================
   Lineup Section
   ======================================== */
.lineup {
    background-color: var(--color-white);
    background-image: url(images/lineup-bg.jpg);
    padding-top: 6rem;
}

.lineup-intro {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.lineup-intro p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-text);
    text-align: left;
}

.lineup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: 3.5rem;
    margin-bottom: 3rem;
}

.product-card {
  text-align: center;
  padding: 17px;
}

/*.product-image-wrapper {
  width: 280px;
  height: 280px;
  margin: 0 auto var(--spacing-md);
  background-color: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}*/



/*.product-image {
  max-width: 120px;
  max-height: 200px;
  object-fit: contain;
}*/

.product-name {
    font-size: 1.4rem;
    font-family: "tot-shizukasmudgemin-stdn", sans-serif;
    font-weight: 600;
    font-style: normal;
    margin-bottom: var(--spacing-sm);
    color: #151515;
    margin-top: 15px;
    line-height: 1.2;
    min-height: 55px;
}
.product-name span {
    font-size: 1rem;
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    text-align: justify;
}

/* ========================================
   Serving (Recipe) Section
   ======================================== */
.serving {
  background-color: var(--color-white);
    padding-top: 6rem;
}

.serving-intro {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
    margin-bottom: 4rem;
}

.recipe-card {
  background-color: var(--color-pink);
  overflow: hidden;
  transition: var(--transition);
}


.recipe-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

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

.recipe-content {
  padding: 1.2rem;
}

.recipe-title {
    font-size: 1.5rem;
    font-family: "tot-shizukasmudgemin-stdn", sans-serif;
    font-weight: 600;
    font-style: normal;
    margin-bottom: var(--spacing-xs);
    color: #151515;
    text-align: center;
}

.recipe-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text);
    text-align: justify;
}

/* ========================================
   Chef Section
   ======================================== */
.chef {
  background-color: var(--color-white);
    padding-top: 6rem;
}
.chef .concept-box {
    padding: 0rem 4rem 0rem;
}
.chef .concept-box-text {
    display: flex;
    max-width: 1008px;
    gap: 48px;
    margin: 50px auto 50px;
}
.chef .concept-box-text:first-of-type {
	margin-top: 0px;
}
.chef .concept-box-text:last-of-type {
	margin-bottom: 0px;
}

.chef .concept-box-text .photo {
    flex: 0 0 300px;
}
.chef .concept-box-text .right660 {
    flex: 1;
  min-width: 0;
}
.chef .concept-box-text .right660 h3 {
  font-size: 2.0rem;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 1.6rem;
  color: #151515;
    font-family: "tot-shizukasmudgemin-stdn", sans-serif;
font-weight: 600;
font-style: normal;
}
.chef .concept-box-text .right660 .name p {
  font-size: 2.0rem;
  text-align: right;
  line-height: 1.6;
  margin-bottom: 0rem;
  color: #151515;
    font-family: "tot-shizukasmudgemin-stdn", sans-serif;
font-weight: 600;
font-style: normal;
}
.chef .concept-box-text .right660 .name p.shop {
  font-size: 1.2rem;
}
.chef .concept-box-text .right660 .name p.shop span {
  font-size: 1.0rem;
    margin-left: 0px;
}
.chef .concept-box-text .right660 .name span {
    font-size: 1.0rem;
    margin-left: 15px;
}
hr {
    border: none;
    height: 1px;
 background-color: #F7F4F1;
}


/* ========================================
   Closing Section
   ======================================== */
.closing {
  background-color: var(--color-white);
    padding-top: 6rem;
}
.closing .concept-box {
    padding: 0rem 4rem 3rem;
}
.closing .concept-box-text {
    display: flex;
    max-width: 1008px;
    gap: 48px;
    margin: 0 auto 0;
}
.closing .concept-box-text .photo {
    flex: 1;
  min-width: 0;
}
.closing .concept-box-text .right450 {
    flex: 1;
  min-width: 0;
}


/* ========================================
   Hometown Tax Section
   ======================================== */
.hometown {
    background-color: var(--color-light-blue);
    background-image: url(images/hometown-bg.jpg);
    padding-top: 6.2rem;
}

.hometown-content {
    max-width: 1200px;
    margin: 0 auto 1.4rem;
    text-align: center;
}

.hometown-intro {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 3.2rem;
  color: var(--color-text);
}

ul.banner {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    list-style: none;
    gap: 35px;
}
/*ul.banner li {
    margin-bottom: 44px;
    margin-right: 35px;
}
ul.banner li:nth-child(3n) {
    margin-right: 0px;
}*/




ul.banner li {
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

ul.banner li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 350px;
}


/* ========================================
   Buttons
   ======================================== */
.btn {
  padding: 0.9rem 2.5rem;
  border: 2px solid var(--color-brown);
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-brown);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-dark-brown);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  opacity: 1;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-brown);
}

.btn-outline:hover {
  background-color: var(--color-brown);
  color: var(--color-white);
  transform: translateY(-2px);
  opacity: 1;
}

.btn-outline-small {
  background-color: transparent;
  color: var(--color-brown);
  padding: 0.7rem 2rem;
  font-size: 0.9rem;
}

.btn-outline-small:hover {
  background-color: var(--color-brown);
  color: var(--color-white);
  transform: translateY(-2px);
  opacity: 1;
}

/* ========================================
   Company Section
   ======================================== */
.company {
    background-color: var(--color-white);
    padding-top: 6.2rem;
}

.company-content {
  max-width: 800px;
  margin: 0 auto;
}

.company-logo {
    text-align: center;
    margin-bottom: 2.6rem;
    padding-top: 2.6rem;
}

.company-logo img {
  max-width: 300px;
  margin: 0 auto;
}

.company-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin: var(--spacing-md) 0 var(--spacing-lg);
  color: var(--color-brown);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.company-description {
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.company-description p {
    font-size: 1.1rem;
    line-height: 2.3;
    text-align: left;
}

.company-info {
    padding: 0rem 3rem 4rem;
}

.info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--spacing-md);
  padding: 3rem 0 1.5rem 0;
  border-bottom: 1px solid var(--color-beige);
  align-items: start;
}

/*.info-row:last-child {
  border-bottom: none;
}*/

.info-label {
    font-weight: 500;
    color: var(--color-black);
    font-size: 1rem;
    text-align: center;
}

.info-value {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.8;
}

.info-value a {
  color: var(--color-green);
  text-decoration: underline;
}

.info-value a:hover {
  opacity: 0.7;
}


.order-button-wrapper {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.order-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 17px 170px;
    background-color: #c45c3e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 22px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 100px;
}

.order-button:hover {
  background-color: #ff8800;
  transform: translateY(-2px);
}

.order-button:active {
  transform: translateY(0);
}

.cart-icon {
  font-size: 24px;
}

.external-icon {
  font-size: 21px;
    color: #e2ae9f;
}

.movie-size {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.entry-content #sb_instagram {
    width: 90%;
    max-width: 1136px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--color-dark-green);
    color: var(--color-white);
    padding: 95px 0px 100px;
    text-align: center;
}

.footer-logo {
  margin-bottom: 0px;
}

.footer-logo img {
  margin: 0 auto;
}



.footer-copyright {
  margin-top: 0px;
  padding-top: 2.5rem;
}

.footer-copyright p {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

/* Stagger animations */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }

.recipe-card:nth-child(1) { animation-delay: 0.1s; }
.recipe-card:nth-child(2) { animation-delay: 0.15s; }
.recipe-card:nth-child(3) { animation-delay: 0.2s; }
.recipe-card:nth-child(4) { animation-delay: 0.25s; }
.recipe-card:nth-child(5) { animation-delay: 0.3s; }
.recipe-card:nth-child(6) { animation-delay: 0.35s; }


/* ========================================
   Responsive Design
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .section-title {
    font-size: 3.5rem;
  }
  
  /* Header - ハンバーガーメニュー for タブレット */
  .hamburger {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--color-white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 99;
    overflow-y: auto;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 5rem 2.5rem 2rem;
  }
  
  .nav-list li {
    border-bottom: 1px solid var(--color-beige);
  }
  
  .nav-list a {
    display: block;
    padding: 1.3rem 0;
    font-size: 1.05rem;
  }
  
  /* メニューオープン時のオーバーレイ */
  body.menu-open {
    overflow: hidden;
  }
  
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .lineup-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }
  
  .recipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  

}

@media (max-width: 768px) {
  :root {
    --container-padding: 1.5rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
  }
  .header {
    position: fixed;
    width: 100%;
}
    .logo img {
    max-width: 80%;
}

.shop-button-wrapper {
    position: fixed;
    top: auto;
    right: 0px;
    z-index: 1000;
    bottom: 0px;
    width: 100%;
    text-align: center;
}

.shop-button {
    display: block;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0px;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.shop-button:hover {
  background-color: #3d6b4a;
  transform: translateY(-2px);
}

.shop-button:active {
  transform: translateY(0);
}



    .slide {
    margin-top: 89px;
}
  .section-title {
    font-size: 3.0rem;
      line-height: 1.8;
  }
  
  .section {
    padding: var(--spacing-xl) 0;
  }
    .closing.section {
    padding: 0 0 var(--spacing-xl);
  }
  
  /* Header - ハンバーガーメニュー */
  .header-content {
    padding: 1rem 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 99;
    overflow-y: auto;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 5rem 2rem 2rem;
  }
  
  .nav-list li {
    border-bottom: 1px solid var(--color-beige);
  }
  
  .nav-list a {
    display: block;
    padding: 1.2rem 0;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
  
  .nav-list a:hover {
    color: var(--color-green);
    padding-left: 0.5rem;
  }
    

  
  /* メニューオープン時のオーバーレイ */
  body.menu-open {
    overflow: hidden;
  }
  
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
    
    .concept-box,
    .closing .concept-box,
    .chef .concept-box {
    padding: 0px;
}
  
  /* Lineup */
  .lineup-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .product-image-wrapper {
    width: 240px;
    height: 240px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Recipe */
  .recipe-grid {
    grid-template-columns: 1fr;
      margin-bottom: 3rem;
  }
    
      /* Chef */
.chef {
    padding-top: 0rem;
}
.chef .concept-box-text {
    flex-direction: column;
    gap: 10px;
}


.chef .concept-box-text .photo {
    flex: 0 0 auto;
    width: 70%;
    margin: 0 auto;
}
.chef .concept-box-text .right660 {
  width: 100%;
}
    
.chef .concept-box-text .right660 h3 {
  font-size: 1.3rem;
}
.chef .concept-box-text .right660 h3 br {
    display: none;
}
.chef .concept-box-text .right660 .name p {
  font-size: 1.3rem;
}
.chef .concept-box-text .right660 .name p.shop {
    font-size: 1.0rem;
}

      /* Closing */
.closing .concept-box-text {
    flex-direction: column;
    gap: 10px;
}


.closing .concept-box-text .photo {
    flex: 0 0 auto;
    width: 100%;
    margin: 0 auto;
}
.closing .concept-box-text .right660 {
  width: 100%;
}

  /* Hometown */
  ul.banner {
    grid-template-columns: 1fr;
  }
  
  /* Company */
    .company-info {
  padding: 0px;
}
.info-label {
    text-align: left;
}
  .info-row {
    grid-template-columns: 1fr;
    gap: var(--spacing-xs);
  }
  
  .btn {
    width: 100%;
  }

.order-button {
    padding: 17px 30px;
    margin-bottom: 50px;
}

}

@media (max-width: 480px) {
  
  .concept-box h3 {
    font-size: 1.3rem;
  }
  
  
  .nav-list {
    font-size: 0.8rem;
    gap: 0.8rem;
  }
ul.banner li {
    margin-bottom: 15px;
    margin-right: auto !important;
    margin-left: auto;
    width: 80%;
}
ul.banner li img {
    width: 100%;
}
.footer-copyright p {
    font-size: 0.8rem;
}
}

/* ========================================
   Smooth Scroll & Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
.btn:focus {
  outline: 2px solid var(--color-green);
  outline-offset: 2px;
}
