.divi-volume-boxes{
            display: grid;
            grid-template-columns: repeat(auto-fit, 110px);
            gap: 12px;
            margin: 1.2em 0;
            max-width: 100%;
        }

        .divi-volume-box {
            padding: 10px 8px;
            border: 1px solid #d0d0c8;
            border-radius: 8px;
            background: #fdfdfa;
            text-align: center;
            cursor: pointer;
            transition: all 0.22s ease;
            font-size: 0.95rem;
            line-height: 1.35;
            position: relative;
            overflow: hidden;
            color: #2c2c24;
        }

        .divi-volume-box:hover:not(.selected) {
            border-color: #383B13;
            background: #f9f9f5;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .divi-volume-box.selected {
            background: #383B13;
            color: white;
            border-color: #383B13;
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(56,59,19,0.35);
        }

        .divi-volume-box .volume {
            font-weight: 600;
            font-size: 1.1em;
            margin-bottom: 4px;
        }

        .divi-volume-box .price {
            font-size: 1.05em;
            opacity: 0.95;
        }
		
        @media (max-width: 480px) {
            .divi-volume-boxes{
                grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
                gap: 10px;
            }
        }