.fp-inventory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 5%;
    margin: 20px 0;
	box-sizing: border-box;
}
.fp-inventory-grid * {
	box-sizing: border-box;
}
.fp-inventory-item {
    display: grid;
    grid-template-rows: auto;
    gap: 5px;
    align-items: start;
    font-family: Arial, sans-serif;
    font-size: 14px;
    padding: 0;
}

.fp-inventory-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
}
.fp-location-name {
	font-size: 1em;
    text-align: left;
}

.fp-stock-status-label {
    font-size: 14px;
    text-align: left;
    color: #333;
	text-align: right;
}

.fp-stock-status-icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: relative;
    overflow: visible;
}

.fp-stock-status-icon::after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    border: 2px solid white;
    border-radius: 50%;
    z-index: 1;
}

.fp-stock-status-icon::before {
    content: '';
    display: block;
    width: 50%;
    height: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.fp-inventory-item.is-in-stock .fp-stock-status-icon {
    background-color: #007700;
}

.fp-inventory-item.is-in-stock .fp-stock-status-icon::before {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill=\'white\' d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"/></svg>');
}

.fp-inventory-item.is-in-stock .fp-stock-status-label {
    color: #007700;
}

.fp-inventory-item.is-out-of-stock .fp-stock-status-icon {
    background-color: #ca0202;
}

.fp-inventory-item.is-out-of-stock .fp-stock-status-icon::before {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill=\'white\' d="M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"/></svg>');
}

.fp-inventory-item.is-out-of-stock .fp-stock-status-label {
    color: #ca0202;
}

.fp-inventory-item.is-low-stock .fp-stock-status-icon {
    background-color: #ec9900;
}

.fp-inventory-item.is-low-stock .fp-stock-status-icon::before {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 512"><path fill=\'white\' d="M96 64c0-17.7-14.3-32-32-32S32 46.3 32 64l0 256c0 17.7 14.3 32 32 32s32-14.3 32-32L96 64zM64 480a40 40 0 1 0 0-80 40 40 0 1 0 0 80z"/></svg>');
}

.fp-inventory-item.is-low-stock .fp-stock-status-label {
    color: #ec9900;
}

@media (max-width: 767px) {
    .fp-inventory-grid {
        grid-template-columns: 1fr;
    }
	
}

/* NUEVO DISEÑO */
 /* Header */
 .header {
    background-color: #DC2626;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icon {
    width: 32px;
    height: 32px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.025em;
   
}
/* Store List */
.store-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.store-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #D1D5DB;
}

.store-item:last-child {
    border-bottom: none;
}

.store-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-icon {
    width: 20px;
    height: 20px;
    color: #6B7280;
}

.store-name {
    font-weight: bold;
    color: #1F2937;

}

/* Status Indicators */
.status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-text {
    font-weight: 600;
}

.status-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-available .status-text {
    color: #16A34A;
}

.status-available .status-icon {
    background-color: #16A34A;
}

.status-limited .status-text {
    color: #ec9900;
}

.status-limited .status-icon {
    background-color: #ec9900;
}

.status-out .status-text {
    color: #DC2626;
}

.status-out .status-icon {
    background-color: #DC2626;
}

/* Warehouse Section */
.warehouse-section {
    background-color: #F9FAFB;
    border-radius: 8px;
    padding: 24px;
    max-width: 600px;
}


/* SVG Icons */
.icon {
    fill: currentColor;
}

 /* Main Layout */
 .main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.zone-section {
    background-color: #F9FAFB;
    border-radius: 8px;
    padding: 24px;
}

.zone-header {
    background-color: #4B5563;
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    display: inline-block;
}

.zone-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color:#fff !important;
}


/* Responsive */
@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 16px;
    }
    
    .header {
        padding: 12px 16px;
        margin-bottom: 24px;
    }
    
    .header-title {
        font-size: 18px;
    }
    
    .zone-section, .warehouse-section {
        padding: 16px;
    }
    
    .store-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .status {
        margin-left: 32px;
    }
}