

/* ====================== [ End Responsive ] ====================== */
/* Styles for the Carpet Section */
#carpet-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: transparent;
    text-align: center;
    flex-direction: column;
  
  }
  
  .carpet-info {
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
    margin-bottom: 20px;
    padding-top: 100px;
  }
  
  .carpet-info p {
    font-size: 18px;
    margin: 0;
  }
  
  .carpet-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .carpet-box {
    background: linear-gradient(45deg, #ff4d4d, #ff8c00);
    width: 300px;
    height: 450px;
    border-radius: 8px;
    transition: width 0.3s, height 0.3s;
  }
  
  .carpet-picker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .picker-labelLeft, .picker-labelRight {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  #carpet-size-picker {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    border: 1px solid #666;
  }
  
  .left-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    .carpet-container {
      flex-direction: column; /* Stack left, middle, right sections */
      align-items: center;
      gap: 1px; /* Reduced space between sections */
    }
  
    .left-section {
      align-items: center; /* Left-align the text and price */
      margin-bottom: 1px; /* Reduce space below left section */
    }
    .right-section {
      align-items: center; /* Left-align the text and price */
      margin-bottom: 1px; /* Reduce space below left section */
    }
  
    .picker-labelLeft {
      margin-bottom: 1px; /* Reduced spacing below label */
    }
  
    .carpet-box {
      width: 80%; /* Carpet box width responsive */
      height: auto; /* Adjust height proportionally */
      margin-bottom: 1px; /* Reduced space below carpet box */
    }
  
    .picker-labelRight {
      margin-top: 1px; /* Reduced space above the picker label */
    }
  
    .carpet-picker {
      margin-top: 1px; /* Reduced space above the picker */
    }
  }
  
  
  .phone {
    
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 36px;
    position: absolute;
    cursor: pointer;
  }
  
  .cta {
    height: 80px;
    width: 320px;
    color: white;
    z-index: 1;
    transition: 1.2s;
    background: linear-gradient(to right bottom, #4776E6, #8E54E9);
  }
  
  .number {
    height: 80px;
    width: 318px;
    background-image: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url(https://images.unsplash.com/photo-1529044728228-9917df974897?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80);
    background-size: cover;
    color: white;
  }
  
  .cta:hover {
    transform: translateX(-80%);
    transition: 1.2s;
  }
  .carpet-call {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 40px;
  }
  
  .phone-wrapper {
    text-decoration: none; /* Removes underline from link */
    color: inherit; /* Inherits the color so text stays styled */
    display: flex; /* Keeps the layout inline with flex */
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  /* wp */
  .hidden {
    display: none;
  }
  
  .sticky-button {
    position: fixed;
    background-color: #25d366;
    bottom: 20px;
    left: 20px; /* Changed from right to left */
    border-radius: 50px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    z-index: 20;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  .sticky-button svg {
    margin: auto;
    fill: #fff;
    width: 35px;
    height: 35px;
  }
  
  .sticky-button a,
  .sticky-button label {
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 55px;
    height: 55px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  
  .sticky-button label svg.close-icon {
    display: none;
  }
  
  .sticky-chat {
    position: fixed;
    bottom: 70px;
    left: 20px; /* Changed from right to left */
    width: 320px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 21;
    opacity: 0;
    visibility: hidden;
  }
  
  .sticky-chat a {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    color: #505050;
  }
  
  .sticky-chat svg {
    width: 35px;
    height: 35px;
  }
  
  /* Remaining styles stay the same */
  
  
  .sticky-chat .chat-content {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
  }
  
  .sticky-chat .chat-header {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: #25d366;
    overflow: hidden;
  }
  
  .sticky-chat .chat-header:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 75px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 70px 0 5px 0;
  }
  
  .sticky-chat .chat-header svg {
    width: 35px;
    height: 35px;
    flex: 0 0 auto;
    fill: #fff;
  }
  
  .sticky-chat .chat-header .title {
    padding-left: 15px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    color: #fff;
  }
  
  .sticky-chat .chat-header .title span {
    font-size: 11px;
    font-weight: 400;
    display: block;
    line-height: 1.58em;
    margin: 0;
    color: #f4f4f4;
  }
  
  .sticky-chat .chat-text {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 20px;
    font-size: 12px;
  }
  
  .sticky-chat .chat-text span {
    display: inline-block;
    margin-right: auto;
    padding: 10px;
    background-color: #f0f5fb;
    border-radius: 0px 15px 15px;
  }
  
  .sticky-chat .chat-text span:after {
    content: "just now";
    display: inline-block;
    margin-left: 2px;
    font-size: 9px;
    color: #989b9f;
  }
  
  .sticky-chat .chat-text span.typing {
    margin: 15px 0 0 auto;
    padding: 10px;
    border-radius: 15px 0px 15px 15px;
  }
  
  .sticky-chat .chat-text span.typing:after {
    display: none;
  }
  
  .sticky-chat .chat-text span.typing svg {
    height: 13px;
    fill: #505050;
  }
  
  .sticky-chat .chat-button {
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
    font-size: 12px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
  }
  
  .sticky-chat .chat-button svg {
    width: 20px;
    height: 20px;
    fill: #505050;
    margin-left: auto;
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
  }
  
  .chat-menu:checked + .sticky-button label {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  
  .chat-menu:checked + .sticky-button label svg.chat-icon {
    display: none;
  }
  
  .chat-menu:checked + .sticky-button label svg.close-icon {
    display: table-cell;
  }
  
  .chat-menu:checked + .sticky-button + .sticky-chat {
    bottom: 90px;
    opacity: 1;
    visibility: visible;
  }
  