/** Shopify CDN: Minification failed

Line 83:21 Unexpected "{"
Line 83:30 Expected ":"
Line 83:37 Unexpected "{"

**/
.custom-size-box {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 15px;
    margin: 24px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(39, 42, 95, 0.06);
}

.custom-size-box:hover {
    border-color: #272a5f;
    box-shadow: 0 8px 24px rgba(39, 42, 95, 0.12);
    transform: translateY(-2px);
}

.custom-size-box.active {
    border-color: #272a5f;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

/* Checkbox Label */
.custom-checkbox-label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #272a5f;
    padding: 8px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.custom-checkbox-label:hover {
    background: #f8f9ff;
    border-color: #272a5f20;
}

/* Custom Checkbox Styling */
.custom-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #272a5f;
    transition: all 0.2s ease;
}

.custom-checkbox-label input[type="checkbox"]:checked {
    transform: scale(1.1);
}

.custom-checkbox-label span {
    user-select: none;
    letter-spacing: 0.3px;
}

.custom-checkbox-label .icon-check {
    width: 20px;
    height: 20px;
    margin-left: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #4caf50;
}

.custom-checkbox-label input[type="checkbox"]:checked ~ .icon-check {
    opacity: 1;
}

/* Fields Wrapper */
#custom-size-fields-{{ section.id }} {
    display: none;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px dashed #e8e8e8;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
    opacity: 0;
    transform: translateY(-10px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

.custom_size_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

/* Lock Icon */
.ratio-lock-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #272a5f;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    padding: 8px;
    border-radius: 8px;
    border: 2px solid #ffcc80;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.15);
}

/* Input Fields */
.custom-size-fields-grid,
.dimension-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 768px) {
    .custom-size-fields-grid,
    .dimension-row {
    grid-template-columns: 1fr;
    }
}

.custom-field,
.dimension-field {
    position: relative;
}

.custom-field label,
.dimension-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #272a5f;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.custom-field input[type="number"],
.dimension-field input[type="number"],
.custom-field input[type="file"] {
    width: 100%;
    padding: 12px 10px;
    font-size: 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #272a5f;
    font-weight: 500;
}

.custom-field input[type="number"]:focus,
.dimension-field input[type="number"]:focus,
.custom-field input[type="file"]:focus {
    outline: none;
    border-color: #272a5f;
    box-shadow: 0 0 0 4px rgba(39, 42, 95, 0.1);
    background: #f8f9ff;
}

.custom-field input[type="number"]::-webkit-outer-spin-button,
.custom-field input[type="number"]::-webkit-inner-spin-button,
.dimension-field input[type="number"]::-webkit-outer-spin-button,
.dimension-field input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.custom-field input[type="number"]::placeholder,
.dimension-field input[type="number"]::placeholder,
.custom-field input[type="file"]::placeholder {
    color: #b0b0b0;
    font-weight: 400;
}

.custom-field .input-icon,
.dimension-field .dimension-unit {
    position: absolute;
    right: 16px;
    top: 42px;
    color: #272a5f;
    font-size: 14px;
    font-weight: 600;
    pointer-events: none;
}

/* File Upload Field */
.custom-field input[type="file"]::file-selector-button {
  background: #272a5f;
  color: white;
  border: none;
  padding: 6px 8px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 400;
}

/* Price Preview */
.custom-price-preview,
.price-summary-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 8px;
    border-radius: 10px;
    border: 2px solid #81c784;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.custom-price-preview:empty {
    display: none;
}

/* Info Box */
.custom-info-box,
.info-note {
    background: #e3f2fd;
    border-left: 4px solid #272a5f;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    color: #1565c0;
    line-height: 1.5;
}

/* Palement Options */
.palement-options {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #e8e8e8;
}

.palement-options > p {
  font-weight: 600;
  margin-bottom: 10px;
  color: #272a5f;
  font-size: 14px;
}

.palement-radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.palement-radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #272a5f;
  font-weight: 500;
}

.palement-radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #272a5f;
  transition: all 0.2s ease;
}

.palement-radio-group input[type="radio"]:checked {
  transform: scale(1.1);
}

/* Palement Price Preview */
.palement-price-preview {
  margin-top: 12px;
  padding: 12px;
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
  border-radius: 8px;
  font-size: 14px;
  color: #1976d2;
  font-weight: 500;
  line-height: 1.6;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* Minimum Warning */
.minimum-warning {
  background: #fff3e0;
  border-left: 4px solid #ff9800;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #e65100;
  line-height: 1.5;
  margin: 0;
}

/* Notes Textarea */
.custom-notes-wrapper label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #272a5f;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.custom-notes-wrapper textarea {
  display: block;
  width: 100%;
  border: 2px solid #e8e8e8;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #272a5f;
  font-weight: 500;
}

.custom-notes-wrapper textarea:focus {
  outline: none;
  border-color: #272a5f;
  box-shadow: 0 0 0 4px rgba(39, 42, 95, 0.1);
  background: #f8f9ff;
}

.custom-notes-wrapper textarea::placeholder {
  color: #b0b0b0;
  font-weight: 400;
}

/* Price Preview Box */
.product hr {
    margin: 2rem 0;
}

h1.product__title {
    font-size: 26px;
}

#cart-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #e3f2fd;
  color: #272a5f;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 9999;
  pointer-events: none;
}

.price_element_container {
  color: #000;
  font-weight: 500;
  margin: 0;
}

/*jdgm review*/
.jdgm-prev-badge__stars{
  margin-right: 4px !important;
  font-size: 14px !important;
}
.jdgm-widget .jdgm-prev-badge__text{
  color: #000000;
  font-size: 90%;
}
.jdgm-widget .jdgm-rev-widg__title{
  font-size: 24px;
  margin-bottom: 32px !important;
}
.jdgm-widget .jdgm-prev-badge[data-average-rating='0.00']{
  /* display: block !important; */
}
.jdgm-widget.jdgm-widget{
  /* display: block !important; */
}
.jdgm-preview-badge{
  height: max-content;
}
.jdgm-preview-badge .jdgm-star.jdgm-star.jdgm--off{
  color: #000000;;
}
.product-card .jdgm-widget .jdgm-prev-badge[data-average-rating='0.00'] .jdgm-prev-badge__text{
  display:none !important;
}
.jdgm-widget .jdgm-form input[type="text"],.jdgm-widget .jdgm-form input[type="email"],.jdgm-widget .jdgm-form input[type="url"], .jdgm-widget .jdgm-form textarea{
  padding:12px 16px;
  border-radius: 12px !important;
}
.jdgm-widget .jdgm-btn, .jdgm-widget input[type=submit].jdgm-btn{
  border-radius: 12px !important;
}
@media (min-width: 750px){
  .jdgm-rev-widg__body .jdgm-rev-widg__reviews{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
  }
}
.jdgm-rev-widg__body .jdgm-rev-widg__reviews .jdgm-rev{
  border-radius:8px;
  border:1px solid #000000;
  padding:2rem;
  background-color:white;
}
.jdgm-rev-widg__body .jdgm-rev-widg__reviews .jdgm-rev__icon{
  border-radius:50%;
}
.jdgm-rev-widg__body .jdgm-rev-widg__reviews .jdgm-row-profile{
  display:flex;
  align-items:center;
}
.jdgm-rev-widg__body .jdgm-paginate{
  margin-top: 10px;
  border-top:none;
}
.jdgm-widget .jdgm-rev__author, .jdgm-widget .jdgm-rev__icon:before{
  color:rgba(var(--g-color-heading-rgb),1);
}
.jdgm-widget .jdgm-sort-dropdown-wrapper .jdgm-sort-dropdown, .jdgm-widget .jdgm-sort-dropdown-wrapper .jdgm-sort-dropdown-arrow{
  color:rgba(var(--g-color-heading-rgb),1);
}

.jdgm-review-widget .jdgm-rev-widg__header, .jdgm-review-widget .jdgm-row-actions, .jdgm-review-widget .jdgm-rev-widg__reviews .jdgm-rev {
  background-color: #fff;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: none;
}

.jdgm-review-widget .jdgm-rev-widg__header {
  padding: 24px 16px 16px 16px;
}

.jdgm-review-widget .jdgm-row-actions {
  margin: 24px 0;
  padding: 8px 16px;
}

.jdgm-paginate__page {
  background: #ffffff;
  box-shadow: 0px 4px 16px #272a5f36;
  border-radius: 8px;
  padding: 5px !important;
  margin: 0px 4px !important;
}

.product__accordion .accordion__content .product__description,
.product__accordion .accordion__content {
  color: #000000;
}

.product__accordion .accordion__content .product__description ul,
.product__accordion .accordion__content ul {
  list-style: none;
  padding-left: 0;
}

.product__accordion .accordion__content .product__description ul li,
.product__accordion .accordion__content ul li {
  position: relative;
  padding-left: 28px;
}

.product__accordion .accordion__content .product__description ul li::before,
.product__accordion .accordion__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  background-image: url('/cdn/shop/files/GRUHASTU-01-02_1_1.png?v=1765887223');
  background-size: contain;
  background-repeat: no-repeat;
}

.recently_viewed_proudct .product__card-title--link {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-extra-price.caption {
  color: #000;
  font-size: 16px;
}

.ruff_price {
  background: #fff;
  border-radius: 5px;
  padding: 2px 8px;
  width: 100%;
  max-width: 110px;
  text-align: center;
}

.ma-0 {
  margin: 0;
}

.footer_newsletter {
  width: 100%;
  position: relative;
  margin-bottom: 60px;
}

.footer_newsletter .footer__widget {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.footer_newsletter .footer__widget .footer__widget_title,
.footer_newsletter .footer__widget .footer__widget_inner,
.footer_newsletter .footer__widget .footer_news_social {
  flex: 1;
  margin: 0;
  padding: 0;
}

.footer_newsletter .footer__list-social.list-social {
  justify-content: end;
}

.footer_newsletter::after {
  content:"";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -30px;
  background: rgba(var(--color-foreground),.10);
}

.mobile__navigate--item.active .mobile__navigate--item-label,
.mobile__navigate--item.active .mobile__navigate--item-icon svg {
  color: #272a5f;
}

.footer__top .col.mb-30 {
  position: relative;
}

.border_wrapper {
  border: 1px solid rgba(var(--color-foreground), .10);
  padding: 10px;
}

.border_wrapper .footer__widget {
  align-items: center;
}

.footer_about_image {
  margin-bottom: 22px;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.popup-container {
  background: #f8f9ff;
  padding: 35px 30px;
  border-radius: 12px;
  border: 3px solid #272a5f;
  box-shadow: 0 8px 30px rgba(39, 42, 95, 0.33);
  max-width: 450px;
  width: 90%;
  text-align: center;
  animation: popupSlideIn 0.3s ease-out;
  position: relative;
}

@keyframes popupSlideIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-message {
  margin: 0 0 25px 0;
  font-size: 16px;
  color: #272a5f;
  line-height: 1.6;
  font-weight: 600;
}

.popup-message::before {
  content: "⚠️ ";
  margin-right: 5px;
}

.popup-btn {
  background: #272a5f;
  color: white;
  border: 2px solid #f8f9ff;
  padding: 12px 40px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.popup-btn:hover {
  background: #333333;
  border-color: #272a5f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgb(107 139 255 / 40%);
}

.popup-btn:active {
  transform: translateY(0);
}

.gallery--product-card .position_abs {
  position: absolute;
}

/* Gift Card CSS */

.gift_card .price-item.price-item--regular {
  font-size: 22px;
  color: #272a5f;
  letter-spacing: normal;
  line-height: normal;

}

.gift_card .product-form__input {
  max-width: 100%;
}

.gift_card .product-form__input input[type=radio]+label {
  width: 100%;
  flex: 24% 1 1;
}

.gift_card .product-form__input input[type=radio]:checked+label:not(.variant--swatch-custom) {
  background-color: #272a5f;
  color: rgb(var(--color-background));
}

.add_text {
  position: absolute;
  z-index: 9;
  background: #272a5f;
  color: #ffffff;
  top: 1rem;
  left: 1rem;
  padding: 2px 4px;
  line-height: normal;
  border-radius: 0.5rem;
  font-size: 13px;
}

.footer_about_image img {
  max-width: 100%;
}

@media (max-width: 749px) {
  .footer_newsletter {
    margin-bottom: 80px !important;
  }
  .footer_newsletter::after {
    bottom: -55px;
  }
  .footer_newsletter .footer__widget_inner {
    display: block;
  }
  .footer_newsletter .footer__widget {
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
  }
  .footer_newsletter .footer__widget_title:before,
  .footer_newsletter .footer__widget_title:after {
    display: none;
  }
  .footer__bottom .row {
    gap: 15px;
  }
  .border_wrapper .footer__widget {
    align-items: unset;
  }
}

@media (max-width: 749px) {
  h1.product__title {
    font-size: 16px;
  }
  .cart-extra-price.caption {
    color: #000;
    font-size: 14px;
  }
  .palement-price-preview,
  .custom-price-preview,
  .price-summary-box {
    flex-direction: column;
  }
  .header__actions_btn--cart {
    padding-right: 0px !important
  }
  .header__actions_btn_cart_num {
    right: -5px !important;
  }
  .card--stretch .collection__card_text {
    padding: 0.5rem 0.5rem !important;
    flex-direction: column !important;
  }
  .card--stretch .h5.collection__title {
    padding-right: 0 !important;
  }
  .card--stretch .collection__title,
  .card--stretch .collection__product_count {
    font-size: 1.4rem !important;
  }
}
@media (max-width: 480px) {
  .mb-30 {
    margin-bottom: 15px !important;
  }
  .section-heading:is(.mobile--text-center) {
    margin-bottom: 30px !important;
  }
  .swiper__nav--btn {
    width: 3.5rem !important;
    height: 3.5rem !important;
  }
  .swiper__nav--btn svg {
    width: 20px !important;
    height: 20px !important;
  }
  .product-slider--nav-button {
    width: 3.2rem !important;
    height: 3.2rem !important;
  }
  .product-slider--nav-button svg {
    width: 20px !important;
    height: 20px !important;
  }
  .cart-extra-price.caption {
    color: #000;
    font-size: 12px;
  }
  .footer_newsletter {
    margin-bottom: 80px !important;
  }
  .custom-size-box {
    padding: 10px;
  }
  .custom_size_wrapper {
    gap: 10px;
  }
  .custom-field label,
  .dimension-field label {
    margin-bottom: 5px;
  }
  .custom-field input[type="number"],
  .dimension-field input[type="number"],
  .custom-field input[type="file"] {
    padding: 10px 8px;
  }
  .custom-field .input-icon,
  .dimension-field .dimension-unit {
    right: 10px;
    top: 38px;
  }
  .palement-options {
    padding: 10px;
  }
  .palement-options > p {
    margin-bottom: 4px;
  }
  .palement-radio-group {
    gap: 8px;
  }
  .palement-radio-group input[type="radio"] {
    width: 16px;
    height: 16px;
  }
  .custom-price-preview, .price-summary-box {
    padding: 8px;
    font-size: 12px;
    gap: 8px;
  }
  .custom-info-box, .info-note {
    font-size: 12px;
    padding: 5px;
  }
  .palement-price-preview {
    margin-top: 8px;
    padding: 7px;
    font-size: 12px;
    gap: 8px;
  }
  .minimum-warning {
    padding: 8px;
    font-size: 12px;
  }
  .gallery--product-card {
    inset-block-end: 0.5rem !important;
    inset-inline: 0.5rem !important;
    gap: 0.5rem !important;
    padding: 0.5rem !important;
  }

  .gallery--product-card-title {
    font-size: 1rem !important;
  }

  .gallery--product-card-price a {
    font-size: 1rem !important;
  }

  .gallery--product-card-actions>.link {
    font-size: 1rem !important;
  }
  .mobile-mt {
    margin-top: 10px !important;
  }
  .promotion--card:not(.promotion--card-icon--top) {
    gap: 0.5rem !important;
  }
  .promotion--card .shipping__items--title {
    margin-bottom: 0.5rem !important;
  }
}