/* =============================================
   PLASTIC BAG PAGE STYLES
============================================= */

/* Plastic Bag Banner */
.plastic-bag-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;
}

.plastic-bag-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.plastic-bag-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;

}

/* Plastic Bag Product Details */
.plastic-bag-product-details {
    padding: 0px 20px;
    background: #f8f9fa;
}

.plastic-bag-product-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
    margin-top: 90px;
}

.plastic-bag-product-image {
    flex: 1;
    max-width: 500px;
}

/* Main product image styles handled globally in common.css */

.plastic-bag-product-description {
    flex: 1;
}

.plastic-bag-product-description h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

.plastic-bag-product-description p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Product Variants Section */
.plastic-bag-product-variants-section {
    background-color: #e8f5e8;
    padding: 2px 20px;
    text-align: center;
}

.plastic-bag-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;
}

.plastic-bag-product-variants-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.plastic-bag-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;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plastic-bag-product-variant-card:hover {
    transform: translateY(-5px);
}

.plastic-bag-product-variant-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 15px;
    background-color: #fff;
    min-height: 200px;
}

.plastic-bag-product-variant-image-container img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.plastic-bag-product-variant-label {
    background-color: #4CAF50;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .plastic-bag-product-variants-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .plastic-bag-product-variants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .plastic-bag-product-variants-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .plastic-bag-product-variants-grid {
        grid-template-columns: 1fr;
    }
}

/* Best Section */
.plastic-bag-best-section {
    background-image: url('../images/Plastic_Carrier_Bag/plastic-carrier-bag.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.plastic-bag-best-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.plastic-bag-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;
}

.plastic-bag-best-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: left;
}

.plastic-bag-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;
}

.plastic-bag-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;
}

.plastic-bag-best-list li:hover {
    transform: translateX(10px);
    transition: transform 0.3s ease;
}

.plastic-bag-best-list li:hover i {
    color: #27ae60;
    transition: color 0.3s ease;
}

/* Categories Section */
.plastic-bag-categories-section {
    padding: 11px 20px;
    background-color: beige;
}

.plastic-bag-categories-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.plastic-bag-categories-content {
    flex: 1;
    max-width: 550px;
    line-height: 1.2;
}

.plastic-bag-categories-image {
    flex: 1;
    max-width: 550px;
}

.plastic-bag-categories-image img {
    width: 100%;
    max-height: 400px;
    margin: 0 auto;
    display: block;
    aspect-ratio: 1/1;
    object-position: center;
}

.plastic-bag-categories-title {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
    text-align: left;
}

.plastic-bag-categories-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 7px;
    line-height: 1.5;
    margin-top: -10px;
}

@media (max-width: 992px) {
    .plastic-bag-categories-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .plastic-bag-categories-content,
    .plastic-bag-categories-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .plastic-bag-categories-title {
        font-size: 1.8rem;
    }

    .plastic-bag-categories-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* Showcase Section */
.plastic-bag-showcase-section {
    padding: 20px 20px;
    background-color: #f8f9fa;
}

.plastic-bag-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 20px 20px;
}

.plastic-bag-showcase-image {
    flex: 1;
    max-width: 550px;
}

.plastic-bag-showcase-image img {
    width: 100%;
    height: auto;

}

.plastic-bag-showcase-content {
    flex: 1;
    max-width: 550px;
}

.plastic-bag-showcase-title {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

.plastic-bag-showcase-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .plastic-bag-showcase-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .plastic-bag-showcase-image,
    .plastic-bag-showcase-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .plastic-bag-showcase-title {
        font-size: 1.8rem;
    }

    .plastic-bag-showcase-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* Contact Section */
.plastic-bag-bio-contact-gradient-section {
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
    padding: 17px 20px;
}

.plastic-bag-bio-contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.plastic-bag-bio-contact-green-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.plastic-bag-bio-contact-form-section {
    flex: 0 0 45%;
    transition: all 1s ease-out;
}

.plastic-bag-bio-contact-content-section {
    flex: 0 0 50%;
    transition: all 1s ease-out;
}

.plastic-bag-bio-contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.plastic-bag-bio-contact-form-group {
    margin-bottom: 20px;
    width: 93%;
}

.plastic-bag-bio-contact-form-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    margin-top: 25px;
}

.plastic-bag-bio-contact-content-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.plastic-bag-bio-contact-form-group input,
.plastic-bag-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;
}

.plastic-bag-bio-contact-form-group input::placeholder,
.plastic-bag-bio-contact-form-group textarea::placeholder {
    color: #666;
}

.plastic-bag-bio-contact-form-group input:focus,
.plastic-bag-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);
}

.plastic-bag-bio-contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.plastic-bag-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%;
}

.plastic-bag-bio-contact-btn-primary:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.plastic-bag-bio-contact-sustainability-content p {
    color: #fff;
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.plastic-bag-bio-contact-sustainability-image {
    margin-top: 30px;
    text-align: center;
    transition: all 1s ease-out;
}

.plastic-bag-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);
}

@media (max-width: 992px) {
    .plastic-bag-bio-contact-green-layout {
        flex-direction: column;
        gap: 40px;
    }

    .plastic-bag-bio-contact-form-section,
    .plastic-bag-bio-contact-content-section {
        flex: 1 1 100%;
    }
    
    .plastic-bag-bio-contact-form-section {
        order: 1;
    }

    .plastic-bag-bio-contact-content-section {
        order: 2;
    }

    .plastic-bag-bio-contact-btn-primary {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
   

    .plastic-bag-bio-contact-form-section h3,
    .plastic-bag-bio-contact-content-section h3 {
        font-size: 1.5rem;
    }

    .plastic-bag-bio-contact-form-container {
        padding: 20px;
    }
}

/* Premium Bullet */
.plastic-bag-premium-bullet {
    list-style: none;
    padding: 0;
    margin: 1px;
    text-align: left;
}

.plastic-bag-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;
}

.plastic-bag-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;
}

.plastic-bag-premium-bullet li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 1px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.plastic-bag-premium-bullet li:hover {
    transform: translateX(5px);
    color: #27ae60;
}

.plastic-bag-premium-bullet li:hover::before {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

/* Animation visibility */
.plastic-bag-product-image,
.plastic-bag-product-description,
.plastic-bag-best-title,
.plastic-bag-best-list li,
.plastic-bag-categories-content,
.plastic-bag-categories-image,
.plastic-bag-showcase-image,
.plastic-bag-showcase-content,
.plastic-bag-bio-contact-form-section,
.plastic-bag-bio-contact-content-section,
.plastic-bag-bio-contact-sustainability-image {
    opacity: 0;
}

.animated-visible {
    opacity: 1 !important;
}

@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;
    }
}

@keyframes slideInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-left {
    animation: slideInLeft 1s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 1s ease-out forwards;
}

.animate-slide-up {
    animation: slideInUp 0.8s ease-out forwards;
}