/* ═══════════════════════════════════════════════════════════
   قسم المتجر - ENHANCED VERSION ✨
   ═══════════════════════════════════════════════════════════ */

#store-section {
    background: linear-gradient(135deg, #2D2D2D 0%, #1F1F1F 50%, #2D2D2D 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

/* خلفية متحركة */
#store-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(79, 111, 82, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(192, 160, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#store-section>* {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   العنوان والوصف
   ═══════════════════════════════════════════════════════════ */

.store-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.store-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #4F6F52 0%, #C0A062 100%);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(79, 111, 82, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(79, 111, 82, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(79, 111, 82, 0.5);
    }
}

#store-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#store-desc {
    font-size: 1.15rem;
    color: #D1D5DB;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   فلاتر المنتجات
   ═══════════════════════════════════════════════════════════ */

.store-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 0.65rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #E5E7EB;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.filter-chip:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(79, 111, 82, 0.5);
    transform: translateY(-2px);
}

.filter-chip.active {
    background: linear-gradient(135deg, #4F6F52 0%, #3A523E 100%);
    border-color: #4F6F52;
    color: white;
    box-shadow: 0 4px 15px rgba(79, 111, 82, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   شبكة المنتجات
   ═══════════════════════════════════════════════════════════ */

#store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* ═══════════════════════════════════════════════════════════
   كارت المنتج - PREMIUM DESIGN
   ═══════════════════════════════════════════════════════════ */

.store-card {
    background: linear-gradient(145deg, #3D3D3D 0%, #2D2D2D 100%);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 111, 82, 0.1) 0%, rgba(192, 160, 98, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.store-card:hover::before {
    opacity: 1;
}

.store-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(79, 111, 82, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* شارة "جديد" */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #C0A062 0%, #A3864D 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(192, 160, 98, 0.4);
}

/* حاوية الصورة */
.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-card:hover .product-image {
    transform: scale(1.15) rotate(2deg);
}

/* Overlay عند التحويم */
.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
    padding: 1.5rem;
}

.store-card:hover .product-overlay {
    opacity: 1;
}

/* أزرار التحكم في الـ overlay */
.overlay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.store-card:hover .overlay-btn {
    transform: translateY(0);
}

.overlay-btn:first-child {
    transition-delay: 0.1s;
}

.overlay-btn:last-child {
    transition-delay: 0.2s;
}

.btn-view {
    background: white;
    color: #2D2D2D;
}

.btn-view:hover {
    background: #F2F4F1;
    transform: translateY(-3px);
}

.btn-order {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.btn-order:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0F7566 100%);
    transform: translateY(-3px);
}

/* معلومات المنتج */
.product-info {
    padding: 1.75rem;
    position: relative;
    z-index: 2;
}

.product-category {
    font-size: 0.75rem;
    color: #C0A062;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.store-card:hover .product-name {
    color: #4F6F52;
}

.product-description {
    font-size: 0.9rem;
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* السعر */
.product-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #C0A062;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-currency {
    font-size: 0.9rem;
    color: #9CA3AF;
}

.price-old {
    font-size: 1rem;
    color: #6B7280;
    text-decoration: line-through;
    font-weight: 400;
}

/* زر سريع */
.quick-action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4F6F52 0%, #3A523E 100%);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(79, 111, 82, 0.3);
}

.quick-action-btn:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(79, 111, 82, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   المودال - PREMIUM MODAL
   ═══════════════════════════════════════════════════════════ */

#store-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.4s ease;
}

#store-modal.show {
    display: flex;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

#store-modal .modal-content {
    background: linear-gradient(145deg, #FFFFFF 0%, #F9FAFB 100%);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

#store-modal.show .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }
}

/* زر الإغلاق */
.modal-close {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 20;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: rotate(90deg);
}

/* صورة المودال */
.modal-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    flex-shrink: 0;
}

#modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 5;
}

.modal-data-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 90vh;
}

/* محتوى المودال */
.modal-body {
    padding: 2.5rem;
    overflow-y: auto;
    flex-grow: 1;
}

.sticky-footer {
    padding: 1.5rem 2.5rem;
    background: white;
    border-top: 1px solid #E5E7EB;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

#modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2D2D2D;
    margin-bottom: 0.75rem;
}

.modal-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(79, 111, 82, 0.1);
    color: #4F6F52;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

#modal-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #C0A062;
    margin-bottom: 1.5rem;
}

#modal-desc {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* مميزات المنتج */
.product-features {
    background: #F9FAFB;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.product-features h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list {
    display: grid;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: #6B7280;
    font-size: 0.9rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4F6F52;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* أزرار المودال */
#modal-action-container {
    display: flex;
    gap: 1rem;
}

#modal-action-container button {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   حالات فارغة ورسائل
   ═══════════════════════════════════════════════════════════ */

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #9CA3AF;
}

.empty-state svg {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D1D5DB;
    margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════
   Responsive Design
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    #store-section {
        padding: 3rem 0;
    }

    #store-title {
        font-size: 2rem;
    }

    #store-desc {
        font-size: 1rem;
    }

    /* ── Horizontal scroll carousel ── */
    #store-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 0.5rem 16px;
        margin: 0;
        scrollbar-width: none;
        grid-template-columns: none;
    }
    #store-grid::-webkit-scrollbar { display: none; }

    .store-card {
        flex: 0 0 calc(40% - 10px);
        min-width: 0;
        scroll-snap-align: start;
        animation: none;
        border-radius: 14px;
    }
    .store-card:hover {
        transform: none;
    }

    .product-image-wrapper {
        height: 140px;
    }

    .product-description {
        display: none;
    }

    .product-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
        top: 0.5rem;
        right: 0.5rem;
    }

    .product-info {
        padding: 0.6rem;
        overflow: hidden;
    }

    .product-category {
        font-size: 0.55rem;
        margin-bottom: 0.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-name {
        font-size: 0.7rem;
        line-height: 1.2;
        margin-bottom: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-price-wrapper {
        padding-top: 0.15rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
    }

    .product-price {
        font-size: 0.95rem;
    }

    .price-old {
        font-size: 0.7rem;
    }

    .price-currency {
        font-size: 0.65rem;
    }

    .quick-action-btn {
        display: none;
    }

    /* ── Filters scroll ── */
    .store-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        margin-bottom: 1.5rem;
        scrollbar-width: none;
    }
    .store-filters::-webkit-scrollbar { display: none; }

    .filter-chip {
        font-size: 0.8rem;
        padding: 0.45rem 1.1rem;
        white-space: nowrap;
    }

    /* ── Full Store Button ── */
    #full-store-btn-wrap a {
        font-size: 0.9rem !important;
        padding: 0.7rem 1.8rem !important;
    }
    #full-store-btn-wrap p:first-child {
        font-size: 0.9rem !important;
    }
    #full-store-btn-wrap p:last-child {
        font-size: 0.65rem !important;
    }

    /* ── Modal ── */
    .modal-image-wrapper {
        height: 250px;
    }

    .modal-body {
        padding: 1.75rem;
    }

    #modal-title {
        font-size: 1.5rem;
    }

    #modal-price {
        font-size: 1.75rem;
    }

    #modal-action-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    #store-section {
        padding: 2rem 0;
    }

    .store-header {
        margin-bottom: 2rem;
    }

    .store-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .store-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    #store-title {
        font-size: 1.5rem;
    }

    #store-desc {
        font-size: 0.85rem;
    }

    /* ── Carousel compact ── */
    #store-grid {
        gap: 8px;
        padding: 0.4rem 12px;
        margin: 0;
    }

    .store-card {
        flex: 0 0 calc(40% - 6px);
        border-radius: 10px;
    }

    .product-image-wrapper {
        height: 100px;
    }

    .product-info {
        padding: 0.5rem;
        overflow: hidden;
    }

    .product-category {
        font-size: 0.5rem;
        margin-bottom: 0.15rem;
    }

    .product-name {
        font-size: 0.65rem;
        line-height: 1.2;
        margin-bottom: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-price-wrapper {
        padding-top: 0.1rem;
    }

    .product-price {
        font-size: 0.65rem;
    }

    .price-old {
        font-size: 0.6rem;
    }

    .price-currency {
        font-size: 0.55rem;
    }

    .product-badge {
        font-size: 0.45rem;
        padding: 0.15rem 0.45rem;
        top: 0.35rem;
        right: 0.35rem;
    }

    /* ── Filter chips ── */
    .filter-chip {
        font-size: 0.7rem;
        padding: 0.35rem 0.85rem;
    }

    .store-filters {
        gap: 0.35rem;
        margin-bottom: 1rem;
    }

    /* ── Full Store Button ── */
    #full-store-btn-wrap a {
        font-size: 0.8rem !important;
        padding: 0.55rem 1.4rem !important;
    }
    #full-store-btn-wrap p:first-child {
        font-size: 0.8rem !important;
    }
    #full-store-btn-wrap p:last-child {
        font-size: 0.6rem !important;
    }
    #full-store-btn-wrap {
        padding: 1.5rem 0 !important;
    }

    /* ── Modal ── */
    #store-modal .modal-content {
        border-radius: 16px;
        margin: 0.5rem;
    }

    .modal-image-wrapper {
        height: 200px;
    }

    .modal-body {
        padding: 1.25rem;
    }

    #modal-title {
        font-size: 1.25rem;
    }

    #modal-price {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    #modal-desc {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .product-features {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }

    .overlay-btn {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   Mobile fixes — no overlapping
   ═══════════════════════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
  .product-overlay { display: none !important; }
  .store-card:hover { transform: none !important; }
  .store-card:hover .product-image { transform: none !important; }
  .store-card::before { display: none !important; }
}


/* ═══════════════════════════════════════════════════════════
    Animations
    ═══════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.store-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.store-card:nth-child(1) {
    animation-delay: 0.1s;
}

.store-card:nth-child(2) {
    animation-delay: 0.2s;
}

.store-card:nth-child(3) {
    animation-delay: 0.3s;
}

.store-card:nth-child(4) {
    animation-delay: 0.4s;
}

.store-card:nth-child(5) {
    animation-delay: 0.5s;
}

.store-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* ═══════════════════════════════════════════════════════════
   Loading State
   ═══════════════════════════════════════════════════════════ */

.loading-skeleton {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.05) 25%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ═══════════════════════════════════════════════════════════
   Performance Optimizations
   ═══════════════════════════════════════════════════════════ */

.store-card,
.product-image,
.overlay-btn,
#store-modal .modal-content {
    will-change: transform;
}

/* ═══════════════════════════════════════════════════════════
   Offer Badge
   ═══════════════════════════════════════════════════════════ */
.badge-offer {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%) !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4) !important;
}

/* ═══════════════════════════════════════════════════════════
   Sold Out Badge
   ═══════════════════════════════════════════════════════════ */
.badge-sold-out {
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%) !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(107, 114, 128, 0.4) !important;
}

/* ═══════════════════════════════════════════════════════════
   Sold Out Overlay on Image
   ═══════════════════════════════════════════════════════════ */
.sold-out-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
}

.sold-out-overlay span {
    background: rgba(107, 114, 128, 0.9);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.product-image-wrapper.sold-out {
    filter: grayscale(0.5);
}

/* ═══════════════════════════════════════════════════════════
   Product Tags
   ═══════════════════════════════════════════════════════════ */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.product-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(79, 111, 82, 0.1);
    color: #4F6F52;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(79, 111, 82, 0.15);
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   Modal Features
   ═══════════════════════════════════════════════════════════ */
.product-features {
    background: #F9FAFB;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.product-features h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list {
    display: grid;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: #6B7280;
    font-size: 0.9rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4F6F52;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.7rem;
    font-weight: 700;
}

