/* =============================================
   CUTLERY PAGE STYLES
============================================= */

/* Cutlery Banner */
.cutlery-banner {
    background-image: url('../images/cutlery/cutlery-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: green;
    position: relative;
    margin-top: 90px;
}

.cutlery-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cutlery-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Cutlery Product Details */


.cutlery-product-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 40px 20px;
    margin-top: 90px;

}

.cutlery-product-image {
    flex: 1;
    max-width: 500px;
}

/* Image styles handled globally in common.css */

.cutlery-product-description {
    flex: 1;
}

.cutlery-product-description h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

.cutlery-product-description p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cutlery-product-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.cutlery-product-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cutlery-product-images img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cutlery-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.feature-item h3 {
    color: #2E7D32;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Cutlery Product Variants Section */
.cutlery-product-variants-section {
    background-color: #e8f5e8;
    padding: 2px 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;
    text-align: center;
}

.cutlery-product-variants-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 30px auto 0;
}

.cutlery-product-variant-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateX(-50px);
}

.cutlery-product-variant-card.animated {
    opacity: 1;
    transform: translateX(0);
}



.cutlery-product-variant-image-container {
    background-color: #ffffff;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.cutlery-product-variant-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Hover scale effect removed */

.cutlery-product-variant-label {
    background-color: #4CAF50;
    color: white;
    padding: 0px 0px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .cutlery-product-variants-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cutlery-product-variants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cutlery-product-variants-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cutlery-product-variants-grid {
        grid-template-columns: 1fr;
    }
}

/* Cutlery Why Choose Section */
.cutlery-why-choose-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%);
}

.why-choose-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-item .why-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.why-item h3 {
    color: #2E7D32;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.why-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.cutlery-contact-section {
    padding: 80px 20px;
    background: #2E7D32;
    color: white;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-form-section,
.contact-info-section {
    flex: 1;
}

.contact-form-section h3,
.contact-info-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: white;
}

.cutlery-contact-form .form-group {
    margin-bottom: 20px;
}

.cutlery-contact-form input,
.cutlery-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.cutlery-contact-form input::placeholder,
.cutlery-contact-form textarea::placeholder {
    color: #666;
}

.cutlery-contact-form .btn-primary {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cutlery-contact-form .btn-primary:hover {
    background: #45a049;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #8BC34A;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #8BC34A;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* FAQ Section */
.cutlery-faq-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: #2E7D32;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question i {
    color: #4CAF50;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cutlery-banner h1 {
        font-size: 1.8rem;
    }

    .cutlery-product-container {
        flex-direction: column;
        gap: 40px;
    }

    .cutlery-product-description h2 {
        font-size: 1.8rem;
    }

    .cutlery-features {
        grid-template-columns: 1fr;
    }

    .categories-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        flex-direction: column;
        gap: 40px;
    }

    .cutlery-product-image {
        max-width: 100%;
    }
}

/* Cutlery Why We Are The Best Section */
.cutlery-best-section {
    background-image: url('../images/cutlery/_old_cutlery-collection-set.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    color: #fff;
}

.cutlery-best-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, rgba(5, 31, 19, 0.8), rgba(7, 46, 51, 0.7));
    z-index: 1;
}

.cutlery-best-title {
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.3;
}

/* Cutlery Best List Styling */
.cutlery-best-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: left;
}

.cutlery-best-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    position: relative;
    z-index: 2;
}

.cutlery-best-list li i {
    background-color: #ffcc00;
    /* Yellow background */
    color: #2ecc71;
    /* Green leaf icon */
    font-size: 1.2rem;
    padding: 8px;
    border-radius: 50%;
    /* Circular shape */
    margin-top: 3px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.cutlery-best-list li:hover {
    transform: translateX(10px);
    transition: transform 0.3s ease;
}

.cutlery-best-list li:hover i {
    color: #27ae60;
    transition: color 0.3s ease;
}

.cutlery-best-item {
    text-align: center;
    padding: 20px;
}

.cutlery-best-icon {
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #2c3e50;
}

.cutlery-best-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}



/* Cutlery Specialized Categories Section */
.cutlery-categories-section {
    padding: 11px 20px;
    background-color: beige;

}

.cutlery-categories-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.cutlery-categories-content {
    flex: 1;
    max-width: 550px;
    line-height: 1.2;
}

.cutlery-categories-image {
    flex: 1;
    max-width: 550px;
}

.cutlery-categories-image img {
    width: 100%;
    height: auto;

}

.cutlery-categories-title {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

.cutlery-categories-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 7px;
    line-height: 1.5;
    margin-top: -10px;
}

.cutlery-categories-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cutlery-category-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cutlery-category-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.cutlery-category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: -10px;
}

.cutlery-category-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cutlery-category-text {
    margin-top: -30px;
}

.cutlery-category-text p {
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .cutlery-categories-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .cutlery-categories-content,
    .cutlery-categories-image {
        max-width: 100%;
    }

    .cutlery-categories-subtitle,
    .cutlery-premium-bullet,
    .cutlery-category-text p {
        text-align: left;
    }

    .cutlery-category-item {
        flex-direction: column;
        text-align: left;
        gap: 12px;
    }

    .cutlery-category-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .cutlery-categories-title {
        font-size: 1.8rem;
    }

    .cutlery-categories-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cutlery-categories-list {
        gap: 20px;
    }

    .cutlery-category-item {
        padding: 15px;
    }

    .cutlery-category-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .cutlery-category-text h4 {
        font-size: 1.1rem;
    }

    .cutlery-category-text p {
        font-size: 0.9rem;
    }
}

/* Cutlery FAQ Section */
.cutlery-faq-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.cutlery-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.cutlery-faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.cutlery-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cutlery-faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.cutlery-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cutlery-faq-item.active {
    border-color: #4CAF50;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
}

.cutlery-faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.cutlery-faq-question:hover {
    background-color: #f0f0f0;
}

.cutlery-faq-item.active .cutlery-faq-question {
    background-color: #e8f5e8;
}

.cutlery-faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.cutlery-faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.cutlery-faq-item.active .cutlery-faq-toggle {
    transform: rotate(45deg);
    background-color: #4CAF50;
    color: white;
}

.cutlery-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.cutlery-faq-item.active .cutlery-faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.cutlery-faq-answer p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-top: 5px;
}

@media (max-width: 768px) {
    .cutlery-faq-section {
        padding: 60px 20px;
    }

    .cutlery-faq-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .cutlery-faq-question {
        padding: 15px 20px;
    }

    .cutlery-faq-question h3 {
        font-size: 1.1rem;
    }

    .cutlery-faq-toggle {
        font-size: 1.3rem;
        width: 25px;
        height: 25px;
    }

    .cutlery-faq-item.active .cutlery-faq-answer {
        padding: 0 20px 15px 20px;
    }

    .cutlery-faq-answer p {
        font-size: 0.95rem;
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.cutlery-page .g-faq-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.cutlery-page .g-faq-item.active .g-faq-answer {
    max-height: 1000px;
    padding: 0px 24px 24px;
}

.animate-slide-left {
    animation: slideInLeft 1s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 1s ease-out forwards;
}

/* Initial hidden state for animation elements */
.cutlery-product-image,
.cutlery-product-description,
.cutlery-best-title,
.cutlery-best-list li,
.cutlery-categories-content,
.cutlery-categories-image,
.cutlery-showcase-image,
.cutlery-showcase-content,
.cutlery-bio-contact-form-section,
.cutlery-bio-contact-content-section,
.cutlery-bio-contact-sustainability-image {
    opacity: 0;
}

/* Permanent visibility class for animated elements */
.animated-visible {
    opacity: 1 !important;
}

@keyframes slideInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-up {
    animation: slideInUp 0.8s ease-out forwards;
}

.animate-slide-up-delay-1 {
    animation: slideInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-slide-up-delay-2 {
    animation: slideInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.animate-slide-up-delay-3 {
    animation: slideInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

/* Cutlery Showcase Section */
.cutlery-showcase-section {
    padding: 20px 20px;
    background-color: #f8f9fa;
}

.cutlery-showcase-container {
    max-width: 1200px;
    margin: 0px auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.cutlery-showcase-image {
    flex: 1;
    max-width: 550px;
}

.cutlery-showcase-image img {
    width: 100%;
    height: auto;

}

.cutlery-showcase-content {
    flex: 1;
    max-width: 550px;
}

.cutlery-showcase-title {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 10px;
    font-weight: 700;
    white-space: normal;

}

.cutlery-showcase-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.6;
}

.cutlery-showcase-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cutlery-showcase-feature {
    margin-bottom: 20px;
}

.cutlery-showcase-feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cutlery-showcase-feature-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .cutlery-showcase-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .cutlery-showcase-image,
    .cutlery-showcase-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cutlery-showcase-title {
        font-size: 1.8rem;
    }

    .cutlery-showcase-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cutlery-showcase-features {
        gap: 20px;
    }

    .cutlery-showcase-feature-text h4 {
        font-size: 1.1rem;
    }

    .cutlery-showcase-feature-text p {
        font-size: 0.9rem;
        text-align: left;
    }
}

/* Animation Classes for Cutlery Page - REMOVED */

/* Cutlery Biodegradable Contact Section */
.cutlery-bio-contact-gradient-section {
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
    padding: 17px 20px;

}

.cutlery-bio-contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form Layout Styles */
.cutlery-bio-contact-green-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.cutlery-bio-contact-form-section {
    flex: 0 0 45%;
    transition: all 1s ease-out;
}

.cutlery-bio-contact-content-section {
    flex: 0 0 50%;
    transition: all 1s ease-out;
}

/* Cutlery Biodegradable Contact Form Styles */
.cutlery-bio-contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.cutlery-bio-contact-form-group {
    margin-bottom: 20px;
    width: 93%;
}

.cutlery-bio-contact-form-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    margin-top: -118px;
}

.cutlery-bio-contact-content-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.cutlery-bio-contact-form-group input,
.cutlery-bio-contact-form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cutlery-bio-contact-form-group input::placeholder,
.cutlery-bio-contact-form-group textarea::placeholder {
    color: #666;
}

.cutlery-bio-contact-form-group input:focus,
.cutlery-bio-contact-form-group textarea:focus {
    outline: none;
    border-color: #ffc107;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.cutlery-bio-contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.cutlery-bio-contact-btn-primary {
    width: 50%;
    padding: 15px;
    background: #ffc107;
    color: #1b5e20;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 25%;
}

.cutlery-bio-contact-btn-primary:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cutlery-bio-contact-sustainability-content p {
    color: #fff;
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cutlery-bio-contact-sustainability-image {
    margin-top: 30px;
    text-align: center;
    transition: all 1s ease-out;
}

.cutlery-bio-contact-sustainability-image img {
    width: 100%;
    max-width: 373px;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .cutlery-bio-contact-green-layout {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .cutlery-bio-contact-form-section,
    .cutlery-bio-contact-content-section {
        flex: 1 1 100%;
    }

    .cutlery-bio-contact-btn-primary {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .cutlery-bio-contact-gradient-section {
        padding: 80px 0;
    }

    .cutlery-bio-contact-container {
        margin-top: 0;
    }

    .cutlery-bio-contact-form-section h3,
    .cutlery-bio-contact-content-section h3 {
        font-size: 1.5rem;
    }

    .cutlery-bio-contact-form-container {
        padding: 20px;
    }
}

/* Cutlery Biodegradable Contact Section Animations */
.cutlery-bio-contact-form-section,
.cutlery-bio-contact-content-section,
.cutlery-bio-contact-sustainability-image {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Cutlery Premium Points Styling */
.cutlery-premium-points {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 20px;
}

.cutlery-premium-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 8px 0;
    transition: transform 0.3s ease;
}

.cutlery-premium-point:hover {
    transform: translateX(5px);
}

.cutlery-premium-text {
    flex: 1 1 auto;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    padding-top: 8px;
}

@media (max-width: 768px) {
    .cutlery-premium-points {
        gap: 15px;
        margin-top: 15px;
    }

    .cutlery-premium-point {
        gap: 12px;
    }

    /* Removed conflicting responsive rule for cutlery-premium-bullet */

    .cutlery-premium-text {
        font-size: 0.95rem;
        padding-top: 6px;
    }
}

.cutlery-premium-bullet {
    list-style: none;
    padding: 0;
    margin: 1px;
    text-align: left;
}

.cutlery-premium-bullet li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
    line-height: 1.6;
    color: #333;
    font-size: 1.05rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.cutlery-premium-bullet li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    flex-shrink: 0;
}

.cutlery-premium-bullet li:hover {
    transform: translateX(5px);
    color: #27ae60;
}

.cutlery-premium-bullet li:hover::before {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}






/* ===================================
   CUTLERY PAGE RESPONSIVE STYLES
   =================================== */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .cutlery-product-container {
        gap: 40px;
    }

    .cutlery-product-image {
        max-width: 400px;
    }

    .cutlery-categories-container,
    .cutlery-showcase-container {
        gap: 40px;
    }

    .cutlery-bio-contact-green-layout {
        gap: 40px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {

    /* Banner */
    .cutlery-banner h1 {
        font-size: 2.5rem;
        padding: 60px 20px;
    }

    /* Product Details Section */
    .cutlery-product-details {
        padding: 40px 20px;
    }

    .cutlery-product-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .cutlery-product-image {
        max-width: 100%;
        order: 1;
    }

    .cutlery-product-description {
        order: 2;
    }

    .cutlery-product-description h2 {
        font-size: 1.8rem;
        text-align: left;
    }

    .cutlery-product-description p,
    .cutlery-premium-bullet {
        text-align: left;
    }

    /* Categories Section */
    .cutlery-categories-section {
        padding: 60px 20px;
    }

    .cutlery-categories-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .cutlery-categories-content {
        order: 2;
    }

    .cutlery-categories-image {
        order: 1;
        max-width: 100%;
    }

    .cutlery-categories-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .cutlery-categories-subtitle,
    .cutlery-premium-bullet {
        text-align: left;
    }

    /* Best Section */
    .cutlery-best-section {
        padding: 60px 20px;
    }

    .cutlery-best-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .cutlery-best-list {
        max-width: 600px;
        margin: 0 auto;
        text-align: left;
    }

    /* Showcase Section */
    .cutlery-showcase-section {
        padding: 60px 20px;
    }

    .cutlery-showcase-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .cutlery-showcase-image {
        order: 1;
        max-width: 100%;
    }

    .cutlery-showcase-content {
        order: 2;
    }

    .cutlery-showcase-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .cutlery-showcase-subtitle,
    .cutlery-premium-bullet {
        text-align: left;
    }

    /* Contact Section */
    .cutlery-bio-contact-gradient-section {
        padding: 60px 20px;
    }

    .cutlery-bio-contact-green-layout {
        flex-direction: column;
        gap: 30px;
    }

    .cutlery-bio-contact-form-section,
    .cutlery-bio-contact-content-section {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
    }

    .cutlery-bio-contact-sustainability-content h3 {
        text-align: center;
    }

    .cutlery-bio-contact-sustainability-content p {
        text-align: left;
    }

    .cutlery-bio-contact-form-container {
        padding: 25px;
    }

    /* Bullet Lists */
    .cutlery-premium-bullet li {
        font-size: 0.95rem;
        padding-left: 25px;
    }

    .cutlery-premium-bullet li::before {
        width: 18px;
        height: 18px;
    }

    .cutlery-premium-bullet li::after {
        left: 5px;
        top: 0px;
        font-size: 10px;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {

    /* Banner */
    .cutlery-banner h1 {
        font-size: 2rem;
        padding: 40px 15px;
        line-height: 1.3;
    }

    /* Product Details Section */
    .cutlery-product-details {
        padding: 30px 15px;
    }

    .cutlery-product-container {
        gap: 20px;
    }

    .cutlery-product-description h2 {
        font-size: 1.5rem;
    }

    /* Categories Section */
    .cutlery-categories-section {
        padding: 40px 15px;
    }

    .cutlery-categories-container {
        gap: 20px;
    }

    .cutlery-categories-title {
        font-size: 1.5rem;
    }

    .cutlery-categories-subtitle {
        font-size: 0.95rem;
    }

    /* Best Section */
    .cutlery-best-section {
        padding: 40px 15px;
    }

    .cutlery-best-title {
        font-size: 1.5rem;
    }

    /* Showcase Section */
    .cutlery-showcase-section {
        padding: 40px 15px;
    }

    .cutlery-showcase-container {
        gap: 20px;
    }

    .cutlery-showcase-title {
        font-size: 1.5rem;
    }

    .cutlery-showcase-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    /* Contact Section */
    .cutlery-bio-contact-gradient-section {
        padding: 40px 15px;
    }

    .cutlery-bio-contact-green-layout {
        gap: 20px;
    }

    .cutlery-bio-contact-form-container {
        padding: 20px;
    }

    .cutlery-bio-contact-form-container h3 {
        font-size: 1.3rem;
    }

    .cutlery-bio-contact-sustainability-content h3 {
        font-size: 1.3rem;
    }

    .cutlery-bio-contact-sustainability-content p {
        font-size: 0.95rem;
    }

    /* Form Elements */
    .cutlery-bio-contact-form-group input,
    .cutlery-bio-contact-form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .cutlery-bio-contact-submit-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    /* Bullet Lists */
    .cutlery-premium-bullet {
        padding: 20px 0;
    }

    .cutlery-premium-bullet li {
        font-size: 0.9rem;
        padding: 8px 0 8px 22px;
    }

    .cutlery-premium-bullet li::before {
        width: 16px;
        height: 16px;
    }

    .cutlery-premium-bullet li::after {
        left: 4px;
        top: -1px;
        font-size: 9px;
    }

    /* FAQ Section */
    .cutlery-faq-section {
        padding: 40px 15px;
    }

    .cutlery-faq-title {
        font-size: 1.5rem;
    }

    .cutlery-faq-question {
        padding: 12px 15px;
    }

    .cutlery-faq-question h3 {
        font-size: 1rem;
    }

    .cutlery-faq-toggle {
        font-size: 1.2rem;
    }

    .cutlery-faq-answer {
        padding: 0 15px 15px 15px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .cutlery-banner h1 {
        font-size: 1.8rem;
        padding: 30px 10px;
    }

    .cutlery-product-description h2,
    .cutlery-categories-title,
    .cutlery-best-title,
    .cutlery-showcase-title {
        font-size: 1.3rem;
    }

    .cutlery-bio-contact-form-container,
    .cutlery-bio-contact-gradient-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .cutlery-premium-bullet li {
        font-size: 0.85rem;
        padding-left: 20px;
    }
}

/* Staggered Slide-In Style */
.cutlery-product-variant-card {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cutlery-product-variant-card.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Reduce collection image heights */
.cutlery-product-image img,
.cutlery-categories-image img,
.cutlery-showcase-image img {
    max-height: 400px;
    /* Reduced from auto */
    width: 100%;

    /* border-radius: 12px; */
}

/* Example mobile stack */
@media (max-width: 768px) {

    .cutlery-product-container,
    .cutlery-categories-container,
    .cutlery-showcase-container {
        flex-direction: column !important;
        /* Forces vertical stacking */
        text-align: center;
    }
}

/********************************************************/