/* ==========================================================
   DAIKIN PRODUCT SUB-PAGE — Shared Styles
   Used by all pages inside /wind/
   ========================================================== */

/* ── Navbar active override ── */
.nav-link.current-page { color: var(--gold) !important; }

/* ── Gold bar helpers ── */
.gold-bar {
    width: 48px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
    margin: 12px 0;
}
.gold-bar.center { margin: 12px auto; }

/* ── Breadcrumb ── */
.dps-breadcrumb {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--gold-border);
    padding: 14px 0;
    margin-top: var(--nav-h);
}
.dps-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.dps-breadcrumb a {
    font-size: 0.78rem;
    color: var(--gray-2);
    text-decoration: none;
    transition: color 0.2s;
}
.dps-breadcrumb a:hover { color: var(--gold); }
.dps-breadcrumb i {
    font-size: 0.6rem;
    color: var(--gray-3);
}
.dps-breadcrumb span {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
}

/* ── Hero ── */
.dps-hero {
    min-height: 480px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.dps-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.dps-hero:hover .dps-hero-bg { transform: scale(1.04); }
.dps-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 100%);
}
.dps-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 24px;
    max-width: 720px;
    margin: 0 auto;
}
.dps-badge {
    display: inline-block;
    padding: 5px 18px;
    border: 1px solid rgba(200,169,106,0.5);
    background: rgba(200,169,106,0.1);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 22px;
}
.dps-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.dps-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 32px;
}
.dps-hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Section base ── */
.dps-section {
    padding: 90px 0 100px;
    background: var(--bg);
}
.dps-section-alt {
    padding: 90px 0 100px;
    background: var(--bg-2);
}
.dps-section-header {
    text-align: center;
    margin-bottom: 52px;
}
.dps-section-header .label { margin-bottom: 10px; }
.dps-section-header h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 14px;
}
.dps-section-header p {
    color: var(--gray-2);
    font-size: 0.95rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Models grid ── */
.dps-models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 900px) { .dps-models-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dps-models-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ── Model card ── */
.dps-model-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.28s;
}
.dps-model-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(200,169,106,0.35);
    border-color: var(--gold);
}
.dps-model-img {
    height: 200px;
    overflow: hidden;
    background: var(--bg-dark);
    position: relative;
}
.dps-model-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s var(--ease);
    filter: brightness(0.9) saturate(0.9);
}
.dps-model-card:hover .dps-model-img img {
    transform: scale(1.07);
    filter: brightness(0.8) saturate(0.85);
}
.dps-model-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%);
}
.dps-model-body {
    padding: 22px 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.dps-model-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.dps-model-desc {
    font-size: 0.84rem;
    color: var(--gray-2);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}
.dps-model-specs {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid var(--gold-border);
    padding-top: 14px;
}
.dps-model-specs li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.79rem;
    color: var(--gray-2);
}
.dps-model-specs li i {
    color: var(--gold);
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* ── Features grid ── */
.dps-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media (max-width: 860px) { .dps-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .dps-features-grid { grid-template-columns: 1fr; } }

.dps-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 10px;
    transition: border-color 0.25s, transform 0.25s;
}
.dps-feature-item:hover {
    border-color: rgba(200,169,106,0.5);
    transform: translateY(-3px);
}
.dps-feature-icon {
    width: 44px; height: 44px;
    border-radius: 8px;
    background: rgba(200,169,106,0.1);
    border: 1px solid rgba(200,169,106,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.dps-feature-text h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}
.dps-feature-text p {
    font-size: 0.8rem;
    color: var(--gray-2);
    line-height: 1.6;
}

/* ── CTA bar ── */
.dps-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1600 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.dps-cta::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,169,106,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.dps-cta-inner { position: relative; z-index: 1; }
.dps-cta h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 12px;
}
.dps-cta p {
    color: var(--gray-2);
    font-size: 0.98rem;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.dps-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Back link ── */
.dps-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    padding: 10px 0;
    margin-bottom: 36px;
    transition: gap 0.2s;
}
.dps-back-link:hover { gap: 12px; }

/* ── Buttons (local override for sub-pages) ── */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.28s var(--ease);
    box-shadow: 0 6px 24px rgba(200,169,106,0.3);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(200,169,106,0.45);
    filter: brightness(1.07);
}
.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 32px;
    background: transparent;
    color: var(--gold);
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    border: 1px solid var(--gold);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.28s var(--ease);
}
.btn-outline-gold:hover {
    background: rgba(200,169,106,0.1);
    transform: translateY(-2px);
}

/* ── Responsive helpers ── */
@media (max-width: 768px) {
    .dps-hero { min-height: 400px; }
    .dps-section, .dps-section-alt { padding: 60px 0 70px; }
    .dps-cta { padding: 60px 0; }
}

/* ==========================================================
   LIGHT THEME OVERRIDES
   ========================================================== */
.dps-breadcrumb {
    background: #FFFFFF;
    border-bottom-color: rgba(133,0,59,0.10);
}

.dps-hero {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF4F7 100%);
}

.dps-hero-overlay {
    background: linear-gradient(135deg, rgba(255,255,255,0.90) 0%, rgba(255,255,255,0.72) 100%);
}

.dps-badge {
    background: rgba(133,0,59,0.08);
    border-color: rgba(133,0,59,0.22);
}

.dps-hero h1 {
    color: var(--white);
}

.dps-hero p {
    color: var(--gray-2);
}

.dps-model-card,
.dps-feature-item {
    box-shadow: 0 16px 38px rgba(17,17,17,0.08);
}

.dps-model-card:hover {
    box-shadow: 0 22px 46px rgba(17,17,17,0.12), 0 0 0 1px rgba(133,0,59,0.18);
}

.dps-model-img {
    background: #F7F1F5;
}

.dps-model-img-overlay {
    background: linear-gradient(to bottom, rgba(255,255,255,0.00) 40%, rgba(22,18,23,0.10) 100%);
}

.dps-cta {
    background: linear-gradient(180deg, #FFF8FB 0%, #F7EEF3 100%);
}

.dps-cta::before {
    background: radial-gradient(circle, rgba(133,0,59,0.10) 0%, transparent 70%);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: #FFFFFF;
    box-shadow: 0 10px 24px rgba(133,0,59,0.20);
}

.btn-gold:hover {
    box-shadow: 0 12px 30px rgba(133,0,59,0.24);
}

.btn-outline-gold {
    background: #FFFFFF;
    color: var(--gold);
    border-color: rgba(133,0,59,0.24);
}

.btn-outline-gold:hover {
    background: rgba(133,0,59,0.06);
}
