header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(149, 117, 135, 0.1);
    border-bottom: 1px solid #e8dce1;
    padding: 10px 73px;
}
.grooming-salon-btn {
    background: #d4a6b5;
    color: white !important;
    padding: 8px 15px;
    border-radius: 5px;
    margin-right: 15px;
    transition: background-color 0.3s ease;
}
.grooming-salon-btn:hover {
    background: #c895a6;
    color: white !important;
}
.shop-development-notice {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #d4a6b5;
    border-radius: 15px;
    padding: 30px;
    margin: 20px auto;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.development-content h3 {
    color: #8c6b7a;
    margin-bottom: 15px;
    font-size: 1.5em;
}
.manager-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}
.contact-phone {
    font-size: 1.2em;
    font-weight: bold;
    color: #5a4a4f;
}
.contact-socials {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}
.social-btn:hover {
    transform: translateY(-2px);
}
.social-btn.whatsapp {
    background: #25D366;
    color: white;
}
.social-btn.telegram {
    background: #0088cc;
    color: white;
}
.social-btn img {
    width: 20px;
    height: 20px;
}
@media (max-width: 768px) {
    .shop-development-notice {
        margin: 15px;
        padding: 20px;
    }
    .contact-socials {
        flex-direction: column;
        width: 100%;
    }
    .social-btn {
        justify-content: center;
    }
}
.new-products {
    padding: 40px 20px;
    background-color: #ffffff;
}
.shop-main {
    overflow: hidden !important;
}
.new-products h2 {
    text-align: center;
    color: #8c6b7a;
    font-size: 32px;
    margin-bottom: 30px;
}
.shop-main {
    padding: 5px;
    background-color: #f2e9ed;
}
.shop-container {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}
.filters-sidebar {
    width: 280px;
    background: white !important;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(149, 117, 135, 0.1);
    border: 1px solid #e8dce1;
    height: fit-content;
    transition: all 0.3s ease;
    z-index: 100;
}
.filters-sidebar h3 {
    color: #8c6b7a;
    margin-bottom: 20px;
    border-bottom: 2px solid #e8dce1;
    padding-bottom: 10px;
}
.filter-group {
    margin-bottom: 20px;
}
.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #5a4a4f;
}
.filter-group select,
.filter-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #e8dce1;
    border-radius: 5px;
    background-color: #ffffff;
}
.price-range {
    display: flex;
    gap: 10px;
}
.price-range input {
    flex: 1;
}
.filter-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}
.products-area {
    flex: 1;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
}
.product-card {
    padding: 12px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 230px;
    height: 350px;
}
.product-card:hover {
    border-color: #8a737a;
    transform: none !important;
    box-shadow: 0 8px 25px rgba(138, 115, 122, 0.15);
}
.product-card .product-image img {
    transition: transform 0.3s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.1);
}
.product-card:active {
    transform: scale(0.98);
}
.product-image {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f8f8;
    margin-bottom: 10px;
}
.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.product-brand-overlay {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    color: #8c6b7a;
    font-weight: 600;
    z-index: 2;
}
.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #666;
    border-radius: 8px;
}
.product-brand {
    font-size: 12px;
    color: #8c6b7a;
    text-align: left;
    margin-bottom: 5px;
    padding: 0 5px;
    white-space: pre-line;
}
.product-name {
    font-size: 0.95em;
    margin: 0 0 8px 0;
    line-height: 1.3;
    min-height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
}
.product-price {
    font-weight: bold;
    color: #8a737a;
    font-size: 1.1em;
    white-space: nowrap;
}
.new-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #4CAF50;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}
.add-to-cart-btn {
    background: #8a737a;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.add-to-cart-btn:hover {
    background: #c895a6;
}
.add-to-cart-btn:hover:not(:disabled) {
    background: #7a636a;
    transform: translateY(-1px);
}
.add-to-cart-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}
.cart-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #d4a6b5 0%, #c895a6 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(212, 166, 181, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
    min-width: 140px;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: none;
}
.cart-fab:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(212, 166, 181, 0.5);
}
.cart-icon {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}
#cart-total {
    font-weight: bold;
}
.cart-modal {
    max-width: 500px;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
}
.cart-modal .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #8c6b7a;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1003;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cart-modal .close:hover {
    background: white;
    color: #d4a6b5;
}
.cart-modal h2 {
    background: linear-gradient(135deg, #d4a6b5 0%, #c895a6 100%);
    color: white;
    margin: 0;
    padding: 20px;
    font-size: 24px;
    text-align: center;
}
.cart-items {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px;
}
.cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #faf7f8;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.cart-item:hover {
    border-color: #e8dce1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.cart-item-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
    flex-shrink: 0;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.cart-item-info {
    flex: 1;
    min-width: 0;
}
.cart-item-name {
    font-weight: 600;
    color: #5a4a4f;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.cart-item-price {
    color: #d4a6b5;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
}
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}
.quantity-btn {
    background: white;
    border: 1px solid #e8dce1;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: #8c6b7a;
    transition: all 0.3s ease;
}
.quantity-btn:hover {
    background: #f2e9ed;
    border-color: #d4a6b5;
}
.cart-item-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffe6ea;
    color: #ff6b81;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}
.cart-item:hover .cart-item-remove {
    opacity: 1;
}
.cart-item-remove:hover {
    background: #ff6b81;
    color: white;
}
.cart-total {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e8dce1;
    margin-top: 10px;
}
.cart-total strong {
    font-size: 20px;
    color: #5a4a4f;
}
#cart-total-price {
    color: #d4a6b5;
    font-weight: bold;
    font-size: 24px;
}
.cart-actions {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-top: 1px solid #e8dce1;
}
.cart-actions button {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary {
    background: linear-gradient(135deg, #d4a6b5 0%, #c895a6 100%);
    color: white;
}
.btn-secondary {
    background: white;
    color: #8c6b7a;
    border: 2px solid #e8dce1;
}
.btn-secondary:hover {
    background: #faf7f8;
    border-color: #d4a6b5;
}
.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #8c6b7a;
    font-size: 16px;
}
.empty-cart::before {
    content: '🛒';
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
    opacity: 0.5;
}
.btn-primary:disabled {
    background: #e8dce1;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #c895a6 0%, #b88495 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 166, 181, 0.3);
}
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(90, 74, 79, 0.9);
    z-index: 1002;
    overflow: hidden;
}
.product-modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #faf7f8;
    border-radius: 15px;
    padding: 30px;
    overflow-y: auto;
    display: flex;
    gap: 30px;
    width: 1300px;
    height: 650px;
}
.product-modal .close {
    color: #8c6b7a;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1003;
    transition: color 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: none;
}
.product-modal .close:hover {
    color: #d4a6b5;
    background: rgba(255, 255, 255, 1);
}
.product-modal-images {
    flex: 1;
    position: relative;
}
.slider-wrapper::-webkit-scrollbar {
    display: none;
}
#new-products-slider {
    display: flex;
    gap: 15px;
}
.product-modal-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
}
.slider-arrow-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}
.slider-arrow-btn:hover {
    background: rgba(255, 255, 255, 1);
}
.slider-arrow-btn img {
    width: 20px;
    height: 20px;
}
.product-modal-slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    z-index: 10;
}
.product-modal-slider-track {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}
.product-modal-slide {
    min-width: 100%;
    height: 100%;
}
.product-modal-slide img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 10px;
    background: #f8f8f8;
}
.product-modal-slider-nav {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.product-modal-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.product-modal-slider-dot.active {
    background: white;
}
.product-modal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-modal-brand {
    font-size: 14px;
    color: #8c6b7a;
    margin-bottom: 5px;
}
.product-modal-name {
    font-size: 24px;
    font-weight: bold;
    color: #5a4a4f;
    margin-bottom: 15px;
}
.product-modal-description {
    color: #5a4a4f;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 13px;
    overflow-y: auto;
}
.product-modal-price-section {
    background: #f8f9fa;
    padding: 10px 0 5px 20px;
    border-radius: 8px;
    border-left: 4px solid #d4a6b5;
}
.product-modal-price {
    font-size: 28px;
    font-weight: bold;
    color: #d4a6b5;
    margin-bottom: 15px;
}
.product-modal-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}
.quantity-controls button {
    background: #f2e9ed;
    border: 1px solid #e8dce1;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.quantity-controls span {
    font-size: 18px;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}
.product-modal-add-btn {
    background: #d4a6b5;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
}
.product-modal-add-btn:hover {
    background: #c895a6;
}
.product-modal-add-btn:disabled {
    background: #e8dce1;
    cursor: not-allowed;
}
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1001;
    padding: 80px 20px 20px;
    overflow-y: auto;
}
.mobile-nav.active {
    display: block;
}
.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.mobile-nav li {
    border-bottom: 1px solid #e8dce1;
}
.mobile-nav a {
    display: block;
    padding: 15px 20px;
    color: #5a4a4f;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: left;
}
.mobile-nav a:hover {
    background: #f8f9fa;
    color: #d4a6b5;
}
.mobile-nav-contacts {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e8dce1;
}
.mobile-contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.mobile-contacts-left,
.mobile-contacts-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-phone {
    font-weight: bold;
    color: #5a4a4f;
    font-size: 14px;
    cursor: pointer;
}
.mobile-social-icons {
    display: flex;
    gap: 10px;
}
.mobile-social-icons img {
    width: 20px;
    height: 20px;
}
.mobile-address,
.mobile-hours {
    font-size: 13px;
    color: #5a4a4f;
    line-height: 1.4;
}
footer {
    background-color: #fff;
    text-align: center;
    padding: 40px 20px 20px;
    border-top: 1px solid #e8dce1;
    color: #8c6b7a;
    margin-top: 40px;
}
.footer-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 800px;
    margin: 0 auto 30px;
}
.footer-block {
    text-align: left;
}
.footer-block h3 {
    color: #8c6b7a;
    margin-bottom: 15px;
    font-size: 18px;
}
.footer-block p {
    margin: 8px 0;
    color: #5a4a4f;
}
.copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #8c6b7a;
}
.close-filters {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #8c6b7a;
    z-index: 1001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f2e9ed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.shop-preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-content {
    text-align: center;
}
.preloader-logo h1 {
    font-family: 'Kalleco', serif;
    font-size: 48px;
    color: #d4a6b5;
    margin: 0 0 10px 0;
    animation: pulse 2s infinite;
}
.preloader-logo span {
    font-size: 16px;
    color: #8c6b7a;
    display: block;
    font-family: 'Tilda';
}
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e8dce1;
    border-top: 4px solid #d4a6b5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto 0;
}
.product-modal-sku {
    font-size: 14px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid #e8dce1;
    font-family: monospace;
    width: 200px;
    margin-right: 70px;
}
.product-subcategories {
    margin: 15px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}
.product-subcategories h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}
.subcategory-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.subcategory-item {
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 80px;
}
.subcategory-item:hover {
    border-color: #007bff;
}
.subcategory-item.active {
    border-color: #007bff;
    background-color: #e3f2fd;
}
.subcategory-name {
    font-weight: 500;
    color: #333;
}
.subcategory-price {
    font-weight: bold;
    color: #28a745;
    margin-left: 10px;
}
.cart-item-subcategory {
    font-size: 14px;
    color: #666;
    margin-top: 2px;
}
@media (max-width: 768px) {
    .product-modal-sku {
        font-size: 12px;
        padding: 3px 6px;
        margin-bottom: 10px;
        width: 150px;
    }
}
@media (min-width: 769px) {
    .filters-sidebar {
        position: sticky;
        left: calc(50% - 700px + 20px);
        width: 280px;
        z-index: 100;
        height: calc(100vh - 105px);
        overflow-y: auto;
        align-self: flex-start;
    }
    .shop-container {
        position: relative;
    }
    .cart-modal {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        max-width: 500px !important;
        width: auto !important;
    }
}
@media (max-width: 768px) {
    .cart-modal {
        width: 90%;
        max-height: 80vh;
        margin: 10vh auto;
    }
    .cart-items {
        max-height: 50vh;
        padding: 15px;
    }
    .cart-item {
        padding: 12px;
    }
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    .cart-item-name {
        font-size: 13px;
        -webkit-line-clamp: 1;
    }
    .cart-item-remove {
        opacity: 1;
        position: relative;
        top: auto;
        right: auto;
        margin-left: 10px;
        flex-shrink: 0;
    }
    .cart-actions {
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .filters-ghost {
        display: none;
    }
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@media (max-width: 768px) {
    .product-card-footer {
        flex-direction: column;
        gap: 5px;
        margin-top: 5px;
    }
}
@media (min-width: 769px) {
    .close-filters {
        display: none;
    }
}
@media (max-width: 768px) {
    .slider-arrow-btn {
        width: 35px;
        height: 35px;
    }
    .slider-arrow-btn img {
        width: 16px;
        height: 16px;
    }
    header {
        padding: 10px 20px;
    }
    .product-modal .close {
        z-index: 1003;
        position: fixed;
        top: 20px;
        right: 20px;
    }
    .shop-container {
        flex-direction: column;
        gap: 15px;
    }
    .filters-sidebar {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 400px;
        max-height: 80vh;
        z-index: 1003;
        display: none;
        overflow-y: auto;
        background: white;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    .filters-sidebar.active {
        display: block;
    }
    .filters-sidebar::before {
        display: none !important;
    }
    .filters-toggle {
        position: fixed;
        bottom: 30px;
        right: 20px;
        left: auto;
        background: #d4a6b5;
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 25px;
        cursor: pointer;
        z-index: 1001;
        box-shadow: 0 4px 15px rgba(149, 117, 135, 0.3);
        font-weight: bold;
        transition: transform 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .filters-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(90, 74, 79, 0.9);
        z-index: 1002;
    }
    .filters-overlay.active {
        display: block;
    }
    .filters-toggle:hover {
        transform: scale(1.05);
    }
    .filters-toggle {
        position: fixed;
        bottom: 30px;
        right: 20px;
        background: #d4a6b5;
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 25px;
        cursor: pointer;
        z-index: 1001;
        box-shadow: 0 4px 15px rgba(149, 117, 135, 0.3);
        font-weight: bold;
        transition: transform 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    .mobile-nav.active {
        display: block;
    }
    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mobile-nav li {
        border-bottom: 1px solid #e8dce1;
    }
    .mobile-nav a {
        display: block;
        padding: 15px 20px;
        color: #5a4a4f;
        text-decoration: none;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        padding: 0 10px;
    }
    .product-card {
        padding: 8px;
        height: auto;
    }
    .product-image {
        height: 160px;
        margin-bottom: 8px;
        flex-shrink: 0;
        padding-bottom: 0;
    }
    .product-brand {
        font-size: 11px;
        margin-bottom: 3px;
    }
    .product-name {
        font-size: 13px;
        min-height: 2.8em;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        margin-bottom: 10px;
        flex-grow: 1;
    }
    .product-price {
        font-size: 14px;
        text-align: center;
        width: 100%;
    }
    .add-to-cart-btn {
        width: 100%;
        font-size: 11px;
        padding: 6px 8px;
    }
    .product-brand-overlay {
        font-size: 8px;
        padding: 2px 6px;
    }
    .new-badge {
        font-size: 8px;
        padding: 2px 6px;
    }
    .product-modal-content {
        flex-direction: column;
        width: 85%;
        max-height: 90vh;
        padding: 20px;
        gap: 20px;
    }
    .product-modal-images {
        order: 1;
    }
    .product-modal-info {
        order: 2;
        display: flex;
        flex-direction: column;
    }
    .product-modal-price-section {
        order: 1;
        background: #f8f9fa;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    .product-modal-add-btn {
        order: 2;
        width: 100%;
        margin-bottom: 15px;
    }
    .product-modal-description {
        order: 3;
    }
    .product-modal .close {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 1004;
        background: rgba(255, 255, 255, 0.9);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    .product-modal-slide img {
        height: 300px;
    }
    .product-modal-slider {
        height: 300px;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .footer-block {
        text-align: center;
    }
    body.product-modal-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 480px) {
    .slider-container button {
        position: absolute;
        top: 40%;
    }
    .slider-arrow-left {
        left: 2px;
    }
    .slider-arrow-right {
        right: 2px;
    }
    .product-modal-slide img {
        height: 250px;
    }
    .product-modal-slider {
        height: 250px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .product-card {
        height: 100%;
        padding: 10px;
    }
    .product-image {
        height: 300px;
        padding-bottom: 0;
    }
    .cart-fab {
        bottom: 80px;
        right: 20px;
    }
    .product-modal-content {
        width: 85%;
        max-height: 90vh;
        padding: 15px;
    }
    .product-modal .close {
        top: 8px;
        right: 12px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
}
@media (min-width: 769px) {
    .mobile-nav-toggle,
    .mobile-nav,
    .filters-toggle {
        display: none !important;
    }
    .filters-sidebar {
        display: block !important;
    }
}
@media (max-width: 768px) {
    .desktop-contacts {
        display: none !important;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .filters-sidebar {
        display: none;
    }
    .filters-toggle {
        display: block;
    }
}
@media (max-width: 768px) {
    body.modal-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 768px) {
    .product-card-main {
        padding: 8px;
        height: 36vh;
        width: 40vw;
    }
    .product-card-main .product-image {
        margin-bottom: 6px;
        height: 165px !important;
        width: 100%;
    }
    .product-card-main .product-name {
        font-size: 11px;
        min-height: 2.8em;
        margin-bottom: 5px;
    }
    .product-card-main .product-card-footer {
        flex-direction: column;
        gap: 5px;
        margin-top: 5px;
    }
    .product-card-main .product-price {
        font-size: 14px;
        text-align: center;
        width: 100%;
    }
    .product-card-main .add-to-cart-btn {
        width: 100%;
        font-size: 11px;
        padding: 6px 8px;
    }
}
@media (max-width: 768px) {
    .product-modal-name {
        font-size: 16px;
    }
    .product-modal-price {
        font-size: 24px;
        margin: 0;
    }
    .product-modal-quantity {
        margin: 0;
    }
    .quantity-controls button {
        width: 30px;
        height: 30px;
    }
    .slider-container {
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    .slider-wrapper {
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: 100%;
    }
    .slider-wrapper::-webkit-scrollbar {
        display: none;
    }
    #new-products-slider {
        display: flex;
        flex-direction: row;
        width: max-content;
        gap: 15px;
        padding: 0 10px;
    }
    #new-products-slider .product-card {
        width: 75vw;
        flex-shrink: 0;
        margin: 0;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
}