.elementor-3820 .elementor-element.elementor-element-1fe6e6f{--display:flex;--overlay-opacity:0.5;--border-radius:20px 20px 0px 0px;}.elementor-3820 .elementor-element.elementor-element-1fe6e6f::before, .elementor-3820 .elementor-element.elementor-element-1fe6e6f > .elementor-background-video-container::before, .elementor-3820 .elementor-element.elementor-element-1fe6e6f > .e-con-inner > .elementor-background-video-container::before, .elementor-3820 .elementor-element.elementor-element-1fe6e6f > .elementor-background-slideshow::before, .elementor-3820 .elementor-element.elementor-element-1fe6e6f > .e-con-inner > .elementor-background-slideshow::before, .elementor-3820 .elementor-element.elementor-element-1fe6e6f > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{background-color:#FAFAFA;--background-overlay:'';}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-3820 .elementor-element.elementor-element-a4769b0{text-align:center;}.elementor-3820 .elementor-element.elementor-element-a4769b0 .elementor-heading-title{color:var( --e-global-color-accent );}.elementor-3820 .elementor-element.elementor-element-8c39c2d{--display:flex;}.elementor-3820 .elementor-element.elementor-element-ebbd758{--display:flex;}.elementor-3820 .elementor-element.elementor-element-16e025d{--display:flex;}.elementor-3820 .elementor-element.elementor-element-702c144{--display:flex;}.elementor-3820 .elementor-element.elementor-element-4a912427{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-3820 .elementor-element.elementor-element-6628b0d6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3820 .elementor-element.elementor-element-34bec806{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3820 .elementor-element.elementor-element-47f8c2fb .elementor-heading-title{color:var( --e-global-color-accent );}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-3820 .elementor-element.elementor-element-495be829{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}.breadcrumb-wrap .breadcrumb-overlay, .elementor-page-3820 .breadcrumb-wrap .breadcrumb-overlay{opacity:0.5;}@media(min-width:768px){.elementor-3820 .elementor-element.elementor-element-6628b0d6{--width:50%;}.elementor-3820 .elementor-element.elementor-element-34bec806{--width:50%;}}/* Start custom CSS for html, class: .elementor-element-cc5a387 *//* 产品详情布局 */
    .product-intro {
      background-color: #fff;
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    }

    .intro-text h2 {
      font-size: 28px;
      color: #222;
      position: relative;
      display: inline-block;
    }
    .intro-text h2::after {
      content: "";
      width: 60px;
      height: 3px;
      background-color: #61CE70;
      position: absolute;
      bottom: -8px;
      left: 0;
    }
    .intro-text p {
      font-size: 16px;
      color: #555;
    }
/* p标签前加菱形icon */
.intro-text p {
  margin-bottom: 18px;
  font-size: 16px;
  color: #555;
  position: relative; /* 让伪元素相对p标签定位 */
  padding-left: 20px; /* 给菱形留位置，避免文字重叠 */
  line-height: 1.6; /* 优化行高，排版更舒服 */
  margin-left: 0; /* 重置默认边距，保证对齐 */
}
/* 菱形icon的核心实现 */
.intro-text p::before {
  content: "";
  /* 绘制菱形：宽高8px，旋转45度实现菱形效果 */
  width: 8px;
  height: 8px;
  background-color: #61CE70; /* 你要的绿色 */
  position: absolute;
  left: 0; /* 贴紧p标签左侧 */
  top: 8px; /* 垂直居中，和文字对齐（可根据需要微调） */
  transform: rotate(45deg); /* 正方形旋转45度=菱形 */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1ba19f5 *//* 图片展示区 */
    .product-gallery {
      display: grid;
      /* 16:9 vs 9:16 width ratio for equal height: (16/9) / (9/16) = 256 / 81 */
      grid-template-columns: 256fr 81fr;
      gap: 30px;
      margin: 50px 0;
    }
    .gallery-item {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      position: relative;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .gallery-item:hover img {
      transform: scale(1.03);
    }
    .gallery-item::before {
      content: "";
      position: absolute;
      inset: 0;
      border: 12px solid #e0e0e0bb;
      border-radius: inherit;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), inset 0 -1px 0 rgba(0,0,0,0.08);
      z-index: 2;
      pointer-events: none;
    }
    /* 16:9 图片容器 */
    .img-landscape {
      aspect-ratio: 16/9;
    }
    /* 9:16 图片容器 */
    .img-portrait {
      aspect-ratio: 9/16;
      /* 如果在宽屏上太高，可以限制最大高度或让其自适应 */
    }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e9e8ed7 *//* 特性列表 */
    .features-section {
      background-color: #fff;
      border-radius: 16px;
      padding: 40px;
      border-left: 4px solid #61CE70;
      box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    }
    .features-section h3 {
      font-size: 24px;
      margin-bottom: 20px;
      color: #222;
    }
    .features-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .features-list li {
      position: relative;
      padding-left: 30px;
      font-size: 16px;
      color: #444;
    }
    .features-list li::before {
      content: "\f00c"; /* FontAwesome check icon */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: #61CE70;
      position: absolute;
      left: 0;
      top: 2px;
    }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-deeb366 *//* Custom Color Shower Styles */
    .CustomColorShower__row {
      display: flex;
      align-items: center;
      margin-bottom: 8px;
    }
    .CustomColorShower__text {
      width: 100px;
      font-weight: 500;
      color: #ccc;
    }
    .CustomColorShower__color {
      width: 24px;
      height: 24px;
      border-radius: 4px; 
      border: 1px solid #ddd; 
    }
    .CustomColorShower__color.monument {
      background-color: #373F43; /* Colorbond Monument approx */
    }
    .CustomColorShower__color.black {
      background-color: #000000;
    }
    .CustomColorShower__color.white {
      background-color: #FFFFFF;
    }
    .CustomColorShower__custom-text {
      font-size: 14px;
      color: #999;
      margin-top: 10px;
      font-style: italic;
    }

    /* Specs Section Light Theme */
    #specs-section {
      position: relative;
    }
    #specs-section td{
        border: none;
    }
    #specs-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("http://www.wawoutdoor.com.au/wp-content/uploads/2026/01/Product-Specifications-scaled.jpg");
      background-size: cover;
      background-position: center;
      opacity: 0.1;
      z-index: 0;
      pointer-events: none;
    }
    #specs-section .container {
      position: relative;
      z-index: 1;
      margin-top: 0;
      margin-bottom: 0;
    }

    .specs-section {
      background-color: #f0f4f8; /* 浅蓝灰色，适合展示深色色块 */
      color: #333;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      border: 1px solid #e1e4e8;
    }
    .specs-section h3 {
      color: #222 !important;
      border-left-color: #61CE70 !important;
    }
    .specs-table-container table tr {
      border-bottom: 1px solid #e1e4e8 !important;
    }
    .specs-table-container table td {
        word-break: keep-all;
    }
    .specs-table-container table td:first-child {
      background-color: transparent !important; /* 移除背景色，保持干净 */
      color: #555 !important;
      font-weight: 700 !important;
    }
    .specs-table-container table td:last-child {
      color: #333 !important;
    }

    /* Update Custom Color Text for Light Theme */
    .CustomColorShower__text {
      color: #555;
    }
    .CustomColorShower__custom-text {
      color: #777;
    }

    /* 响应式适配 */
    @media (max-width: 1024px) {
      .container {
        width: 100%;
      }
      .product-gallery {
        grid-template-columns: 1fr; /* 堆叠排列 */
      }
      .img-portrait {
        aspect-ratio: auto; /* 手机上取消强制纵横比，避免过长 */
        height: 500px;
      }
    }
    @media (max-width: 768px) {
      .banner-content h1 {
        font-size: 28px;
      }
      .product-intro {
        padding: 30px 20px;
      }
      .features-list {
        grid-template-columns: 1fr;
      }
      .features-section {
        padding: 30px 20px;
      }
      /* Mobile optimization for specs table */
      .specs-table-container table {
        min-width: auto !important; /* 移除最小宽度限制 */
      }
      .specs-table-container table, 
      .specs-table-container tbody, 
      .specs-table-container tr, 
      .specs-table-container td {
        display: block; /* 强制转换为块级元素 */
        width: 100%!important;
      }
      .specs-table-container tr {
        margin-bottom: 20px; /* 每个规格项之间增加间距 */
        border-bottom: 1px solid #eee; /* 分隔线 */
        padding-bottom: 15px;
      }
      .specs-table-container td {
        padding: 5px 15px !important; /* 减小 padding */
        text-align: left;
      }
      .specs-table-container td:first-child {
        background-color: #f8f9fa !important; /* 标题加一点背景色区分 */
        padding: 10px 15px !important;
        margin-bottom: 8px;
        border-radius: 6px;
        color: #61CE70 !important; /* 标题使用品牌色 */
      }
    }/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-6628b0d6 */.elementor-3820 .elementor-element.elementor-element-6628b0d6{
    flex: 2;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-34bec806 */.elementor-3820 .elementor-element.elementor-element-34bec806{
    flex: 1;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-4a912427 */.elementor-3820 .elementor-element.elementor-element-4a912427{
    background-color: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    margin-top: 30px;
}/* End custom CSS */
/* Start custom CSS */body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}/* End custom CSS */