/* ===========================
   SLV PAGE STYLING
   Silver / Black / Grey
=========================== */

/* Page wrapper */
.entry-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--slv-text);
    font-size: 16px;
    line-height: 1.7;
}

/* Headings */
.entry-content h1,
.entry-content h2,
.entry-content h3 {
    color: #111;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.entry-content h1 {
    font-size: 32px;
    border-bottom: 2px solid #dcdcdc;
    padding-bottom: 10px;
}

.entry-content h2 {
    font-size: 26px;
    border-left: 4px solid #bfbfbf;
    padding-left: 12px;
}

.entry-content h3 {
    font-size: 20px;
    color: #333;
}

/* Paragraphs */
.entry-content p {
    margin-bottom: 18px;
    color: #333;
}

/* Section boxes */
.slv-section-box {
    background: #f7f7f7;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 24px;
    margin: 30px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Icons inside section boxes */
.slv-section-box i {
    font-size: 28px;
    color: #555;
    margin-bottom: 12px;
    display: block;
}

/* Lists */
.entry-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.entry-content ul li {
    margin-bottom: 8px;
    color: #444;
}

/* Horizontal rule */
.entry-content hr {
    border: none;
    border-top: 1px solid #dcdcdc;
    margin: 40px 0;
}

/* Images */
.entry-content img {
    max-width: 100%;
    border-radius: 6px;
    margin: 20px 0;
}

/* Buttons inside pages */
.entry-content a.button,
.entry-content .wp-block-button__link {
    background: #111;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
}

.entry-content a.button:hover,
.entry-content .wp-block-button__link:hover {
    background: #333;
}

/* ===========================
   SLV PAGE GRID
=========================== */

.slv-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

@media (max-width: 900px) {
    .slv-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .slv-page-grid {
        grid-template-columns: 1fr;
    }
}

/* Grid item (your section box) */
.slv-grid-item {
    background: #f7f7f7;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Icon */
.slv-grid-item i {
    font-size: 32px;
    color: #222;
    margin-bottom: 12px;
    display: block;
}

/* Heading */
.slv-grid-item h2 {
    font-size: 20px;
    margin: 0 0 12px;
    color: #111;
}

/* Text */
.slv-grid-item p,
.slv-grid-item ul {
    color: #333;
    margin-bottom: 10px;
}

/* Expandable section */
.slv-more {
    margin-top: 12px;
}

.slv-more summary {
    cursor: pointer;
    font-weight: 600;
    color: #111;
    padding: 6px 0;
    list-style: none;
}

.slv-more summary::marker {
    display: none;
}

.slv-more summary::after {
    content: " ▼";
    font-size: 12px;
    color: #555;
}

.slv-more[open] summary::after {
    content: " ▲";
}

.slv-more p {
    margin-top: 10px;
    color: #444;
}

/* ===========================
   SLV LUXURY UPGRADE
   Metallic / Premium / Minimal
=========================== */

/* Card background with subtle metallic gradient */
.slv-grid-item {
    background: linear-gradient(145deg, #fafafa, #f0f0f0);
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    padding: 26px;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.05),
        0 6px 12px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover lift effect */
.slv-grid-item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 4px 10px rgba(0,0,0,0.08),
        0 10px 20px rgba(0,0,0,0.10);
}


/* Heading — luxury serif feel */
.slv-grid-item h2 {
    font-family: "Cinzel", serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #111;
    margin-bottom: 14px;
}

/* Text refinement */
.slv-grid-item p,
.slv-grid-item ul li {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

/* ===========================
   SLV LUXURY DARK BUTTON TOGGLE
=========================== */

/* FINAL FIX: Dark icons */

.slv-grid-item i {
    font-size: 32px;
    color: #0a0a0c;
    margin-bottom: 12px;
    display: block;
}


.slv-more summary {
    cursor: pointer;
    font-weight: 600;
    color: #111;
    display: inline;
}

.slv-more summary::after {
    content: " ▼";
    font-size: 12px;
    color: #555;
}

.slv-more[open] summary::after {
    content: " ▲";
}


/* ===========================
   STYLING PAGES ON THE WEBSITE
=========================== */


/* ===========================
   SLV LEGAL / POLICY STYLING
   Minimal • Sharp • Professional
=========================== */

.slv-policy {
    color: #0a0a0c;
    line-height: 1.75;
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto;
}

/* Main section headings */
.slv-policy h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a0c;
    margin-top: 40px;
    margin-bottom: 12px;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 6px;
    letter-spacing: 0.3px;
}

/* Subheadings */
.slv-policy h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-top: 28px;
    margin-bottom: 10px;
}

/* Paragraphs */
.slv-policy p {
    margin-bottom: 18px;
    color: #222;
}

/* Lists */
.slv-policy ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.slv-policy ul li {
    margin-bottom: 8px;
    color: #333;
}

/* Emphasis */
.slv-policy strong {
    color: #0a0a0c;
}

/* Remove vertical line ONLY on WooCommerce pages */
body.woocommerce .entry-content h2 {
    border-left: none !important;
    padding-left: 0 !important;
}
