html {
    scroll-behavior: smooth;
    font-family: var(--font-family);
}
body {
    font-family: var(--font-family);
}
span.order-note {
    font-size: 12px;
    display: block;
    font-weight: 400;
    text-align: center;
    width: 100%;
    padding-bottom: 15px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    70% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}
.product-landing-page p {
    color: var(--paragraph-color);
    line-height: 150%;
    font-size: 16px;
    margin: 0;
    margin-top: 16px;
}

/* Header area */
.pl-header {
    padding: 12px 0px;
    border-bottom: 2.5px solid var(--secondary-color);
    border-radius: 24px;
}
.pl-logo {
    text-align: center;
}
.pl-logo img {
    max-width: 180px;
}

/* Product Description */
.pl-description-head {
    padding: 32px 24px;
    margin-top: 40px;
    background: #ff8e8e29;
    border-radius: 32px;
    text-align: center;
}
.pl-description-head .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    margin: 0;
    justify-content: center;
}
.pl-description-head .text {
    margin-top: 12px;
    font-size: 18px;
    color: var(--title-color);
    padding: 0 20%;
}
.pl-description-head p {
    padding: 0 280px;
    font-weight: 500;
    font-size: 18px;
    color: var(--title-color);
}
/* Gallery  */
.pl-gallery {
    margin-top: 40px;
}
.pl-gallery-inner {
    background: #ffeded;
    padding: 40px;
    border-radius: 32px;
}
.pl-gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.pl-section-head {
    margin-bottom: 32px;
    text-align: center;
}
.pl-section-title {
    text-align: center;
    line-height: 120%;
    font-size: 32px;
    padding: 0px 78px;
    display: inline-block;
    position: relative;
    margin: 0;
}
.pl-section-title::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 3.5px;
    background: var(--primary-color);
    top: 50%;
    left: 0;
}
.pl-section-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 3.5px;
    background: var(--primary-color);
    top: 50%;
    right: 0;
}

.pl-section-title.style2::after,
.pl-section-title.style2::before {
    background: #000;
}

.pl-gallery-card {
    border-radius: 8px !important;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    transition: all 0.4s ease !important;
}

.pl-gallery-card img {
    border-radius: 0;
    transition: all 0.3s ease !important;
}

.pl-gallery-card:hover img {
    transform: scale(1.04);
}

/* Video  */
.pl-video {
    margin-top: 40px;
}
.pl-video-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.pl-video-single iframe {
    width: 500px;
    height: 320px;
    border-radius: 16px;
    border: 2px solid #000;
    padding: 8px;
}

/* Reviews  */
.pl-review {
    margin-top: 40px;
}
.pl-review-slider {
    padding-bottom: 48px;
}
.pl-review-single {
    border: 1.5px solid var(--secondary-color);
    border-radius: 8px;
    padding: 8px;
}

.pl-review-single img {
    border-radius: 8px;
}
.pl-review .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 1.5rem;
    height: 1.5rem;
}

/* Contact  */
.pl-contact {
    margin-top: 40px;
    text-align: center;
    padding: 56px 0px;
    background: var(--primary-color);
}
.pl-contact-inner {
}
.pl-contact-inner .title {
    color: #fff;
    display: block;
    font-size: 24px;
    font-weight: 500;
}
.pl-contact-button {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}
.pl-contact-button a {
    font-size: 25px;
    background: #fff;
    color: #000;
    padding: 12px 32px;
    border-radius: 32px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    border: 2px solid #000;
}
.pl-contact-button a svg {
    width: 30px;
    height: 30px;
}
.pl-contact-button .whatsapp-btn {
    background: #1daa61;
    color: #fff;
    border-color: #fff;
}

.order-now-btn {
    text-align: center;
    margin-top: 40px;
    animation: pulse 1.5s infinite;
}
.order-now-btn a {
    display: inline-block;
    background: #1daa61;
    color: #fff;
    padding: 12px 32px;
    font-size: 32px;
    border-radius: 32px;
    line-height: 120%;
    font-weight: 600;
}
.order-now-btn a:hover {
    transform: scale(1.04);
}

/* Price  */
.pl-product-price {
    padding-top: 40px;
}
.price-row {
    border-radius: 24px;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
}
.price-row:last-child {
    margin-bottom: 0;
}
.price-row.bg-color {
    background: #fff;
}
.price-row.bg-color-2 {
}
.price-row .position-relative {
    position: relative;
}
.price-label {
    font-weight: 500;
    font-size: 32px;
    color: var(--title-color);
}

.price-regular {
    font-size: 40px;
    font-weight: 500;
    color: #ff0000;
    position: relative;
}
.price-regular::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 150px;
    background-image: url("../img/cross.gif");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: -31px;
    top: -42px;
}
.price-offer {
    font-size: 48px;
    font-weight: 600;
    color: #1daa61;
}
.draw-svg {
    position: absolute;
    left: -38px;
    top: -16px;
}
.drawn-circle {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawCircle 2s linear infinite;
}

@keyframes drawCircle {
    0% {
        stroke-dashoffset: 500;
        opacity: 1;
    }
    80% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0; /* fade out before restarting */
    }
}

/* Gallery grid */
.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.gallery-main {
    grid-column: span 4;
    text-align: center;
    margin-bottom: 10px;
}

.gallery-main img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #eee;
}

.gallery-item {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.2s;
}

.gallery-item:hover {
    border-color: #007bff;
}

.gallery-item.active {
    border-color: #007bff;
}

.gallery-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

/* Features  */
.pl-features {
    margin-top: 40px;
}
.pl-features-inner {
    background: #ffeded;
    padding: 40px;
    border-radius: 32px;
}
.pl-features-wrapper ul {
    padding: 0;
}
.pl-features-wrapper li {
    font-size: 24px;
    font-weight: 598;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 16px;
    color: var(--title-color);
    position: relative;
    padding-left: 35px;
    line-height: 120%;
}
.pl-features-wrapper li::before {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    border: 2px solid #000;
    left: 0;
    top: 2px;
}
.pl-features-wrapper li::after {
    position: absolute;
    content: "✔";
    font-size: 16px;
    left: 6px;
    top: 0;
}

.pl-features-wrapper li:last-child {
    margin-bottom: 0;
    border: none;
}
.pl-features-wrapper p {
    color: var(--title-color);
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 16px;
}

/* Product summary */
.product-summary {
    background-color: #ffc10738;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.summary-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.summary-content {
    color: #555;
    line-height: 1.6;
    text-align: center;
}

/* Product description */
.product-description {
    margin-bottom: 30px;
}

.description-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.description-content {
    color: #555;
    line-height: 1.6;
}

/* Variants */
.product-variants {
    margin-bottom: 20px;
}

.variant-label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.variant-option {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid #eee;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.variant-option:hover {
    border-color: var(--secondary-color);
}

.variant-option.selected {
	border-color: var(--secondary-color);
	background-color: var(--primary-color);
	font-weight: 500;
	color: #fff;
	border: none !important;
}
/* Order form */
.pl-form {
    padding: 40px 0px;
}

.pl-order-form {
    background: #ffeded;
    padding: 40px;
    border-radius: 32px;
}
.pl-order-form span.selection {
    width: 100%;
}

.order-form-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    border-bottom: 1px solid #e1e4e8;
    padding-bottom: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
    max-width: 150px;
}

.quantity-btn {
    width: 60px;
    height: 45px;
    color: #fff;
    border: 1px solid #ddd;
    background: var(--primary-color);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 80px;
    height: 45px;
    text-align: center;
    border: none;
    border-left: 0;
    border-right: 0;
    font-size: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    height: 48px !important;
    border: none;
    box-shadow: none;
    border: 1px solid transparent;
}

.form-control:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: none;
}

/* Order summary */
.order-summary {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.summary-row.total {
    font-weight: 600;
    border-top: 1px solid #ddd;
    padding-top: 8px;
    margin-top: 8px;
    font-size: 16px;
}

/* Payment methods */
.payment-options,
.delivery-options {
    margin-bottom: 20px;
}

.option-label {
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.option-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    border: 1px solid var(--primary-color);
    padding: 8px 12px;
    border-radius: 4px;
}
.option-item input[type="radio"] {
    margin-right: 8px;
}

/* Submit button */
.order-button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 0;
    font-family: var(--font-family);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 15px;
}
.order-button:hover {
    background: var(--primary-color);
}

/* Terms agreement */
.terms-agreement {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--title-color);
}

.terms-agreement input {
    margin-right: 8px;
    margin-top: 0;
}

.terms-agreement a {
    color: #007bff;
}

/* Additional styles for the improved order form */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

.contact-info-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--title-color);
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 8px;
}
.variant-heading,
.option-heading,
.address-heading {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 18px;
    color: var(--title-color);
    line-height: 120%;
}
.variant-section,
.quantity-container {
    margin-bottom: 15px;
}

.saved-addresses {
    background-color: #f0f7ff;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 10px;
}

.form-check {
    padding-left: 25px;
    position: relative;
}

.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -25px;
}

.form-check-label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 14px;
}

.form-control::placeholder {
    color: #999;
    font-size: 14px;
}

textarea.form-control {
    min-height: 120px;
}

.mt-3 {
    margin-top: 15px;
}

.mb-2 {
    margin-bottom: 10px;
}
.product-details .product-title {
    font-size: 16px;
}
.section__heading.text-center {
    margin-bottom: 10px;
}
/* Flex container for both select fields */
.selects-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
    margin-bottom: 16px;
}

/* Individual select container */
.select-container {
    flex: 1;
    /* Equal width for both selects */
    min-width: 0;
    /* Prevents flex items from overflowing */
}

/* Label styling */
.select-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

/* Required field indicator */
.required-indicator {
    color: #e53935;
    margin-left: 2px;
}

/* Select field styling */
.select-field {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* Select hover state */
.select-field:hover {
    border-color: #b3b3b3;
}

/* Select focus state */
.select-field:focus {
    border-color: #03030394;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
    outline: none;
}

/* Select2 customization */
.select2-container .select2-selection--single {
    height: 48px;
    border: 1px solid transparent;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 30px;
    padding-left: 12px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 48px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #dcdfe6;
    padding: 8px;
    border-radius: 4px;
}

.select2-dropdown {
    border: 1px solid #dcdfe6;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.select2-results__option {
    padding: 8px 12px;
    font-size: 14px;
}

.select2-results__option--highlighted {
    background-color: #f0f7ff !important;
    color: #333 !important;
}

.product-main-image,
.product-image {
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

.product-main-image {
    max-height: 400px;
    object-fit: contain;
}

.product-image {
    max-height: 400px;
    object-fit: contain;
}
.order-form span.color-name {
    line-height: 1;
}
.variant-options.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variant-option.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    padding: 5px;
    transition: all 0.2s ease;
    min-width: 70px;
}

.variant-option.color-option.selected {
    border-color: #0066cc;
}

.color-image-container {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 5px;
}

.color-variant-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-swatch {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 5px;
}

.color-name {
    font-size: 12px;
    text-align: center;
}

#place-order-form .form-control {
    background: #fff;
}

.variant-options.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}
.variant-option.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 5px;
    transition: all 0.2s ease;
    min-width: 70px;
}
.color-image-container {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 5px;
}

.color-variant-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-swatch {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 5px;
}

.color-name {
    font-size: 12px;
    text-align: center;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.variant-option {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.variant-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 120%;
}

.jump-to-order {
    margin-right: 10px;
    margin-bottom: 20px;
}
.landing-link-btn {
    background-color: #ff6a00;
    border-color: #ff6a00;
    color: white;
    font-size: 18px;
}
/* Mobile responsiveness */

/* Product Card Styles */
.product-card {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Product Thumbnail */
.product-thumbnail {
    position: relative;
    overflow: hidden;
    padding-top: 100%; /* 1:1 Aspect ratio */
}

.product-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-thumbnail img {
    transform: scale(1.05);
}

/* Badge or Label */
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff6a00;
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    z-index: 1;
}

/* Product Details */
.product-details {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-details .product-title {
    font-weight: 500;
    color: #333;
    padding: 7px 0;
    margin: 2px 0;
    line-height: 1.2;
    font-size: 15px;
}

.product-title a {
    color: inherit;
    text-decoration: none;
}

.product-category {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
}

/* Price Area */
.product-price {
    margin-top: auto;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.current-price {
    font-size: 18px;
    font-weight: 600;
    color: #ff6a00;
}

.old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Action Buttons */
.product-actions {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.action-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-btn {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.cart-btn {
    background-color: #ff6a00;
    color: white;
    border: 1px solid #ff6a00;
}

.action-btn:hover {
    opacity: 0.9;
}

.action-btn i {
    margin-right: 5px;
    font-size: 14px;
}
/* Add these styles to your existing CSS */

/* Out of stock variant styling */
.variant-option.out-of-stock {
    opacity: 0.5;
    position: relative;
    cursor: not-allowed;
}

.variant-option.out-of-stock::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cline x1='0' y1='100%25' x2='100%25' y2='0' style='stroke:rgba(255,0,0,0.5);stroke-width:2'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    pointer-events: none;
}

/* For color options */
.color-option.out-of-stock .color-swatch::after {
    content: "Out of Stock";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    white-space: nowrap;
    color: #ff0000;
}

/* When hovering over out-of-stock items */
.variant-option.out-of-stock:hover::after {
    content: "Out of Stock";
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 10;
    white-space: nowrap;
}

header.header__section {
    display: none !important;
}
footer.footer__section.bg__black {
    display: none !important;
}
.landing-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}
.landing-footer .social__title {
    margin-bottom: 12px;
}

.landing-footer .social__shear {
    margin: 0;
    padding: 0;
}
.landing-footer .social__shear li {
    margin: 0;
    margin-right: 12px;
    display: inline-block;
}
.landing-footer .social__shear li svg {
    margin-right: 4px;
    position: relative;
    top: 2px;
}

/* Out of stock variant styling */
.variant-option.out-of-stock {
    opacity: 0.5;
    position: relative;
    cursor: not-allowed;
}

.variant-option.out-of-stock::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cline x1='0' y1='100%25' x2='100%25' y2='0' style='stroke:rgba(255,0,0,0.5);stroke-width:2'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    pointer-events: none;
}

/* For color options */
.color-option.out-of-stock .color-swatch::after {
    content: "Out of Stock";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    white-space: nowrap;
    color: #ff0000;
}
.variant-option.out-of-stock:hover::after {
    content: "Out of Stock";
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 10;
    white-space: nowrap;
}
li.social__shear--list {
    display: inline-block;
    margin-bottom: 10px;
}

/* Apply the animation to the button */
.see-related a {
    animation: pulse 2s infinite;
}

/* Optional hover effect to pause animation */
.see-related a:hover {
    animation-play-state: paused;
}
@media (max-width: 767px) {
    .container-fluid {
        padding: 0% 3%;
    }
    .product-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-main {
        grid-column: span 3;
    }

    .order-form {
        margin-top: 30px;
        position: static;
        padding: 10px;
    }

    .selects-row {
        gap: 10px;
        /* Smaller gap on mobile */
    }

    .select-field {
        padding: 10px 12px;
        /* Slightly smaller padding on mobile */
        font-size: 14px;
    }
    span.order-note {
        line-height: 18px;
    }
    .product-variants .variant-label {
        text-align: center;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .selects-row {
        gap: 6px;
    }

    .select-label {
        font-size: 14px;
    }

    .select-field {
        padding: 8px 10px;
    }

    .form-row {
        margin-right: -5px;
        margin-left: -5px;
    }

    .form-row > .col,
    .form-row > [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }
    .variant-option {
        padding: 8px 11px;
    }
    .variant-options.color-options {
        gap: 4px;
    }
}

/* Order Form */
.pl-order-form {
    background: #ffeded;
    padding: 40px;
    border-radius: 32px;
}
.place-order-form-head {
    padding: 0px 20%;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 24px;
    text-align: center;
}
.place-order-form-title {
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 12px;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .pl-description-head .title {
        font-size: 18px;
    }
    .pl-description-head .text {
        font-size: 14px;
        padding: 0;
    }
    .pl-description-head {
        padding: 24px;
    }
    .order-now-btn a {
        padding: 8px 24px;
        font-size: 18px;
    }
    .pl-section-title {
        font-size: 24px;
        padding: 0px 60px;
    }
    .pl-section-title::before {
        width: 48px;
    }
    .pl-section-title::after {
        width: 48px;
    }
    .pl-gallery-inner {
        padding: 24px;
    }
    .pl-gallery-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .order-now-btn {
        margin-top: 24px;
    }
    .pl-video-single iframe {
        width: 100%;
    }
    .pl-features-inner {
        padding: 24px;
    }
    .pl-features-wrapper li {
        font-size: 16px;
    }
    .pl-features-wrapper li svg {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }
    .pl-features-wrapper li::before {
        width: 18px;
        height: 18px;
        border: 2px solid #000;
        left: 5px;
    }
    .pl-features-wrapper li::after {
        font-size: 14px;
        left: 9px;
        top: 1px;
    }
    .pl-features-wrapper li {
        padding-left: 32px;
    }
    .price-row {
        margin-bottom: 6px;
        line-height: 140%;
    }

    .price-regular::before {
        display: none;
    }

    .price-label {
        font-size: 24px;
    }
    .price-regular {
        font-size: 28px;
        margin-top: 12px;
    }
    .price-offer {
        font-size: 32px;
        margin-top: 12px;
    }
    .pl-contact-button a {
        font-size: 18px;
        padding: 8px 32px;
    }
    .pl-contact-button a svg {
        width: 20px;
        height: 20px;
    }

    .place-order-form-head {
        padding: 0;
        margin-bottom: 24px;
        padding-bottom: 12px;
    }

    .place-order-form-title {
        font-size: 20px;
    }

    .pl-order-form {
        padding: 24px;
    }
    .price-row {
        display: block;
    }
    .cross-img {
        top: -38%;
        right: 50%;
        width: 80px;
        height: 80px;
        left: 40%;
    }
    .drawn-circle {
        display: none;
    }
}
