/* کانتینر اصلی */
.ppf-container {
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    border-radius: 15px;
    margin: 20px 0;
    direction: rtl;
    position: relative;
    z-index: 9999;
    overflow: visible;
}

/* گرید اصلی باکس‌ها */
.ppf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10000;
    overflow: visible;
}

/* سلکت‌ها */
.ppf-grid select {
    background: #fff; /* رنگ کاملاً سفید */
    color: #000; /* متن کاملاً مشکی */
    border: 1px solid #000; /* حاشیه مشکی */
    border-radius: 10px;
    padding: 0 14px;
    font-size: 15px;
    height: 45px; /* ارتفاع کمتر */
    min-height: 45px;
    line-height: 45px;
    direction: rtl;
    text-align: right;
    position: relative;
    z-index: 10002;
    /* فلش پایین بزرگتر */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23000' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 36px; /* فاصله متن با فلش */
}

/* سلکت‌های غیرفعال */
.ppf-grid select:disabled {
    opacity: 0.8;
    background: #f5f5f5;
}

/* دکمه نمایش محصولات */
.ppf-btn {
    background: #d00023;
    color: #fff;
    border: 1px solid #000; /* حاشیه مشکی */
    border-radius: 10px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    padding: 0 18px;
    height: 45px; /* ارتفاع کمتر */
    min-height: 45px;
    line-height: 45px;
    width: 75%; /* نصف عرض */
    transition: 0.3s;
    position: relative;
    z-index: 10002;
    justify-self: center; /* وسط چین در گرید */
}

.ppf-btn:hover {
    background: #d00023;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 43, 0.3);
}

/* گرید پنج ستونه روی دسکتاپ */
@media (min-width: 992px) {
    .ppf-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .ppf-grid .ppf-btn {
        grid-column: 3;
    }
}

/* حالت موبایل */
@media (max-width: 768px) {
    .ppf-grid {
        grid-template-columns: 1fr;
    }

    /* باکس‌ها کمی کوتاه‌تر از کل عرض */
    .ppf-grid select {
        width: 90%;          /* کمتر از 100% */
        margin: 0 auto;      /* وسط چین */
    }

    /* دکمه نمایش محصولات نصف باکس‌ها */
    .ppf-btn {
        width: 45%;           /* تقریباً نصف باکس */
        margin: 0 auto;       /* وسط چین */
    }
}