* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
header {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    background-color: white;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
}

.main-nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    font-size: 14px;
    color: #666;
}

.auth-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box {
    position: relative;
    width: 200px;
}

.search-box input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
}

.btn-orange {
    background-color: #F26D1C;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    width: 100%;
    background-image: url('/header.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 800px;
}

.hero-text h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-text p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Features */
.features {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 300px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: #fff8f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.feature-icon i {
    color: #F26D1C;
}

.feature-text {
    font-size: 12px;
    color: #666;
}

/* Product Section */
.product-section {
    padding: 20px 0;
}

.section-title {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: #f9f9f9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-info {
    padding: 10px;
}

.product-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    height: 40px;
    overflow: hidden;
}

.product-price {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

/* Info Section */
.info-section {
    background-color: #f9f9f9;
    padding: 40px 0;
    margin-top: 40px;
}

.info-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.info-text {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

/* Newsletter */
.newsletter {
    background-color: #f5f5f5;
    padding: 30px 0;
}

.newsletter-title {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background-color: #F26D1C;
    color: white;
    padding: 10px 20px;
    border-radius: 0 4px 4px 0;
}

/* Footer */

/* Стандартный футер */
footer {
    background-color: #f5f5f5;
    padding: 40px 0 20px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: #666;
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-link {
    width: 30px;
    height: 30px;
    background-color: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright {
    margin-top: 30px;
    text-align: center;
    color: #999;
    font-size: 12px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F26D1C;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* Стили для иконки корзины в хедере */
.cart-icon {
    position: relative;
    display: inline-block;
    margin-left: 15px;
    font-size: 20px;
    color: #333;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #F26D1C;
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Модальное окно корзины */
.cart-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.cart-content {
    position: relative;
    background-color: #fff;
    margin: 10% auto;
    padding: 0;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: cartFadeIn 0.3s ease;
}

@keyframes cartFadeIn {
    from {opacity: 0; transform: translateY(-30px);}
    to {opacity: 1; transform: translateY(0);}
}

.cart-header {
    padding: 15px 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.close-cart {
    color: #888;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-cart:hover {
    color: #F26D1C;
}

.cart-body {
    padding: 20px;
}

.cart-items {
    margin-bottom: 20px;
}

.cart-items table {
    width: 100%;
    border-collapse: collapse;
}

.cart-items table tr {
    border-bottom: 1px solid #eee;
}

.cart-items table td,
.cart-items table th {
    padding: 12px 8px;
    vertical-align: middle;
    text-align: left;
}

.cart-items table th {
    background-color: #f9f9f9;
    font-weight: 500;
    font-size: 14px;
    color: #666;
}

.cart-items table img {
    max-width: 70px;
    max-height: 70px;
    border-radius: 4px;
}

.cart-total {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 10px 0;
    border-top: 2px solid #eee;
}

.cart-form {
    margin-bottom: 20px;
}

.cart-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.cart-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.cart-footer {
    padding: 15px 20px;
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
    border-radius: 0 0 8px 8px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cart-footer button {
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.clear-cart {
    background-color: #fff;
    color: #0C0972;
    border: 1px solid #0C0972;
}

.clear-cart:hover {
    background-color: #0C0972;
    color: #fff;
}

.order-btn {
    background-color: #F26D1C;
    color: white;
    border: 1px solid #F26D1C;
}

.order-btn:hover {
    background-color: #e85d30;
}

.close-btn {
    background-color: #fff;
    color: #666;
    border: 1px solid #ddd;
}

.close-btn:hover {
    background-color: #f2f2f2;
}

/* Стили для элементов управления количеством */
.quantity-control {
    display: flex;
    align-items: center;
    max-width: 120px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
}

.minus-item {
    border-radius: 4px 0 0 4px;
}

.plus-item {
    border-radius: 0 4px 4px 0;
}

.item-count {
    width: 40px;
    height: 30px;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 14px;
}

.item-count::-webkit-inner-spin-button,
.item-count::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.delete-item {
    width: 30px;
    height: 30px;
    background-color: #0C0972;
    color: white;
    border: none;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.delete-item:hover {
    background-color: #c0392b;
}

/* Стили для страницы товара */
.product-detail {
    padding: 20px 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.product-image-container {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.product-image-main {
    width: 100%;
    height: auto;
}

.product-info-container {
    display: flex;
    flex-direction: column;
}

.product-title-item {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-category {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.product-price-item {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-rating {
    display: flex;
    margin-bottom: 15px;
}

.star {
    color: #ffc107;
    margin-right: 3px;
}

.product-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.product-tabs {
    margin-top: 30px;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid transparent;
}

.tab-button.active {
    border-bottom-color: #F26D1C;
}

.tab-content {
    font-size: 14px;
    line-height: 1.6;
}

/* Related Products */
.related-products {
    margin-top: 60px;
}

.related-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.carousel-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-info {
    padding: 15px;
}

.carousel-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    height: 40px;
    overflow: hidden;
}

.carousel-price {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Уведомления */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    background-color: #F26D1C;
    color: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .auth-container {
        width: 100%;
        justify-content: center;
    }
    
    .hero {
        height: 300px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .feature {
        min-width: 250px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
    }
    
    .products-carousel {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .cart-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .cart-items table {
        font-size: 14px;
    }
    
    .cart-items table img {
        max-width: 50px;
        max-height: 50px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .feature {
        min-width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 4px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .products-carousel {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .cart-footer {
        flex-direction: column;
    }
    
    .cart-footer button {
        width: 100%;
    }
    
    .cart-items table {
        display: block;
        overflow-x: auto;
    }
}


/* Кнопка с контуром и анимацией - каталог */
.btn-add-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    background: transparent;
    color: #F26D1C;
    border: 2px solid #F26D1C;
    border-radius: 25px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    width: 100%;
}

.btn-add-outline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #F26D1C;
    transition: all 0.3s;
    z-index: -1;
}

.btn-add-outline:hover {
    color: white;
}

.btn-add-outline:hover:before {
    width: 100%;
}

/* Контур и анимация для страницы товара */
.btn-add-cart-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    /*background: transparent;*/
    color: #F26D1C;
    border: 2px solid #F26D1C;
    border-radius: 30px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-add-cart-outline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #F26D1C;
    transition: all 0.3s;
    z-index: -1;
}

.btn-add-cart-outline:hover {
    color: white;
}

.btn-add-cart-outline:hover:before {
    width: 100%;
}

/* Контур и анимация для связанных товаров */
.carousel-button-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 10px;
    background: transparent;
    color: #F26D1C;
    border: 2px solid #F26D1C;
    border-radius: 20px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    width: 100%;
    font-size: 12px;
}

.carousel-button-outline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #F26D1C;
    transition: all 0.3s;
    z-index: -1;
}

.carousel-button-outline:hover {
    color: white;
}

.carousel-button-outline:hover:before {
    width: 100%;
}



/* Стили хедера - с вертикальным меню и иконками */
.header-vertical {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-top {
    padding: 15px 0;
}

.header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box-top {
    position: relative;
    display: flex;
    align-items: center;
    width: 300px;
}

.search-box-top input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #eee;
    border-radius: 25px;
    font-size: 14px;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    background: #F26D1C;
    color: white;
    border-radius: 50%;
    cursor: pointer;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.header-contact i {
    color: #F26D1C;
}

.cart-icon-top {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #333;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #F26D1C;
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.nav-container {
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.main-nav-vertical {
    padding: 10px 0;
}

.main-nav-vertical ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-vertical {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.2s;
}

.nav-link-vertical i {
    color: #F26D1C;
}

.nav-link-vertical:hover {
    color: #F26D1C;
}

/* Hero для вертикального меню */
.hero-with-vertical-nav {
    position: relative;
    height: 400px;
    width: 100%;
    background-image: url('/header.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 800px;
}

.hero-text h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-text p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Адаптивность */
@media (max-width: 992px) {
    .header-actions {
        gap: 15px;
    }
    
    .search-box-top {
        width: 200px;
    }
    
    .main-nav-vertical ul {
        gap: 15px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .header-top-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-actions {
        width: 100%;
        justify-content: center;
    }
    
    .nav-link-vertical {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .header-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .search-box-top {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .main-nav-vertical ul {
        flex-direction: column;
        align-items: center;
    }
}


:root {
    --gradient-orange: linear-gradient(to right, #E6CE86, #F26D1C);
    --gradient-yellow: linear-gradient(to right, #8E82F6, #0C0972);
    --text-dark: #333333;
    --background-light: #ffffff;
    --background-gray: #f5f5f5;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #eeeeee;
}

body {
    color: var(--text-color);
    background-color: var(--background-light);
}

body:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-image: var(--gradient-orange);
    z-index: 9999;
}

body:after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-image: var(--gradient-yellow);
    z-index: 9999;
}

.btn-primary {
    background-image: var(--gradient-orange);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 111, 66, 0.3);
}

.btn-primary:hover {
    background-image: var(--gradient-yellow);
    box-shadow: 0 4px 15px rgba(255, 188, 0, 0.3);
}

.back-to-top {
    background-image: var(--gradient-orange);
    color: white;
}

.cart-badge {
    background-image: var(--gradient-yellow);
    color: white;
}

a {
    color: #F26D1C;
    position: relative;
}

a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-image: var(--gradient-yellow);
    transition: width 0.3s;
}

a:hover:after {
    width: 100%;
}

.hero {
    position: relative;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.2));
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 3px;
    background-image: var(--gradient-orange);
}

.section-title:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 3px;
    background-image: var(--gradient-yellow);
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
}

.product-image:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, white, transparent);
}

.product-price {
    color: #F26D1C;
    font-weight: bold;
}

footer {
    background-color: var(--text-dark);
    color: white;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 3px;
    background-image: var(--gradient-orange);
}

footer:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 3px;
    background-image: var(--gradient-yellow);
}
