/*
Theme Name: CakeShop
Theme URI: https://templatesjungle.com/
Author: TemplatesJungle
Author URI: https://templatesjungle.com/
Description: CakeShop is specially designed product packaged for Bakeries.
Version: 1.1
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------------------
CSS STRUCTURE:

1. VARIABLES
2. GENERAL TYPOGRAPHY

--------------------------------------------------------------*/
body {
  
  --display-font: "Allura", Georgia, serif;
  --display-font-weight: 400;

  --heading-font: "Roboto", Georgia, serif;
  --heading-font-weight: 400;
  --heading-color: var(--bs-dark);
  --heading-line-height: 1.24;

  --swiper-theme-color: var(--bs-primary);
  --swiper-pagination-bottom: 20px;
  --swiper-pagination-bullet-inactive-color: #d7d7d7;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 15px;
  --swiper-pagination-bullet-size: 7px;
  --swiper-pagination-bullet-width: 7px;

  --custom-easing: cubic-bezier(.17, .67, .83, .67);

  /* bootstrap */
  --bs-body-font-family: Roboto, sans-serif;
  --bs-body-font-size: 1.2rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.7;
  --bs-body-color: #8f8f8f;
  --bs-body-color-rgb: 143, 143, 143;

  --bs-primary: #e73c13;
  --bs-primary-dark: #be3b1a;
  --bs-secondary: #6c757d;
  --bs-black: #020202;
  --bs-light: #F1F1F0;
  --bs-dark: #212529;
  --bs-gray: #9aa1a7;
  --bs-gray-dark: #51565b;

  --bs-primary-rgb: 231, 60, 19;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-black-rgb: 2, 2, 2;
  --bs-light-rgb: 241, 241, 240;
  --bs-dark-rgb: 33, 37, 41;

  --bs-link-color: var(--bs-dark);
  --bs-link-color-rgb: 17, 17, 17;
  --bs-link-decoration: underline;
  --bs-link-hover-color: var(--bs-primary);
  --bs-link-hover-color-rgb: 17, 17, 17;
  
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  
}

@media only screen and (max-width: 991px) {
  body {
    --bs-body-font-size: 1.2rem;
  }
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
}
.p-fsize{
  font-size: 18px;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
  font-family: var(--display-font);
  font-weight: var(--display-font-weight);

}
.display-7{
  font-family: serif;
  color:white;
  font-weight: var(--display-font-weight);
  text-shadow: 0.1em 0.01em 0.4em #585858
}
.display-8{
  font-family: serif;
  color:rgb(56, 56, 56);
  font-size:38px;
  font-weight:800;
}
.display-8-1{
  font-family: serif;
  color:rgb(21, 129, 93);
  font-weight:800;
  text-align: center;
}
.display-8-1:hover{
 color:rgb(211, 170, 34);
}
.display-9 {
  font-family: sans-serif;
  color: white;
  font-weight: var(--display-font-weight);
  text-shadow: 0.1em 0.01em 0.4em #585858;
}

.display-10 {
  font-family: sans-serif;
  color: rgb(20, 20, 20);
  font-weight: var(--display-font-weight);

}
.display-11 {
  font-family: "Chocolate Classical Sans", sans-serif;
  color: rgb(20, 20, 20);
  font-weight: 700;

}

/* 响应式设计 */
@media only screen and (max-width: 768px) {
  .text-content h2 {
      font-size: 2em;
  }
  .text-content p {
      font-size: 1em;
  }
}


a {
  text-decoration: none;
  transition: all 0.3s ease-out;
}

/* Dropdown */
.dropdown-menu {
  border-radius: 0;
  border-width: 0;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  color: var(--bs-black);
  border-radius: 0;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-light);
  background-color: var(--bs-secondary);
}
/* list group */
.list-group-item {
  padding: 0;
  border-width: 0;
}

/* btn */
.btn {
  border-radius: 0;
  transition: all 0.3s ease-out;
}

.btn-primary {
  color: #fff;
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-primary:hover {
  background-color: var(--bs-primary-dark);
  border-color: var(--bs-primary-dark);
}

.btn-outline-primary {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

a {
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.pagination {
  --bs-pagination-active-bg: var(--bs-primary);
  --bs-pagination-border-width: 0;
  --bs-pagination-border-radius: 0;
}

/* breadcrumb */
.breadcrumb {
  --bs-breadcrumb-item-padding-x: 1em;
}

/* text white */
.text-white {
  --heading-color: var(--bs-light);
  --bs-breadcrumb-item-active-color: var(--bs-light);
  --bs-breadcrumb-divider-color: var(--bs-light);
  --bs-link-color-rgb: var(--bs-light-rgb);
  --bs-link-hover-color-rgb: var(--bs-light-rgb);
}

.text-white .nav-link {
  --bs-nav-link-color: var(--bs-light);
  --bs-nav-link-hover-color: var(--bs-light);
  --bs-nav-link-active-color: var(--bs-light);
  --bs-navbar-active-color: var(--bs-light);
}

/* accordion */
.accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-dark);
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-btn-focus-border-color: var(--bs-dark);
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 0.5rem;
  --bs-accordion-active-color: var(--bs-primary);
  --bs-accordion-active-bg: transparent;
}

/* 
.accordion-button {
  --bs-accordion-btn-padding-y: 1.5rem;
  --bs-accordion-active-color: var(--bs-primary);
} */

/* form control */
.form-control:focus {
  border-color: #ccc;
  box-shadow: 0 0 0 0.25rem rgba(200, 200, 200, .25);
}

/* dark theme */
[data-bs-theme=dark] {
  color-scheme: dark;

  --heading-color: #fff;
  --bs-link-color: #CCCCCC;
  --bs-link-hover-color: var(--bs-primary);
  --bs-link-color-rgb: 204, 204, 204;
  --bs-link-hover-color-rgb: var(--bs-primary-rgb);
  --bs-body-color: #d1d1d1;
  --bs-body-bg: #020202;
  --bs-body-bg-rgb: 2, 2, 2;
}

[data-bs-theme=dark] .dropdown-item {
  --bs-dropdown-link-color: var(--bs-light);
  --bs-dropdown-link-hover-color: var(--bs-white);
}

[data-bs-theme=dark] .bg-white,
[data-bs-theme=dark] .bg-light {
  --bs-bg-opacity: 0.1;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 2.5rem;
  max-width: 100%;
}


.form-control {
  color: var(--bs-dark);
  background-color: var(--bs-light);
}

/* end of Bootstrap Color Theme */

/* letter spacing */
.ls-1 {
  letter-spacing: 0.1em;
}
.ls-2 {
  letter-spacing: 0.2em;
}

/* - Search Form hover Effects
------------------------------------------------------------- */

#header .action-menu {
  display: flex;
  align-items: baseline;
}

.action-menu .icon {
  font-size: 18px;
}

.navbar .search-button {
  order: 1;
  font-size: 13px;
  line-height: 6;
  padding: 0 15px;
}

.navbar.show .search-box {
  max-height: 40px;
  opacity: 1;
}

.navbar .search-box {
  position: absolute;
  bottom: 0;
  right: 50px;
  width: 100%;
  height: 100%;
  max-height: 0;
  max-width: 400px;
  min-width: 400px;
  z-index: 999;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition: all 0.3s ease-out;
  overflow: hidden;
  opacity: 0;
}

.navbar.show .search-box .search-input {
  opacity: 1;
}


/* single product */
/* product-thumbnail-slider */
.product-thumbnail-slider .swiper-slide {
  cursor: pointer;
}

.product-thumbnail-slider.vertical {
  height: 790px;
}

@media screen and (max-width:1199px) {
  .product-thumbnail-slider.vertical {
    height: 540px;
  }
}

@media screen and (max-width:991px) {
  .product-thumbnail-slider.vertical {
    margin-top: 20px;
    height: auto;
  }
}





/* ------ Quantity ------*/
.product-quantity .qty-number {
  margin-right: 20px;
}

.product-quantity .input-group .btn {
  height: 48px;
  border: 1px solid #ccc;
}

.qty-number .quntity-button {
  min-width: 40px;
  height: 40px;
  font-size: 1.8em;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  background-color: var(--accent-dim-color);
  transition: .5s all ease-in-out;
}

.qty-number .quntity-button:hover {
  background-color: var(--accent-lit-color);
}

.qty-number input {
  font-size: 1.4em;
  width: 50px;
  height: 40px;
  text-align: center;
  border-radius: 0;
  border: 1px solid var(--dark-color);
}

.qty-field .regular-price {
  display: none;
}


/* swiper */
.swiper-prev,
.swiper-next {
  position: absolute;
  background: #ffffff;
  width: 70px;
  height: 70px;
  z-index: 10;
  top: 50%;
  color: #333;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-prev {
  left: 0;
}

.swiper-next {
  right: 0;
}

/* btn-link */
.btn-link {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.8em;
  letter-spacing: 2px;
}

/* bg-overlay */
.bg-overlay {
  position: relative;
}
.bg-overlay::after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/* -- Product Card
--------------------------------------------------------------*/
.product-item .product-image img {
  transition: 0.3s ease-out;
  
}

.product-item:hover .product-image img {
  transform: scale(1.1);
}

.product-image {
  position: relative;
  margin: 0;
  overflow: hidden;
 
}


.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* btn cart */
.product-item {
  position: relative;
 
}
.productimg{
  background-color: rgb(0, 0, 0);
  color:white;
  
}

.btn-cart {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-item .btn-cart {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  background-color: #fff;
  padding: 20px;
  text-transform: uppercase;
  z-index: 1;
  transition: opacity 0.3s ease-out;
}

.product-item:hover .btn-cart {
  opacity: 1;
}

.blackcet1{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.blackcet h5,
    .blackcet span {
        display: block;
        text-align: center;
    }

.swap{
  display: flex;
  flex-wrap:wrap;
  justify-content: center;
}

.carousel {
  display: flex;
  align-items: center;
  margin: 20px 0;
}


/* 影片容器的樣式 */
.video-container2{
    overflow: hidden; /* 确保视频不会溢出容器 */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 50px;
 
}

video {
  width: 60%; /* 宽度100%，自适应容器宽度 */
  height: auto; /* 高度自动调整，保持原始宽高比 */
  display: flex; /* 使影片以块级元素显示 */
  flex-wrap: wrap;
  justify-content: center;
  
}
.content{
  width: 100%; /* 宽度100% */
  max-width: 800px; /* 最大宽度800px，可以根据需要调整 */
  margin: 20px auto; /* 上下20px的外边距，左右自动居中 */
  text-align: center; /* 文本居中 */
}



/* 主容器 */
.donwioad-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* 頁眉樣式 */
.document {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.document h1 {
  font-size: 2.5em;
    font-weight: 300;
    color: #adadad; /* 高級灰白色 */
}

/* 主要內容區域 */
main {
  padding: 20px 0;
}

/* 文件列表樣式 */
.file-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 單個文件項目樣式 */
.file-item {
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.file-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.file-item h2 {
  font-size: 1.8em;
  font-weight: 400;
  color: #333;
  margin-bottom: 10px;
}

.file-item p {
  font-size: 1em;
  color: #666;
  margin-bottom: 15px;
}

.file-item a {
  display: inline-block;
    padding: 10px 20px;
    background-color: #555; /* 高質感灰色 */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1em;
}

.file-item a:hover {
  background-color: #333; /* 深灰色 */
    transform: scale(1.05); /* 放大效果 */
}

/* 小屏幕優化 */
@media (max-width: 600px) {
  .file-item h2 {
      font-size: 1.5em;
  }

  .file-item p {
      font-size: 0.9em;
  }

  .file-item a {
      font-size: 0.9em;
  }
}
.Center-vertically{
background-color: cadetblue;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.text-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  z-index: 1; /* 确保文字在图片上方 */
  padding: 20px; /* 调整内边距 */
  background: rgba(0, 0, 0, 0.5); /* 半透明背景 */
  border-radius: 10px; /* 圆角 */
}

.text-content h2 {
  margin-bottom: 20px; /* 调整标题的下边距 */
  font-size: 2.5em; /* 调整标题的字体大小 */
}

.text-content p {
  font-size: 1.2em; /* 调整段落的字体大小 */
}


.meat-series-section .meat-series-text {
  display: flex;
  align-items: center;
  height: 100%;
  
}

.meat-series-section .meat-series-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .meat-series-section .meat-series-text,
  .meat-series-section .meat-series-image {
      text-align: center;
  }

  .meat-series-section .meat-series-text {
      margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .swiper-slide {
      width: 80%;
  }
}
.swiper-container {
  width: 100%;
  height: auto;
}


.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .swiper-slide img {
    height: auto; /* 確保圖片高度自動調整 */
    object-fit: contain; /* 確保圖片按比例縮放並包含在容器內 */
  }
}
.swiper-button-next, .swiper-button-prev {
  color: #000000; /* Navigation buttons color */
}
.swiper-button-next,
.swiper-button-prev {
    top: 50%; /* 將箭頭的頂部定位設置為50% */
    transform: translateY(-50%); /* 使用 translateY 將箭頭向上偏移自身高度的50%，從而達到垂直置中 */
}



/* General styles */
.best-products .product-item {
  margin-bottom: 30px;
}

.best-products .product-image img {
  
 
width: 100%;
  
 
height: auto;
}

.best-products .btn-cart {
  display: block;
  margin-bottom: 10px;
}
/* 產品規格 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

.text-center {
  text-align: center;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.table-responsive {
  overflow-x: auto;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  border-collapse: collapse;
}

.table th, .table td {
  border: 1px solid #dee2e6;
  padding: 0.75rem;
  text-align: center;
  vertical-align: middle;
}

.table th {
  background-color: #343a40;
  color: #fff;
}

.table td {
  background-color: #fff;
}

@media (max-width: 768px) {
  .table th, .table td {
      display: block;
      width: 100%;
      text-align: left;
  }

  .table thead {
      display: none;
  }

  .table tbody tr {
      display: block;
      margin-bottom: 0.625rem;
  }

  .table tbody tr td {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem;
      border: 1px solid #dee2e6;
      border-bottom: 0;
  }

  .table tbody tr td:last-child {
      border-bottom: 1px solid #dee2e6;
  }

  .table tbody tr td::before {
      content: attr(data-label);
      flex-basis: 50%;
      text-align: left;
      font-weight: bold;
      background-color: #f8f9fa;
      padding-right: 0.75rem;
  }
}

.product-details {
  text-align: justify;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.product-action {
  text-align: center;
  padding: 1rem;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .container {
      padding: 10px;
  }

  .product-details,
  .product-action {
      text-align: left;
      padding: 0.75rem;
  }

  .mt-4 {
      margin-top: 1rem;
  }
}

/*描述*/
#nav-home h5 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

#nav-home h6 {
  font-size: 1.25rem;
  margin-top: 1rem;
}

#nav-home ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

#nav-home li {
  margin-bottom: 0.5rem;
}

#nav-home p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/*圖片輪播區*/
.carousel-item {
  transition: opacity 1.5s ease-in-out; /* 調整過渡效果時間 */
  opacity: 0;
}
.carousel-item.active {
  opacity: 1;
}
.carousel-item img {
            width: 1468px;
            height: 900px;
            object-fit: cover;
        }
.carousel-indicators li {
          background-color: rgb(216, 185, 11); /* 改變點點的顏色 */
      }
      
.carousel-inner img {
        width: 100%;
        height: auto;
      }
      
/* 確保指示器在小屏幕上顯示效果 */
.carousel-indicators li {
        width: 10px;
        height: 10px;
        border-radius: 50%;
      }
/* 調整導航按鈕在小屏幕上的大小 */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 30px;
  height: 30px;
}
/* 確保carousel-caption在小屏幕上顯示效果 */
@media (max-width: 768px) {
  .carousel-caption {
    font-size: 14px;
    padding: 10px;
  }
}

/* 針對大屏幕的調整 */
@media (min-width: 768px) {
  .carousel-caption {
    font-size: 18px;
    padding: 20px;
  }
}

/*調整距離*/
.pad{
  padding-top: 50px;
}

/* Basic styles */
#billboard {
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  width: 100%;
}

.swiper-wrapper {
  display: flex;
  transition-property: transform;
}

.jarallax-img {
  width: 100%;
  height: auto;
}


/* Responsive styles */
@media (max-width: 768px) {
  .text-content {
    text-align: center !important;
  }
  
  .text-content h2 {
      font-size: 0.8rem;
  }
  
  .text-content p {
      font-size: 0.6rem;
  }
}
.text-md-left {
  text-align: left !important;
}
@media (max-width: 576px) {
  .text-content {
      padding: 1rem 0.5rem;
  }
  
  .text-content h2 {
      font-size: 0.6rem;
  }
  
  .text-content p {
      font-size: 0.4rem;
  }
}


/* 調整小圖的樣式 */
.small-machine-image {
  max-width: 100px; /* 設置小圖的最大寬度 */
  height: auto; /* 確保圖片按比例縮放 */
  margin-left: 10px; /* 為圖片添加左邊距 */
  transition: transform 0.3s ease;
}

.small-machine-image:hover {
  transform: scale(1.1);
}


.image-container .small-machine-image:first-child {
  margin-left: 0; /* 移除第一張圖片的左邊距 */
}

/* 確保圖片垂直對齊 */
.image-container {
  align-items: end; /* 垂直居中對齊 */
}

/*meatico logo +文字*/
.container3 {
  text-align: start;
  padding: 80px 20px;
  width: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
  
}
.logo-container3 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.logo-container3 img {
  width: 250px;
  height: auto;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  font-size: 16px;
  background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
.btn:hover {
  background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: 2px solid black;
}

.pcontainer{
  width: 50%;
  margin: 0 auto;
}


/* 媒體查詢 */
@media (max-width: 768px) {
  .pcontainer {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .pcontainer {
    width: 100%;
  }
  
  .logo-container3 img {
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
}

/*Wi-Fi遠端連線系統*/
.block-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #010101; /* 區塊背景色 */
    padding: 0px 200px; /* 適當的內邊距 */
  }
  
  /* 文字區塊設定 */
  .wifitext-content {
    flex: 1; /* 自動填滿剩餘空間 */
    padding: 0 10px; /* 調整內邊距 */
  }
  
  /* 圖片設定 */
  .wifi-image-content {
    flex: 1; /* 自動填滿剩餘空間 */
    max-width: 100%; /* 圖片最大寬度為容器寬度的百分比 */
    height: auto; /* 讓圖片保持比例 */
  }

  .wifi-image-content img{
    width: auto; /* 使用 auto 讓圖片自適應容器寬度 */
    max-width: 100%; /* 設置最大寬度為容器寬度的百分比 */
    height: auto; /* 讓圖片保持比例 */
    max-height: 800px; /* 設置最大高度 */
    object-fit: cover; /* 保持圖片比例且填滿容器 */
  }

  .wifi-text-content {
    flex: 1; /* 自動填滿剩餘空間 */
    padding: 0 20px; /* 調整內邊距 */
    color: white; /* 設置文字顏色 */
    text-align: left; /* 左對齊文字 */
  }
  
  @media (max-width: 768px) {
    .block-container {
      flex-direction: column; /* 在較小的螢幕上，讓圖片在上方，文字在下方 */
      text-align: center; /* 讓文字置中顯示 */
      padding: 10px; /* 調整內邊距 */
    }
    .wifi-text-content {
      padding: 20px 10px; /* 調整內邊距 */
    }
  }

/* 圖片設定 */
.container6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; /* 让文本居中 */
  min-height: 100vh; /* 使容器至少占满整个视口高度 */
  
}
.main-title {
  font-size: 2em;
  margin-bottom: 10px;
}
.subtitle {
  font-size: 1.6em;
  margin-bottom: 20px;
}
.logos {
display: flex;
justify-content: space-around; /* 水平居中 */
align-items: center; /* 垂直居中 */
flex-wrap: wrap; /* 如果需要换行 */
text-align: center; /* 让文本居中 */
width: 70%;
}

.logo-item {
display: flex;
flex-direction: column; /* 使子元素垂直排列 */
justify-content: center; /* 垂直居中 */
align-items: center; /* 水平居中 */
margin: 80px; /* 每个 logo-item 之间的间距 */

}

.logo-item img {
max-width: 100px; /* 根据需要调整图片大小 */
margin-bottom: 10px; /* 图片和文字之间的间距 */
}

.logo-item p {
margin: 5px 0; /* 段落之间的间距 */
}
.carousel-cont {
  max-width: 100%;
  width: 800px;
  margin: 0 auto;
  position: relative;
  display: block;
}


/* 媒體查詢 */
@media (max-width: 1024px) {
  .main-title {
    font-size: 1.8em;
  }
  .subtitle {
    font-size: 1.4em;
  }
  .logos {
    width: 90%;
  }
  .logo-item {
    margin: 20px;
  }
}

@media (max-width: 768px) {
  .main-title {
    font-size: 1.6em;
  }
  .subtitle {
    font-size: 1.2em;
  }
  .logos {
    flex-direction: column;
    width: 100%;
  }
  .logo-item {
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 1.4em;
  }
  .subtitle {
    font-size: 1em;
  }
  .logos {
    width: 100%;
  }
  .logo-item img {
    max-width: 80px;
  }
  .logo-item {
    margin: 15px 0;
  }
}

@media (max-width: 1024px) {
  .carousel-cont {
    max-width: 600px; /* 調整最大寬度 */
  }
}

@media (max-width: 768px) {
  .carousel-cont {
    max-width: 400px; /* 調整最大寬度 */
  }
}

@media (max-width: 480px) {
  .carousel-cont {
    max-width: 100%; /* 調整最大寬度，讓其在小屏幕上占滿寬度 */
  }
}


.slick-prev1, .slick-next1 {
  border: 2px solid rgb(255, 255, 255);  /* 白色边框 */
  border-radius: 50%;                   /* 圆形背景 */
  padding: 10px;
  width: 65px;                          /* 按钮宽度 */
  height: 65px;                         /* 按钮高度 */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1;                           /* 确保箭头显示在其他内容之上 */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  
}

.slick-prev1 {
  left: 50px;                           /* 左箭头位置 */
  background-image: url('/product/Everlasting/images/arrow%20%28left%29w.png'); /* 左箭头图标 */
}

.slick-prev1:hover{
  background-color: rgb(39, 39, 39);
} 

.slick-next1 {
  right: 50px;                          /* 右箭头位置 */
  background-image: url('/product/Everlasting/images/arrow%28right%29w.png'); /* 右箭头图标 */
}

.slick-next1:hover {
  background-color: rgb(39, 39, 39);
} 

@media (max-width: 1024px) {
  .slick-prev1, .slick-next1 {
    width: 55px;                        /* 調整按鈕寬度 */
    height: 55px;                       /* 調整按鈕高度 */
  }
  .slick-prev1 {
    left: 30px;                         /* 調整左箭頭位置 */
  }
  .slick-next1 {
    right: 30px;                        /* 調整右箭頭位置 */
  }
}

@media (max-width: 768px) {
  .slick-prev1, .slick-next1 {
    width: 45px;                        /* 調整按鈕寬度 */
    height: 45px;                       /* 調整按鈕高度 */
  }
  .slick-prev1 {
    left: 20px;                         /* 調整左箭頭位置 */
  }
  .slick-next1 {
    right: 20px;                        /* 調整右箭頭位置 */
  }
}

@media (max-width: 480px) {
  .slick-prev1, .slick-next1 {
    width: 35px;                        /* 調整按鈕寬度 */
    height: 35px;                       /* 調整按鈕高度 */
  }
  .slick-prev1 {
    left: 10px;                         /* 調整左箭頭位置 */
  }
  .slick-next1 {
    right: 10px;                        /* 調整右箭頭位置 */
  }
}







/*    */

.Function-main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 15px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px; /* 減少列之間的間距 */
  justify-items: center; /* 將項目置中 */
  align-items: center; /* 將項目垂直置中 */
  color: white;
  
}

.feature-item {
  padding: 15px;
  display: flex;
    align-items: center;
    background-color: #000000;
   justify-content: center;
}

.feature-icon {
  width: 50px; /* 或根據需要調整 */
  height: 50px; /* 或根據需要調整 */
  margin-right: 10px; /* 圖片和文字之間的距離 */
}

.features-container {
 
  max-width: 100%;
  margin: 100px auto;
  padding: 50px;
}

.Finiture-container {
  text-align: center;
  
}
.Finiture-container h1 {
  margin-bottom: 20px;
  color: #FFC700;
  font-size: 48px;
  font-weight: 700;
  
}

/* 媒體查詢 */
@media (max-width: 1024px) {
  .Function-main-title {
    font-size: 40px;
  }
  .features {
    gap: 15px;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .Function-main-title {
    font-size: 32px;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .feature-icon {
    width: 35px;
    height: 35px;
  }
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .Function-main-title {
    font-size: 24px;
  }
  .features {
    gap: 5px;
  }
  .feature-icon {
    width: 30px;
    height: 30px;
  }
  .feature-item {
    padding: 10px;
  }
}



.images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}
.images img {
  
  max-width: 300px;
  max-height: 900px;
  width: 100%;
  height: auto;
}
.image-description {
  padding-top: 40px;
  margin-top: 5px;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  height: 50px; /* 設定固定高度，確保所有描述文字的區塊一致 */
  width: 100%; /* 確保描述文字的寬度與父元素一致 */
  box-sizing: border-box; /* 確保 padding 和 border 不會影響元素的寬度和高度 */
  color: salmon;

}

.image-item{
padding: 30px;
}

.Sum-of-words{
  background-color: #000000;
  width: 300px;
  height:300px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  
}

.image-caption{
display: flex;
align-items: start;
color: white;
padding:30px;
width: 100%; /* 確保描述文字的寬度與父元素一致 */
height: 200px;
box-sizing: border-box; /* 確保 padding 和 border 不會影響元素的寬度和高度 */
}



/*----Ever permanent應用程式-----*/
.image-text-block {
  display: flex;
  align-items: center; /* 垂直置中對齊 */
  background-color: #000000; /* 區塊背景色 */
  margin-top: 100px;
  padding: 50px 0px;
  flex-direction: row;
}

.image1-container {
  flex-shrink: 0; /* 防止容器縮小 */
  margin-left: 250px; /* 圖片和文字之間的間距 */
  padding: 0;
  display: flex;
  align-items: center;
}
.block-image{
  width: 100%; /* Adjust the width as needed */
  max-width: 800px; /* Maximum width for the image */
  height: auto;
  display: block;

}

.all-in-one-text-container {
  flex-grow: 1; /* 允許容器擴展以容納文字 */
  text-align: center; /* 文字居中對齊 */
  margin-right:100px;
}

.all-in-one-text-container h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 60px;
  color: #ffffff; /* 標題文字顏色 */
}

.all-in-one-text-container p {
  margin: 0px 150px;
  font-size: 28px;
  color: #ffffff; /* 描述文字顏色 */
}
@media (max-width: 1200px) {

  
  .image1-container {
      margin-left: -100px; /* 调整小屏幕上的间距 */
  
  }
  .block-image{
    width: 100%; /* Adjust the width as needed */
    max-width: 500px; /* Maximum width for the image */
    height: auto;
    display: block;
    
  
  }
  .all-in-one-text-container {
      
      margin-right: -100px;
  }
}

@media (max-width: 768px) {
  .image-text-block {
      flex-direction: column; /* 垂直排列 */
      text-align: center;
      padding: 20px; /* 增加整体填充以改善小屏幕上的布局 */
  }

  .image1-container {
      margin-left: 0;
      margin-bottom: 20px; /* 增加底部间距以分隔图片和文本 */
  }

  .all-in-one-text-container {
      
    margin-top: 10px;
      margin-right: 0px;
  }

  .block-image {
      max-width: 100%; /* 确保图像在小屏幕上不超出容器宽度 */
      max-width: 600px; /* Maximum width for the image */
      height: auto;
      display: block;

  }

  .all-in-one-text-container h2 {
      font-size: 36px; /* 调整标题大小以适应小屏幕 */
  }

  .all-in-one-text-container p {
      font-size: 24px; /* 调整文本大小以适应小屏幕 */
      margin: 15px 10px;
  }
}
/*meat container*/
.meat-content-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
}


.image-container img {
  width: 60%;
  height: auto;
  display: block;
}

.meat-text-container {
  flex: 2;
  padding-left: 20px;
}

.meat-text-container h2{
 font-size: 62px;
 font-weight: 700;
 font-family: "Chocolate Classical Sans", sans-serif;
}

.meat-text-container p{
  font-size: 22px;
}
/* Responsive design */
@media (max-width: 768px) {
  .meat-content-block {
    flex-direction: column;
    align-items: center;
  }

  .image-container img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .meat-text-container {
    padding-left: 0;
    text-align: center;
  }

  .meat-text-container h2 {
    font-size: 36px;
  }

  .meat-text-container p {
    font-size: 18px;
  }

  .display-11 {
    font-size: 18px;
  }
}
/*Meat 規格圖片*/
.Meatico-comparison{
  width: 100%;
  max-width:1400px;
  margin: auto;
  padding-top: 70px;
}

/*fish container*/
.fish-content-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  margin-top: 100px;
  
}
.fish-image-container{
  width: 55%;
  display: flex;
  justify-content: center;

}

.fish-image-container img {
  width: 50%;
  height: auto;
  display: block;
}

.fish-text-container {
  flex: 2;
  
}

.fish-text-container h2{
 font-size: 62px;
 font-weight: 700;
 font-family: "Chocolate Classical Sans", sans-serif;
}

.fish-text-container p{
  font-size: 22px;
}

/* 響應式設計 */
@media (max-width: 1024px) {
  .fish-content-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .fish-image-container {
    width: 100%;
    margin-bottom: 20px;
  }

  .fish-image-container img {
    width: 100%;
  }

  .fish-text-container {
    width: 100%;
    text-align: left;
  }

  .fish-text-container h2 {
    font-size: 48px;
  }

  .fish-text-container p, .display-11 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .fish-text-container h2 {
    font-size: 36px;
  }

  .fish-text-container p, .display-11 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .fish-text-container h2 {
    font-size: 28px;
  }

  .fish-text-container p, .display-11 {
    font-size: 16px;
  }
}

/*-------fish 400 700 1500---------*/
.fish-carousel {
  width: 100%;
  margin: 0 auto;
  flex-direction: row;
  display: flex;
  justify-content: center;
}



.fish-Finiture-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  
  
  
  
}

.fish-images {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.fish-images1 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.fish-image-item {
  flex: 1 1 100%;
  max-width: 350px;
  margin: 10px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.fish-image1-item {
  flex: 1 1 100%;
  max-width: 300px;
  margin: 10px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.Finiture-title{
  flex: 1 1 100%;
  margin: 10px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}


.Finiture-title h1{
  margin-bottom: 20px;
  color: #7da7ca;
  font-size: 42px;
  font-weight: 900;


}

.fish-image-item h1 {
  margin-bottom: 20px;
  color: #7da7ca;
  font-size: 42px;
  font-weight: 900;
}

.image-item img {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-bottom: 20px;
}

.fish-Sum-of-words {
  background-color: #0e0e0e;
  padding: 20px;
  border-radius: 8px;
  height: 300px; /* 设置固定高度 */
  box-sizing: border-box; /* 包括内边距和边框 */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}

.fish-image-description {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 10px;
}

.fish-image-caption {
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 18px;
  height: 200px; /* 設定固定高度，確保所有描述文字的區塊一致 */
  width: 100%; /* 確保描述文字的寬度與父元素一致 */
  box-sizing: border-box; /* 確保 padding 和 border 不會影響元素的寬度和高度 */
}

@media (max-width: 768px) {
  .image-item h1 {
    font-size: 28px;
  }

  .fish-image-description {
    font-size: 16px;
  }

  .fish-image-caption {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .image-item h1 {
    font-size: 24px;
  }

  .fish-image-description {
    font-size: 28px;
  }

  .fish-image-caption {
    font-size: 18px;
  }
}

/*-------meat 150 400 700 1500---------*/


.meat-carousel {
  width: 100%;
  margin: 0 auto;
  flex-direction: row;
  display: flex;
  justify-content: center;
}



.meat-Finiture-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  min-height: 300px; /* 根據需要調整 */
 
  
  
  
}

.meat-images {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.meat-images1 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.meat-image-item {
  flex: 1 1 100%;
  max-width: 350px;
  margin: 10px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.meat-image1-item {
  flex: 1 1 100%;
  max-width: 300px;
  margin: 10px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.meat-image-item img,
.meat-image1-item img {
  width: 100%;
  height: auto;
}
.meat-Finiture-title{
  flex: 1 1 100%;
  margin: 10px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;



}


.meat-Finiture-title h1{
  margin-bottom: 20px;
  color: #f0231c;
  font-size: 42px;
  font-weight: 900;


}

.meat-image-item h1 {
  margin-bottom: 20px;
  color: #7da7ca;
  font-size: 42px;
  font-weight: 900;
}

.image-item img {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-bottom: 20px;
}

.meat-Sum-of-words {
  background-color: #0e0e0e;
  padding: 20px;
  border-radius: 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column; /* 改為垂直排列，根據需要調整 */
  justify-content: center;
  text-align: center;

}

.meat-image-description {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 10px;
}

.meat-image-caption {
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 18px;
  height: 200px; /* 設定固定高度，確保所有描述文字的區塊一致 */
  width: 100%; /* 確保描述文字的寬度與父元素一致 */
  box-sizing: border-box; /* 確保 padding 和 border 不會影響元素的寬度和高度 */
}

.meat-images,
.meat-images1 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}



/* 媒體查詢 */
@media (max-width: 1024px) {
  .meat-image-item,
  .meat-image1-item {
    max-width: 90%; /* 調整最大寬度 */
    margin: 8px; /* 調整邊距 */
  }
}

@media (max-width: 768px) {
  .meat-image-item,
  .meat-image1-item {
    max-width: 95%; /* 滿寬度顯示 */
    margin: 6px; /* 調整邊距 */
  }
}

@media (max-width: 480px) {
  .meat-image-item,
  .meat-image1-item {
    max-width: 100%; /* 滿寬度顯示 */
    margin: 4px; /* 調整邊距 */
  }

  .meat-image-description {
    font-size: 22px;
  }

  .meat-image-caption {
    font-size: 16px;
  }
}

/*ifish-section*/


.ifish-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 20px;
  background: url(/product/Everlasting/images/tatiana-zhukova-6bYVoUH1DkQ-unsplash.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-size: 100% 100%;
}

.ifish-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  background: #7da7ca;
  padding:70px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ifish-text {
  flex: 1;
  padding: 20px;
  text-align: left;
  color: white;
}

.ifish-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: white;
  font-weight: 700;
}

.ifish-text p {
  font-size: 18px;
  line-height: 1.6;
  color: white;
}


@media (max-width: 768px) {
  .ifish-container {
      flex-direction: column;
      text-align: center;
  }

  .ifish-text {
      padding: 10px;
  }

}

@media (max-width: 480px) {
  .ifish-text h2 {
      font-size: 20px;
  }

  .ifish-text p {
      font-size: 14px;
  }
}



/* 图片缩略图样式 */
.img-fluid {
  width: 500px;
  /* cursor: pointer; */
}

/* 模态框样式 */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

/* 模态框内容样式 */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 900px;
}

/* 关闭按钮样式 */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}


.swiper-pagination-bullet-active {
  background-color: rgb(62, 151, 235); /* 活动点点的颜色 */
  opacity: 1; /* 活动点点的透明度 */
}

.slick-dots li button::before {
  font-size: 10px; /* 点点的大小 */
  color: #0e0e0e; /* 未激活点点的颜色 */
  opacity: 1; /* 未激活点点的透明度 */
}

.slick-dots {
  bottom: -50px; /* 修改点点距离底部的距离 */
  text-align: center;
}

/*----------箭頭樣式----------*/
.slick-prev, .slick-next {
  width: 90px; /* 设置箭头宽度 */
  height: 90px; /* 设置箭头高度 */
  z-index: 1000; /* 确保箭头在轮播图的上层 */
}

.slick-prev {
  left: 400px; /* 调整左箭头的位置 */
}

.slick-next {
  right: 400px; /* 调整右箭头的位置 */
}



.slick-prev img, .slick-next img {
  width: 100%;
  height: 100%;
}

.product-carousel{
  display: block;
}

