/** Shopify CDN: Minification failed

Line 15:0 All "@import" rules must come first

**/
/*!
 * Cropper.js v1.6.2
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2024-04-21T07:43:02.731Z
 */.cropper-container{-webkit-touch-callout:none;direction:ltr;font-size:0;line-height:0;position:relative;-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.cropper-container img{backface-visibility:hidden;display:block;height:100%;image-orientation:0deg;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;width:100%}.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.cropper-canvas,.cropper-wrap-box{overflow:hidden}.cropper-drag-box{background-color:#fff;opacity:0}.cropper-modal{background-color:#000;opacity:.5}.cropper-view-box{display:block;height:100%;outline:1px solid #39f;outline-color:rgba(51,153,255,.75);overflow:hidden;width:100%}.cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.cropper-center:after,.cropper-center:before{background-color:#eee;content:" ";display:block;position:absolute}.cropper-center:before{height:1px;left:-3px;top:0;width:7px}.cropper-center:after{height:7px;left:0;top:-3px;width:1px}.cropper-face,.cropper-line,.cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.cropper-face{background-color:#fff;left:0;top:0}.cropper-line{background-color:#39f}.cropper-line.line-e{cursor:ew-resize;right:-3px;top:0;width:5px}.cropper-line.line-n{cursor:ns-resize;height:5px;left:0;top:-3px}.cropper-line.line-w{cursor:ew-resize;left:-3px;top:0;width:5px}.cropper-line.line-s{bottom:-3px;cursor:ns-resize;height:5px;left:0}.cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.cropper-point.point-e{cursor:ew-resize;margin-top:-3px;right:-3px;top:50%}.cropper-point.point-n{cursor:ns-resize;left:50%;margin-left:-3px;top:-3px}.cropper-point.point-w{cursor:ew-resize;left:-3px;margin-top:-3px;top:50%}.cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.cropper-point.point-ne{cursor:nesw-resize;right:-3px;top:-3px}.cropper-point.point-nw{cursor:nwse-resize;left:-3px;top:-3px}.cropper-point.point-sw{bottom:-3px;cursor:nesw-resize;left:-3px}.cropper-point.point-se{bottom:-3px;cursor:nwse-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.cropper-point.point-se{height:5px;opacity:.75;width:5px}}.cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:" ";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.cropper-invisible{opacity:0}.cropper-bg{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC")}.cropper-hide{display:block;height:0;position:absolute;width:0}.cropper-hidden{display:none!important}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap');
.app-container {
  display: flex;
  width: 80vw !important; /* Set width to 75% of the viewport width */
  margin: 0 auto 20px; /* Top margin set to 50px, horizontal margins auto, bottom margin 20px */
  overflow: hidden;
      flex-direction: column-reverse;
      gap: 30px;
}

.sidebar {
  padding: 25px;
  background-color: #fcfbfa;
     border-radius: 32px;
  flex: 0 0 40%; /* Set fixed width for sidebar */
  transition: all 1s ease;
}

.image-uploader {
  flex-grow: 1; /* Allow this area to expand */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px; position: relative; 
  overflow: hidden; /* Add overflow handling as needed */
}
.container-uploader{
background-image: url('/cdn/shop/files/WhatsApp_Image_2025-12-03_at_4.14.04_PM.jpg?v=1764760504');
background-size: cover;
background-repeat: no-repeat;
}
input#imageUpload {
  position: absolute;
  z-index: 1; left: 0; 
  opacity: 0;
  height: 100%;
  width: 100%;
  display: block !important;
  top: 0;
}
/* Ensure the image inside the uploader scales properly */
.image-uploader img {
  max-width: 100%; /* Ensure the image fits within its container */
  height: auto; /* Maintain aspect ratio */
}

.controls-container {
    display: flex;
    justify-content: start;
    align-items: end;
    flex-wrap: wrap;
    row-gap: 10px;
    flex-direction: column;
}

.square-footage-display {
  flex: 1;
  background-color: #D0D0D0;
  color: #454545;
  padding: 15px 8px;
  font-size: 12px; 
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-weight: 600;
  width: 100%;
}

.add-to-cart-btn {
  flex: 1;
  background-color: #f9f7f7;
  color: #454545;
  /* padding: 10px 20px; */
  padding: 12px 10px;
  min-width: 50%;
  border: 2px solid #bf9078;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 10px; /* Space between square footage and button */
  font-weight: 600;
    width: 100%;
}

.customization-controls {
  color: #fff;
}

#materialSelect {
  padding: 10px !important;
  border-radius: 8px !important;
  background-color: #6e6e6e !important;
  color: #fff !important;
  font-weight: 500;
  display: none;
}

.input-group,
.material-select {
  margin-bottom: 10px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.input-group input {
  margin-bottom: 10px; 
}
.width-inputs,
.height-inputs {
  display: flex;
}

.feet-input,
.inches-input {
  width: 50%;
  margin-right: 5px;
  padding: 12px;
  border-radius: 8px;
  background-color: #fff !important;
  color: #6e6e6e !important;
  font-size: 16px;
}

#overlay,
.image-uploader p {
  margin: 0; /* Removes default margins */
  padding: 0; /* Adjust padding as needed */
  /* Any other styling for the text */
  font-size: 35px;
  text-align: center;
}
#overlay {
  width: 100%; height: 100%; 
}
.image-uploader i,
.input-group i {
  color: #454545; /* Example color */
  margin-bottom: 10px; /* For the upload icon */
}

/* double arrow icons */
.input-group i {
  color: #454545; /* Sets the icon color to white */
  margin-right: 50px; /* Keeps the space between the icon and the label text */
  font-size: 16px; /* Adjust if necessary, but this is your current setting */
  text-align: center;
}

/* cloud icon */
.image-uploader i.fas.fa-cloud-upload-alt {
  color: #454545; /* Sets the upload icon color, change if a different color is desired */
  font-size: 48px; /* Increase the size of the upload icon */
  margin-bottom: 10px; /* Space between the icon and the "Click or Drag & Drop" text */
  text-align: center;
  justify-content: center;
  display: flex;
  padding-bottom: 20px;
}

.unit-switch-container {
  display: flex;
  margin: 20px -7px;
  color: black;
  font-weight: 600;
  justify-content: center;
}

.unit-switch-label {
  position: relative;
  display: flex; /* Changed to flex to position text outside the switch */
  align-items: center; /* Centers items vertically */
  cursor: pointer;
  top: -5px;
}

.unit-switch-label input {
  opacity: 0;
  width: 0;
  height: 0;
}

.unit-switch-label span {
  position: relative; /* Adjusted for positioning */
  width: 50px; /* Smaller width */
  height: 24px; /* Smaller height */
  background-color: #616161;
  border-radius: 24px; /* Adjusted for smaller height */
  margin-right: 10px; /* Space between the switch and the text */
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.unit-switch-label span:before {
  position: absolute;
  content: "";
  height: 20px; /* Smaller circle */
  width: 20px; /* Smaller circle */
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

.unit-switch-label input:checked + span {
  background-color: #454545;
}

.unit-switch-label input:checked + span:before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

.minimum-requirement {
  margin-top: 10px; /* Adds some space above the text */
  font-size: 14px; /* Adjusts the font size */
  color:rgb(255, 250, 250); /* Sets the text color */
  text-align: center; /* Centers the text */
  margin-bottom: 10px; min-height: 34px; display: flex; align-items: center; 
  width: 100%; justify-content: center; 
  font-weight: 600;
}

.price-display {
  position: relative;
  text-align: center;
}

.discount-price {
  background-color: #49bf5a;
  color: #fff;
  padding: 15px;
  font-size: 20px;
  font-weight: bold; 
  line-height: 1;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 10px; /* Space between price and controls below */
}

.original-price {
  display: none;
  position: relative;
  padding: 5px 10px; /* Adjust padding as needed */
  top: -1vh;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px; /* Rounded corners */
  background-color: rgb(166, 50, 50); /* Filled-in background color */
}

.original-price::before {
  color: rgb(0, 0, 0);
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(0, 0, 0); /* Adjust the color as needed */
  transform: rotate(-3deg);
}

label[for="roomWidth"] {
  color: #454545;
}

/* Change the color of the Height label to red */
label[for="roomHeight"] {
  color: #454545 !important;
}

/* Change the color of the Material label to green */
label[for="materialSelect"] {
  color: #454545;
}

.image-uploader label p {
  color: #454545;
  line-height: 1.2; 
}

.js-page-cart-ajax
  .d-flex.align-items-center.align-items-sm-start.align-items-xl-center.flex-sm-column.flex-xl-row.w-100 {
  overflow: hidden;
}
a.ai-editorial-cta-aaxrtetjneljtdgxsdaigenblock0e3a02bdyunmd {
    color: #fff !important;
}
.label.label--in-stock.mb-3.mr-3.text-nowrap[data-js-product-label-in-stock] {
    position: absolute;
    bottom: -3px;
    /* width: calc(100% + 21px); */
    width: 100%;
    text-align: center;
    /* left: -10px; */
    height: 30px;
    font-size: 18px;
    align-items: center;
    display: flex;
    justify-content: center;
    text-transform: capitalize;
    display: none
}
.label.label--sale.mb-3.mr-3.text-nowrap{
          margin-left: 10px;
        margin-top: 10px;
}
.product-image__overlay-top-left.product-collection__labels {
    width: 100%;
    position: absolute !important;
    z-index: 99;
    height: 100%;
    margin: 0 !important;
}
.cstm-product-tags {
    position: absolute;
    width: 100%;
    bottom: 0;
}
.cstm-product-tags .tag-badge {
    text-transform: capitalize;
    background: #25a799;
    display: block;
    text-align: center;
    color: #fff;
    border-top: .1px solid #fff;
    padding-block: 1px;
    font-size: 13px;
}
@media only screen and (min-width: 1100px) {
  .sidebar {
    flex: 0 0 35%;
  }
  .ai-tabbed-collections__layout-ad3j5yvz1clortzvfvaigenblock0a382f8mnylgb {
    grid-template-columns: 1fr 1fr !important;
}
.ai-tabbed-collections__tab-ad3j5yvz1clortzvfvaigenblock0a382f8mnylgb {
    display: flex;
    gap: .5rem;
}
.ai-editorial-content-aaxrtetjneljtdgxsdaigenblock0e3a02bdyunmd {
    position: sticky;
    top: 100px;
}
.menu:not(.menu--vertical) .menu__panel > .menu__item > a {
    font-size: 15px !important;
    font-weight: 600 !important;
    padding-inline: 2rem !important;
}

}
@media screen and (min-width: 768px) and (max-width: 1200px){
  .app-container .input-group{
    max-width: 100% !important;
    width: 100% !important;
  }
}
@media only screen and (max-width: 720px) {
  .image-uploader label p {
    font-size: 28px; 
  }
  .app-container {
    flex-direction: column-reverse;
    width: 95% !important;
  }
  .image-uploader {
    min-height: 300px;
  }
  .ai-editorial-layout-aaxrtetjneljtdgxsdaigenblock0e3a02bdyunmd {
    display: block !important;
}
.ai-editorial-content-aaxrtetjneljtdgxsdaigenblock0e3a02bdyunmd {
    margin-top: 3rem;
}
}


/* amr droplogicx 6/11/024 css start */
div#searchresults {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.template-search div#searchresults ol {
  display: flex;
  flex-wrap: wrap;
}

.template-search div#searchresults ol li {
  width: 33.333%;
  list-style: none;
  padding: 15px;
}
div#searchresults form p {
  align-items: center;
  width: 100%;
  display: flex;
  max-width: 620px;
  margin: 40px auto;
  padding: 0 15px;
}
div#searchresults form p input {
  margin-bottom: 0;
}
.template-search div#searchresults input[type="submit"] {
  padding: 8px;
  border-radius: 10px;
  margin-left: 10px;
}
.template-search div#searchresults ol li::before {
  display: none;
}
.template-search div#searchresults .result-image {
  margin-bottom: 15px;
}

@media screen and (max-width: 1200px) {
  .template-search div#searchresults ol li {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .template-search div#searchresults ol li {
    width: 100%;
  }
  .template-search div#searchresults ol li h3 {
    font-size: 20px;
  }
}
/* Easy Sell Custom Css */
.product-collection__image .rimage {
  padding-top: 100% !important; 
}
.product-collection__image .rimage img {
  object-fit: cover !important; 
}

/* Image Uploaded Page */

.add-to-cart-btn.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6; text-indent: -9999px;
}

.add-to-cart-btn.loading::after {
  content: '';
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  width: 24px;
  height: 24px;
  border: 3px solid #454545;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: unset;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.notification {
  visibility: hidden; 
  font-weight: bold;
  color: red;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-bottom: 10px;
  margin-top: -5px;
}

.notification.show {
  display: block; min-width: 100%; 
  opacity: 1; visibility: visible; 
}
.notification.green {
  color: green; 
}
.notification.hidden {
  display: none;
}
.step h4 {
  margin-bottom: 10px; 
}
.min-des {
 margin-bottom: 10px; font-weight: 550; color: black;
}
#errorMessage {
  font-weight: bold; margin-top: 20px; font-size: 15px; 
}
.loading-spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #454545;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spinload 1s linear infinite;
  position: absolute;
  top: calc(50%);
  left: calc(50%);
  transform: translate(-50%, -50%);
}
.visually-hidden {
  visibility: hidden !important; opacity: 0 !important; 
}
@keyframes spinload {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Header Additional Line Display  */
header .header__line-additional.display-initial {
  display: flex !important; 
}

#imageUploader.image_uploaded label[for="imageUpload"] , #imageUploader.image_uploaded #imageUpload {
  display: none !important; 
}
#imageUploader.image_uploaded #changeImageButton {
  display: inline-flex !important; position: absolute; right: 30px; top: 10px; 
  column-gap: 5px !important; z-index: 11; cursor: pointer; 
  align-items: center; justify-content: center; 
  margin-top: 20px; background: #454545; border:  1px solid #FFF; 
  padding: 10px; color: #FFF; 
}
#changeImageButton i.fas.fa-cloud-upload-alt {
  margin: 0 !important; padding: 0 !important; 
  font-size: 18px; color: #FFF; 
}
#imageUploader .cropper-bg {
  background-image: unset !important; 
}
#imageUploader + .cropper-toolbar {
  display: none; 
}
#imageUploader.image_uploaded + .cropper-toolbar {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 10px;
}

.cropper-toolbar button {
  background-color: #007bff;
  border: none;
  color: white;
  padding: 10px;
  margin: 2px;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cropper-toolbar button:hover {
  background-color: #0056b3;
}
.cropper-toolbar button i , .cropper-toolbar button span {
  font-size: 25px; margin: 0; color: inherit;  
}
.price-display {
  margin-top: 5px; 
}
.price-display .original-price {
  top: unset; 
}
.price-display .discount-price {
  margin-top: 10px; 
}
#imageUploaderText {
  cursor: pointer;  background-color: #D0D0D0; color: #454545; transition: all 0.5s ease;
}
#imageUploaderText:hover{
  background-color: #454545; color: #D0D0D0;
}
.container-uploader {
  display: flex; flex-direction: column; 
      border-radius: 32px;
}

@media only screen and (max-width: 750px){
  canvas#overlay {
    max-width: 100%;
    height: auto;
  }
  #imageUploader .cropper-bg {
    max-height: 350px !important; height: 350px !important; 
  }
  #imageUploader .cropper-bg .cropper-crop-box {
    max-height: 100%; 
  }
  .app-container {
    overflow-y: auto; /* Enable vertical scrolling if content overflows */
  }
  
  body {
    overflow-y: auto; /* Allow scrolling for the entire page */
  }
}


.blakes-custom {
  background-color: #D0D0D0 !important; /* Default color */
}

@media only screen and (max-width: 750px) {
    .blakes-custom {
        background-color: #F0F0F0 !important; /* Override on smaller screens */
    }

}

/* F0F0F0*/

.cart-count-bubble {
  position: relative;
}

.cart-bubble {
  position: absolute;
  top: 2px;
  right: 5px;
  width: 15px;
  height: 15px;
  background-color: #bf8e77; /* Red color */
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 12px; /* Adjust this size as needed */
  line-height: 20px; /* Centers the text vertically */
  font-weight: bold;
}

.cart-bubble-mobile {
  position: absolute;
  top: 0px;
  right: 20px;
  width: 15px;
  height: 15px;
  background-color: #bf8e77; /* Red color */
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 12px; /* Adjust this size as needed */
  line-height: 20px; /* Centers the text vertically */
  font-weight: bold;
}


.d-none {
  display: none;
}

.d-lg-inline {
  display: inline-block;
}

.d-lg-none {
  display: none;
}

/* If you want the mobile version to be shown as well */
@media (max-width: 991px) {
  .d-lg-none {
    display: inline-block;
  }
}

@media (min-width: 992px) {
  .d-lg-inline {
    display: inline-block;
  }
}

/* PS-CSS */
.menu__megamenu.d-lg-none.position-lg-absolute.show.animate.visible {
    background-color: white;
}
.promobox__border {
        border: none !important;
}


.elementor-596
  .elementor-element.elementor-element-6c9ffc5
  > .elementor-widget-container {
  margin: 0 0 -5px;
  padding: 0 0 65px;
}
.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap {
  display: flex;
}
.elementor-widget-wrap {
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  align-content: flex-start;
}
.elementor-column-gap-default
  > .elementor-column
  > .elementor-element-populated {
  padding: 10px;
}
.elementor-element {
      --flex-direction: initial;
    --flex-wrap: initial;
    --justify-content: initial;
    --align-items: initial;
    --align-content: initial;
    --gap: initial;
    --flex-basis: initial;
    --flex-grow: initial;
    --flex-shrink: initial;
    --order: initial;
    --align-self: initial;
    flex-basis: var(--flex-basis);
    flex-grow: var(--flex-grow);
    flex-shrink: var(--flex-shrink);
    order: var(--order);
    align-self: var(--align-self);
}

/* Section Styling */
.elementor-section {
    padding: 30px;
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
}
@media screen and (max-width: 600px) {
  .elementor-section {
    padding: 30px;
    margin: 0 auto;
    max-width: 300px;
    text-align: center;
  }
  .custom-column-stuff {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .custom-column-stuff2 {
    width: 75% !important;
  }
   .custom-column-stuff3 {
    padding-top: 20px !important;
  }
}
 .custom-column-stuff2 {
    width: 25%;
  }
/* Heading Styling */
.elementor-heading-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Paragraph Styling */
.elementor-widget-text-editor p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
    text-align: center;
    line-height: 1.8;
}

/* List Styling */
.elementor-widget-text-editor ul {
    list-style: disc;
    margin-left: 20px;
    padding-left: 20px;
    text-align: left;
}

.elementor-widget-text-editor li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

/* Things You Will Need Section */
.things-you-will-need {
    margin-top: 40px;
    margin-bottom: 30px;
}

.things-you-will-need h2 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 20px;
}

/* Icons Grid */
.things-you-will-need .icon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.things-you-will-need .icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #fef4ee;
    border-radius: 10px;
    width: 150px;
    height: 150px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.things-you-will-need .icon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.things-you-will-need .icon-item img {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.things-you-will-need .icon-item p {
    font-size: 14px;
    color: #444;
    margin: 0;
    text-align: center;
}

/* Steps Section */
.steps-section {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.steps-section .step {
    flex: 1 1 calc(50% - 15px);
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.steps-section .step h3 {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.steps-section .step p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.elementor-column-gap-default {
    display: flex;
      flex-direction: row;
  justify-content: center;
    align-items: space-evenly;
}

.elementor-column-gap2-default {
    display: flex;
      flex-direction: column;
  justify-content: center;
    align-items: space-evenly;
}
/* Responsive Design */
@media (max-width: 768px) {
    .steps-section .step {
        flex: 1 1 100%;
    }

    .things-you-will-need .icon-item {
        width: 120px;
        height: 120px;
    }

    .things-you-will-need .icon-item img {
        width: 40px;
    }

    .things-you-will-need h2 {
        font-size: 20px;
    }
}


.border-around-instructions {
  border: 2px solid rgba(191, 144, 120, 0.9);
}
.collection-filters__checkbox span {
    text-transform: capitalize;
}


.set-color-as-bg {
  background-color: #F0F0F0;
}

.set-hover-as-brown:hover {
  background-color: #D0D0D0 !important;
}


.set-hover-as-brown:hover2 {
  background-color: rgb(191, 144, 120) !important;
}


.alert-message {
    background: #f8d7da;
    border: 1px solid #ae797b;
    border-radius: 10px;
    margin-top: 20px;
    padding: 10px;
    height: 75px;
}
.alert-message p {
    color: #ae797b;
    font-size: 14px;
    margin-bottom: 0px;
}
.alert-content {
    display: flex;
    column-gap: 10px;
    align-items: flex-start;
}
.alert-content svg path {
  fill: #ae797b !important;
}
.alert-content svg circle {
  fill: #ae797b !important;
}

.image-text-content {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 2rem;

}
.image-text-content h1 {
    margin-bottom: 12px;
    font-size: 30px;
    text-transform: capitalize;
    color: #7a736e;
}
.image-text-content p {
    color: #7a736e;
    margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
.image-text-content h1 {
    line-height: 30px;
    text-align: center;
}
.image-text-content p {
    text-align: center;
}
}


.flexEnd {
  display: flex; 
  justify-content: flex-end;
}
.app-container .input-group, .app-container .material-select {
    max-width: 100% !important;
    width: 100% !important;
}