/* watches.css — Watch Education page styles */

[dir="rtl"] .watch-tracker-inner { flex-direction: row-reverse; }

/* Hero */
.watch-hero {
    background: var(--grey-900);
    color: var(--white);
    padding: 120px 40px 100px;
    text-align: center;
}

.watch-hero-inner { max-width: 700px; margin: 0 auto; }

.watch-section-label {
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}

.watch-section-title {
    font-family: 'EB Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -.01em;
    margin-bottom: 20px;
}

.watch-hero-icon {
    display: block;
    margin: 0 auto 32px;
    opacity: 1;
}

.watch-hero-intro {
    font-size: 1.05rem;
    color: rgba(255,255,255,.55);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

/* Progress Tracker */
.watch-tracker {
    position: sticky;
    top: 61px;
    z-index: 90;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--grey-200);
}

.watch-tracker-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
}

.watch-tracker-step {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: .75rem;
    letter-spacing: .06em;
    color: var(--grey-400);
    transition: color .3s;
    white-space: nowrap;
}

.watch-tracker-step:hover { color: var(--jade-deep); }

.watch-tracker-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--grey-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 500;
    margin-right: 8px;
    transition: all .3s;
    flex-shrink: 0;
}

.watch-tracker-step.active { color: var(--jade-deep); font-weight: 400; }
.watch-tracker-step.active .watch-tracker-num {
    background: var(--jade-deep);
    border-color: var(--jade-deep);
    color: var(--white);
}

.watch-tracker-sep {
    flex: 1;
    height: 1px;
    background: var(--grey-300);
    margin: 0 4px;
}

/* Content Sections */
.watch-section {
    padding: 120px 40px;
}

.watch-section-white { background: var(--white); }
.watch-section-grey { background: var(--grey-100); }

.watch-inner { max-width: 960px; margin: 0 auto; }

.watch-section-header {
    text-align: center;
    margin-bottom: 72px;
}

.watch-section-icon {
    display: block;
    margin: 0 auto 16px;
    color: var(--grey-300);
}

.watch-section-header .watch-section-label {
    color: var(--jade-medium);
}

.watch-heading {
    font-family: 'EB Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--grey-900);
    letter-spacing: -.01em;
    margin-bottom: 12px;
}

.watch-section-intro {
    font-size: 1.05rem;
    color: var(--grey-500);
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.9;
}

/* Card Grid (3-col) */
.watch-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.watch-card {
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 2px;
    transition: all .3s;
}

.watch-card:hover {
    border-color: var(--jade-light);
    box-shadow: 0 20px 60px rgba(26,58,47,.08);
}

.watch-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.watch-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.watch-card h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--grey-900);
    margin-bottom: 8px;
}

.watch-card p {
    font-size: .85rem;
    color: var(--grey-500);
    line-height: 1.7;
}

.watch-card-stat {
    display: block;
    font-family: 'EB Garamond', serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 4px;
}

/* Key Metrics */
.watch-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--grey-200);
}

.watch-metric {
    text-align: center;
}

.watch-metric-value {
    font-family: 'EB Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}

.watch-metric-label {
    font-size: .72rem;
    color: var(--grey-500);
    letter-spacing: .04em;
}

/* Reference Grid (2-col) */
.watch-ref-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--grey-200);
}

.watch-ref-heading {
    font-family: 'EB Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--grey-900);
    margin-bottom: 28px;
}

.watch-ref-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.watch-ref-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .88rem;
    color: var(--grey-600);
    font-weight: 300;
}

.watch-ref-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--gold);
}

/* Accordion Cards (complications) */
.watch-accordion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.watch-accordion-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 2px;
    overflow: hidden;
    transition: all .3s;
}

.watch-accordion-card:hover {
    border-color: var(--jade-light);
    box-shadow: 0 20px 60px rgba(26,58,47,.08);
}

.watch-accordion-header {
    padding: 32px 32px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.watch-accordion-header h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--grey-900);
}

.watch-accordion-header h3 span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
    font-weight: 500;
}

.watch-accordion-toggle {
    width: 24px;
    height: 24px;
    stroke: var(--grey-400);
    fill: none;
    stroke-width: 2;
    transition: transform .3s;
    flex-shrink: 0;
    margin-top: 4px;
}

.watch-accordion-card.open .watch-accordion-toggle { transform: rotate(180deg); }

.watch-accordion-body {
    padding: 0 32px 32px;
    display: none;
}

.watch-accordion-card.open .watch-accordion-body { display: block; }

.watch-accordion-body p {
    font-size: .85rem;
    color: var(--grey-500);
    line-height: 1.7;
    margin-bottom: 12px;
}

.watch-accordion-body p:last-child { margin-bottom: 0; }

.watch-accordion-tip {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(196,162,101,.08), rgba(196,162,101,.02));
    border: 1px solid rgba(196,162,101,.2);
    border-radius: 2px;
    font-size: .8rem;
    color: var(--gold);
    line-height: 1.6;
    margin-top: 12px;
}

/* Summary Box */
.watch-summary-box {
    padding: 32px;
    background: linear-gradient(135deg, rgba(196,162,101,.06), rgba(196,162,101,.02));
    border: 1px solid rgba(196,162,101,.2);
    border-radius: 2px;
    text-align: center;
    margin-top: 48px;
}

.watch-summary-box h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    color: var(--grey-900);
    margin-bottom: 10px;
}

.watch-summary-box p {
    font-size: .85rem;
    color: var(--grey-500);
    line-height: 1.7;
}

/* Comparison Table */
.watch-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 2px;
}

.watch-compare-table th {
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid var(--grey-300);
    color: var(--grey-900);
    background: var(--white);
}

.watch-compare-table th:first-child { color: var(--grey-500); }

.watch-compare-table td {
    padding: 14px 24px;
    font-size: .85rem;
    color: var(--grey-600);
    border-bottom: 1px solid var(--grey-200);
    line-height: 1.6;
    vertical-align: top;
}

.watch-compare-table tbody tr { transition: background .2s; }
.watch-compare-table tbody tr:hover { background: var(--grey-100); }

.watch-compare-table tr:last-child td { border-bottom: none; }

.watch-compare-table .watch-row-label {
    color: var(--grey-900);
    font-weight: 400;
}

/* Certification Cards (4-col) */
.watch-cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.watch-cert-card {
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-top: 2px solid var(--gold);
    border-radius: 2px;
    transition: all .3s;
}

.watch-cert-card:hover {
    border-color: var(--jade-light);
    border-top-color: var(--gold);
    box-shadow: 0 20px 60px rgba(26,58,47,.08);
}

.watch-cert-card h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--grey-900);
    margin-bottom: 12px;
}

.watch-cert-card p {
    font-size: .85rem;
    color: var(--grey-500);
    line-height: 1.7;
}

.watch-cert-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: .6rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 12px;
    background: rgba(196,162,101,.12);
    color: var(--gold);
}

/* Water Resistance Table */
.watch-wr-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 48px;
}

.watch-wr-table th {
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey-900);
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--grey-300);
}

.watch-wr-table tbody tr { transition: background .2s; }
.watch-wr-table tbody tr:hover { background: var(--grey-100); }

.watch-wr-table td {
    padding: 14px 20px;
    font-size: .85rem;
    color: var(--grey-600);
    border-bottom: 1px solid var(--grey-200);
    line-height: 1.6;
    vertical-align: top;
}

.watch-wr-table tr:last-child td { border-bottom: none; }

/* Brand Table */
.watch-brand-table {
    width: 100%;
    border-collapse: collapse;
}

.watch-brand-table th {
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey-900);
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--grey-300);
}

.watch-brand-table tbody tr { transition: background .2s; }
.watch-brand-table tbody tr:hover { background: var(--grey-100); }

.watch-brand-table td {
    padding: 14px 20px;
    font-size: .85rem;
    color: var(--grey-600);
    border-bottom: 1px solid var(--grey-200);
    line-height: 1.6;
    vertical-align: top;
}

.watch-brand-table tr:last-child td { border-bottom: none; }

.watch-brand-table .watch-brand-name {
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    color: var(--grey-900);
    font-weight: 500;
}

.watch-tier-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: .6rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 2px;
}

.watch-tier-badge.holy-trinity { background: rgba(196,162,101,.12); color: var(--gold); }
.watch-tier-badge.prestige { background: rgba(26,58,47,.08); color: var(--jade-deep); }
.watch-tier-badge.luxury { background: var(--grey-100); color: var(--grey-600); }

/* Collecting Cards (3-col with gold top border) */
.watch-collect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.watch-collect-card {
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-top: 2px solid var(--gold);
    border-radius: 2px;
    transition: all .3s;
}

.watch-collect-card:hover {
    border-color: var(--jade-light);
    border-top-color: var(--gold);
    box-shadow: 0 20px 60px rgba(26,58,47,.08);
}

.watch-collect-card h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--grey-900);
    margin-bottom: 12px;
}

.watch-collect-card p {
    font-size: .85rem;
    color: var(--grey-500);
    line-height: 1.7;
}

.watch-collect-card ul {
    list-style: none;
    margin-top: 12px;
}

.watch-collect-card ul li {
    font-size: .82rem;
    color: var(--grey-600);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.watch-collect-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

/* Disclaimer Box */
.watch-disclaimer {
    padding: 24px 32px;
    border: 1px solid rgba(196,162,101,.25);
    border-radius: 2px;
    background: linear-gradient(135deg, rgba(196,162,101,.06), rgba(196,162,101,.02));
}

.watch-disclaimer p {
    font-size: .78rem;
    color: var(--grey-500);
    line-height: 1.7;
    text-align: center;
}

.watch-disclaimer strong {
    color: var(--gold);
    font-weight: 500;
}

.watch-disclaimer-top { margin-bottom: 48px; }
.watch-disclaimer-bottom { margin-top: 48px; }

/* FAQ */
.watch-faq-list { max-width: 740px; margin: 0 auto; }

.watch-faq-item {
    border-bottom: 1px solid var(--grey-200);
}

.watch-faq-item:first-child { border-top: 1px solid var(--grey-200); }

.watch-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--grey-900);
}

.watch-faq-q:hover { color: var(--jade-deep); }

.watch-faq-q svg {
    width: 18px;
    height: 18px;
    stroke: var(--grey-400);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform .3s;
}

.watch-faq-item.open .watch-faq-q svg { transform: rotate(180deg); }

.watch-faq-a {
    display: none;
    padding: 0 0 20px;
    font-size: .88rem;
    color: var(--grey-500);
    line-height: 1.8;
}

.watch-faq-item.open .watch-faq-a { display: block; }

/* CTA */
.watch-cta {
    padding: 100px 40px;
    text-align: center;
    background: var(--white);
}

.watch-cta-inner { max-width: 500px; margin: 0 auto; }

.watch-cta p {
    font-size: .95rem;
    color: var(--grey-500);
    margin-bottom: 24px;
    line-height: 1.8;
}

.watch-cta a {
    display: inline-block;
    padding: 16px 48px;
    background: var(--jade-deep);
    color: var(--white);
    text-decoration: none;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 400;
    transition: background .3s;
    border-radius: 2px;
}

.watch-cta a:hover { background: var(--jade-medium); }

/* Responsive */
@media (max-width: 768px) {
    .watch-hero { padding: 80px 20px 60px; }
    .watch-hero-icon { width: 60px; height: 50px; margin-bottom: 24px; }
    .watch-section-title, .watch-heading { font-size: 1.8rem; }
    .watch-section { padding: 80px 20px; }
    .watch-card-grid { grid-template-columns: 1fr; }
    .watch-accordion-grid { grid-template-columns: 1fr; }
    .watch-cert-grid { grid-template-columns: 1fr 1fr; }
    .watch-collect-grid { grid-template-columns: 1fr; }
    .watch-metrics { grid-template-columns: repeat(2, 1fr); }
    .watch-ref-grid { grid-template-columns: 1fr; gap: 40px; }
    .watch-cta { padding: 60px 20px; }
    .watch-tracker-inner { padding: 12px 20px; }
    .watch-tracker-step .watch-tracker-text { display: none; }
    .watch-tracker-step .watch-tracker-num { margin-right: 0; }
    .watch-tracker-sep { margin: 0 3px; }
    .watch-brand-table { font-size: .8rem; }
    .watch-brand-table th, .watch-brand-table td { padding: 10px 12px; }
    .watch-compare-table th, .watch-compare-table td { padding: 10px 14px; }
    .watch-wr-table th, .watch-wr-table td { padding: 10px 14px; }
}

@media (max-width: 480px) {
    .watch-section-title, .watch-heading { font-size: 1.5rem; }
    .watch-metrics { grid-template-columns: 1fr 1fr; gap: 16px; }
    .watch-cert-grid { grid-template-columns: 1fr; }
}
