.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.nouvellepack_main{
    
}

/* Banner Styles */
.banner {
    position: relative;
    width: 100%;
    height: auto;
    background-color:#2045a8;
}

.banner img {
    width: 100%;
    height: auto;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: none;
    align-items: center;
}

.banner-title {
    color: white;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 5px;
}

.banner-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

/* Main Content */
.main-content {
    padding: 20px 15px 120px 15px;
}

.section-header {
    margin-bottom: 25px;
    padding-left:10px;
    display:flex;
    align-items:end;
    gap:15px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color:#fff;
    line-height:2.8rem;
}

.section-description {
    color:#ffffffd7;
}

/* Grid */
.items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

/* Item Card */
.item-card {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 15px;
}

.item-card.default {
    background-color: white;
    border: 1px solid #e5e7eb;
}

.item-card.disabled {
    background: linear-gradient(to bottom right, #f9fafb, #f3f4f6);
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.item-card.completed {
    background: linear-gradient(to bottom right, #ecfdf5, #d1fae5);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #a3e4c2;
}

.check-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    width: 28px;
    height: 28px;
    background-color: #22c55e;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon {
    width: 16px;
    height: 16px;
    stroke: white;
    stroke-width: 3;
    fill: none;
}

.item-header {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.item-thumbnail {
    flex-shrink: 0;
}

.thumbnail-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f3f4f6;
    transition: all 0.3s ease;
    width: 128px;
    height:128px;
    max-width:100%;
}

.thumbnail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-info {
    padding-top: 2px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f3f4f6;
}

.item-brand {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 2px;
}

.item-name {
    font-weight: bold;
    color: #111827;
    font-size: 18px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.quantity-btn:not(:disabled):hover {

}

.quantity-btn:not(:disabled):active {
    transform: scale(0.95);
}

.quantity-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.quantity-btn svg {
    width: 16px;
    height: 16px;
    color: #374151;
}

.quantity-text {
    min-width: 25px;
    text-align: center;
    font-weight: 600;
    color: #111827;
}

/* Form Elements */
.form-group {
    margin-bottom: 10px;
}

.form-group.space-y {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.form-label.required {
    color: #ee3338;
}

.form-label.completed {
    color: #374151;
    margin-left: auto;
    padding-right: 5px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 8px 10px;
    padding-right: 25px;
    border-radius: 8px;
    border: 1px solid;
    appearance: none;
    background-color: white;
    color: #111827;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 16px;
}

.select-wrapper select:focus {
    outline: none;
    border-color: #9ca3af;
}

.select-wrapper select.required {
    border-color: #ee3338;
}

.select-wrapper select.required:hover {
    border-color: #d82d32;
}


.select-wrapper select.completed {
    border-color: #e5e7eb;
}

.select-wrapper select.completed:hover {
    border-color: #d1d5db;
}

.select-wrapper svg {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    color: #9ca3af;
    pointer-events: none;
}

/* Fixed Purchase Section */
.purchase-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -10px 15px -3px rgba(0, 0, 0, 0.05);
    z-index: 50;
}

.purchase-content {
    max-width:860px;
    padding: 10px;
}

.purchase-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.progress-info p {
    font-size: 16px;
    color: #4b5563;
}

.progress-count {
    font-size: 20px;
    font-weight: bold;
    color: #111827;
}

.price-info {
    text-align: right;
}

.price-label {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 3px;
}

.price-member {
    font-size: 20px;
    font-weight: bold;
    color: #ee3338;
}

.price-ep {
    font-size: 24px;
    font-weight: bold;
    color: #ff9027;
}

.purchase-btn {
    width: 100%;
    padding: 10px 15px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    background-color: #ee3338;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.purchase-btn:not(:disabled):hover {
    background-color: #d82d32;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.purchase-btn:not(:disabled):active {
    transform: scale(0.98);
}

.purchase-btn:disabled {
    background-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
}

.remaining-message {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin-top: 5px;
}

.nouvelle_notice{
    width:100%;
    height:auto;
    padding-top:20px;
    padding-left:10px;
    word-break:keep-all;
    padding:50px 0;
}
    .noti_title{
        font-size:18px;
        font-weight:700;
        color:#fff;
    }
    .noti_con{
        color:#fff;
        font-size:16px;
        font-weight:400;
        line-height:1.6rem;
        height:16px;
    }



/* Responsive Design */
@media (min-width: 768px) {
    .banner {
        
    }

    .banner-title {
        font-size: 36px;
    }

    .banner-subtitle {
        font-size: 20px;
    }

    .container {
        padding: 0 15px;
    }

    .main-content {
        margin-top:0px;
        padding: 30px 20px 160px 20px;
    }

    .section-title {
        font-size: 30px;
    }

    .items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .item-card {
        padding: 13px;
    }

    .purchase-content {
        padding: 10px 15px;
    }

    .price-ep {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    .items-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .item-card.default {
        padding: 15px;
    }
}