.pof_prdct_img {
    height: 250px;
}

@media screen and (max-width: 480px) {
    .pof_prdct_img {
        height: auto;
    }
}

@media screen and (min-width: 993px) and (max-width: 1024px) {
    .pof_prdct_img {
        height: 180px !important;
    }
}

@media (max-width: 992px) {
    .pof_prdct_img {
        height: 180px !important;
    }
}

/* Top button Css Start */
button {
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #ed3237;
    color: white;
    transition: background 0.3s;
}

button a {
    color: white;
}

button a:hover {
    color: white;
    text-decoration: none;
}

button:hover {
    background-color: #212529;
}

.button-container {
    display: flex;
    gap: 20px;
    margin-top: 4.2rem;
    place-content: center;
    margin-bottom: 30px;
}

/* Active PAGE button color */
button.nav-btn.allbtn.active {
    background-color: #212529 !important;
}

/* Top button Css End */

/* --- PRODUCT GRID WRAPPER --- */
.our_recycling_products_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* --- DEFAULT: Desktop / Laptop → 3 Columns --- */
.recycling_products_container.pet_products {
    flex: 0 0 33.33%;
    max-width: calc(33.33% - 20px);
}

/* --- TABLET → 2 Columns --- */
@media (max-width: 992px) {
    .recycling_products_container.pet_products {
        flex: 0 0 50%;
        max-width: calc(50% - 15px);
    }

    .our_recycling_products_flex .recycling_products_container .recycling_product_box {
        padding: 2.354vw;
    }
}

/* --- MOBILE → 1 Column --- */
@media (max-width: 600px) {
    .recycling_products_container.pet_products {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .animated_card {
        padding: 18px;
    }

    .our_recycling_products_flex .recycling_products_container .recycling_product_box {
        padding: 5.354vw;
    }
}

/* --- IMAGE FIX --- */
img.pod_color_icons {
    width: 100%;
    height: auto;
    display: block;
}

/* --- PRODUCT CARD --- */
.animated_card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.animated_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* --- COLOR GRID --- */
.grade_color_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.grade_color_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 99px;
    padding: 12px;
    background: #f9faff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.grade_color_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.color_circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-bottom: 8px;
    border: 1px solid #ccc;
}

.grade_name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.color_name {
    font-size: 13px;
    color: #555;
}

/* --- SPECS GRID (auto responsive) --- */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px 18px;
    margin-bottom: 26px;
}

.spec-item {
    background: #f6f6f6;
    padding: 12px 14px;
    border-radius: 8px;
    border-left: 4px solid #cf1f1f;
}

.spec-label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
}

.spec-value {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    margin-top: 4px;
}

.sec_header .title {
    font-size: 48px;
    font-weight: 700;
    /* margin-bottom: 40px; */
}

/* Container for both buttons */
.floating-left-buttons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* distance between buttons */
    z-index: 9999;
}

/* Floting Buttons Css Start */
.float-btn {
    background: #ed3237;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

/* Hover effect */
.float-btn:hover {
    background: #212529;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Tablet */
@media (max-width: 768px) {
    .floating-left-buttons {
        left: 15px;
        bottom: 15px;
    }

    .float-btn {
        font-size: 14px;
        padding: 10px 18px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .floating-left-buttons {
        left: 12px;
        bottom: 12px;
        gap: 10px;
    }

    .float-btn {
        font-size: 13px;
        padding: 8px 15px;
    }
}