/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
}

/* SECTION */
.food-wrapper-section {
    padding: 60px 0;
}

/* CONTAINER */
.food-wrapper-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT IMAGE */
.food-wrapper-image {
    flex: 1;
}

.food-wrapper-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

.straw-hero-image {
    position: relative;
    overflow: hidden;
}

.straw-hero-image img {
    transform: scale(1.02);
    transform-origin: center;
    transition: transform 0.8s ease, filter 0.8s ease;
}

.straw-hero-image.show img {
    transform: scale(1);
}

.floating-visual {
    position: relative;
}

.floating-visual img {
    animation: floatingImage 16s ease-in-out infinite;
    transform-origin: center;
}

@keyframes floatingImage {
    0% {
        transform: translateY(0px) scale(1);
    }

    30% {
        transform: translateY(-10px) scale(1.01);
    }

    60% {
        transform: translateY(6px) scale(0.995);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

/* RIGHT CONTENT */
.food-wrapper-content {
    flex: 1;
}

.food-wrapper-content h1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.food-wrapper-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #555555;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .food-wrapper-container {
        flex-direction: column;
        gap: 40px;
    }

    .food-wrapper-content h1 {
        font-size: 26px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* SECTION BACKGROUND */
.product-variants-section {
    background-color: #c9e68a;
    padding: 70px 0 90px;
}

/* TITLE */
.variants-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #1f2d0c;
    margin-bottom: 50px;
}

/* GRID */
.variants-grid {
    width: 92%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

/* CARD */
.variant-card {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.variant-card img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #f0f0f0;
    display: block;
}

/* LABEL BAR */
.variant-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2f9d57;
    color: #ffffff;
    text-align: center;
    padding: 12px 5px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .variants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .variants-grid {
        grid-template-columns: 1fr;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* SCROLL ANIMATION BASE */
[data-anim] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-anim="from-left"] {
    transform: translateX(-60px);
}

[data-anim="from-right"] {
    transform: translateX(60px);
}

[data-anim].show {
    opacity: 1;
    transform: translateX(0);
}

/* SECTION */
.why-choose-section {
    position: relative;
    padding: 80px 0;
    background-image:
        linear-gradient(rgba(5, 20, 10, 0.35), rgba(3, 7, 6, 0.55)),
        url("../images/straw-images/background2.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.why-choose-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 45, 25, 0.35), rgba(0, 0, 0, 0.2));
    z-index: 0;
}

/* CONTAINER */
.why-choose-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
}

/* TITLE */
.why-title {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 45px;
}

/* LIST */
.why-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ITEM */
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

/* ICON */
.why-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #f1c40f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* TEXT */
.why-text {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.8;
}

.why-text strong {
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-title {
        font-size: 24px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #222;
}

/* SECTION */
.specialized-section {
    padding: 80px 0;
    background: #f8fbf5;
}

/* CONTAINER */
.specialized-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.specialized-content {
    flex: 1;
    max-width: 600px;
}

.specialized-content h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #3b3b3b;
}

.intro-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #444;
}

/* LIST */
.specialized-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* ITEM */
.specialized-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.specialized-item strong {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.specialized-item p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #444;
}

/* CHECK ICON */
.check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #1ea64b;
    color: #1ea64b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* RIGHT IMAGE */
.specialized-image {
    flex: 0 0 480px;
    display: flex;
    justify-content: flex-end;
}

.specialized-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 18px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .specialized-container {
        flex-direction: column;
        gap: 40px;
    }

    .specialized-image {
        justify-content: center;
        width: 100%;
    }

    .specialized-image img {
        max-width: 420px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #333;
}

/* SECTION */
.applications-section {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 80px 0;
}

/* TITLE */
.applications-title {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #3d3d3d;
    margin-bottom: 12px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background-color: #1ea64b;
    margin: 0 auto 35px;
}

/* INTRO TEXT */
.applications-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 50px;
}

/* GRID */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* CARD */
.application-card {
    border: 1px solid #1ea64b;
    padding: 28px 24px;
    background: #ffffff;
}

.application-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #2f2f2f;
    margin-bottom: 10px;
}

.application-card p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #444;
}

/* FOOTER TEXT */
.applications-footer-text {
    font-size: 14.5px;
    line-height: 1.8;
    color: #444;
    max-width: 1100px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .applications-grid {
        grid-template-columns: 1fr;
    }

    .applications-title {
        font-size: 24px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #333;
}

/* SECTION */
.sizes-section {
    padding: 80px 0;
}

/* CONTAINER */
.sizes-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* IMAGE */
.sizes-image {
    flex: 1;
}

.sizes-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

/* CONTENT */
.sizes-content {
    flex: 1;
}

.sizes-content h2 {
    font-size: 30px;
    font-weight: 600;
    color: #3b3b3b;
    margin-bottom: 18px;
}

.sizes-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .sizes-container {
        flex-direction: column;
        gap: 40px;
    }

    .sizes-content h2 {
        font-size: 24px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}

/* SECTION */
.sustainability-contact-section {
    background: #3a8f3f;
    padding: 80px 0;
}

/* CONTAINER */
.sustainability-contact-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

/* LEFT FORM */
.contact-form-box {
    background: rgba(255, 255, 255, 0.12);
    padding: 35px;
    border-radius: 12px;
    width: 420px;
}

.contact-form-box h2 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    background: #eef5ec;
    border: none;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    margin-bottom: 16px;
    outline: none;
}

.contact-form-box textarea {
    height: 120px;
    resize: none;
}

/* RIGHT CONTENT */
.sustainability-text {
    flex: 1;
    color: #ffffff;
}

.sustainability-text h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.sustainability-text p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.sustainability-text img {
    margin-top: 25px;
    max-width: 340px;
    border-radius: 18px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .sustainability-contact-container {
        flex-direction: column;
    }

    .contact-form-box {
        width: 100%;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}

/* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    background: #ffffff;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* FIX HEADER OVERLAP */

.g-faq-section .container {
    max-width: 900px;
    margin: 0 auto;
   
}

.g-faq-title {
    text-align: center;
    margin-bottom: 12px;
    font-size: clamp(2rem, 2vw + 1rem, 2.4rem);
    color: #2e7d32;
}

.g-faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.g-faq-item {
    background: #fff;
    border: 1px solid #cde9c1;
    border-radius: 12px;
    margin-bottom: 18px;
    padding: 6px 22px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.g-faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.07);
}

.g-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    color: #245a2c;
    cursor: pointer;
    gap: 12px;
}

.g-faq-question span:first-child {
    line-height: 1.5;
    text-align: left;
}

.g-faq-question:hover {
    color: #0f8c36;
}

.g-faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1.5px solid #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2e7d32;
    transition: 0.3s ease;
    flex-shrink: 0;
}

.g-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.g-faq-answer p {
    padding: 0 0 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #4d5c4f;
    margin: 0;
}

.g-faq-item.active .g-faq-answer {
    max-height: 260px;
}

.g-faq-item.active .g-faq-toggle {
    transform: rotate(45deg);
    background: #2e7d32;
    color: #fff;
    border-color: #2e7d32;
}

/* ===== Contact Section borrowed from Bio layout ===== */
.bio-contact-gradient-section {
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
    padding: 100px 20px;
    margin-top: 40px;
}

.bio-contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.bio-contact-green-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.bio-contact-form-section {
    flex: 0 0 45%;
    transition: all 1s ease-out;
}

.bio-contact-content-section {
    flex: 0 0 50%;
    transition: all 1s ease-out;
}

.bio-contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.bio-contact-form-group {
    margin-bottom: 20px;
}

.bio-contact-form-section h3,
.bio-contact-content-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.bio-contact-form-group input,
.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: #1b5e20;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.bio-contact-form-group input::placeholder,
.bio-contact-form-group textarea::placeholder {
    color: #777;
}

.bio-contact-form-group input:focus,
.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);
}

.bio-contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.bio-contact-btn-primary {
    width: 60%;
    padding: 15px;
    background: #ffc107;
    color: #1b5e20;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.bio-contact-btn-primary:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bio-contact-sustainability-content p {
    color: #fff;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.bio-contact-sustainability-image {
    margin-top: 30px;
    text-align: center;
    transition: all 1s ease-out;
}

.bio-contact-sustainability-image img {
    width: 100%;
    max-width: 360px;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .bio-contact-green-layout {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .bio-contact-form-section,
    .bio-contact-content-section {
        flex: 1 1 100%;
    }

    .bio-contact-btn-primary {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .bio-contact-gradient-section {
        padding: 80px 20px;
    }

    .bio-contact-form-container {
        padding: 20px;
    }

    .bio-contact-form-section h3,
    .bio-contact-content-section h3 {
        font-size: 1.6rem;
        text-align: center;
    }

    .bio-contact-sustainability-content p {
        font-size: 1rem;
    }
}


/* =============================================
   STRAW (CUTLERY-STYLE) LAYOUT STYLES
============================================= */

.straw-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;
}

.straw-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.straw-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

/* Product Details */
.straw-product-details {
    padding: 0px 20px;
    background: #f8f9fa;
}

.straw-product-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 20px;
    margin-top: 80px;
}

.straw-product-image {
    flex: 1;
    max-width: 500px;
}

.straw-image-wrapper {
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.straw-image-wrapper img {
    max-width: 100%;
    height: auto;
}

.straw-product-description {
    flex: 1;
}

.straw-product-description h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
    text-align: left;
}

/* Premium Bullet */
.straw-premium-bullet {
    list-style: none;
    padding: 0;
    margin: 1px;
    text-align: left;
}

.straw-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;
}

.straw-premium-bullet li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.straw-premium-bullet li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 1px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.straw-premium-bullet li:hover {
    transform: translateX(5px);
    color: #27ae60;
}

.straw-premium-bullet li:hover::before {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

.straw-premium-bullet h4 {
    color: #2E7D32;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.straw-premium-bullet p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.7;
}

/* Product Variants */
.straw-product-variants-section {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
    text-align: center;
}

.straw-product-variants-title {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
    text-align: center;
}

.straw-product-variants-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.straw-product-variant-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.straw-product-variant-card:hover {
    transform: translateY(-5px);
}

.straw-product-variant-image-container {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.straw-product-variant-image-container img {
    max-width: 100%;
    max-height: 136%;
    object-fit: contain;
}

.straw-product-variant-label {
    background-color: #4CAF50;
    color: white;
    padding: 12px 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Best Section */
.straw-best-section {
    background-image: url('../images/Products/Straw.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.straw-best-section::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.straw-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;
}

.straw-best-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: left;
}

.straw-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;
}

.straw-best-list li i {
    background-color: #ffcc00;
    color: #2ecc71;
    font-size: 1.2rem;
    padding: 8px;
    border-radius: 50%;
    margin-top: 3px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.straw-best-list li:hover {
    transform: translateX(10px);
    transition: transform 0.3s ease;
}

.straw-best-list li:hover i {
    color: #27ae60;
    transition: color 0.3s ease;
}

/* Categories */
.straw-categories-section {
    padding: 11px 20px;
    background-color: beige;
}

.straw-categories-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.straw-categories-content {
    flex: 1;
    max-width: 550px;
    line-height: 1.2;
}

.straw-categories-image {
    flex: 1;
    max-width: 550px;
}

.straw-categories-image img {
    width: 100%;
    max-height: 400px;
    margin: 0 auto;
    display: block;
    aspect-ratio: 1/1;
    object-position: center;
}

.straw-categories-title {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

.straw-categories-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 7px;
    line-height: 1.5;
    margin-top: -10px;
}

/* Showcase */
.straw-showcase-section {
    padding: 20px 20px;
    background-color: #f8f9fa;
}

.straw-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 20px;
}

.straw-showcase-image {
    flex: 1;
    max-width: 550px;
}

.straw-showcase-image img {
    width: 100%;
    max-height: 400px;
    margin: 0 auto;
    display: block;
    aspect-ratio: 1/1;
    object-position: center;
}

.straw-showcase-content {
    flex: 1;
    max-width: 550px;
}

.straw-showcase-title {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
    text-align: left;
}

.straw-showcase-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.6;
}

@media (max-width: 768px) {

    .straw-categories-content,
    .straw-categories-title,
    .straw-categories-subtitle,
    .straw-premium-bullet {
        text-align: left !important;
    }
}

/* @media (max-width: 768px) {
    .straw-premium-bullet {
        padding-left: 18px;
    }
} */

@media (max-width: 768px) {

    .straw-showcase-content,
    .straw-showcase-title,
    .straw-showcase-subtitle,
    .straw-showcase-content .straw-premium-bullet {
        text-align: left !important;
    }
}

@media (max-width: 480px) {

    .straw-showcase-content,
    .straw-showcase-title,
    .straw-showcase-subtitle,
    .straw-showcase-content .straw-premium-bullet {
        text-align: left !important;
    }
}

@media (max-width: 768px) {

    .sustainability-section,
    .sustainability-section h2,
    .sustainability-section p {
        text-align: left !important;
    }
}

@media (max-width: 768px) {

    .sustainability-redefined,
    .sustainability-redefined h2,
    .sustainability-redefined p {
        text-align: left !important;
    }
}


/* Contact Section */
.straw-contact-gradient-section {
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
    padding: 17px 20px;
}

.straw-contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.straw-contact-green-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.straw-contact-form-section {
    flex: 0 0 45%;
    transition: all 1s ease-out;
}

.straw-contact-content-section {
    flex: 0 0 50%;
    transition: all 1s ease-out;
}

.straw-contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.straw-contact-form-group {
    margin-bottom: 20px;
    width: 93%;
}

.straw-contact-form-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    margin-top: 25px;
}

.straw-contact-content-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.straw-contact-form-group input,
.straw-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;
}

.straw-contact-form-group input::placeholder,
.straw-contact-form-group textarea::placeholder {
    color: #666;
}

.straw-contact-form-group input:focus,
.straw-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);
}

.straw-contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.straw-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%;
}

.straw-contact-btn-primary:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.straw-contact-sustainability-content p {
    color: #fff;
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 1.1rem;
    text-align: left;
}

.straw-contact-sustainability-image {
    margin-top: 30px;
    text-align: center;
    transition: all 1s ease-out;
}

.straw-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);
}

/* Animations */
@keyframes strawSlideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes strawSlideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes strawSlideInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.straw-animate-slide-left {
    animation: strawSlideInLeft 1s ease-out forwards;
}

.straw-animate-slide-right {
    animation: strawSlideInRight 1s ease-out forwards;
}

.straw-animate-slide-up {
    animation: strawSlideInUp 0.8s ease-out forwards;
}

/* Initial hidden state for animated elements */
.straw-product-image,
.straw-product-description,
.straw-best-title,
.straw-best-list li,
.straw-categories-content,
.straw-categories-image,
.straw-showcase-image,
.straw-showcase-content,
.straw-contact-form-section,
.straw-contact-content-section,
.straw-contact-sustainability-image {
    opacity: 0;
}

.straw-animated-visible {
    opacity: 1 !important;
}

.straw-page .g-faq-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.straw-page .g-faq-item.active .g-faq-answer {
    max-height: 1000px;
    padding: 0px 24px 24px;
}

/* Responsive */
@media (max-width: 992px) {
    .straw-product-variants-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .straw-categories-container,
    .straw-showcase-container,
    .straw-contact-green-layout {
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }

    .straw-categories-content,
    .straw-categories-image,
    .straw-showcase-image,
    .straw-showcase-content {
        max-width: 100%;
    }

    .straw-contact-btn-primary {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .straw-banner h1 {
        font-size: 1.8rem;
    }

    .straw-product-container {
        flex-direction: column;
        gap: 5px;
        text-align: leftr;
    }

    .straw-product-description h2 {
        font-size: 1.8rem;
    }

    .straw-product-image {
        max-width: 100%;
    }

    .straw-showcase-container {
        margin: 0 auto;
    }

    .straw-premium-bullet li {
        font-size: 0.95rem;
        padding-left: 25px;
    }

    .straw-premium-bullet li::before {
        width: 18px;
        height: 18px;
    }

    .straw-premium-bullet li::after {
        left: 5px;
        top: 0px;
        font-size: 10px;
    }

    .straw-contact-form-group {
        width: 100%;
    }

    .straw-contact-form-section h3 {
        margin-top: 0;
        font-size: 1.5rem;
    }

    .straw-contact-content-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .straw-product-variants-grid {
        grid-template-columns: 1fr;
    }

    .straw-banner {
        padding: 70px 16px;
    }

    .straw-banner h1 {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    .straw-image-wrapper {
        padding: 18px;
    }

    .straw-contact-form-container {
        padding: 18px;
    }

    .straw-contact-form-group input,
    .straw-contact-form-group textarea {
        padding: 12px;
    }
}