* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background-color: #1e2a44;
    color: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    color: #1e2a44;
    line-height: 1.6;
}

header {
    line-height: 1.4;
}

a {
    color: #10406d;
    text-decoration: underline;
    text-decoration-style: wavy;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

a:hover {
    color: #000000;
}

.success-review {
    color: #000000;
    margin-bottom: 10px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    overflow-x: hidden;
}

.card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-xs {
    gap: 8px;
}

.gap-sm {
    gap: 12px;
}

.margin-x-xs {
    margin: 0 4px;
}

.margin-top-sm {
    margin-top: 12px;
}

.margin-top-md {
    margin-top: 20px;
}

.margin-top-lg {
    margin-top: 32px;
}

.margin-bottom-sm {
    margin-bottom: 12px;
}

.margin-bottom-md {
    margin-bottom: 20px;
}

.padding-md {
    padding: 20px;
}

.full-width {
    width: 100%;
}

.modal .buy-now-button {
    max-width: none !important;
    width: 100% !important;
}

.product-main-title {
	margin-bottom: 20px;
	font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    background: #fafafa;
	text-align: center;
    border-radius: 8px;
    padding: 10px 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.coupon-field,
.credit-field {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.coupon-field.animate-slide-in,
.credit-field.animate-slide-in {
    max-height: 200px;
    opacity: 1;
    padding: 0px 0 0px;
    transform: translateY(0);
}

.coupon-field.animate-slide-out,
.credit-field.animate-slide-out {
    max-height: 0;
    opacity: 0;
    padding: 0;
    transform: translateY(-10px);
}

.coupon-result {
    margin-top: 5px;
    font-size: 0.85em;
    padding: 5px 10px;
    border-radius: 6px;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    line-height: 1.4;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.coupon-result.animate-fade {
    opacity: 1;
}

.coupon-result.success {
    color: #2e7d32;
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
}

.coupon-result.error {
    color: #c62828;
    background-color: #ffebee;
    border: 1px solid #ffcdd2;
}

.coupon-result .original-price {
    text-decoration: line-through;
    color: #757575;
}

.coupon-result .discounted-price {
    color: #d32f2f;
    font-weight: 600;
}

.coupon-result .arrow {
    font-weight: 600;
    color: #424242;
}

.success-icon {
    color: #2e7d32;
    margin-right: 5px;
}

.error-icon {
    color: #c62828;
    margin-right: 5px;
}

.breadcrumbs {
    font-size: 14px;
    color: #777;
    background-color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    max-width: 1280px;
    margin: 20px auto;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 8px;
}

.breadcrumbs a {
    color: #1e2a44;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #000000;
}

.breadcrumbs .text-dark {
    color: #1e2a44;
    font-weight: 600;
}

.breadcrumbs .text-secondary {
    color: #777;
}

.product-details {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: hidden;
    box-sizing: border-box;
}

.product-gallery {
    flex: 0 0 50%;
    max-width: 600px;
}

.product-info {
    flex: 1;
    max-width: 50%;
    padding: 20px;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
}

.product-image-container-similar-products {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
}

.product-image,
.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}

.form-group {
    margin-bottom: 10px;
}
.form-group label {
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}
.form-input {
    border: 1px solid #ddd;
    padding: 6px;
    border-radius: 4px;
    font-size: 13px;
}

.bestseller-label,
.discount-label,
.bestseller-label-similar,
.discount-label-similar {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    display: inline-block;
    cursor: default;
}

.product-details .bestseller-label {
    background: linear-gradient(135deg, #e7f2e7, #d1e2d1);
    color: #1f4d1f;
    margin-right: 0px;
}

.product-details .discount-label {
    background: linear-gradient(135deg, #f5e9e9, #e9d9d9);
    color: #8b1e1e;
    margin-right: 0px;
}

.product-details .discount-label.with-bestseller {
    margin-left: 0px;
}

.product-image-container-similar-products .bestseller-label-similar {
    position: absolute;
    background-color: #2c9d3a;
    color: #ffffff;
    top: 10px;
    left: 10px;
    z-index: 10;
}

.product-image-container-similar-products .discount-label-similar {
    position: absolute;
    background-color: #ff4d4d;
    color: #ffffff;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.product-image-container-similar-products .discount-label-similar.with-bestseller-similar {
    top: 10px;
    right: 10px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.gallery-nav:hover {
    background-color: #1e2a44;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-left {
    left: 10px;
}

.gallery-nav-right {
    right: 10px;
}

.thumbnail-container {
    overflow-x: auto;
    padding-bottom: 8px;
    white-space: nowrap;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.thumbnail-container::-webkit-scrollbar {
    height: 8px;
}

.thumbnail-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.thumbnail-container::-webkit-scrollbar-thumb {
    background: #1e2a44;
    border-radius: 4px;
}

.thumbnail-container::-webkit-scrollbar-thumb:hover {
    background: #000000;
}

.thumbnail {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    display: inline-block;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: #1e2a44;
}

.video-container {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 12px;
}

.video-iframe,
.video-local {
    width: 100%;
    height: 100%;
    border: none;
}

.product-title-main {
    font-size: 24px;
    font-weight: 700;
    color: #1e2a44;
    margin-bottom: 8px;
    width: 90%;
}

.original-price {
    font-size: 18px;
    color: #ef4444;
    font-weight: 500;
    text-decoration: line-through;
}

.discounted-price,
.price-text {
    font-size: 24px;
    font-weight: 900;
    color: #1e2a44;
}

.availability-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
    cursor: default;
}

.text-green-similar-products {
    color: #2c9d3a;
    padding: 4px 0;
    margin-bottom: 10px;
}

.text-red-similar-products {
    color: #ff4d4d;
    padding: 4px 0;
    margin-bottom: 10px;
}

.text-secondary {
    color: #777;
    padding: 4px 0;
    margin-bottom: 10px;
}

.description {
    font-size: 14px;
    color: #1e2a44;
}

.warning-block {
    background-color: #fff3cd;
    padding: 12px;
    border-radius: 8px;
}

.warning-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e2a44;
    margin-bottom: 8px;
}

.warning-text {
    font-size: 14px;
    color: #1e2a44;
}

.buy-button-container {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.buy-now-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e2a44, #10406d);
    border: none;
    box-shadow: 0 4px 15px rgba(16, 64, 109, 0.3);
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 12px;
}

.buy-now-button .button-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.buy-now-button .buy-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
    color: #fff;
}

.buy-now-button .button-text {
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
}

.buy-now-button:hover:not(.disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 64, 109, 0.4);
}

.buy-now-button:hover:not(.disabled) .buy-icon {
    transform: scale(1.2);
}

.buy-now-button:active:not(.disabled) {
    transform: translateY(0);
}

.buy-now-button:active:not(.disabled) .button-pulse {
    width: 0;
    height: 0;
    opacity: 0;
}

.buy-now-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    background-size: 200% 100%;
    animation: shimmer 4s infinite linear;
    opacity: 1;
    z-index: 1;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.buy-now-button.disabled {
    background: linear-gradient(135deg, #e0e0e0, #cccccc);
    box-shadow: none;
    transform: none !important;
    cursor: not-allowed;
}

.buy-now-button.disabled::before {
    display: none;
}

.buy-now-button.disabled .buy-icon,
.buy-now-button.disabled .button-text {
    color: #999;
}

.buy-now-button.disabled .buy-icon {
    transform: none !important;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .buy-now-button {
        padding: 18px 24px;
        max-width: 100%;
    }
    
    .buy-now-button .button-text {
        font-size: 18px;
        display: inline-block;
    }
    
    .buy-now-button .buy-icon {
        font-size: 24px;
    }
    
    .buy-button-container {
        margin-top: 20px;
    }
}

.buy-now-button .button-pulse {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 0;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.product-button-similar-products {
    background: linear-gradient(135deg, #1e2a44, #2b3d5f);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    text-align: center;
    display: flex;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(30, 42, 68, 0.2);
    justify-content: center;
}

.product-button-similar-products::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transform: rotate(45deg);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.product-button-similar-products:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 12px rgba(30, 42, 68, 0.3);
    background: linear-gradient(135deg, #2b3d5f, #1e2a44);
	color: #fff;
}

.product-button-similar-products:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
    animation: shine 1.5s ease-in-out infinite; 
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translate(50%, 50%);
        opacity: 1;
    }
    100% {
        transform: rotate(45deg) translate(100%, 100%);
        opacity: 0;
    }
}

.product-button {
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    background-color: #1e2a44;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 100% !important;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.product-button:hover {
    background-color: #10406d;
    transform: translateY(-3px);
    box-shadow: 
        0 6px 16px rgba(16, 64, 109, 0.3),
        0 0 15px rgba(16, 64, 109, 0.4);
}

.product-button:active {
    transform: translateY(-1px);
}

.buy-icon {
    font-size: 18px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.product-button:hover .buy-icon {
    transform: scale(1.2);
}

.buy-now-button {
    background: linear-gradient(135deg, #1e2a44, #10406d);
    box-shadow: 0 6px 18px rgba(16, 64, 109, 0.3);
    position: relative;
    z-index: 1;
}

.buy-now-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 12px;
    z-index: -1;
}

.buy-now-button:hover::after {
    opacity: 1;
}

.product-button.disabled {
    background: linear-gradient(135deg, #e0e0e0, #cccccc);
    color: #999 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transform: none !important;
    cursor: not-allowed;
    opacity: 0.8;
    border: 2px solid rgba(200, 200, 200, 0.3);
    pointer-events: none;
    text-shadow: none;
}

.product-button.disabled .buy-icon {
    color: #999;
    filter: brightness(0.8);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .product-button {
        padding: 16px 32px;
        font-size: 17px;
        gap: 10px;
    }
    .buy-icon {
        font-size: 20px;
    }
}

.product-button-reviews {
    display: inline-block;
    background-color: #1e2a44;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.product-button-reviews:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.delivery-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e2a44;
    display: flex;
    align-items: center;
    gap: 8px;
}

.delivery-text {
    font-size: 14px;
    color: #1e2a44;
}

.importer-info {
    font-size: 12px;
    color: #777;
}

.share-block {
    margin-top: 20px;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e2a44;
    margin-bottom: 8px;
}

.share-links {
    display: flex;
    gap: 12px;
}

.share-icon {
    font-size: 20px;
}

.fake-visitors {
    background: linear-gradient(135deg, #f1f1f1, #e2e2e2);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-top: 8px;
    margin-bottom: 5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
    cursor: default;
    max-width: fit-content;
}

#visitor-text {
    font-weight: 900;
}

#visitor-count,
#visitor-word {
    color: #1e2a44;
    font-weight: bold;
    transition: opacity 0.3s ease;
	font-weight: 900;
}

.fake-visitors .material-icons {
    font-size: 18px;
}

.labels-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.attributes-section {
    margin-top: 32px;
    box-sizing: border-box;
    padding: 20px;
}

.attributes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.section-title {
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 15px;
}

.attribute-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e2a44;
    margin-bottom: 12px;
}

.attribute-table {
    width: 100%;
    border-collapse: collapse;
}

.attribute-table td {
    padding: 8px;
    font-size: 14px;
}

.attribute-name {
    color: #777;
    width: 40%;
    text-align: left;
}

.attribute-value {
    color: #1e2a44;
    text-align: right;
}

.bg-light {
    background-color: #f9f9f9;
}

.faq-section {
    margin-top: 32px;
}

.faq-item {
    margin-bottom: 12px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #1e2a44;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question .fa-chevron-up {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 12px;
    font-size: 14px;
    color: #1e2a44;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
    max-height: 1500px;
    padding: 12px;
}

.reviews-title {
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 15px;
}

.reviews-section {
    margin-top: 32px;
}

.rating-text {
    font-size: 14px;
    color: #1e2a44;
    margin-bottom: 8px;
}

.star-rating {
    display: flex;
    gap: 4px;
}

.star-rating i {
    font-size: 16px;
}

.text-yellow {
    color: #ffbf00;
}

.text-gray {
    color: #ccc;
}

.review-item {
    margin-bottom: 20px;
}

.review-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e2a44;
}

.review-date {
    font-size: 12px;
    color: #777;
}

.review-comment {
    font-size: 14px;
    color: #1e2a44;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 95vh;
    overflow-y: auto;
}

.modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal.closing .modal-content {
    transform: scale(0.8);
    opacity: 0;
}

.modal-close {
    position: absolute;
    top: 11px;
    right: 20px;
    font-size: 35px;
    color: #1e2a44;
    background: none;
    border: none;
    cursor: pointer;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e2a44;
    margin-bottom: 16px;
}

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

.form-group label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #1e2a44;
    margin-bottom: 6px;
    margin-top: 0px;
}

.form-input {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #1e2a44;
    outline: none;
}

.form-checkbox {
    margin-right: 8px;
}

.error-message {
    display: none;
    font-size: 12px;
    color: #ff4d4d;
    margin-top: 4px;
}

.review-rating i {
    cursor: pointer;
}

#successModal .modal-content,
#reviewSuccessModal .modal-content {
    max-height: 60vh;
    overflow-y: auto;
}

.accessory-section,
.similar-section {
    margin-top: 32px;
    box-sizing: border-box;
    margin-bottom: 32px;
}

.accessory-grid,
.similar-section .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
	align-items: end;
}

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card-content {
    padding: 16px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e2a44;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* min-height: 51px; */
}

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

.credit-price,
.credit-no-price {
    font-size: 15px;
    color: #1e2a44;
    margin-top: 0px;
}

.min-height {
    min-height: 20px;
}

.image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-popup.show {
    opacity: 1;
}

.popup-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    transform-origin: center center;
    transition: opacity 200ms ease;
}

.popup-image:active {
    cursor: grabbing;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Стили для навигации в попапе */
.image-popup .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.image-popup .gallery-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.image-popup .gallery-nav-left {
    left: 30px;
}

.image-popup .gallery-nav-right {
    right: 30px;
}

.image-popup .gallery-nav .material-icons {
    font-size: 24px;
    color: #1e2a44;
}

.popup-dot-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 90vw; 
    overflow-x: auto; 
    white-space: nowrap; 
}

.popup-dot-container::-webkit-scrollbar {
    display: none;
}

.popup-dot-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.popup-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.popup-dot.active {
    background: #ffffff;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.zoom-indicator {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.zoom-indicator.visible {
    opacity: 1;
}

.price-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.bestseller-label,
.discount-label,
.availability-text,
.fake-visitors {
    top: 12px;
    left: 12px;
    color: #555555;
    font-size: 13px;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 20px;
    /* border: 1px solid rgb(0 0 0 / 21%); */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); */
    transition: transform 0.3s ease;
    cursor: default;
}

.product-details .bestseller-label {
	background: linear-gradient(135deg, #e8eef6, #d3dbe6);
	color: #1e2a44;
    z-index: 10;
}

.product-details .discount-label.with-bestseller {
    margin-left: 0;
}

.availability-text.text-secondary {
    color: #777;
    padding: 4px 0;
    margin-bottom: 10px;
    display: block;
    border-radius: 0;
    box-shadow: none;
    min-height: auto;
    line-height: 1.2;
    font-weight: normal;
    background: none;
    font-size: 14px;
    text-align: left;
    margin-right: 0;
}

.availability-text.text-green {
    background: linear-gradient(135deg, #e7f2e7, #d1e2d1);
	color: #1f4d1f;
}

.availability-text.text-red {
    background: linear-gradient(135deg, #f1f1f1, #e2e2e2);
	color: #555555;
}

.availability-text.text-green-similar-products {
    color: #2c9d3a;
    padding: 4px 0;
    margin-bottom: 10px;
    display: block;
    border-radius: 0;
    box-shadow: none;
    min-height: auto;
    line-height: 1.2;
    font-weight: normal;
    background: none;
    font-size: 14px;
    text-align: left;
    margin-right: 0;
}

.availability-text.text-red-similar-products {
    color: #ff4d4d;
    padding: 4px 0;
    margin-bottom: 10px;
    display: block;
    border-radius: 0;
    box-shadow: none;
    min-height: auto;
    line-height: 1.2;
    font-weight: normal;
    background: none;
    font-size: 14px;
    text-align: left;
    margin-right: 0;
}

.formatted-description {
    font-size: 15px;
    line-height: 1.6;
    color: #1e2a44;
}

.formatted-description h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 12px 0 12px 0;
    color: #1e2a44;
}

.formatted-description h2 {
    font-size: 20px;
    font-weight: 900;
    margin: 10px 0 10px 0;
    color: #1e2a44;
}

.formatted-description h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 12px 0 8px 0;
    color: #1e2a44;
}

.formatted-description p {
    margin: 8px 0;
}

.formatted-description ul,
.formatted-description ol {
    margin: 8px 0;
    padding-left: 20px;
}

.formatted-description li {
    margin: 4px 0;
}

.formatted-description strong {
    font-weight: 700;
}

.formatted-description em {
    font-style: italic;
}

.formatted-description u {
    text-decoration: underline;
}

.formatted-description s {
    text-decoration: line-through;
}

.formatted-description a {
    color: #10406d;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.formatted-description a:hover {
    color: #000000;
}

/* Спиннер загрузки */
.popup-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
	
	.faq-question {
    font-size: 13px;
    font-weight: 500;
}
	
	.section-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
	line-height: 1.3;
	}
    .fake-visitors {
        font-size: 12px;
    }
    .text-secondary {
        color: #777;
        font-size: 13px;
    }
    .modal-title {
        font-size: 17px;
        font-weight: 700;
        color: #1e2a44;
        margin-bottom: 16px;
    }
    .availability-text {
        font-size: 14px;
        font-weight: 600;
    }
    .product-details {
        flex-direction: column;
        gap: 0px;
    }
    .product-gallery,
    .product-info {
        max-width: 100%;
        padding: 10px;
    }
    .product-image-container-similar-products {
        height: 230px;
    }
    .product-image-container {
        height: 300px;
    }
    .thumbnail {
        width: 48px;
        height: 48px;
    }
    .video-container {
        height: 150px;
    }
    .product-title-main {
        font-size: 20px;
    }
    .discounted-price,
    .price-text {
        font-size: 24px;
    }
    .original-price {
        font-size: 18px;
    }
    .product-card {
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .product-card:hover {
        transform: translateY(0px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .product-card-content {
        padding: 16px;
    }
    .product-button,
    .product-button-similar-products {
        padding: 10px 20px;
        font-size: 14px;
    }
    .card {
        box-shadow: none;
        border-radius: 8px;
        padding: 10px;
    }
    .attributes-grid {
        grid-template-columns: 1fr;
    }
    .accessory-grid,
    .similar-section .grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .product-image-container {
        height: 150px;
    }
    .product-title {
        font-size: 14px;
    }
    .reviews-title {
		font-size: 18px;
        font-weight: 900;
        margin: 0;
    }
    .modal-content {
        padding: 10px;
        max-height: 98vh;
    }
    .form-group {
        margin-bottom: 10px;
    }
    .form-group label {
        margin-bottom: 5px;
        margin-top: 0px;
        font-size: 13px;
    }
    .form-input {
        padding: 6px;
        font-size: 13px;
    }
    .modal-title {
        font-size: 18px;
    }
    .formatted-description {
        font-size: 12px;
    }
    .formatted-description h1 {
        font-size: 20px;
    }
    .formatted-description h2 {
        font-size: 20px;
		font-weight: 900;
    }
    .formatted-description h3 {
        font-size: 16px;
    }
    .coupon-field.animate-slide-in,
    .credit-field.animate-slide-in {
        max-height: 200px;
        opacity: 1;
        padding: 0px 0 0px;
        transform: translateY(0);
    }
    
    .popup-image {
        max-width: 95%;
        max-height: 85%;
    }
    
    .popup-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    .image-popup .gallery-nav {
        width: 45px;
        height: 45px;
    }
    
    .image-popup .gallery-nav-left {
        left: 20px;
    }
    
    .image-popup .gallery-nav-right {
        right: 20px;
    }
    
    .image-popup .gallery-nav .material-icons {
        font-size: 20px;
    }
    
.popup-dot-container {
        bottom: 20px;
        padding: 8px 12px;
        gap: 8px;
        max-width: 85vw;
        border-radius: 20px;
    }
    
    .popup-dot {
        width: 10px;
        height: 10px;
        flex-shrink: 0; 
    }
    
    .zoom-indicator {
        top: 20px;
        left: 20px;
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 5px;
    }
    .fake-visitors {
        font-size: 12px;
    }
	.product-main-title {
		font-size: 20px;
		font-weight: 900;
	}
    .text-secondary {
        color: #777;
        font-size: 13px;
    }
    .coupon-result .original-price {
        text-decoration: line-through;
        color: #757575;
        font-size: 15px;
    }
    .coupon-result .discounted-price {
        color: #d32f2f;
        font-weight: 600;
        font-size: 15px;
    }
    .modal-title {
        font-size: 17px;
        font-weight: 700;
        color: #1e2a44;
        margin-bottom: 16px;
    }
    .breadcrumbs {
        font-size: 12px;
        padding: 8px;
        margin: 10px auto;
    }
    .product-image-container {
        height: 250px;
    }
    .product-image-container-similar-products {
        height: 220px;
    }
    .thumbnail {
        width: 40px;
        height: 40px;
    }
    .video-container {
        height: 190px;
    }
    .product-title-main {
        font-size: 20px;
    }
    .discounted-price,
    .price-text {
        font-size: 24px;
    }
    .original-price {
        font-size: 18px;
    }
    .product-button,
    .product-button-similar-products {
        padding: 8px 16px;
        font-size: 17px;
    }
    .product-button-reviews {
        display: inline-block;
        background-color: #1e2a44;
        color: #ffffff;
        font-size: 12px;
        font-weight: 600;
        padding: 6px 12px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
    .product-button-reviews:hover {
        background-color: #000000;
        color: #ffffff;
        transform: translateY(-2px);
    }
    .delivery-title,
    .share-title {
        font-size: 14px;
    }
    .delivery-text,
    .description,
    .warning-text {
        font-size: 12px;
    }
    .accessory-grid,
    .similar-section .grid {
        grid-template-columns: 1fr;
    }
    .product-image-container {
        height: 220px;
    }
    .product-title {
        font-size: 17px;
    }
    .modal-content {
        padding: 20px;
        max-height: 98vh;
    }
    .form-group label {
        font-size: 12px;
    }
    .form-input {
        font-size: 12px;
    }
    .modal-title {
        font-size: 16px;
    }
    .formatted-description {
        font-size: 14px;
    }
    .formatted-description h1 {
        font-size: 20px;
    }
    .formatted-description h2 {
        font-size: 20px;
		font-weight: 900;
    }
    .formatted-description h3 {
        font-size: 16px;
    }
    .coupon-field.animate-slide-in,
    .credit-field.animate-slide-in {
        max-height: 200px;
        opacity: 1;
        padding: 0px 0 0px;
        transform: translateY(0);
	}
	.popup-dot-container {
        bottom: 15px;
        padding: 6px 10px;
        gap: 6px;
        max-width: 80vw; 
        border-radius: 15px;
    }
    
    .popup-dot {
        width: 8px;
        height: 8px;
        flex-shrink: 0; 
    }
}

.breadcrumbs-enhanced {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin: 20px auto;
    max-width: 1280px;
    border: 1px solid rgba(30, 42, 68, 0.08);
}

breadcrumbs-container.breadcrumbs-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;       
    overflow: visible;        
    white-space: nowrap;     
}

.scrollable-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0px;                 
    overflow-x: auto;         
    white-space: nowrap;      
    flex-grow: 1;            
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;    
}

.scrollable-breadcrumbs::-webkit-scrollbar {
    height: 6px;
}

.scrollable-breadcrumbs::-webkit-scrollbar-track {
    background: transparent;
}

.scrollable-breadcrumbs::-webkit-scrollbar-thumb {
    background: #1e2a44;
    border-radius: 3px;
}

.scrollable-breadcrumbs::-webkit-scrollbar-thumb:hover {
    background: #10406d;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    background-color: #f2f2f4;
    border: none;
    border-radius: 8px;
    color: #1e2a44;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 50px;
}

.nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 42, 68, 0.05) 0%, rgba(30, 42, 68, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.nav-button:hover {
    /* transform: translateY(-2px);
    /* box-shadow: 0 4px 12px rgba(30, 42, 68, 0.15); */
    background-color: #f5f5f5;
}

.nav-button:hover::before {
    opacity: 1;
}

.nav-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(30, 42, 68, 0.1);
}

.nav-button .material-icons {
    font-size: 18px;
    color: #1e2a44;
}

.button-text {
    font-family: 'Poppins', sans-serif;
}

.nav-button .material-icons,
.nav-button .button-text {
    color: #1e2a44;
    position: relative;
    z-index: 2;
}

.home-button {
    position: relative;
}

.breadcrumbs-divider {
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, transparent, rgba(30, 42, 68, 0.2), transparent);
    margin: 0 8px;
    min-width: 1px;
    opacity: 1;
}

.breadcrumb-arrow {
    color: #94a3b8;
    font-size: 16px;
    margin: 0 8px;
    font-weight: 300;
}

.current-page {
    color: #1e2a44;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 12px;
    background: rgba(30, 42, 68, 0.05);
    border-radius: 6px;
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumbs-enhanced {
    animation: slideInFromTop 0.4s ease-out;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (min-width: 769px) {
    .nav-button[title] {
        position: relative;
    }
    
    .nav-button[title]:hover:after {
        content: attr(title);
        position: absolute;
        bottom: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%);
        background: rgba(30, 42, 68, 0.95);
        color: white;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 400;
        white-space: nowrap;
        z-index: 1000;
        pointer-events: none;
        opacity: 0;
        animation: tooltipFadeIn 0.3s ease forwards;
        animation-delay: 0.5s;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 768px) {
    .breadcrumbs-enhanced {
        padding: 10px 12px;
        margin: 15px auto;
    }
    .breadcrumbs-container {
        gap: 8px;
    }
    
    .scrollable-breadcrumbs {
        gap: 8px;
        ::-webkit-scrollbar {
            display: none;
        }
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .breadcrumb-list {
        gap: 0px;
    }
    
    .breadcrumb-item {
        font-size: 13px;
    }
    
    .breadcrumb-arrow {
        margin: 0 6px;
    }
    .nav-button {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .nav-button .material-icons {
        font-size: 16px;
    }
    
    .button-text {
        display: inline;
    }
    
    .current-page {
        font-size: 13px;
        padding: 6px 10px;
        max-width: 250px;
    }
    
    .breadcrumb-arrow {
        font-size: 14px;
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .breadcrumbs-enhanced {
        padding: 8px 10px;
        margin: 10px auto;
        border-radius: 8px;
    }
    .breadcrumbs-container {
        gap: 6px;
    }
    
    .scrollable-breadcrumbs {
        gap: 6px;
        ::-webkit-scrollbar {
            display: none;
        }
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .breadcrumb-list {
        gap: 0px;
    }
    
    .breadcrumb-item {
        font-size: 12px;
    }
    
    .breadcrumb-arrow {
        margin: 0 4px;
    }
    .breadcrumbs-container {
        gap: 8px;
    }
    
    .nav-button {
        padding: 6px 8px;
        font-size: 12px;
        border-radius: 6px;
    }
    
    .nav-button .material-icons {
        font-size: 16px;
    }
    
    .button-text {
        display: none;
    }
    
    .breadcrumbs-divider {
        height: 20px;
        margin: 0 2px;
    }
    
    .current-page {
        font-size: 12px;
        padding: 5px 8px;
        max-width: 180px;
    }
    
    .breadcrumb-arrow {
        font-size: 12px;
        margin: 0 4px;
    }
}
.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 3px;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.breadcrumb-list a{
    color: #10406d;
    text-decoration: underline;
    /* text-decoration-style: wavy; */
    /* text-underline-offset: 5px; */
    transition: color 0.3s ease;
}
.breadcrumb-list::-webkit-scrollbar {
    height: 4px;
}
.breadcrumb-list::-webkit-scrollbar-thumb {
    background: #1e2a44;
    border-radius: 2px;
}
@media (max-width: 768px) {
    .nav-button {
        padding: 6px 10px;
        font-size: 13px;
        min-width: 45px;
        justify-content: center;
    }
    
    .nav-button .material-icons {
        font-size: 18px;
        margin: 0 auto;
    }
    
    .button-text {
        display: inline;
    }
    
    .breadcrumbs-divider {
        margin: 0 6px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .nav-button {
        padding: 6px 8px;
        font-size: 12px;
        min-width: 40px;
        justify-content: center;
    }
    
    .nav-button .material-icons {
        font-size: 16px;
        margin: 0;
    }
    
    .button-text {
        display: none;
    }
    
    .breadcrumbs-divider {
        margin: 0 4px;
        height: 18px;
        background: rgba(30, 42, 68, 0.3);
    }
}
.breadcrumb-text {
    color: #1e2a44;
    font-size: 14px;
    font-weight: 500;
    cursor: default;
    text-decoration: none;
}

.savings-calculator {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-top: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.calculator-title {
    font-size: 16px;
    color: #343a40;
    margin: 0;
    padding: 12px 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.2s ease, border-bottom 0.3s ease;
    user-select: none;
}

.calculator-title.open {
    border-bottom: 1px solid #dee2e6;
}

.calculator-title.closed {
    border-bottom: none;
}

.calculator-title:hover {
    background: #f8f9fa;
}

.toggle-icon {
    font-size: 20px;
    color: #6c757d;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#calculatorContent {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 16px;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-10px);
    border-bottom: none;
}

#calculatorContent.show {
    max-height: 100%;
    opacity: 1;
    padding: 16px;
    transform: translateY(0);
    border-bottom: none;
}

#calculatorContent .form-group {
    margin-bottom: 12px;
}

#calculatorContent .form-group label {
    font-size: 13px;
    color: #495057;
    margin-bottom: 4px;
    font-weight: 500;
    display: block;
}

#calculatorContent .form-input {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#calculatorContent .form-input:focus {
    border-color: #1e2a44;
    outline: none;
    box-shadow: 0 0 0 2px rgba(30, 42, 68, 0.1);
}

.product-button-fuel {
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    background: linear-gradient(135deg, #1e2a44, #10406d);
    border: 1px solid #1e2a44;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.product-button-fuel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.product-button-fuel:hover {
    background: linear-gradient(135deg, #1e2a44, #10406d);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 12px rgba(30, 42, 68, 0.25);
    border-color: #2c3e50;
}

.product-button-fuel:hover::before {
    left: 100%;
}

.product-button-fuel:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease;
}

.result-block {
    margin-top: 12px;
    font-size: 16px;
    color: #28a745;
    font-weight: 700;
    padding: 8px 12px;
    background: #f8fff9;
    border: 1px solid #d4edda;
    border-radius: 6px;
    text-align: center;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-block.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.prices-info {
    font-size: 11px;
    color: #6c757d;
    margin-top: 8px;
    line-height: 1.3;
    text-align: left;
    font-style: italic;
}

@media (max-width: 768px) {
    .calculator-title {
        font-size: 15px;
        padding: 10px 14px;
    }
    
    .toggle-icon {
        font-size: 18px;
    }
    
    #calculatorContent.show {
        max-height: 100%;
        padding: 14px;
    }
    
    #calculatorContent .form-input {
        padding: 7px 10px;
        font-size: 13px;
    }
    
    .product-button-fuel {
        padding: 9px 16px;
        font-size: 13px;
    }
    
    .product-button-fuel:hover {
        transform: translateY(-1px) scale(1.01);
    }
    
    .result-block {
        font-size: 15px;
        padding: 7px 10px;
    }
    
    .prices-info {
        font-size: 10px;
		text-align: center;
    }
}

@media (max-width: 480px) {
    .calculator-title {
        font-size: 14px;
        padding: 9px 12px;
    }
    
    #calculatorContent.show {
        max-height: 100%;
        padding: 12px;
    }
    
    .result-block {
        font-size: 14px;
    }
    
    .product-button-fuel:hover {
        transform: translateY(-1px) scale(1.005);
    }
}

.product-pricing-tabs {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.product-pricing-tabs::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.01), transparent);
    transition: left 1.2s ease;
    pointer-events: none;
}

.product-pricing-tabs:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    border-color: #e8e8e8;
}

.product-pricing-tabs:hover::after {
    left: 100%;
}

.pricing-unified-header {
    padding: 10px 20px;
    background: #fafafa;
    /* border-bottom: 1px solid #f8f8f8; */
    position: relative;
}

.pricing-unified-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f0f0f0, transparent);
}

.pricing-main-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pricing-product-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
    position: relative;
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s both;
}

.pricing-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.pricing-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid transparent;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: default;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.6s ease;
}

.pricing-badge:hover::before {
    left: 100%;
}

.pricing-badge.bestseller {
    background: #fffaf0;
    color: #8b4513;
    border: 1px solid #f5d6b4;
    font-weight: 500;
}

.pricing-badge.availability.available {
    background: #f0f7f4;
    color: #2d5016;
    border: 1px solid #d1e8df;
    font-weight: 500;
}

.pricing-badge.availability.unavailable {
    background: #f9f9f9;
    color: #7a7a7a;
    border: 1px solid #e6e6e6;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-badge.discount {
    background: #fdf0f0;
    color: #8b1010;
    border: 1px solid #f5c6c6;
    font-weight: 600;
}

.pricing-visitors {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: fit-content;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.pricing-visitors:hover {
    background: #fdfdfd;
    border: 1px solid #dcdcdc;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.pricing-badge.bestseller:hover,
.pricing-badge.availability.available:hover,
.pricing-badge.discount:hover {
    background: #fffbf7;
    border: 1px solid #eccba5;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pricing-badge.availability.unavailable:hover {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    transform: translateY(-1px);
}

.visitors-count {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
}

.visitors-label {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pricing-tabs-nav {
    display: flex;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.pricing-tabs-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% / 3);
    height: 2px;
    background: #1a1a1a;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: left;
    transform: translateX(0%);
}

.pricing-tabs-nav[data-active="0"]::after {
    transform: translateX(0%);
}

.pricing-tabs-nav[data-active="1"]::after {
    transform: translateX(100%);
}

.pricing-tabs-nav[data-active="2"]::after {
    transform: translateX(200%);
}

.pricing-tab-btn {
    flex: 1;
    padding: 20px 16px;
    background: transparent;
    border: none;
    font-size: 20px;
    font-weight: 500;
    color: #999999;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-tab-btn:hover {
    color: black;
	background: #8b8b8b2e;
	font-weight: 900;
}

.pricing-tab-btn:hover::before {
    opacity: 0;
}

.pricing-tab-btn.active {
    color: #1a1a1a;
    font-weight: 900;
    background: #ffffff;
}

.pricing-tabs-content {
    position: relative;
    background: #ffffff;
}

.pricing-tab-panel {
    display: none;
    padding: 20px;
    animation: slideInFromRight 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pricing-tab-panel.active {
    display: block;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pricing-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 10px 10px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1a1a1a, transparent);
    transition: left 0.8s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: #e8e8e8;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card.centered {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
}

.pricing-card-header {
    font-size: 16px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.pricing-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 85px;
    gap: 8px;
    justify-content: space-between;
}

.pricing-old {
    font-size: 24px;
    color: #ff7474;
    text-decoration: line-through;
    font-weight: 300;
}

.pricing-new,
.pricing-main {
    font-size: 24px;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.pricing-installment {
    font-size: 24px;
    font-weight: 900;
    color: #00b359;
    letter-spacing: -0.3px;
}

.pricing-note {
    font-size: 13px;
    color: #00b359;
    background: #f8fff9;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #e8f5e8;
}

.pricing-contact-card {
    grid-column: 1 / -1;
    background: #fffef7;
    border: 1px solid #f5f3e0;
    border-radius: 4px;
    padding: 32px;
    text-align: center;
    color: #b8860b;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.loan-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.loan-header {
    text-align: center;
}

.loan-title {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.3px;
}

.loan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.loan-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 16px 16px;
    text-align: center;
    /* cursor: pointer; */
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.loan-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #1a1a1a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.loan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border-color: #e8e8e8;
}

.loan-card:hover::after {
    transform: scaleX(1);
}

/* .loan-card.selected { */
    /* background: #1a1a1a; */
    /* color: white; */
    /* border-color: #1a1a1a; */
    /* transform: translateY(-2px); */
    /* box-shadow: 0 8px 32px rgba(26, 26, 26, 0.2); */
/* } */

/* .loan-card.selected::after { */
    /* background: #ffffff; */
    /* transform: scaleX(1); */
/* } */

.loan-card-period {
    font-size: 15px;
    font-weight: 600;
    color: #9b0e0e;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* .loan-card.selected .loan-card-period { */
    /* color: #cccccc; */
/* } */

.loan-card-payment {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0px;
    letter-spacing: -0.3px;
}

/* .loan-card.selected .loan-card-payment { */
    /* color: white; */
/* } */

.loan-card-total {
    font-size: 13px;
    color: #626262;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* .loan-card.selected .loan-card-total { */
    /* color: #cccccc; */
/* } */

.loan-info-panel {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 10px;
}

.loan-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.loan-info-item {
    text-align: center;
    padding: 16px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f8f8f8;
}

.loan-info-item:hover {
    transform: translateY(-1px);
}

.loan-info-value {
    display: block;
    font-size: 17px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0px;
    letter-spacing: -0.2px;
}

.loan-info-label {
    font-size: 13px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.savings-calculator-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.savings-title {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    text-align: center;
    letter-spacing: -0.3px;
}

.savings-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.savings-grid {
    display: grid;
		grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.savings-form-group {
    margin: 0;
}

.savings-form-group label {
    font-size: 12px;
    color: #666666;
    margin-bottom: 12px;
    font-weight: 600;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.savings-form-input {
    width: 100%;
    padding: 16px 16px;
    font-size: 16px;
    border: 1px solid #c9c9c9;
    /* border-bottom: 1px solid #f0f0f0; */
    background: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: inherit;
    font-weight: 500;
    color: #1a1a1a;
    box-sizing: border-box;
    letter-spacing: -0.2px;
}

.savings-form-input::placeholder {
    color: #cccccc;
    font-weight: 400;
}

.savings-form-input:focus {
    border-bottom-color: #1a1a1a;
    outline: none;
    background: #fafafa;
}

.savings-calculate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 20px 40px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #1a1a1a;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.savings-calculate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.8s ease;
}

.savings-calculate-btn:hover::before {
    left: 100%;
}

.savings-calculate-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(26, 26, 26, 0.3);
}

.savings-result-block {
    margin-top: 0px;
    font-size: 20px;
    font-weight: 600;
    padding: 10px;
    background: #f8fff9;
    border: 1px solid #e8f5e8;
    border-radius: 4px;
    text-align: center;
    display: none;
    color: #00b359;
    animation: fadeInScale 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    letter-spacing: -0.3px;
}

.savings-result-block.show {
    display: block;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.savings-prices-info {
    font-size: 11px;
    color: #565656;
    margin-top: 0px;
    line-height: 1.6;
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .pricing-unified-header {
        padding: 24px;
    }
    
	.savings-result-block {
    font-size: 15px;
    font-weight: 300;
}
	
    .pricing-product-title {
        font-size: 24px;
    }
    
	.pricing-card-header {
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
	}
	
	.pricing-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 10px 10px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
	}
	
	.pricing-old {
    font-size: 24px;
    color: #ff7474;
    text-decoration: line-through;
    font-weight: 200;
	}
	
	.loan-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
	}
	
	.loan-card-period {
    font-size: 15px;
    font-weight: 600;
    color: #9b0e0e;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
	}
	
	.savings-title {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    text-align: center;
    letter-spacing: -0.3px;
	}
	
	.loan-title {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.3px;
	}
	
    .pricing-meta-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .pricing-badges {
        justify-content: center;
        gap: 8px;
    }
    
    .pricing-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .pricing-visitors {
        align-self: center;
        font-size: 11px;
        padding: 8px 14px;
    }
    
    .pricing-tab-btn {
        padding: 16px 12px;
        font-size: 14px;
    }
	
	.pricing-tab-btn:hover {
    color: #1a1a1a;
	}
    
	.pricing-tab-btn {
	  -webkit-tap-highlight-color: transparent;
	  background-color: inherit;
	}
	
	.pricing-tab-btn:hover::before {
    opacity: 0;
}
	
    .pricing-tab-panel {
        padding: 10px;
    }
    
    .pricing-display {
		grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    .pricing-new,
    .pricing-main {
        font-size: 28px;
    }
    
    .loan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .loan-card {
        padding: 12px 12px;
    }
    
    .loan-card-payment {
        font-size: 18px;
    }
    
    .loan-info-grid {
		grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        text-align: center;
    }
    
    .savings-grid {
		grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .savings-form-input {
        padding: 14px 0;
    }
    
    .savings-calculate-btn {
        padding: 18px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .pricing-unified-header {
        padding: 20px;
    }
    
	.pricing-card-header {
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
	}
	
	.pricing-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 10px 10px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
	}
	
	.pricing-old {
    font-size: 24px;
    color: #ff7474;
    text-decoration: line-through;
    font-weight: 200;
	}
	
	.loan-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
	}
	
	.loan-card-period {
    font-size: 15px;
    font-weight: 600;
    color: #9b0e0e;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
	}
	
	.savings-title {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    text-align: center;
    letter-spacing: -0.3px;
	}
	
	.loan-title {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.3px;
	}
	
    .pricing-product-title {
        font-size: 24px;
        text-align: center;
    }
    
    .pricing-badge {
        font-size: 13px;
        padding: 4px 10px;
    }
    
    .pricing-visitors {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .pricing-tab-btn {
        padding: 14px 8px;
        font-size: 14px;
    }
    
	.pricing-tab-btn:hover {
    color: #1a1a1a;
	background: none;
	}
	
	.pricing-tab-btn {
	  -webkit-tap-highlight-color: transparent;
	  background-color: inherit;
	}
	
	.pricing-tab-btn:hover::before {
    opacity: 0;
}
	
    .pricing-tab-panel {
        padding: 10px;
    }
    
    .pricing-new,
    .pricing-main {
        font-size: 24px;
    }
    
    .loan-grid {
		grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    .loan-card-payment {
        font-size: 16px;
    }
    
    .savings-form-input {
        padding: 12px 12px;
        font-size: 14px;
    }
    
    .savings-calculate-btn {
        padding: 16px 24px;
        font-size: 16px;
    }
}