/* Pack Details Page Styles */

/* Remove wishlist buttons */
.wishlist-btn,
.add-to-wishlist,
.btn-wishlist,
[data-action="wishlist"],
.product__wishlist,
.pack__wishlist,
[title*="wishlist"],
[title*="favoris"],
[title*="compare"],
[title*="comparer"],
.fa-heart,
.far.fa-heart,
.fas.fa-heart,
.fa-exchange-alt,
.fas.fa-exchange-alt {
    display: none !important;
}

/* Hide parent li elements that contain wishlist/compare icons */
li:has(.fa-heart),
li:has(.fa-exchange-alt) {
    display: none !important;
}

/* Enhanced pack details styling */
.pack-details-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0 50px;
}

.pack__image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pack__image:hover {
    transform: translateY(-5px);
}

.pack__image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.pack__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #C9A961 0%, #D4AF37 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.pack__info {
    padding-left: 40px;
}

.pack__title {
    color: #283519;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pack__description {
    background: rgba(201, 169, 97, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #C9A961;
    margin-bottom: 30px;
}

.pack__description p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.pack__price {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border: 2px solid #C9A961;
}

.price__old {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-right: 15px;
}

.price__new {
    color: #C9A961;
    font-weight: 700;
    font-size: 2rem;
}

.price__current {
    color: #283519;
    font-weight: 700;
    font-size: 2rem;
}

.price__discount {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.pack__stats {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.stat__item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.stat__item:hover {
    background: rgba(201, 169, 97, 0.2);
    transform: translateX(5px);
}

.stat__item:last-child {
    margin-bottom: 0;
}

.stat__item i {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.stat__item span {
    font-weight: 600;
    color: #283519;
    font-size: 1.1rem;
}

.pack__actions {
    text-align: center;
}

.pack__actions .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pack__actions .btn-primary {
    background: linear-gradient(135deg, #C9A961 0%, #D4AF37 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

.pack__actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.6);
}

/* Products and Gifts Sections */
.products-section,
.gifts-section {
    padding: 80px 0;
}

.products-section {
    background: white;
}

.gifts-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section__title h2 {
    color: #283519;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section__title p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

/* Product Cards */
.product__card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.product__card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateY(-8px);
}

.product__image {
    position: relative;
    overflow: hidden;
}

.product__image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product__card:hover .product__image img {
    transform: scale(1.1);
}

.product__actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.product__card:hover .product__actions {
    opacity: 1;
}

.product__actions .btn {
    background: rgba(201, 169, 97, 0.95);
    border: none;
    color: #283519 !important;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.product__actions .btn:hover {
    background: rgba(201, 169, 97, 0.95);
    color: white !important;
    transform: scale(1.05);
    text-decoration: none;
}

.product__actions .btn i {
    color: inherit;
}

.product__info {
    padding: 25px;
}

.product__name {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.product__name a {
    color: #283519;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product__name a:hover {
    color: #C9A961;
}

.product__price {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.product__price del {
    color: #999;
    margin-right: 10px;
}

.product__price span {
    color: #C9A961;
}

.product__category {
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.product__category small {
    color: #666;
    font-weight: 500;
}

/* Gift Cards */
.gift__card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.1);
    position: relative;
}

.gift__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C9A961 0%, #D4AF37 100%);
}

.gift__card:hover {
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.2);
    transform: translateY(-8px);
}

.gift__image {
    position: relative;
    overflow: hidden;
}

.gift__image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gift__card:hover .gift__image img {
    transform: scale(1.1);
}

.gift__quantity {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.gift__quantity .badge {
    background: linear-gradient(135deg, #C9A961 0%, #D4AF37 100%);
    font-size: 1rem;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.gift__info {
    padding: 25px;
}

.gift__name {
    color: #283519;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.2rem;
}

.gift__description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.gift__badge .badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pack__info {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .pack__title {
        font-size: 2rem;
    }
    
    .price__new, .price__current {
        font-size: 1.5rem;
    }
    
    .section__title h2 {
        font-size: 2rem;
    }
    
    .pack__image img {
        height: 300px;
    }
    
    .product__image img,
    .gift__image img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .pack-details-section,
    .products-section,
    .gifts-section {
        padding: 40px 0;
    }
    
    .pack__title {
        font-size: 1.8rem;
    }
    
    .section__title h2 {
        font-size: 1.8rem;
    }
    
    .pack__actions .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}