.op-menu-section-275cd3fd {
    --honey-gold: #D4A017;
    --olive-green: #556B2F;
    --warm-cream: #FFF8E7;
    --card-shadow: 0 10px 30px rgba(85, 107, 47, 0.05);
    --card-shadow-hover: 0 15px 35px rgba(212, 160, 23, 0.12);

    position: relative;
    background-color: var(--warm-cream);
    padding: 80px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow: hidden;
}

/* Watermark background & design layers */
.op-honeycomb-bg {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: radial-gradient(circle, var(--honey-gold) 1px, transparent 1px),
                      linear-gradient(30deg, transparent 25%, var(--warm-cream) 25%, var(--warm-cream) 75%, transparent 75%, transparent),
                      linear-gradient(240deg, transparent 25%, var(--warm-cream) 25%, var(--warm-cream) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    pointer-events: none;
}

.op-bee-path {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.op-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header style with a subtle golden aura behind it */
.op-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
    position: relative;
}

.op-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.18) 0%, rgba(255,248,231,0) 70%);
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
}

.op-title {
    color: var(--olive-green);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.03em;
}

.op-subheading {
    color: #4A4A4A;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive category grid */
.op-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

/* Premium Card Design */
.op-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid rgba(85, 107, 47, 0.08);
    border-radius: 20px;
    padding: 35px 20px 25px 20px;
    text-decoration: none !important;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

/* Honey drip container (hidden by default, animating on hover) */
.op-drip-container {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    transition: top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.op-drip-svg {
    width: 100%;
    height: 100%;
}

/* Icon / Emoji circular style */
.op-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--warm-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.op-emoji {
    font-size: 2rem;
}

.op-card-title {
    color: var(--olive-green);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    transition: color 0.3s ease;
}

.op-card-subtitle {
    color: #7A7A7A;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

/* Premium Pricing Style */
.op-price-tag {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--honey-gold);
    background-color: rgba(212, 160, 23, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

/* Add to Cart Button Style */
.op-add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background-color: var(--olive-green);
    color: #FFFFFF !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.op-cart-icon {
    width: 16px;
    height: 16px;
}

.op-add-to-cart-btn:hover {
    background-color: var(--honey-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 160, 23, 0.2);
}

/* Tiny flying bee */
.op-card-bee {
    position: absolute;
    font-size: 1.25rem;
    bottom: -30px;
    left: -30px;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
}

/* Hover effects */
.op-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--honey-gold);
}

.op-card:hover .op-drip-container {
    top: 0;
}

.op-card:hover .op-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.op-card:hover .op-card-title {
    color: var(--honey-gold);
}

.op-card:hover .op-card-bee {
    bottom: 20px;
    left: 85%;
    opacity: 1;
    transform: rotate(-15deg);
}

/* CTA Design */
.op-cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.op-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.op-btn-primary {
    background: linear-gradient(135deg, var(--honey-gold), #B8860B);
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.op-btn-secondary {
    background: #FFFFFF;
    color: var(--olive-green) !important;
    border: 2px solid var(--olive-green);
}

.op-btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.op-btn:hover {
    transform: scale(1.04);
}

.op-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.45);
}

.op-btn-secondary:hover {
    background: var(--olive-green);
    color: #FFFFFF !important;
}

.op-btn:hover .op-btn-icon {
    transform: translateX(4px);
}

/* Responsive Breakpoints */
@media screen and (max-width: 1024px) {
    .op-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .op-menu-section-275cd3fd {
        padding: 60px 16px;
    }
    .op-title {
        font-size: 2rem;
    }
    .op-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .op-card {
        padding: 25px 12px 18px 12px;
    }
    .op-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    .op-emoji {
        font-size: 1.75rem;
    }
    .op-card-title {
        font-size: 1.1rem;
    }
    .op-price-tag {
        font-size: 1rem;
        padding: 2px 10px;
    }
    .op-cta-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    .op-btn {
        justify-content: center;
    }
}
