body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;margin:0;padding:0;background-color:#f8fafc;transition:background-color .3s,color .3s}.container{max-width:1200px;margin:0 auto;padding:0 15px}header{background-color:#fff;box-shadow:0 2px 4px rgba(0,0,0,.1);padding:15px 0;transition:background-color .3s,box-shadow .3s}header .container{display:flex;justify-content:space-between;align-items:center}.logo{font-size:1.5em;font-weight:700;color:#7c3aed}

/* Info Section Styles */
.info-section {
    position: relative;
    margin: 30px 0 20px 0;
    overflow: hidden;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
    position: relative;
    overflow: hidden;
}

.info-container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.3) 77%,
        rgba(255, 255, 255, 0.3) 92%,
        rgba(255, 255, 255, 0.1) 100%
    );
    transform: rotate(45deg);
    animation: shine 5s infinite;
}

.info-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 25px 40px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.info-icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

.info-text {
    flex: 1;
}

.info-title {
    margin: 0 0 5px;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.info-description {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.info-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

/* Glow Effect Animation */
@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        left: 100%;
        opacity: 0.5;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Responsive Design for Info Section */
@media (max-width: 992px) {
    .info-section {
        margin: 25px 0 15px 0;
    }
    
    .info-content {
        padding: 20px 30px;
    }
    
    .info-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .info-content {
        flex-wrap: wrap;
        padding: 20px 25px;
    }
    
    .info-badge {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .info-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .info-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .info-title {
        font-size: 1.1rem;
    }
    
    .info-description {
        font-size: 0.9rem;
    }
}

/* Dark Mode Support for Info Section */
body.dark-mode .info-container {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.no-products{text-align:center;padding:40px 0;font-size:1.2em;color:#64748b;transition:color .3s}body.dark-mode{background-color:#121212;color:#e2e8f0}body.dark-mode header{background-color:#1e1e1e;box-shadow:0 2px 4px rgba(0,0,0,.3)}body.dark-mode .no-products{color:#94a3b8}.dark-mode-toggle{background:0 0;border:none;cursor:pointer;width:40px;height:40px;display:flex;align-items:center;justify-content:center;color:#64748b;border-radius:50%;transition:.3s}.dark-mode-toggle:hover{background-color:rgba(0,0,0,.05)}body.dark-mode .dark-mode-toggle{color:#e2e8f0}body.dark-mode .dark-mode-toggle:hover{background-color:rgba(255,255,255,.1)}