/** Shopify CDN: Minification failed

Line 570:15 Expected ":"

**/
/** Shopify CDN: Minification failed

Line 188:12 Expected ":"

**/
blockquote {
    padding-left: 1.5rem;
    font-style: italic;
    border-left: 3px solid rgba(31, 26, 94, 0.7);
    margin-left: 5px;
}
.article-toc {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 24px;
  margin: 32px 0;
  max-width: 600px;
  background-color:#f8f5fd;
}

.article-toc__title {
  font-weight: 600;
  margin-bottom: 1rem;
}
.recommended-articles .collections_button_container{
  display: flex;
    flex-wrap: wrap;
    max-width: 330px;
}
.recommended-articles .collections_button_container a{
  width: fit-content;
}
@media screen and (max-width:750px){
  .recommended-articles .collections_button_container{
    display:flex;
   /* grid-template-columns:repeat(2, 1fr); */
   max-width:550px;
}
.recommended-articles .collections_button_container a{
  width: fit-content;
}
}
/**
 * Common Calculator Styles
 * Shared styles for all calculator tools across blog posts
 */

/* Base Calculator Container */
.calculator-container {
  background-color: #F8F5FD;
  border-radius: 8px;
  padding: 25px;
  max-width: 600px;
  margin: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Calculator Header */
.calculator-title {
  text-align: center;
  margin-bottom: 20px;
}

.calculator-subtitle {
  text-align: center;
  margin-bottom: 20px;
}

/* Input Groups */
.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
}

/* Input Fields */
input[type="number"],
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
}

/* Room Dimensions Layout */
.room-dimensions {
  display: flex;
  gap: 15px;
}

.dimension-input {
  flex: 1;
}

.dimension-input label {
  color: #666;
  font-weight: 400;
}

/* Button Styles */
.calculate-button {
  background-color: #1f1a5e;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  width: 100%;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}


/* Results Container */
.results-container {
  margin-top: 20px;
  padding: 15px;
  background-color: white;
  border-radius: 4px;
  border: 1px solid #E6E0F0;
  display: none;
}

.results-heading {
  color: #1F1A5E;
  margin-top: 0;
  margin-bottom: 15px;
}

/* Result Row */
.result-row {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E6E0F0;
  text-align: left;
}

.result-row:last-child {
  border-bottom: none;
}

.result-value {
  display: block;
  font-weight: 500;
  color: #1F1A5E;
}

/* Shape Selector - For Table Calculator */
.shape-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 5px;
}

.shape-button {
  padding: 10px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

    .table-visual {
      aspect-ratio: 16/9;
      margin: 20px 0;
      position: relative;
      border: 1px solid #e2e8f0;
      background: #f8fafc;
      border-radius: 4px;
      overflow: hidden;
    }
    .table-shape {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      border: 2px solid;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(0,0,0,0.6);
      font-size: 12px;
      font-weight: 500;
    }

.shape-button.active {
  background: #FFFFFF;
  border-color: #1F1A5E;
  color: #1F1A5E;
}


.shape-button:hover:not(.active) {
  background: #f0f0f0;
}

/* Visualization Containers - For Table Calculator */
.visual-container {
  aspect-ratio: 16/9;
  margin: 20px 0;
  position: relative;
  border: 1px solid #E6E0F0;
  background: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
}

.shape-visual {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.6);
  font-weight: 500;
}

/* Warning and Notice Messages */
.calculator-notice {
  font-size: 12px;
  color: #1F1A5E;
  margin-top: 10px;
  font-style: italic;
}

.calculator-warning {
  margin-top: 15px;
  padding: 10px 15px;
  background: #FFFFFF;
  border-left: 4px solid #1F1A5E;
  color: #1F1A5E;
  font-size: 14px;
  display: none;
}

/* Instructions */
.calculator-instructions {
  margin-top: 25px;
  color: #444;
}

.calculator-instructions h4 {
  margin-bottom: 8px;
  color: #1F1A5E;
}

.calculator-instructions ol, 
.calculator-instructions ul {
  padding-left: 20px;
  margin-top: 5px;
}

.calculator-instructions li {
  margin-bottom: 5px;
}

.blog-product-box{
   display: grid;
   grid-template-columns: repeat(2, auto);
   align-items: center;
  margin-top: 50px;
}

.blog-product-box .box-image{
  overflow: hidden;
  border-radius: 10px;
}
.blog-product-box .box-image img{
  padding: 0;
  margin: 0;
  border-radius: 10px;
  transition: all .3s
}
.blog-product-box .box-image:hover img{
  transform: scale(1.05);
} 
.blog-product-box .box-text{
  margin-left: 70px;
}
.blog-product-box .box-text h2{
  margin-top: 0
}
.blog-product-box .box-text button{
  background: #1F1A5E;
  border-radius: 10px;
  color: #fff;
}
.converse .box-text{
  margin-right: 70px;
  margin-left: 0px;
}

/* Responsive Styles */
@media (max-width: 550px) {
  .room-dimensions {
    flex-direction: column;
    gap: 10px;
  }
  
  .shape-selector {
    grid-template-columns: 1fr;
  }
}

/*Calculator End*/
  
.article__content .product-buy-button{
  text-align: center; 
  margin: 16px 0px 0px;
}
.article__content .product-buy-button button{ 
  background-color: #1f1a5e;
 color: #ffffff;
 font-size: 14.08px; 
  padding: 12px 26px;
 border: none;
 border-radius: 4px;
 cursor: pointer;
 margin:0px 0px 16px;
 display:inline-flex;
 align-items:center;
  gap: 8px;
}
.article__content .product-buy-button button a{
  text-decoration: none !important;
  color: white;
}
    
.article__content .disclosure__title{
  margin:0 !important;
}
  .content h1{
    font-size:30px;
  }
     .article__content p{
    font-size:16px;
  }
   .article__content h1{
    font-size:30px;
  }
      .article__content h2{
    font-size:26px;
  }
     .article__content h3{
    font-size:22px;
  }
  
   .article__content h4 {
        font-size: 20px;
    }

.left-line {
  border-left: 3px solid rgba(31, 26, 94, 0.7); 
  padding-left: 15px;
}

.scrollable-table table td, 
.scrollable-table table th {
  border: none;
}

.scrollable-table table tr:nth-child(odd) {
  background-color: #efe8f5;
}

.scrollable-table table tr:nth-child(even) {
  background-color: #f8f5fd;
}

.scrollable-table table {
  border-collapse: collapse; /* 合并边框 */
  width: 100%; /* 可选：根据需要调整宽度 */
}
.m-t-0{
  margin-top:0 !important;
}
.m-b-29{
  margin-bottom:29px !important;
}
.price-shop .shop-box .shop-btn{
  background: #1F1A5E;
  border-radius: 10px;
  padding:20px 48px;
  font-family: Urbanist;
  font-weight: 500;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 24px;
  /* margin-top:35px; */
}

  @media screen and (max-width: 750px) {
    .blog-product-box{
      grid-template-columns: repeat(1, 1fr);
    }
    .blog-product-box .box-text h2{
      margin-top: var(--heading-margin-bottom, 1.5em);
    }
    .blog-product-box .box-text {
      margin-left: 0px;
      text-align: center;
    }
    .converse {
      display: flex;
      flex-direction: column-reverse;
    }
    .converse .box-text{
      margin-right: 0px;
      margin-left: 0px;
      text-align: center;
    }
    .content h1{
      font-size:24px;
    }
    
    .article__content p{
      font-size:16px;
    }
     .article__content h1{
      font-size:24px;
    }
    .article__content h2{
      font-size:22px;
    }
    .article__content h3{
      font-size:18px;
    }
    .article__content h4{
      font-size:17px;
    }
  }

  .box{
    display:flex;
    justify-content: space-between;
    margin-top:65px;
  }
  .box .content{
    max-width:1222px;
    margin-right:43px;
  }
  .price-box{
      max-width: 1222px;
      background-color: #F8F5FD;
      padding: 5px 65px 65px 65px;
      border-left: 5px solid #1f1a5e;
      margin-bottom:48px;
  }
.price-shop{
    max-width: 880px;
    padding: 20px;
    margin-top: 10px;
    border-radius: 10px;
    background-color: #f8f5fe;
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--element-margin-bottom, 2em);
}

.images-cnt{
  display: flex;
  align-items: center;
  gap: 20px;
}
.images-cnt .price-img{
  font-size: 22px;
  color: #A60AB3;
  line-height: 36px;
  margin-bottom:0px;
}


.price-shop .shop-img{
  width:100px;
  aspect-ratio:1 / 1;
  border-radius: 10px;
  object-fit: cover;
  object-position: top;
  margin: 0;
  padding: 0;
}
.price-shop .shop-box{
  flex-shrink: 0;
  padding:0 30px 0 77px;
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.m-t-0{
  margin-top:0 !important;
}
.m-b-29{
  margin-bottom:29px !important;
}
.price-shop .shop-box .shop-btn{
    background: #1F1A5E;
    border-radius: 10px;
    padding: 10px 25px;
    font-family: Urbanist;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
}

 
  .red{
    color:red !important;
    font-family: Urbanist;
    font-weight: 500;
    font-size: 30px;
    color: #CF262A;
    line-height: 36px;
  }
  .recom-title{
    font-family: Urbanist;
    font-weight: 500;
    font-size: 20px;
    color: #1F1A5E;
    padding:0 0 18px 0;
    display:block;
    width: 330px;
  }
  .image-item{
    width:330px;
    flex-shrink: 0;
    margin-bottom:35px;
  }
  .img-title{
      margin-top:15px;
      font-weight: 500;
      font-size: 18px;
  }
  .line{
    border-bottom: 1px dashed #D2CBC5;
  }
  .description{
    font-family: Urbanist;
    font-weight: 300;
    font-size: 16px;
    color: #1F1A5E;
    line-height: 24px;
    margin-right:45px;
  }
  .img-class{
    height:218px;
    width:330px;
    border-radius: 10px;
    object-fit:cover;
  }
 #mobilepng{
   display:none;
   height:0;
   widthï¼š0;
 }

/* ä¿®æ”¹åŽçš„bannerå›¾ç‰‡æ ·å¼ - å¼€å§‹ */
/* å›¾ç‰‡å®¹å™¨æ ·å¼ */
.article__image {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

/* ä¸ºPCæ¨ªå¹…é¢„ç•™ç©ºé—´ */
.article__image.pc-bannner {
  width: 100%;
  height: 0;
  padding-bottom: 25%; /* 4:1çš„å®½é«˜æ¯” */
  position: relative;
  background-color: #f8f8f8; /* åŠ è½½å‰çš„å ä½èƒŒæ™¯è‰² */
  overflow: hidden;
}

/* bannerå›¾ç‰‡æ ·å¼ */
.banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* å›¾ç‰‡å®¹å™¨å†…çš„åª’ä½“å®¹å™¨ */
.article__image.pc-bannner .media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* ä¿®æ”¹åŽçš„bannerå›¾ç‰‡æ ·å¼ - ç»“æŸ */
  .msg-img .title-img{
    margin:16px 0 !important;
    font-size:18px;
  }
@media screen and (max-width: 750px) {
  .images-cnt{
    gap:20px;
    width:100%;
  }
  .msg-img{
    width:100%;
    flex:1
  }
  .images-cnt .price-img{
    font-size:18px;
  }
  .msg-img .title-img{
    margin:16px 0;
    font-size:16px;
  }
  .recom-title{
    font-family: Urbanist;
    font-weight: 500;
    font-size: 18px;
    color: #1F1A5E;
    margin-top:54px;
  }
  .description{
    font-family: Urbanist;
    font-weight: 300;
    color: #1F1A5E;
    line-height: 24px;
  }
  
  /* ç§»åŠ¨ç«¯banneræ ·å¼ */
  .article__image.pc-bannner {
    padding-bottom: 75%; /* ç§»åŠ¨ç«¯ä½¿ç”¨4:3çš„å®½é«˜æ¯” */
  }
  
  .box{
    margin-top:47px;
    display:flex;
    justify-content: space-between;
    flex-direction: column; 
  }
  .box .content{
    width:100%;
    margin-right:0;
  }
  .recom-title{
    width:100%;
  }
  .image-gallery{
    width:100%;
    display:flex;
    overflow-x: auto;
    -ms-overflow-style: none;  /* IE å’Œ Edge */
    scrollbar-width: none;  /* Firefox */
  }
  /* éšè— WebKit æµè§ˆå™¨ä¸­çš„æ»šåŠ¨æ¡ */
  .image-gallery::-webkit-scrollbar {
    display: none; /* æˆ–è€… width: 0; height: 0; */
  }
  .image-item{
    width:330px;
    flex-shrink: 0;
    margin-right:16px;
    margin-bottom:0 !important;
  }
  .price-box{
    padding: 5px 20px 45px 20px;
  }
  .price-shop .shop-box {
    width:100%;
    padding:0px !important;
  }
  .price-shop .shop-box a{
    width:100%
  }
  .price-shop .shop-box .shop-btn{
    background: #1F1A5E;
        border-radius: 10px;
        padding: 12px 28px;
        font-family: Urbanist;
        font-weight: 500;
        font-size: 14px;
        color: #FFFFFF;
        line-height: 1.2;
        margin-top: 16px;
        width: 100%;
  }
  .price-shop .shop-img{

    
    /* margin-bottom: 30px; */
  }
}
.price-shop::after{
  display:none;
}
@media screen and (max-width: 1366px){
  .price-shop{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .price-shop .shop-box{
    padding: 0 30px 0 30px;
    text-align: center;
    
  }
}

.tip-box {
   background-color: #F8F5FD;
   border: 1px solid #E8E0F5;
   border-radius: 12px;
   padding: 20px 24px;
   margin: 25px 0;
   position: relative;
   transition: all 0.3s ease;
}

.tip-box:hover {
   border-color: #D4C2ED;
   box-shadow: 0 4px 15px rgba(139, 107, 194, 0.15);
}

.tip-icon {
   display: inline-block;
   width: 20px;
   height: 20px;
   background: #8B6BC2;
   border-radius: 50%;
   position: relative;
   margin-right: 12px;
   vertical-align: top;
   margin-top: 2px;
}

.tip-icon::after {
   content: '💡';
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   font-size: 12px;
}

.tip-content {
   display: inline-block;
   width: calc(100% - 35px);
}


.tip-title {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 17px;
}

/* 响应式设计 */
@media (max-width: 768px) {
   .tip-box {
       padding: 16px 20px;
   }
}