@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* Zenviarings Design System */
/* No * selector as requested */

.body-class {
    margin: 0;
    padding: 0;
    background-color: #F8F9FA;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.top-bar-class {
    background-color: #f1f1f1;
    color: #666;
    font-size: 11px;
    text-align: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-weight: 400;
}

.container-class {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-class {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-class {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-class {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #0A1128;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-list-class {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item-class {
    margin-left: 30px;
}

.nav-link-class {
    text-decoration: none;
    color: #0A1128;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link-class:hover {
    color: #D4AF37;
}

/* Hero Section */
.hero-class {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 17, 40, 0.7), rgba(10, 17, 40, 0.7)), url('https://img.edenly.com/diamant/anello-trilogia-nido-prezioso-tango-oro-giallo-ed-oro-bianco-0-07-carato-9-carati__3624_1-g.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
}

.hero-title-class {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle-class {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* Buttons */
.btn-class {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-primary-class {
    background-color: #D4AF37;
    color: #ffffff;
}

.btn-primary-class:hover {
    background-color: #0A1128;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary-class {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn-secondary-class:hover {
    background-color: #ffffff;
    color: #0A1128;
}

/* Sections */
.section-class {
    padding: 80px 0;
}

.section-title-class {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #0A1128;
    position: relative;
}

.section-title-class::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #D4AF37;
    margin: 20px auto 0;
}

.section-text-class {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #666;
}

/* Cards / Grid */
.grid-class {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card-class {
    background-color: #ffffff;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card-class:hover {
    transform: translateY(-10px);
}

.card-icon-class {
    font-size: 40px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.card-title-class {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #0A1128;
}

.card-text-class {
    font-size: 15px;
    color: #666;
}

/* Product Showcase */
.product-showcase-class {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: #ffffff;
    padding: 60px;
}

.product-img-container-class {
    flex: 1;
}

.product-img-class {
    width: 100%;
    height: auto;
    display: block;
}

.product-info-class {
    flex: 1;
}

.product-label-class {
    color: #D4AF37;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.product-title-class {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: #0A1128;
}

.product-desc-class {
    margin-bottom: 30px;
    color: #555;
}

/* Footer */
.footer-class {
    background-color: #0A1128;
    color: #ffffff;
    padding: 80px 0 40px;
}

.footer-grid-class {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-title-class {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 25px;
    color: #D4AF37;
}

.footer-list-class {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-item-class {
    margin-bottom: 12px;
}

.footer-link-class {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link-class:hover {
    color: #D4AF37;
}

.footer-bottom-class {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 12px;
    color: #7f8c8d;
}

.disclosure-class {
    margin-bottom: 20px;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Utilities */
.text-center-class { text-align: center; }
.mt-40-class { margin-top: 40px; }
.mb-20-class { margin-bottom: 20px; }

/* Responsive */
@media (max-width: 768px) {
    .nav-class { flex-direction: column; }
    .nav-list-class { margin-top: 20px; }
    .nav-item-class { margin: 0 10px; }
    .hero-title-class { font-size: 36px; }
    .product-showcase-class { flex-direction: column; padding: 30px; }
}

/* Content Page Styles */
.content-page-class {
    background-color: #ffffff;
    padding: 100px 0;
}

.article-class {
    max-width: 800px;
    margin: 0 auto;
}

.article-img-class {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto 40px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.article-title-class {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 30px;
    color: #0A1128;
}

.article-content-class p {
    margin-bottom: 20px;
    color: #444;
}

.p-class {
    margin-bottom: 20px;
    color: #444;
}

.h1-class { font-family: 'Playfair Display', serif; color: #0A1128; margin-bottom: 20px; }
.h2-class { font-family: 'Playfair Display', serif; color: #0A1128; margin-bottom: 15px; margin-top: 30px; }
.h3-class { font-family: 'Playfair Display', serif; color: #0A1128; margin-bottom: 12px; margin-top: 25px; }
.ul-class { margin-bottom: 20px; padding-left: 20px; }
.li-class { margin-bottom: 10px; }
.a-class { color: #D4AF37; text-decoration: none; border-bottom: 1px solid #D4AF37; }
.img-class { max-width: 100%; height: auto; display: block; }
