    
      

        .highlight-box {
            background: linear-gradient(135deg, var(--d) 0%, var(--a) 100%);
            color: white;
            border-radius: 25px;
            padding: 60px 40px;
            margin: 60px 60 !important;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            animation: pulse 6s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1) rotate(0deg);
                opacity: 0.4;
            }

            50% {
                transform: scale(1.2) rotate(180deg);
                opacity: 0.1;
            }
        }

        .highlight-content {
            position: relative;
            z-index: 2;
        }

        .grade-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
            justify-content: center;
        }

        .grade-badge {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .grade-badge:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        /* .spec-item {
            background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
            padding: 30px 25px;
            border-radius: 15px;
            border-left: 6px solid var(--d);
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.1);
        } */

        .spec-item:hover {
            background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
            transform: translateX(8px) translateY(-3px);
            box-shadow: 0 12px 35px rgba(16, 185, 129, 0.2);
        }

        .spec-label {
            font-weight: 700;
            color: var(--a);
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .spec-value {
            color: var(--d);
            font-weight: 600;
            font-size: 1rem;
        }

        .origin-section {
            background: white;
            border-radius: 20px;
            padding: 50px 30px;
            margin-top: 40px;
            box-shadow: var(--i);
            text-align: center;
            border: 2px solid rgba(74, 222, 128, 0.1);
            transition: all 0.3s ease;
        }

        .origin-section:hover {
            transform: translateY(-5px);
            box-shadow: var(--j);
        }

        .packaging-info {
            background: linear-gradient(45deg, var(--c) 0%, var(--d) 100%);
            color: white;
            border-radius: 20px;
            padding: 40px 30px;
            margin-top: 30px;
            text-align: center;
            box-shadow: var(--i);
            transition: all 0.3s ease;
        }

        .packaging-info:hover {
            transform: translateY(-5px);
        }
