        .price-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
        }

        .current-price {
            font-weight: 700;
            font-size: 18px;
            color: var(--color-primary);
        }

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

        .discount-badge {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            font-size: 10px;
            font-weight: bold;
            padding: 2px 6px;
            border-radius: 8px;
            margin-top: 2px;
        }

        .stock-badge {
            margin-left: auto;
        }

        .stock-badge .badge {
            font-size: 10px;
            padding: 4px 8px;
            border-radius: 12px;
        }

        .services-style-one .thumb,
        .grid-image-wrapper,
        .gallery-style-one .item,
        .home-blog-style-one-item>img {
            overflow: hidden;
        }

        .services-style-one .thumb,
        .grid-image-wrapper {
            aspect-ratio: 4 / 3;
        }

        .exclusive-merchandise .fit-menu-style-three .thumb {
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: #f3f3f3;
        }

        .exclusive-merchandise .fit-menu-style-three .thumb>img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .gallery-style-one .item {
            aspect-ratio: 3 / 2;
        }

        .services-style-one .thumb img,
        .grid-image-wrapper img,
        .gallery-style-one .item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }