/** Shopify CDN: Minification failed

Line 94:34 Unexpected "{"

**/
/* Product Details Page */

.product-detail-banner .media{
    background-color: #6d4e1c66;
}
.pdp-top-description-wrapper h2{
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 8px;
}
.pdp-top-description-wrapper h2 strong{
  font-weight: 500;
}
.pdp-top-description-wrapper p{
  color: #8C4A2F;
}
.pdp-top-description-wrapper p{
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
.quantity-addtocart-wrapper{
    display: flex;
    gap: 20px;
    align-items: self-end;
}
.quantity-addtocart-wrapper .product-form__input{
  flex: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}
.quantity-addtocart-wrapper .product-form-wrapper{
  width: 100%;
  max-width: 260px;
}
.quantity-addtocart-wrapper .product-form__submit{
  width: 100%;
  color: #fff;
  border-radius: 8px;
  transition: ease .3s;
  margin-bottom: 0;
  padding: 0 10px;
}
.pdp-detail-main-wrapper .price__container{
  margin-bottom: 0 !important;
}
.quantity-addtocart-wrapper .product-form__submit:hover,.quantity-addtocart-wrapper .product-form__submit:active,.quantity-addtocart-wrapper .product-form__submit:focus{
  color: var(--color-primary);
}
.quantity-addtocart-wrapper .product-form__submit span{
  letter-spacing: 1px;
}
.pdp-detail-main-wrapper .price{
  font-size: 40px;
  font-weight: 500;
  color: #B2653C;
  text-align: center;
}

.card-format-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.card-format-item {
  position: relative;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  padding-left: 24px;
  line-height: normal;
}

/* Hide native radio */
.card-format-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  height: 0;
}

.card-format-item input:checked ~ {
}

/* Optional inner dot indicator */
.card-format-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #B2653C;
  transition: all 0.25s ease;
}

.card-format-item:has(input:checked)::after {
    background: #D19486;
    border-color: #B2653C;
}


.quantity-addtocart-wrapper .product-form{
  margin: 0 !important;
}
.quantity-addtocart-wrapper .quantity__label{
  font-size: 18px;
  font-weight: 500;
  color: #8C4A2F;
}
.quantity-addtocart-wrapper .price-per-item__container{
  background-color: #fff;
  border-radius: 8px;
}
.quantity-addtocart-wrapper .quantity{
  width: 125px;
}
.quantity-addtocart-wrapper .quantity:after{
  box-shadow: none;
  border: 1px solid #C7C7C7;
  border-radius: 8px;
}
.quantity-addtocart-wrapper .quantity .quantity__button{
  color: #5A5A5A;
}
.quantity-addtocart-wrapper .quantity .quantity__input{
  color: #232323;
}
.quantity-addtocart-wrapper .quantity .quantity__input:focus-visible{
  box-shadow: none;
  outline: none;
  background: none !important;
}

/* Preview Card Section */
  .preview-section {
    width: 100%;
    max-width: 100%;
    position: sticky;
    top: 20px;
    flex-shrink: 0;
  }

  .preview-card {
    background: white;
    /* border: 1px solid #f2e2cf; */
    border-radius: 6px;
    /* height: 856px; */
    width: 100%;
    /* padding: 10px; */
    position: relative;
    max-width: 100%;
  }

  .preview-inner {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* aspect-ratio: 141/175; */
    aspect-ratio: 1080/1350;
    padding:10px;
    border: 1px solid rgb(192, 191, 191);
    position: relative;
   
  }
  
 .preview-inner.items-dragging{
  position: relative;
 }
/* horizontal + vertical lines */
.preview-inner.items-dragging::before,
.preview-inner.items-dragging::after {
content: "";
position: absolute;
background: rgba(0, 0, 0, 0.6);
opacity: 0;
pointer-events: none; /* important */
transition: opacity 0.3s ease;
z-index: 5;
}

/* horizontal line – full width */
.preview-inner.items-dragging::before {
top: 50%;
left: 0;
width: 100%;
height: 2px;
transform: translateY(-50%);
}

/* vertical line – full height */
.preview-inner.items-dragging::after {
left: 50%;
top: 0;
width: 2px;
height: 100%;
transform: translateX(-50%);
}

.preview-inner.items-dragging:hover::before,
.preview-inner.items-dragging:hover::after {
opacity: 1;
}

  /* .border-overlay {
    border: 1px dashed transparent;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 10px;
    max-width: 100%;
    border-radius: 6px;
    transition: ease 0.3s;
}
 .border-overlay:empty{
  display:block;
 } */
 .border-overlay:hover{
    border: 2px dashed rgb(208, 208, 208);
 }

.border-overlay {
    border: 2px solid transparent;
    height: 100%;
    border-radius:6px;
    transition: ease 0.3s;
}
.border-overlay:hover {
    border: 2px dashed rgb(182, 181, 181);
}
.items-dragging .border-overlay {
    border: 2px dashed rgb(215, 51, 51);
}


  .custom-video-card .preview-inner{
    aspect-ratio: 1/1;
  }
  .landscape .preview-inner{
    aspect-ratio: 1285/910;
  }
 .portrait .preview-inner{
    /* aspect-ratio: 141/175; */
    /* aspect-ratio: 1080/1350; */
    aspect-ratio: 5/7;
  }

  .preview-badges {
    position: absolute;
    top: 16px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
  }

  .badge-gift {
    background: white;
    padding: 6px 12px 8px;
    border-radius: 100px;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 12px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #8c4a2f;
    font-weight: 400;
  }

  .badge-trash {
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .badge-trash:hover {
    background: #f5f5f5;
  }

  .badge-trash svg {
    width: 16px;
    height: 16px;
  }

  /* Draggable Elements */
  .draggable {
    position: absolute;
    cursor: move;
    user-select: none;
    transition: opacity 0.2s ease;
  }

  .draggable:hover {
    opacity: 0.9;
  }

  .draggable.dragging {
    opacity: 0.7;
    z-index: 100;
  }

  .draggable-image {
    width: 340px;
    height: 340px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .draggable-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .draggable-placeholder {
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .draggable-placeholder img{
    /* border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
  }

  .draggable-placeholder svg {
    width: 60px;
    height: 60px;
    opacity: 0.5;
  }

  /* Template Selector */
  .template-selector {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .template-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .template-option {
    position: relative;
    cursor: pointer;
    flex: 1;
    min-width: 200px;
  }

  .template-radio {
    display: none;
  }

  .template-card {
    border: 3px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px;
    transition: all 0.3s ease;
    background: white;
  }

  .template-card:hover {
    border-color: #b2653c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .template-radio:checked + .template-card {
    border-color: #8c4a2f;
    background: #fff9f5;
    box-shadow: 0 4px 12px rgba(140, 74, 47, 0.2);
  }

  .template-thumbnail {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 8px;
  }

  .template-name {
    font-size: 14px;
    font-weight: 500;
    color: #8c4a2f;
    text-align: center;
  }

  .template-radio:checked + .template-card .template-name {
    font-weight: 600;
  }

  /* Typography Controls */
  .typography-subsection {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .typography-subsection:first-child {
    /* padding-top: 0; */
  }

  .subsection-title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.54px;
    text-transform: capitalize;
    color: #8c4a2f;
  }

  .font-control-row {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .control-label {
    width: 185px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: #8c4a2f;
    padding: 10px 0;
  }

  .font-select-wrapper {
    flex: 1;
    position: relative;
  }

  .font-select {
    width: 100%;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 6px 35px 6px 10px;
    font-family: "Crimson Pro", serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #8c4a2f;
    text-transform: capitalize;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='28' viewBox='0 0 14 28' fill='none'%3E%3Cpath d='M3.5 8.75L7 5.25L10.5 8.75' stroke='%23685E56' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.5 8.75L7 5.25L10.5 8.75' stroke='%23685E56' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.5 19.25L7 22.75L10.5 19.25' stroke='%23685E56' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.5 19.25L7 22.75L10.5 19.25' stroke='%23685E56' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px auto;
    padding-right: 32px;
    height: 36px;
    cursor: pointer;
  }

  .font-select:focus {
    outline: none;
    border-color: #8c4a2f;
  }
  .font-select:focus-visible{
    outline: none;
    box-shadow: none;
  }

  .select-arrows {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2px;
    pointer-events: none;
  }

  .select-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
  }

  .select-arrow.up {
    border-bottom: 5px solid #8c4a2f;
  }

  .select-arrow.down {
    border-top: 5px solid #8c4a2f;
  }

  .size-control-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 255px;
  }

  .size-slider {
    flex: 1;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
  }

  /* .size-slider::-webkit-slider-track {
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #e0e0e0 0%, #e0e0e0 100%);
    border-radius: 2px;
  } */
  .size-slider::-webkit-slider-runnable-track {
    height: 2px;
    background: repeating-linear-gradient(
    to right,
    #e0e0e0 0,
    #e0e0e0 4px,
    transparent 4px,
    transparent 8px
  );
  margin-top: 5px;
    border-radius: 2px;
  }

  .size-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #8c4a2f;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-top: -8.5px;
  }

  .size-slider::-moz-range-track {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
  }

  .size-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #8c4a2f;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .size-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 2px 10px;
    width: 80px;
  }

  .size-input {
    flex: 1;
    border: none;
    font-family: "Crimson Pro", serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #8c4a2f;
    text-transform: capitalize;
    text-align: left;
    width: 100%;
  }
  .size-input:focus{
    box-shadow: none;
  }

  .size-input:focus {
    outline: none;
  }

  .size-unit {
    font-family: "Crimson Pro", serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #8c4a2f;
    text-transform: capitalize;
  }

  /* Color Picker Controls */
  #colorContent {
    
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .color-picker-row {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .color-picker-row .control-label {
    width: 185px;
  }

  .color-picker-wrapper {
    flex: 1;
    position: relative;
  }

  .hidden-color-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
  }

  .color-display {
    width: 100%;
    background: white;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    height: 40px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }

  .color-display:hover {
    border-color: #8c4a2f;
  }

  .color-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
  }
  .color-circle:empty{
    display: block;
  }

  .hex-code {
    font-family: "Crimson Pro", serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #8c4a2f;
    text-transform: uppercase;
  }

  .draggable-heading {
    font-family: "Crimson Pro", serif;
    font-size: 48px;
    font-weight: 500;
    color: #b8935d;
    text-align: center;
    padding: 10px 20px;
    max-width: 600px;
    line-height: normal;
  }

  .draggable-message {
    font-family: "Crimson Pro", serif;
    font-size: 16px;
    font-weight: 400;
    color: #6b5d52;
    text-align: center;
    padding: 10px 20px;
    max-width: 500px;
    line-height: normal;
  }

  /* Header Section */
  .header-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #8c4a2f;
  }

  .main-title {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: capitalize;
    line-height: normal;
  }

  .main-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #8c4a2f;
  }

  /* Form Container */
  .pdp-detail-main-wrapper{
    background: #fbf9f6;
    border: 1px solid #f2e2cf;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .pdp-detail-main-wrapper .section-header{
    margin-bottom: 25px;
  }
  .pdp-detail-main-wrapper .form-field{
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .pdp-detail-main-wrapper .form-field:nth-child(7){
    margin-bottom: 0;
  }
  .pdp-detail-main-wrapper .title{
    margin: 0;
    margin-bottom: 10px;
  }
  .pdp-detail-main-wrapper .note-text{
    margin-top: 8px;
  }
  /* Section Header */
  .section-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .section-title {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.84px;
    text-transform: capitalize;
    color: #8c4a2f;
    line-height: normal;
  }

  .section-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #8c4a2f;
  }

  /* Form Field */
  

  .field-label {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.54px;
    text-transform: capitalize;
    color: #8c4a2f;
    line-height: normal;
  }

  /* Upload Area */
  .upload-area {
    background: white;
    border: 1px dashed #bebebe;
    border-radius: 6px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 150px;
    position: relative;
  }

  .upload-area:hover {
    border-color: #8c4a2f;
    background: #fefefe;
  }

  .upload-area.dragover {
    border-color: #8c4a2f;
    background: #fff9f5;
    transform: scale(1.01);
  }

  .upload-area.has-file {
    border-style: solid;
    border-color: #4caf50;
    background: #f1f8f4;
  }

  .upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
  }

  .upload-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
  }

  .upload-icon.video-icon {
    width: 52px;
    height: 36px;
  }

  .upload-text-main {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    line-height: 22px;
    color: #8c4a2f;
    text-transform: capitalize;
  }

  .upload-text-main .highlight {
    color: #b2653c;
  }

  .upload-text-sub {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #8c4a2f;
    text-transform: capitalize;
  }

  .file-preview {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .file-preview.active {
    display: flex;
  }

  .preview-image {
    max-width: 100%;
    max-height: 200px;
    border-radius: 4px;
  }

  .preview-info {
    font-size: 14px;
    color: #8c4a2f;
    text-align: center;
  }

  .remove-file-btn {
    background: #d32f2f;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: "Crimson Pro", serif;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .remove-file-btn:hover {
    background: #b71c1c;
  }

  /* Input Fields */
  .input-field {
    background: white;
    border: 1px solid #bebebe;
    border-radius: 6px;
    padding: 10px;
    font-family: "Crimson Pro", serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #8c4a2f;
    line-height: 18px;
    text-transform: capitalize;
    width: 100%;
    transition: border-color 0.3s ease;
  }

  .input-field:focus {
    outline: none;
    border-color: #8c4a2f;
  }
  .input-field:focus-visible{
    outline: none;
    box-shadow: none;
  }

  .input-field::placeholder {
    color: #8c4a2f;
    opacity: 0.6;
  }

  textarea.input-field {
    min-height: 90px;
    resize: vertical;
    text-transform: none;
  }

  /* Collapsible Section */
  .collapsible-section {
    transition: all 0.3s ease;
  }

  .collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
  }

  .collapsible-title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.54px;
    text-transform: capitalize;
    color: #8c4a2f;
    line-height: normal;
  }

  .chevron-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
  }

  .chevron-icon.expanded {
    transform: rotate(180deg);
  }

  .collapsible-content.collapsible-custom-pdp {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;;
    background-color: #fff;
    border-radius: 8px;
  }
  .expand-inner{
    padding: 5px 20px;
  }

  .collapsible-content.collapsible-custom-pdp.expanded {
    max-height: 500px;
    margin-top: 15px;
  }

  .dropdown-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .option-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .option-group-label {
    font-size: 14px;
    font-weight: 500;
    color: #8c4a2f;
    margin-bottom: 5px;
  }

  .option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .option-btn {
    background: white;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 8px 16px;
    font-family: "Crimson Pro", serif;
    font-size: 14px;
    color: #8c4a2f;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .option-btn:hover {
    border-color: #8c4a2f;
    background: #fff9f5;
  }

  .option-btn.selected {
    background: #8c4a2f;
    color: white;
    border-color: #8c4a2f;
  }

  .color-picker-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .color-swatch:hover {
    transform: scale(1.1);
  }

  .color-swatch.selected {
    border-color: #8c4a2f;
    box-shadow: 0 0 0 2px white, 0 0 0 4px #8c4a2f;
  }

  .color-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .color-input {
    width: 60px;
    height: 40px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    cursor: pointer;
  }

  /* Date Picker */
  .date-picker-field {
    background: white;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }

  .date-picker-field:hover {
    border-color: #8c4a2f;
  }

  .date-value {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: #8c4a2f;
    line-height: normal;
  }

  .calendar-icon {
    width: 16px;
    height: 16px;
  }

  input[type="date"] {
    background: white;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 10px;
    font-family: "Crimson Pro", serif;
    font-size: 16px;
    color: #8c4a2f;
    width: 100%;
    cursor: pointer;
  }

  input[type="date"]:focus {
    outline: none;
    border-color: #8c4a2f;
  }
 .pdp-detail-main-wrapper [type="date"]{
    position: relative;
 }
 .pdp-detail-main-wrapper [type="date"]::-webkit-calendar-picker-indicator{
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
 }
 .pdp-detail-main-wrapper [type="date"]::after{
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cg clip-path='url(%23clip0_762_1431)'%3E%3Cpath d='M2.66602 4.66659C2.66602 4.31296 2.80649 3.97382 3.05654 3.72378C3.30659 3.47373 3.64573 3.33325 3.99935 3.33325H11.9993C12.353 3.33325 12.6921 3.47373 12.9422 3.72378C13.1922 3.97382 13.3327 4.31296 13.3327 4.66659V12.6666C13.3327 13.0202 13.1922 13.3593 12.9422 13.6094C12.6921 13.8594 12.353 13.9999 11.9993 13.9999H3.99935C3.64573 13.9999 3.30659 13.8594 3.05654 13.6094C2.80649 13.3593 2.66602 13.0202 2.66602 12.6666V4.66659Z' stroke='%23685E56' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.666 2V4.66667' stroke='%23685E56' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.33398 2V4.66667' stroke='%23685E56' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2.66602 7.33325H13.3327' stroke='%23685E56' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.66602 9.33325H4.67468' stroke='%23685E56' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.67383 9.33325H6.67716' stroke='%23685E56' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.67383 9.33325H8.67716' stroke='%23685E56' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.6758 9.33325H10.6791' stroke='%23685E56' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.67578 11.3333H8.67911' stroke='%23685E56' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.67383 11.3333H4.67716' stroke='%23685E56' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.67383 11.3333H6.67716' stroke='%23685E56' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_762_1431'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
    pointer-events: none;
 }
 .pdp-detail-main-wrapper .msg{
    margin-bottom: 12px;
    font-size: 16px;
 }
 variant-selects .product-form__input{
  max-width: 100%;
 }
 variant-selects .product-form__input .select select{
  border-radius: 6px;
  box-shadow: none;
  font-size: 16px;
 }
 
 variant-selects .product-form__input .select:active::after{
  border-radius: 6px;
  border-color: #8c4a2f;
 }
 variant-selects .product-form__input .select::after{
  border-radius: 6px;
  box-shadow: none;
  border: 1px solid #bebebe;
 }
 variant-selects .product-form__input .select:hover::after{
  border-radius: 6px;
  box-shadow: none;
  border-color: #8c4a2f;
 }
 variant-selects .form__label{
  font-size: 18px;
  color: #8C4A2F;
 }

  /* Price Display */
  .price-display {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .price-value {
    font-size: 40px;
    font-weight: 500;
    color: #b2653c;
    line-height: normal;
  }

  /* Quantity and Cart Section */
  .quantity-cart-section {
    display: flex;
    gap: 30px;
    align-items: center;
  }

  .quantity-label {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.54px;
    text-transform: capitalize;
    color: #8c4a2f;
    line-height: normal;
    white-space: nowrap;
  }

  .quantity-selector {
    background: white;
    border: 1px solid #c7c7c7;
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 33px;
  }

  .quantity-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
  }

  .quantity-btn:hover {
    opacity: 0.7;
  }

  .quantity-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .minus-icon {
    width: 12px;
    height: 2px;
    background: #5a5a5a;
  }

  .plus-icon {
    width: 12px;
    height: 12px;
    position: relative;
  }

  .plus-icon::before,
  .plus-icon::after {
    content: "";
    position: absolute;
    background: #5a5a5a;
  }

  .plus-icon::before {
    width: 12px;
    height: 2px;
    top: 5px;
    left: 0;
  }

  .plus-icon::after {
    width: 2px;
    height: 12px;
    top: 0;
    left: 5px;
  }

  .quantity-value {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.32px;
    color: #232323;
    text-align: center;
    min-width: 20px;
    line-height: 30px;
  }

  .add-to-cart-btn {
    flex: 1;
    background: #f2e2cf;
    border: none;
    border-radius: 8px;
    padding: 16px 30px 18px;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2.7px;
    text-transform: uppercase;
    color: #b2653c;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: normal;
  }

  .add-to-cart-btn:hover {
    background: #e8d4bb;
    transform: translateY(-1px);
  }

  .add-to-cart-btn:active {
    transform: translateY(0);
  }

  /* Success Modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .modal.active {
    display: flex;
  }

  .modal-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
  }

  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .modal-title {
    font-size: 24px;
    font-weight: 500;
    color: #8c4a2f;
  }

  .close-modal-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #8c4a2f;
    cursor: pointer;
    line-height: 1;
  }

  .success-icon {
    font-size: 48px;
    color: #4caf50;
    text-align: center;
    margin-bottom: 20px;
  }

  .modal-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .summary-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .summary-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
  }

  .summary-value {
    font-size: 16px;
    color: #8c4a2f;
  }

  .error-message {
    background: #fef5f5;
    border: 1px solid #f44336;
    border-radius: 4px;
    padding: 10px;
    color: #d32f2f;
    font-size: 14px;
    margin-top: 10px;
  }

  .hidden {
    display: none;
  }
.gooten-size-dropdown-wrapper {
  margin-bottom: 15px;
}
.gooten-size-dropdown-wrapper .size-dropdown-select{
  width: 100%;
  border-radius: 6px;
  box-shadow: none;
  font-size: 16px;
  padding: 0 calc(var(--inputs-border-width) + 3rem) 0 2rem;
  line-height: calc(1 + .6 / var(--font-body-scale));
  background-color: rgb(var(--color-background));
  height: 4.5rem;
  color: rgba(var(--color-foreground), .75);
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  border: 1px solid #bebebe;
  
}
.gooten-size-dropdown-wrapper .select::after{
  box-shadow: none;
}
.gooten-size-dropdown-wrapper .select:hover.select:after{
  box-shadow: none;
}
.gooten-size-dropdown-wrapper .select .svg-wrapper{
  right: 12px;
}
.gooten-size-dropdown-wrapper .size-dropdown-select:focus-visible{
  outline: none;
}
.gooten-size-dropdown-wrapper .size-dropdown-label{
    font-size: 18px;
    color: #8C4A2F;
        display: block;
    margin-bottom: .6rem;
}
  
  /* Responsive */
@media (max-width: 1320px) {
  .main-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .preview-section {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }

  .container {
    max-width: 700px;
  }
}

@media (max-width: 1250px) {
  .draggable-placeholder{
    width: 280px;
    height: 280px;
  }
  .draggable-message{
    padding: 10px 20px;
  }
}
@media (max-width: 1130px) {
  .quantity-addtocart-wrapper{
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 950px) {
  .draggable-placeholder{
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .preview-section {
    width: 100%;
    /* max-width: 500px; */
  }
  .draggable-message{
    padding: 10px 20px;
  }
  .preview-card {
    /* height: 615px; */
    padding: 7px;
  }
  .preview-inner {
    width: 100%;
    /* height: 600px; */
  }
  .draggable-heading {
    font-size: 32px;
    /* max-width: 400px; */
    left: 85px;
    top: 280px;
  }
  .draggable-message {
    font-size: 14px;
    max-width: 400px;
  }
  .draggable-placeholder {
    width: 220px;
    height: 220px;
  }
  .draggable-image {
    width: 220px;
    height: 220px;
  }
  .preview-section{
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .main-title {
    font-size: 32px;
  }
  .section-title {
    font-size: 24px;
  }
  .quantity-cart-section {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .quantity-label {
    text-align: center;
  }
  .preview-section {
    max-width: 100%;
  }
  .preview-section{
    margin-bottom: 10px;
  }
}
@media(max-width: 576px){
  .preview-section{
    margin-bottom: 0px;
  }
}

/* Why Choose PDP */

.why-choose-pdp .multicolumn-list .multicolumn-card__info>:nth-child(2){
  color: #685E56;
  font-size: 16px;
}
.why-choose-pdp .multicolumn-card .multicolumn-card__info .inline-richtext{
  font-size: 20px;
  font-weight: 500;
}

@media screen and (min-width: 750px) {
    .why-choose-pdp .multicolumn-list .multicolumn-list__item {
        width: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}
@media screen and (min-width: 990px) {
    .why-choose-pdp .multicolumn-list .multicolumn-list__item{
        width: calc(33.33% - 15px);
        max-width: calc(33.33% - 15px);
    }
}
@media screen and (max-width: 749px) {
    .why-choose-pdp .multicolumn-list .multicolumn-list__item {
        width: calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
    .why-choose-pdp .multicolumn-list{
      gap: 15px;
    }
    .custom-card-detail-pdp .rich-text__wrapper{
      width: calc(100% - 0 / var(--font-body-scale));
    }
}
@media screen and (max-width: 576px) {
    .why-choose-pdp .multicolumn-list .multicolumn-list__item {
        width: 100%;
        max-width: 100%;
    }
}

/* Card Specification PDP */
 .custom-card-detail-pdp .rich-text__heading {
	 color: #8c4a2f;
	 font-size: 70px;
	 line-height: 65px;
	 font-weight: 500;
	 margin-bottom: 50px;
}
.custom-card-detail-pdp-section {
	 background-color: #fff;
	 padding: 40px;
	 border-radius: 8px;
	 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
 .custom-card-detail-pdp-section .rich-text__text p {
	 text-align: left;
	 font-size: 30px;
	 font-weight: 500;
	 letter-spacing: 3%;
	 margin-bottom: 5px;
	 color: #8c4a2f;
}
 .custom-card-detail-pdp-section .detail-content {
	 background-color: #faf4f3;
	 display: flex;
	 justify-content: flex-start;
	 align-items: center;
	 padding: 15px;
	 gap: 10px;
	 border-radius: 6px;
}
 .custom-card-detail-pdp-section .detail-content .detail-content-right {
	 text-align: left;
}
 .custom-card-detail-pdp-section .detail-content .svg-wrapper {
	 width: auto;
}
 .custom-card-detail-pdp-section .detail-content .svg-wrapper svg {
	 width: 52px;
	 height: 52px;
}
 .custom-card-detail-pdp-section .detail-content .detail-content-title {
	 font-size: 20px;
	 font-weight: 600;
	 line-height: 22px;
	 color: #8c4a2f;
	 letter-spacing: 3%;
	 margin-bottom: 8px;
}
 .custom-card-detail-pdp-section .detail-content .detail-content-description p {
	 font-size: 16px;
	 color: #685e56;
	 line-height: 22px;
}

@media(max-width: 989px){
   .custom-card-detail-pdp .rich-text__heading {
    color: #8c4a2f;
    font-size: 60px;
    line-height: 55px;
  }
}
@media(max-width: 749px){
   .custom-card-detail-pdp .rich-text__heading {
    color: #8c4a2f;
    font-size: 45px;
    line-height: 40px;
  }
}
@media(max-width: 567px){
   .custom-card-detail-pdp .rich-text__heading {
    color: #8c4a2f;
    font-size: 35px;
    line-height: 30px;
  }
  .quantity-addtocart-wrapper .product-form-wrapper{
    width: 100%;
    max-width: 100%;
  }
  .custom-card-detail-pdp-section{
    padding: 20px;
  }
  .custom-card-detail-pdp .rich-text__heading{
    margin-bottom: 30px;
  }
  .custom-card-detail-pdp-section .detail-content{
    flex-direction: column;
    justify-content: center;
  }
  .custom-card-detail-pdp-section .detail-content .detail-content-right{
    text-align: center;
  }
  .custom-card-detail-pdp-section .detail-content .svg-wrapper{
    margin-top: 15px;
    margin-bottom: 10px;
  }
  .custom-card-detail-pdp-section .detail-content-wrapper{
    gap: 15px;
  }
  .custom-card-detail-pdp .rich-text__wrapper{
    width: calc(100% - 1rem / var(--font-body-scale));
  }
  .custom-card-detail-pdp-section .rich-text__text p{
    text-align:center;
  }
}

.custom-card-detail-pdp .testimonial-inner-wrapper{
  width: 100%;
}
.product-detail-table tbody tr:nth-child(even) {
  background-color: #F8F3F0;
}
.product-detail-table{
  overflow-x: auto;
}
.product-detail-table table{
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  overflow-x: auto;
  min-width: 600px;
}
.product-detail-table tbody tr td{
  text-align: left;
  padding: 8px 15px;
}
.product-detail-table tbody tr td:first-child{
  min-width: 300px;
}
.product-detail-table .heading{
  font-size: 18px;
  font-weight: 500;
  color: #8C4A2F;
}
.product-detail-table .description{
  font-size: 18px;
  color: #685E56;
}

.product-media-container{
    border: 1px solid #F2E2CF;
    padding: 10px;
    border-radius: 6px;
}
.product__media-toggle:focus-visible:after{
  box-shadow: none !important;
}
.you-may-like .title{
  font-size: 20px;
  font-size: 30px;
  font-weight: 600;
}
.printable-option{
  margin-top: -20px;
}
.printable-option .info-message{
  color: #ad6641;   
  display: flex;
  align-items: flex-start; 
  line-height: 20px;
}
.printable-option .info-message svg{
  fill: #ad6641;
  margin-right: 7px;
  width: 16px;
}
.printable-option label{
  color: #ad6641;
  margin-bottom: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: normal;

}
.printable-option .disabled{
  cursor: not-allowed;
  color: #e1c7b9;
}


.printable-option input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  background-color: #8C4A2F;
  border: 2px solid #8C4A2F;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.printable-option input:checked::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_661_213)'%3E%3Cpath d='M3.33337 7.99996L6.66671 11.3333L13.3334 4.66663' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_661_213'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-size: cover;
}

.printable-option input:hover {
  background-color: #A75B43; /* Slightly lighter shade for hover */
}
.printable-option .disabled input{
  opacity: 0.2;
  cursor: not-allowed;
}
.pagination__list .pagination__item{
  background-color: #fff;
  text-decoration: none;
}
.pagination__list .pagination__item--current{
  background-color: #FAF5EE;
}
.pagination__list .pagination__item:hover::after{
  background: none;
}
.pagination__list .pagination__item--current::after{
  content: '';
  background: none;
}

/* test qr border
.draggable-qr {
  border: 4px solid #fff;
} */



@media(max-width: 749px){
  .product-detail-table tbody tr td:first-child{
    min-width: 150px;
  }
}


/* test shapes */
/* ========== CIRCLE ========== */
#draggablePlaceholder[container-shape="Circle"],
#draggablePlaceholder img[image-shape="Circle"] {
  border-radius: 50%;
  width: 320px;
  height: 320px;
}

@media(max-width: 1250px){
   #draggablePlaceholder[container-shape="Circle"],
    #draggablePlaceholder img[image-shape="Circle"] {
      width: 300px;
      height: 300px;
    }
}
@media(max-width: 1150px){
  #draggablePlaceholder[container-shape="Circle"],
  #draggablePlaceholder img[image-shape="Circle"] {
    width: 270px;
    height: 270px;
  }
}
@media(max-width: 1050px){
  #draggablePlaceholder[container-shape="Circle"],
  #draggablePlaceholder img[image-shape="Circle"] {
    width: 240px;
    height: 240px;
  }
}
@media(max-width: 898px){
  #draggablePlaceholder[container-shape="Circle"],
  #draggablePlaceholder img[image-shape="Circle"] {
    width: 200px;
    height: 200px;
  }
}
@media(max-width: 749px){
  #draggablePlaceholder[container-shape="Circle"],
  #draggablePlaceholder img[image-shape="Circle"] {
    width: 300px;
    height: 300px;
  }
}
@media(max-width: 576px){
  #draggablePlaceholder[container-shape="Circle"],
  #draggablePlaceholder img[image-shape="Circle"] {
    width: 240px;
    height: 240px;
  }
}
@media(max-width: 480px){
  #draggablePlaceholder[container-shape="Circle"],
  #draggablePlaceholder img[image-shape="Circle"] {
    width: 170px;
    height: 170px;
  }
}

/* ========== SQUARE ========== */
#draggablePlaceholder[container-shape="Square"],
#draggablePlaceholder img[image-shape="Square"] {
  width:300px;
  height:300px;
  border-radius: 10px;
}

@media(max-width: 480px){
  #draggablePlaceholder[container-shape="Square"],
  #draggablePlaceholder img[image-shape="Square"] {
    width:160px;
    height:160px;
  }
}

/* ========== OVAL ========== */
#draggablePlaceholder[container-shape="Oval"],
#draggablePlaceholder img[image-shape="Oval"] {
  border-radius: 90% / 90%;
  width:270px;
  height:350px;
}
@media(max-width: 480px){
  #draggablePlaceholder[container-shape="Oval"],
  #draggablePlaceholder img[image-shape="Oval"] {
    border-radius: 90% / 90%;
    width:140px;
    height:210px;
  }
}

/* ========== RECTANGLE ========== */
#draggablePlaceholder[container-shape="Rectangle"],
#draggablePlaceholder img[image-shape="Rectangle"] {
  border-radius: 10px;
  width: 400px;
  height: 250px;
}
@media(max-width: 480px){
  #draggablePlaceholder[container-shape="Rectangle"],
  #draggablePlaceholder img[image-shape="Rectangle"] {
    border-radius: 10px;
    width: 200px;
    height: 150px;
  }
}


/* Keepsake Club Membership */

.keepsake-club-page .pdp-detail-main-wrapper{
    gap: 0px;
}