/* ============================================================
   products.css — New styles only. Does NOT override style-v5.css
   ============================================================ */

/* --- Fix nav alignment: Products link same height as others --- */
.nav-menu li {
    display: flex;
    align-items: center;
}

/* --- Products Page: header --- */
.products-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.products-page-header h2 {
    font-size: 32px;
    color: #d4a574;
    margin-bottom: 12px;
}

/* --- Products Page: two-card grid --- */
.products-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.product-page-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 32px 28px;
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-page-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.product-page-card__icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.product-page-card__body {
    width: 100%;
}

.product-page-card__badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.product-page-card h3 {
    font-size: 24px;
    color: #d4a574;
    margin-bottom: 4px;
    font-weight: 600;
}

.product-page-card__tagline {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.55) !important;
    margin-bottom: 14px !important;
    font-style: italic;
}

.product-page-card p:not(.product-page-card__tagline) {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-page-card__actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Individual Product Detail Pages --- */
.product-page-hero {
    text-align: center;
    padding: 32px 0 24px;
}

.product-page-hero .hero-icon {
    font-size: 3.5rem;
    margin-bottom: 14px;
}

.product-page-hero h2 {
    font-size: 36px;
    color: #d4a574;
    margin-bottom: 8px;
}

.product-page-hero .hero-tagline {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.product-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.product-cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.placeholder-notice {
    display: inline-block;
    background: rgba(212, 165, 116, 0.12);
    border: 1px dashed rgba(212, 165, 116, 0.35);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    color: #d4a574;
    margin-top: 10px;
}

.product-info-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    width: 100%;
}

.product-info-box h3 {
    font-size: 20px;
    color: #d4a574;
    margin-bottom: 12px;
}

.product-info-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

.features-heading {
    text-align: center;
    font-size: 20px;
    color: #d4a574;
    margin: 28px 0 18px;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-bottom: 12px;
    width: 100%;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    transition: transform 0.2s, background 0.2s;
}

.feature-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.feature-card__icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.feature-card h4 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 600;
}

.feature-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.back-link {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
    padding: 16px 0 4px;
    text-align: left;
}

.back-link:hover {
    color: #d4a574;
}

/* --- Standalone Privacy Pages --- */
.privacy-standalone {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 0 60px;
    text-align: left;
    width: 100%;
}

.privacy-standalone h2 {
    font-size: 32px;
    color: #d4a574;
    margin-bottom: 6px;
}

.privacy-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 32px;
}

.privacy-standalone h3 {
    font-size: 17px;
    color: #fff;
    margin: 26px 0 8px;
    font-weight: 600;
}

.privacy-standalone p,
.privacy-standalone li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.privacy-standalone ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.privacy-standalone ul li {
    margin-bottom: 5px;
}

.privacy-contact-box {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 22px 26px;
    margin-top: 32px;
}

.privacy-contact-box p {
    margin-bottom: 8px;
}

.privacy-contact-box a {
    color: #d4a574;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .products-page-grid {
        grid-template-columns: 1fr;
    }

    .product-page-hero h2 {
        font-size: 28px;
    }

    .product-page-card {
        padding: 24px 20px;
    }
}