.bento-banner {
    background-image: url('../images/Products/Banner-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 20px;
    text-align: center;
    color: green;
    position: relative;
    margin-top: 130px;
}

.bento-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bento-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 768px) {
    .bento-banner h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 520px) {
    .bento-banner {
        padding: 70px 16px;
    }

    .bento-banner h1 {
        font-size: 1.5rem;
        line-height: 1.25;
    }
}

.highlight {
    background: #f8f9fa;
    padding: 30px 0 10px;
}

.highlight-grid {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 130px;
    padding-bottom: 5px !important;
}

.highlight-text {
    flex: 1;
}

.highlight-text h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

.highlight-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-features {
    margin-top: 18px;
    padding: 0;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #444;
    line-height: 1.6;
}

.about-features li i {
    color: #2e7d32;
    margin-top: 3px;
    font-size: 1.05rem;
}

.highlight-image {
    flex: 1;
    max-width: 520px;
}

.highlight-image img {
    width: 100%;
    height: auto;
    /* border-radius: 16px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
    .highlight-grid {
        flex-direction: column;
        gap: 28px;
    }

    .highlight-image {
        order: 1;
        max-width: 640px;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .highlight-image img {
        display: block;
        margin: 0 auto;
        margin-top: 10px;
    }

    .highlight-text {
        order: 2;
        width: 100%;
        text-align: left;
    }

    .highlight-image {
        max-width: 640px;
    }
}

.cutlery-product-variants-section {
    background-color: #e8f5e8;
    padding: 20px 20px;
    text-align: center;
}

.cutlery-product-variants-title {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

.cutlery-product-variants-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cutlery-product-variant-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cutlery-product-variant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.cutlery-product-variant-image-container {
    background-color: #f0f0f0;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.cutlery-product-variant-image-container img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.cutlery-product-variant-label {
    background-color: #4caf50;
    color: #fff;
    padding: 12px 10px;
    font-weight: 600;
    font-size: 0.92rem;
    text-align: center;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .cutlery-product-variants-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .cutlery-product-variants-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .cutlery-product-variants-title {
        font-size: 1.9rem;
    }

    .cutlery-product-variant-label {
        font-size: 0.85rem;
        padding: 10px 8px;
    }
}

.cutlery-best-section {
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
}

.cutlery-best-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}

.cutlery-best-title {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
}

.cutlery-best-list {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    gap: 14px;
}

.cutlery-best-list li {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.7;
}

.cutlery-best-list li i {
    color: #67e08a;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .cutlery-best-title {
        font-size: 1.8rem;
    }

    .cutlery-best-section {
        padding: 60px 16px;
    }
}

.bento-categories {
    background: #fff;
    padding: 20px 20px;
}

.bento-cat-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.bento-cat-left {
    flex: 1;
}

.bento-cat-left h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

.bento-cat-left>p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.bento-cat-item {
    display: flex;
    gap: 14px;
    padding: 16px 16px;
    border-radius: 14px;
    background: #f6fbf6;
    border: 1px solid #e3f1e3;
    margin-bottom: 14px;
}

.bento-cat-item h3 {
    margin: 0 0 6px;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 700;
}

.bento-cat-item p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2e7d32;
    color: #fff;
    font-weight: 800;
    flex: 0 0 28px;
    margin-top: 2px;
}

.bento-cat-right {
    flex: 1;
    max-width: 520px;
}

.bento-cat-right img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    aspect-ratio: 1/1;
    object-position: center;
}

@media (max-width: 992px) {
    .bento-cat-container {
        flex-direction: column;
        gap: 28px;
    }

    .bento-cat-right {
        max-width: 640px;
    }
}

.bento-sizes {
    background: #f8f9fa;
    padding: 20px 20px;
}

.sizes-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.sizes-left,
.sizes-right {
    flex: 1;
}

.sizes-left img {
    width: 100%;
    height: 340px;
    /* border-radius: 18px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sizes-right h2 {
    color: #2e7d32;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.sizes-right p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

@media (max-width: 992px) {
    .sizes-container {
        flex-direction: column;
        gap: 28px;
    }
}

.custom-bento-section {
    background: #fff;
    padding: 20px 20px;
}

.custom-bento-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.custom-bento-left,
.custom-bento-right {
    flex: 1;
}

.custom-bento-left h2 {
    color: #2e7d32;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.custom-bento-left p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.bento-custom-list p {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 12px;
}

.bento-custom-list p i {
    width: 18px;
    text-align: center;
    color: #0b8a4a;
}

.custom-bento-right img {
    width: 100%;
    height: auto;

}

@media (max-width: 992px) {
    .custom-bento-container {
        flex-direction: column;
        gap: 28px;
    }
}

.contact-section {
    background: linear-gradient(135deg, #0b8a4a 0%, #1a5f3a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-form-column {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form-wrapper h2 {
    color: #0b8a4a;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.contact-form-wrapper>p {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.modern-contact-form .form-group {
    margin-bottom: 22px;
}

.modern-contact-form label {
    display: block;
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.modern-contact-form input,
.modern-contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.25s ease;
    background: #fff;
    font-family: inherit;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: #0b8a4a;
    box-shadow: 0 0 0 3px rgba(11, 138, 74, 0.12);
    transform: translateY(-1px);
}

.modern-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #2e7d32;
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.submit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.contact-content-column {
    color: #fff;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.content-block {
    margin-bottom: 25px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    opacity: 0.95;
}

.content-block strong {
    color: #fff;
    font-weight: 800;
}

.sustainability-image {
    margin: 25px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    max-width: 450px;
}

.sustainability-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.sustainability-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-column {
        padding: 30px;
    }

    .content-wrapper h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
        margin: 40px 0;
    }

    .contact-form-column {
        padding: 25px;
    }

    .contact-form-wrapper h2 {
        font-size: 1.5rem;
    }

    .content-wrapper h2 {
        font-size: 1.8rem;
    }
}

.bentox-animate-slide-left,
.bentox-animate-slide-right,
.bentox-animate-slide-up {
    opacity: 0;
    transform: translate(0, 0);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.bentox-animate-slide-left {
    transform: translateX(-28px);
}

.bentox-animate-slide-right {
    transform: translateX(28px);
}

.bentox-animate-slide-up {
    transform: translateY(18px);
}

.bentox-animated-visible {
    opacity: 1;
    transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {

    .bentox-animate-slide-left,
    .bentox-animate-slide-right,
    .bentox-animate-slide-up {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

/* Example image prominence */
/* .highlight-image,
.bento-cat-right,
.sizes-left,
.custom-bento-right {
    flex: 1.4;
    max-width: none;
} */

/* .highlight-text,
.bento-cat-left,
.sizes-right,
.custom-bento-left {
    flex: 1;
} */

.icon-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.icon-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.icon-list i {
    color: #2aa745;
    /* brand-friendly green */
    margin-right: 10px;
    font-size: 16px;
}