/* Enhanced Gallery Styles for Seival */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    min-height: 100vh;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeIn 0.8s ease-out;
}

.page-title {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Selection Summary */
.selection-summary {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 35px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.selection-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.summary-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.timer-container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.summary-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Timer Box */
.timer-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(107, 125, 95, 0.15) 0%, rgba(212, 175, 55, 0.25) 100%);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    padding: 10px 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    z-index: 10;
}

.timer-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

/* Floating Info Box */
.floating-info-box {
    position: absolute;
    top: 100%;
    margin-top: 15px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: 20px;
    width: 320px;
    z-index: 9999;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.floating-info-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-info-box h4 {
    color: var(--accent-gold);
    margin: 0 0 12px 0;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}

.floating-info-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.floating-info-box ul {
    margin: 0 0 15px 20px;
    padding: 0;
}

.floating-info-box li {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    position: relative;
}

.floating-info-box li:before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: bold;
    margin-right: 8px;
}

.timer-icon {
    font-size: 1.4rem;
    color: var(--accent-gold);
    animation: pulse 2s infinite;
}

.timer-text {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

.timer-text strong {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Timer Info Tooltip */
.timer-info {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon {
    font-size: 1.1rem;
    color: var(--accent-gold);
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    z-index: 9998;
}

.info-icon:hover {
    transform: scale(1.15) rotate(10deg);
    background: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.info-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    z-index: 9999;
    display: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

.timer-info:hover .info-tooltip {
    display: block;
    opacity: 1;
}

.info-tooltip:hover {
    display: block;
    opacity: 1;
}

.info-tooltip h4 {
    color: var(--accent-gold);
    margin: 0 0 12px 0;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}

.info-tooltip p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.info-tooltip ul {
    margin: 0 0 15px 20px;
    padding: 0;
}

.info-tooltip li {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    position: relative;
}

.info-tooltip li:before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: bold;
    margin-right: 8px;
}

.info-tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--accent-gold);
}

.summary-icon {
    font-size: 2rem;
    color: var(--accent-gold);
}

.summary-text {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-text strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.summary-total {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-total strong {
    font-size: 1.4rem;
}

.summary-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-clear {
    padding: 12px 25px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-clear:hover {
    background: rgba(255, 100, 100, 0.15);
    color: #ff6b6b;
    border-color: #ff6b6b;
    transform: translateY(-2px);
}

.btn-finalize {
    padding: 12px 25px;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-dark);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.btn-finalize:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Responsive adjustments for selection summary */
@media (max-width: 992px) {
    .summary-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .summary-actions {
        width: 100%;
        justify-content: center;
    }
    
    .timer-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .selection-summary {
        padding: 20px;
    }
    
    .summary-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .summary-text,
    .summary-total {
        font-size: 1.1rem;
    }
    
    .timer-container {
        padding-top: 15px;
        margin-top: 15px;
    }
    
    .timer-box {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
    }
    
    .timer-text {
        font-size: 1rem;
    }
    
    .timer-text strong {
        font-size: 1.1rem;
    }
    
    .floating-info-box {
        width: 280px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-top: 10px;
    }
    
    .floating-info-box h4 {
        font-size: 1.1rem;
    }
    
    .floating-info-box p {
        font-size: 0.9rem;
    }
    
    .floating-info-box li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .selection-summary {
        padding: 15px;
        border-radius: 12px;
    }
    
    .summary-content {
        gap: 15px;
    }
    
    .summary-text,
    .summary-total {
        font-size: 1rem;
    }
    
    .summary-total strong {
        font-size: 1.1rem;
    }
    
    .btn-clear,
    .btn-finalize {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .summary-actions {
        gap: 10px;
    }
    
    .timer-container {
        padding-top: 12px;
        margin-top: 12px;
    }
    
    .timer-box {
        padding: 8px 15px;
        border-radius: 10px;
    }
    
    .timer-text {
        font-size: 0.95rem;
    }
    
    .timer-text strong {
        font-size: 1rem;
    }
    
    .floating-info-box {
        width: 240px;
        padding: 15px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-top: 8px;
    }
    
    .floating-info-box h4 {
        font-size: 1rem;
    }
    
    .floating-info-box p {
        font-size: 0.85rem;
    }
    
    .floating-info-box li {
        font-size: 0.8rem;
    }
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
}

/* Product Card Enhancements */
.product-card {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 25px rgba(212, 175, 55, 0.4);
    border-color: var(--accent-gold);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-image {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    transition: transform 0.6s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.placeholder-image {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-select-btn {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-dark);
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quick-select-btn:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-light);
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.product-card:hover .product-name {
    color: var(--accent-gold);
}

.product-description {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Product Options */
.product-options {
    margin-bottom: 25px;
}

.size-options {
    margin-bottom: 20px;
}

.size-options label {
    display: block;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.size-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.size-btn:hover,
.size-btn.active {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.quantity-selector {
    margin-top: 15px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.qty-input {
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.qty-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Add Button */
.btn-add {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-dark);
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-weight: 700;
    transition: all 0.4s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
}

.btn-add:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
    letter-spacing: 1.5px;
}

.btn-icon {
    font-size: 1.3rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    z-index: 100;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.8rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .summary-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .summary-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 2.3rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .selection-summary {
        padding: 20px;
    }
    
    .summary-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .product-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .summary-content {
        gap: 15px;
    }
    
    .summary-text,
    .summary-total {
        font-size: 1.1rem;
    }
    
    .summary-total strong {
        font-size: 1.2rem;
    }
    
    .btn-add {
        padding: 14px;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.btn-details {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    padding: 10px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
}

.btn-details:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-add {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    border: none;
    padding: 10px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
}

.btn-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 125, 95, 0.4);
}

.btn-add.added {
    background: var(--success-color);
}

.btn-add.added:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(72, 187, 120, 0.4);
}

.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
    border-radius: 20px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 50px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10000;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    padding: 40px;
}

.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.main-image .placeholder-image {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.thumbnail {
    height: 100px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.thumbnail .placeholder-image {
    font-size: 0.8rem;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modal-title {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin: 0;
    letter-spacing: 1px;
}

.modal-price {
    font-size: 2rem;
    color: var(--text-light);
    font-weight: 700;
    margin: 0;
}

.modal-section {
    padding: 20px;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.modal-section h3 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.fabric-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fabric-list li {
    color: var(--text-light);
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.fabric-list li:last-child {
    border-bottom: none;
}

.fabric-list strong {
    color: var(--accent-gold);
}

.modal-close-btn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.modal-close-btn .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.modal-close-btn .btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal animations */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .modal-title {
        font-size: 2rem;
    }
    
    .modal-actions {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        grid-template-columns: 1fr;
    }
}