/* Reset e Stili Generali */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}
header {
    background: linear-gradient(135deg, #1f4068, #162447);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}
header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
header p {
    font-size: 1.2rem;
    color: #e4e4e4;
}
container {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
section {
    margin-bottom: 60px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
h2 {
    color: #1f4068;
    margin-bottom: 20px;
    border-bottom: 2px solid #e4e4e4;
    padding-bottom: 10px;
}

/* Manifesto */
.manifesto p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: justify;
}

/* Crowdfunding e Call to Action */
.crowdfunding {
    background: #eef3f7;
    border-left: 5px solid #e94560;
}
.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.cta-card {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    text-align: center;
}
.cta-card h4 {
    color: #162447;
    margin-bottom: 10px;
}
.btn {
    display: inline-block;
    background-color: #e94560;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.btn:hover {
    background-color: #0f3460;
}

/* Ricerca Location */
.location-search {
    background: linear-gradient(45deg, #162447, #1f4068);
    color: #fff;
}
.location-search h2 {
    color: #fff;
    border-bottom-color: #30475e;
}
.location-details {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Catalogo a 3 colonne */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 900px) {
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .catalog-grid { grid-template-columns: 1fr; }
}
.product-card {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #eaeaea;
}
.product-info {
    padding: 20px;
}
.product-info h3 {
    margin-bottom: 5px;
    color: #1f4068;
}
.product-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}
.share-icons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}
.share-icon {
    font-size: 0.8rem;
    background: #eaeaea;
    padding: 3px 8px;
    border-radius: 4px;
    color: #555;
    text-decoration: none;
}
.share-icon:hover {
    background: #1f4068;
    color: #fff;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.lightbox-content {
    background: #fff;
    max-width: 700px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.close-lightbox {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    font-weight: bold;
}
.lightbox-body {
    padding: 30px;
}
.lightbox-img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    background-color: #eaeaea;
}

/* Contatti */
.contact-section {
    text-align: center;
}
.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 30px;
    background: #162447;
    color: #fff;
    margin-top: 40px;
}