
        .shop-top-banner {
            width: 100%;
            padding: 80px 0;
            margin-top: -10px;
            background: linear-gradient(135deg, #111 0%, #2c2c2c 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .shop-top-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
            background-size: cover;
        }

        .shop-container {
            text-align: center;
            color: #fff;
            position: relative;
            z-index: 1;
        }

        .shop-title {
            font-size: 46px;
            font-weight: 700;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
            
        }

        .shop-breadcrumb {
            font-size: 16px;
            opacity: 0.8;
            font-weight: 400;
        }

        .shop-breadcrumb span {
            margin: 0 8px;
            opacity: 0.5;
        }
      @media (max-width: 768px) {
            .shop-title {
                font-size: 38px;
            }
        }

        @media (max-width: 576px) {
            .shop-title {
                font-size: 32px;
            }
        }