/* =====================================================
   PRODUCTS PAGES – anilsolankijaat.com
   Aligned with global style.css (dark, premium theme)
===================================================== */

/* ---------- Base Reset ---------- */
.products-hero,
.products-grid,
.products-section,
.product-card {
    box-sizing: border-box;
}

/* =====================================================
   HERO SECTION (MATCHES SITE HERO TONE)
===================================================== */

.products-hero {
    padding: 140px 20px 120px;
    text-align: center;
    background: linear-gradient(180deg, #0b0d12, #0f1115);
}

.products-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    margin-bottom: 18px;
    color: var(--text-main);
}

.products-hero p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =====================================================
   SECTION WRAPPER (FULL-WIDTH SINGLE CONTENT)
===================================================== */

.products-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

/* =====================================================
   GRID (MULTI-CARD SECTIONS ONLY)
===================================================== */

.products-grid {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Responsive grid */
@media (max-width: 1000px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   PRODUCT CARD (DARK PREMIUM)
===================================================== */

.product-card {
    background: linear-gradient(135deg, #151821, #10131a);
    border-radius: 22px;
    padding: 36px 34px;

    display: flex;
    flex-direction: column;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* Titles */
.product-card h2 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--text-main);
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--accent-gold);
}

/* Text */
.product-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

/* =====================================================
   FEATURE LIST
===================================================== */

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
}

.product-features li {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}

.product-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* =====================================================
   PRODUCT PAGE PRIMARY BUTTON
   (Unified behavior across product pages)
===================================================== */

.products-section .btn-primary,
.products-grid .btn-primary,
.products-hero .btn-primary {
    align-self: flex-start;
    margin-top: auto;

    padding: 14px 32px;
    border-radius: 999px;

    background: var(--accent-gold);
    color: #111;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.products-section .btn-primary:hover,
.products-grid .btn-primary:hover,
.products-hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(230,179,92,0.35);
    background: #f0c46f;
}

.products-section .btn-primary:focus-visible,
.products-grid .btn-primary:focus-visible,
.products-hero .btn-primary:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(230,179,92,0.35),
        0 12px 28px rgba(230,179,92,0.35);
}

@media (max-width: 700px) {
    .products-section .btn-primary,
    .products-grid .btn-primary,
    .products-hero .btn-primary {
        width: 100%;
        text-align: center;
    }
}



/* =====================================================
   SPLIT CARD (WHAT YOU GET)
===================================================== */

.product-card.product-card-split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

/* Mobile */
@media (max-width: 900px) {
    .product-card.product-card-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* =====================================================
   PRODUCT IMAGE BOX
===================================================== */

.product-image-box {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 22px;
    overflow: hidden;

    background: radial-gradient(
        circle,
        rgba(230,179,92,0.15),
        rgba(230,179,92,0.05),
        transparent 70%
    );

    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

/* =====================================================
   ADMIN FEATURE CARDS (GRID ITEMS)
===================================================== */

.products-grid .product-card img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 18px;
    object-fit: cover;
}

/* =====================================================
   COMING SOON (OPTIONAL)
===================================================== */

.product-card.coming-soon {
    background: linear-gradient(135deg, #10131a, #0b0d12);
    border: 1px dashed rgba(255,255,255,0.18);
    text-align: center;
}

.product-card.coming-soon h2 {
    color: var(--text-main);
}

.product-card.coming-soon p {
    color: var(--text-muted);
}

