/* @font-face {
  font-family: 'Montserrat';
  src:
    local('Montserrat'),
    url('/assets/fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}*/

@font-face {
  font-family: 'PlayfairDisplay';
  src:
    local('Playfair Display'),
    url('/assets/fonts/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PlayfairDisplayItalic';
  src:
    local('Playfair Display Italic'),
    url('/assets/fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
} 

/* === 引入字体 === */
@font-face {
  font-family: 'SourceHanSerifSC';
  src: url('/assets/fonts/SourceHanSerifSC-ExtraLight.otf') format('opentype');
  font-weight: 200;
}
@font-face {
  font-family: 'SourceHanSerifSC';
  src: url('/assets/fonts/SourceHanSerifSC-Light.otf') format('opentype');
  font-weight: 300;
}
@font-face {
  font-family: 'SourceHanSerifSC';
  src: url('/assets/fonts/SourceHanSerifSC-Regular.otf') format('opentype');
  font-weight: 400;
}
@font-face {
  font-family: 'SourceHanSerifSC';
  src: url('/assets/fonts/SourceHanSerifSC-Medium.otf') format('opentype');
  font-weight: 500;
}
@font-face {
  font-family: 'SourceHanSerifSC';
  src: url('/assets/fonts/SourceHanSerifSC-SemiBold.otf') format('opentype');
  font-weight: 600;
}
@font-face {
  font-family: 'SourceHanSerifSC';
  src: url('/assets/fonts/SourceHanSerifSC-Bold.otf') format('opentype');
  font-weight: 700;
}
@font-face {
  font-family: 'SourceHanSerifSC';
  src: url('/assets/fonts/SourceHanSerifSC-Heavy.otf') format('opentype');
  font-weight: 800;
}

.shs-extralight {
  font-family: 'SourceHanSerifSC', 'Songti SC', serif !important;
  font-weight: 200 !important;
}
.shs-light {
  font-family: 'SourceHanSerifSC', 'Songti SC', serif !important;
  font-weight: 300 !important;
}
.shs-regular {
  font-family: 'SourceHanSerifSC', 'Songti SC', serif !important;
  font-weight: 400 !important;
}
.shs-medium {
  font-family: 'SourceHanSerifSC', 'Songti SC', serif !important;
  font-weight: 500 !important;
}
.shs-semibold {
  font-family: 'SourceHanSerifSC', 'Songti SC', serif !important;
  font-weight: 600 !important;
}
.shs-bold {
  font-family: 'SourceHanSerifSC', 'Songti SC', serif !important;
  font-weight: 700 !important;
}
.shs-heavy {
  font-family: 'SourceHanSerifSC', 'Songti SC', serif !important;
  font-weight: 800 !important;
}

.playfair-display-italic{
  font-family: 'PlayfairDisplayItalic', serif !important;
  font-weight: 100 !important;
}



:root{
    --primary-dark: #403F44;
    --primary: #e8e3e0;
    --second: #D7CFCA;
    --black-dark: #333333;

    --pink: #FECBCA;
    --dark-pink: #B87978;
}

/* footer */
footer {
  background: var(--primary-dark);
  padding: 40px 20px calc(20px + env(safe-area-inset-bottom, 0px));
  text-align: center;
  color: var(--pink);
  font-weight: 300;
  font-size: .6rem;
  width: 100%;

  /* position: absolute;
  bottom: 0;
  left: 0;*/
  transform: translateY(100%); 
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 20px;
}

.footer-social {
  text-align: left;
}

.footer-social p {
  margin: 5px 0;
}

.footer-social a {
  display: inline-block;
  margin: 0 8px 0 0;
  text-decoration: none;
  font-size: 20px;
  color: var(--primary);
  transition: 0.3s;
}

.footer-social a:hover {
  color: var(--pink);
}

.footer-divider {
  border-top: 1px solid var(--pink);
  margin: 20px auto;
  max-width: 1300px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 20px auto 0;
  font-size: .6rem;
}

.footer-bottom p,
.footer-bottom div{
  width: 30%;
  text-align: left;
}

.footer-bottom div.footer-logo{
  text-align: center !important;
}

.footer-bottom div:last-child{
  text-align: right;
}

.footer-logo img {
  height: 40px;
}

.footer-links a {
  color: var(--pink);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--pink);
}

#mobile{
  display: none;
}

#desktop{
  display: block;
}

@media (max-width: 768px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  #mobile {
    display: block;
  }

  #desktop {
    display: none;
  }

  .footer-social {
    text-align: center;
    margin-bottom: 15px;
  }

  .footer-bottom p,
.footer-bottom div{
  width: 80%;
  text-align: center;
}

.footer-bottom div:last-child{
  text-align: center;
}

.footer-bottom div.footer-logo{
  margin: 20px 0;
}
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
  font-weight: 400;
  color: var(--primary-dark);
  background: var(--primary);
}
section{
  width: 80% !important;
  margin-left: calc(50% - 40%);
}

/* header */
header {
  position: absolute;
  inset: 0;
  top: 14px;
  width: 80%;
  margin-left: calc(50% - 40%);
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0px;
  z-index: 1000;
}



/* Logo */
.logo img {
  height: 40px;
}

/* 导航菜单 */
nav {
  width: 36%;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

nav a {
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: 0.3s;
}

nav a:hover {
  color: #555;
}

/* Home 特殊样式 */
nav a.active {
  border: 1px solid #666;
  border-radius: 5px;
}

nav .language-selector{
  display: flex;
  justify-content: center;
  align-items: center;
}

nav .language-selector a{
  border-radius: 0;
  height: 25px;
  padding: 0 0px;
}

nav a.lang-active{
  border-bottom: 1px solid #403F44;
  border-radius: 0;
}


/* 汉堡按钮（小屏幕显示） */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  transition: 0.3s;
}

/* 手机端菜单 */
@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    width: 50%;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
  }

  nav a{
    width: 100%;
  }

  nav.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

/* components */
.primary-btn{
  height: 35px;
    background-color: var(--primary-dark);
    color: white;
    border: none;
    padding: 0px 10px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 100 !important;
}

.outline-btn {
  height: 35px;
    background: none;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0px 10px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 100 !important;
}

/* index.html */
.hero {
    background: url('/assets/imgs/hero-bg.png') no-repeat center center/cover;
    height: 100vh;
    width: 100% !important;
    margin:  0 !important;
    padding: 0 10% !important;
    font-weight: normal;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h2{
    font-size: 2rem;
    margin: 0;
    font-weight: 100
}

.hero h1{
    font-size: 3.6rem;
    margin: 0;
    font-weight: 100
}

section.gettoknow{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.gettoknow h1.title{
    font-weight: 500;
    font-size: 1.65rem;
    color: var(--black-dark);
}

section p.content{
    font-weight: 500;
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

section.series{
    height: 642px;
    width: 100% !important;
    margin: 120px 0 !important;
    background: #403F44;
    border-radius: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    padding: 0 10%;
}

.series img{
    width: 482px;
    height: 499px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    border-radius: 55px;
    margin-right: 55px;
}

.series .section-content {
  color: var(--primary);
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

section.series h1.title{
    font-size: 1.6rem;
    font-weight: 400;
}

.series .section-content p{
    padding: 20px 0;
}
.series .section-content button{
    margin-top: 20px;
    height: 36px;
}


section.safetycert{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 150px 0;
}

.safetycert h1.title{
    font-weight: 500;
}

section.safetycert img{
    width: 60%;
    margin: 45px 0;
    object-fit: cover;
}

@media (max-width: 768px) {
    section.safetycert img{
        width: 90%;
    }
}



/* ABOUT */
section.empower {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 150px 0 !important;
    margin-top: 150px;
    width: 90%;
    margin-inline: auto;
}

section.empower h1.title {
    font-weight: 500;
    padding-bottom: 45px;
}

section.empower .section-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

section.empower p {
    font-weight: 500;
    width: 80%;
    text-align: left;
    transform: translateX(20%);
}

section.empower .imgs{
  position: relative;
  text-align: right;
}

section.empower .imgs img:first-child {
  position: absolute;
  left: 0;
  top:0;
  transform: translate(50%, -50%);
}

section.empower .imgs img:last-child{
  border: 8px solid var(--second);
}


@media (max-width: 768px) {
    section.empower {
        grid-template-columns: 1fr;
        padding: 50px;
    }

    section.empower > :first-child {
    order: 2; /* 左边的变成下面 */
  }

  section.empower > :last-child {
    order: 1; /* 右边的在上面 */
  }

  section.empower .imgs{
    text-align: right;
  }

    section.empower p {
        /* padding: 30px 20px;
        transform: translateX(0); */
    }
}

section.vision-mission{
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
    padding: 100px 10%;
    margin: 120px 0;
  width: 100% !important;
    background-color:  var(--second);
  border-radius: 10px;
  box-shadow: 0 10px 80px 80px  var(--second);
}

section.vision-mission .vision-card,
section.vision-mission .mission-card {
    width: 40%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

section.vision-mission .mission-card {
  margin-top: 200px;
}

section.vision-mission .vision-card img,
section.vision-mission .mission-card img {
    height: 550px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
}

section.vision-mission .vision-card .badge,
section.vision-mission .mission-card .badge {
  width: 110px;
  height: 45px;
    background: var(--primary-dark);
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    section.vision-mission {
        flex-direction: column;
        padding: 50px;
    }

    section.vision-mission .vision-card,
    section.vision-mission .mission-card {
        width: 100%;
    }
}

section.me{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  gap: 80px;
  width: 90%;
  margin-inline: auto;
}

section.me img{
  width: 28%;
  margin-top: 20px;
}

section.me .title{
  padding-bottom: 60px;
  font-size: 2.5rem;
  font-weight: lighter;
}

section.me p{
  width: 85%;
  padding-bottom: 16px;
}

@media (max-width: 768px) {
    section.me {
        flex-direction: column;
        text-align: left;
        padding: 50px;
    }

    section.me img {
        width: 100%;
    }
}

/* PRODUCT */


section.product img{
  width: 100%;
  display: block;
}

section.product .section-content {
    width: 50%;
    height: 70vh;
    transform: translateY(-50px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: space-between;

}

section.product .section-content h1.title{
  font-size: 5.4rem;
  font-weight: lighter;
}

section.product .section-content h1.title span{
  color: var(--dark-pink);
}

section.product .section-content .lower span:first-child{
  color: var(--dark-pink);
  font-weight: 400;
  font-size: 1.2rem;
}
section.product .section-content .lower h4{
  color: #3C2724;
  font-weight: 900;
}
section.product .section-content .lower h4 span{
  font-size: 1.5rem;
  font-weight: 400;
}
section.product .section-content .lower span.tagline{
  font-weight: 400;
}

section.product .imgs{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

section.product .imgs img{
    width: 55%;
    border-radius: 15px;
    margin-bottom: 20px;
    cursor: pointer;
}

section.product .imgs img:last-child{
  width: 54%;
    transform: rotate(69deg) translateY(80px);
}

section.product .imgs img:first-child{
  width: 120%;
  position: absolute;
  top: 0;
  left: 0;
    transform: rotate(94deg) translate(-100px, 150px);
}


@media (max-width: 768px) {
    /* section.product {
        flex-direction: column;
        margin-top: 120px !important;
        border: 1px solid red;
    } */

    section.product .section-content {
        width: 100%;
    }

    section.product .imgs {
        width: 100%;
    }

    section.product .imgs img:first-child {
        width: 100%;
        position: relative;
        transform: none;
    }
}

section.product-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 98.31px;
  padding: 0 10%;
  width: 100% !important;
  margin: 0 !important;
  background: linear-gradient(to bottom, #f1ece6, var(--primary));
}

section.product-list img {
  width: 100%;

  object-fit: cover;
  border-radius: 15px;
}

@media (max-width: 768px) {
    section.product-list {
       background: var(--primary);
    }


}
section.testimonial{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

 
section.testimonial h1.title{
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 40px;
}


section.testimonial .imgs{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}


section.testimonial .imgs img{
  width: 20%;
  object-fit: cover;
  gap: 40px;
}

.container {
    width: 100%;
    padding: 0;
    max-width: 1200px;
    margin: 60px auto;
}

.main-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 300;

    color: #4a4a4a;
    position: relative;
}

.main-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #333;
    margin: 60px auto 0;
}

.qna-section {
    display: flex;
    align-items: start;
    justify-content: center;
    margin-top: 20px;
}

.qna-section .section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    padding-top: 20px;
}

.qna-list {
    width: 100%;
}

.qna-item {
    border-bottom: 1px solid #d0d0d0;
    margin: 0;
    transition: all 0.3s ease;
}

.qna-item:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.qna-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}


.qna-item summary:hover {
    color: #000;
}

.qna-item summary::-webkit-details-marker {
    display: none;
}

.question-number {
    margin-right: 8px;
    font-weight: 600;
}

.toggle-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: #666;
    transition: all 0.3s ease;
    min-width: 30px;
    text-align: center;
    margin-right: 55px;
}

.qna-item[open] .toggle-icon {
    transform: rotate(45deg);
    color: #333;
}

.qna-answer {
    padding: 0 0 25px 28px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .qna-section {
        flex-wrap: nowrap;
    }

    .section-title {
        width: 30%;
        border-bottom: none;
        padding-right: 20px;
    }

    .qna-list {
        width: 65%;
    }
}

@media (max-width: 767px) {
    .main-title {
        font-size: 2.5em;
    }

    .section-title {
        font-size: 1.3em;
    }

    .qna-item summary {
        font-size: 1em;
    }
}



/* Responsive Design */
@media (min-width: 768px) {
    .qna-section {
        grid-template-columns: 300px 1fr;
        gap: 60px;
    }

    .section-title {
        border-bottom: none;
        padding-bottom: 0;
        top: 40px;
    }

    .main-title {
        /* font-size: 4rem; */
    }
}

@media (max-width: 767px) {
    .container {
        padding: 30px 15px;
    }

    .main-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
        letter-spacing: 1px;
    }

    .main-title::after {
        width: 60px;
        margin: 15px auto 0;
    }

    .qna-section {
        gap: 30px;
        padding: 20px;
        flex-direction: column;
    }

    .section-title {
      width: 100%;
        font-size: 1.1rem;
        text-align: center;
        padding-bottom: 15px;
    }

    .qna-item summary {
        padding: 15px 0;
        font-size: 0.95rem;
    }

    .toggle-icon {
        font-size: 1.6rem;
        min-width: 25px;
        margin-right: 0;
    }

    .qna-answer {
        padding: 0 0 20px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }

    .main-title {
        font-size: 2rem;
    }

    .qna-item summary {
        padding: 12px 0;
        font-size: 0.9rem;
    }

    .question-number {
        margin-right: 6px;
    }
}





/* privacy and policy */
.privacy{
  margin: 200px 0 100px 0;
  width: 65%;
  height: 50vh;
  margin-inline: auto;
  padding: 0 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.privacy hr{
  color: #403F44;
  width: 100%;
  height: 2px;
  margin: 25px 0;
}

.privacy h1{
  font-weight: 400;
}

.privacy p{
  /* padding: 4px 0px; */
  margin-bottom: 15px;
}


/* privacy and policy */
.term{
  margin-bottom: 160px;
  width: 65%;
  height: 50vh;
  margin-inline: auto;
  padding: 0 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.term hr{
  color: #403F44;
  width: 100%;
  height: 2px;
  margin: 25px 0;
}

.term h1{
  font-weight: 400;
}

.term p{
  /* padding: 4px 0px; */
  margin-bottom: 15px;
}


/* Mobile Responsive Design - Add at the end of your CSS file */

@media (max-width: 768px) {


  section.testimonial .imgs {
    flex-direction: column;
    gap: 20px;
  }

  section.testimonial .imgs img {
    width: 80%;
  }
  
  /* General mobile adjustments */
  section {
    padding: 50px 20px;
  }

  /* Hero section mobile */
  .hero {
    padding-left: 20px;
    text-align: center;
    padding-top: 100px;
  }

  .hero h2 {
    font-size: 1.0rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  /* Get to know section mobile */
  section.gettoknow {
    padding: 50px 20px;
  }

  section.gettoknow h1.title {
    font-size: 1.4rem;
    text-align: center;
  }

  section p.content {
    padding: 20px 10px;
    font-size: 0.95rem;
  }

  /* Series section mobile */
  section.series {
    flex-direction: column;
    height: auto;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border-radius: 30px;
  }

  .series img {
    width: 100%;
    height: 300px;
    margin-right: 0;
    margin-bottom: 30px;
    border-radius: 30px;
  }

  .series .section-content {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  section.series h1.title {
    font-size: 1.4rem;
  }

  /* Empower section mobile */
  section.empower {
    grid-template-columns: 1fr;
    padding: 50px 20px;
    width: 100%;
    margin-top: 50px;
  }

  section.empower .section-content {
    order: 2;
  }

  section.empower h1.title {
    padding-bottom: 20px;
    font-size: 1.4rem;
  }

  section.empower p {
    text-align: left;
    padding: 20px 0;
  }

  section.empower .imgs {
    /* order: 1; */
    margin-bottom: 30px;
    margin-top: 80px;
  }

  section.empower > :first-child {
    order: 1; /* section-content（文字）在上 */
  }

  section.empower > :last-child {
    order: 2; /* imgs（图片）在下 */
  }

  section.empower .imgs img:first-child {
    position: absolute;
    transform: none;
    transform: translate(0%, -30%);
    width: 50%;
    margin-bottom: 20px;
  }

  section.empower .imgs img:last-child {
    width: 70%;
  }

  /* Vision mission mobile */
  section.vision-mission {
    flex-direction: column;
    padding: 50px 20px;
    margin: 50px 0;
    gap: 20px;
    align-items: center;
  }

  section.vision-mission .vision-card,
  section.vision-mission .mission-card {
    width: 90%;
    margin-top: 0;
  }

  section.vision-mission .mission-card {
    margin-top: 0;
  }

  /* Me section mobile */
  section.me {
    flex-direction: column;
    padding: 50px 20px;
    width: 100%;
    gap: 30px;
  }

  section.me .title {
    padding-bottom: 30px;
    font-size: 2rem;
    text-align: left;
  }

  section.me p {
    width: 100%;
    text-align: left;
  }

  /* Product section mobile */
  /* section.product {
    background-image: url('/product-mobile.svg');
    aspect-ratio: 2250 / 3764;
    width: 100vw !important;
  } */

  /* section.product .section-content {
    width: 100%;
    transform: none;
    text-align: left;
    margin-bottom: 40px;
  }

  section.product .section-content h1.title {
    text-align: left;
  }

  section.product .section-content .lower h4 {
    font-size: 1.2rem;
  }

  section.product .imgs {
    width: 100%;
    position: absolute;
    top: 120px;
    height: 400px;
    /* transform: translate(0, -120%); */
  }

  section.product .imgs img:first-child {
    width: 320px;
    transform: rotate(92deg) translate(0, 0);
    /* border: 1px solid red; */
  } */

  section.product .imgs img:last-child {
    width: 140px;
    transform: rotate(63deg) translate(-100%, -50%);
    /* border: 1px solid blue; */
  }

  /* Product list mobile */
  section.product-list {
    gap: 40px;
    padding: 50px 20px;
  }

  section.product-list img {
    width: 100%;
  }

  /* Testimonial mobile */
  section.testimonial {
    padding: 50px 20px;
  }

  section.testimonial h1.title {
    font-size: 2rem;
    text-align: center;
  }

  

  /* Container mobile */
  .container {
    width: 95%;
    margin: 40px auto;
    padding: 0 15px;
  }

  .main-title {
    font-size: 2rem;
  }

  /* Privacy and Terms mobile */
  .privacy,
  .term {
    width: 95%;
    margin: 100px auto 50px;
    padding: 0 20px;
    height: auto;
  }

  .privacy h1,
  .term h1 {
    font-size: 1.8rem;
  }

  .privacy p,
  .term p {
    font-size: 0.95rem;
  }

  /* Buttons mobile */
  .primary-btn,
  .outline-btn {
    font-size: 0.9rem;
  }

  /* Header mobile adjustments */
  header {
    padding: 15px;
    height: 60px;
  }

  .logo img {
    height: 35px;
  }

  /* Footer mobile adjustments */
  footer {
    padding: 40px 20px calc(20px + env(safe-area-inset-bottom, 0px));
  }

  .footer-top,
  .footer-bottom {
    padding: 0 20px;
    text-align: center;
  }

  .footer-logo img {
    height: 35px;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  section {
    padding: 30px 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  section.product .section-content h1.title {
    font-size: 2.5rem;
  }

  .main-title {
    font-size: 1.8rem;
  }

  section.me .title {
    font-size: 1.8rem;
  }

  .primary-btn,
  .outline-btn {
    font-size: 0.85rem;
  }
}