/* ==========================================
   WATCHABLE LUXURY DESIGN SYSTEM & STYLESHEET
   ========================================== */

/* Custom Variables */
:root {
    --bg-primary: #0A0A0B;
    --bg-secondary: #121214;
    --bg-card: rgba(22, 22, 24, 0.7);
    --accent-gold: #D4AF37;
    --accent-gold-rgb: 212, 175, 55;
    --accent-gold-hover: #F3E5AB;
    --text-primary: #F5F5F7;
    --text-secondary: #9E9EAF;
    --border-gold: rgba(212, 175, 55, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --card-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button,
select,
input,
textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Typography Utilities */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.accent-text {
    color: var(--accent-gold);
    background: linear-gradient(135deg, #FFE082 0%, var(--accent-gold) 50%, #A3763D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Buttons System */
.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B88E2F 100%);
    color: #000000;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 13px 27px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-gold);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
}

.btn-secondary:hover {
    border-color: var(--accent-gold-hover);
    background: rgba(255, 255, 255, 0.03);
    color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

/* Section Header Utilities */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(6, 6, 7, 0.95);
    border-bottom: 1px solid var(--border-gold);
    padding: 12px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    font-family: var(--font-serif);
}

.logo-icon {
    color: var(--accent-gold);
    transition: transform 0.8s ease;
}

.logo:hover .logo-icon {
    transform: rotate(360px);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-tel {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
    transition: var(--transition-smooth);
}

.btn-tel:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.15);
    transform: scale(1.03);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 11, 0) 60%), var(--bg-primary);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 11, 0) 50%, var(--bg-primary) 100%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.badge-legacy {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    animation: pulseGlow 3s infinite alternate;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-serif);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
    filter: blur(40px);
    z-index: 1;
}

.hero-img {
    max-width: 100%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
    animation: floatWatch 6s ease-in-out infinite;
}

/* Trust Banner */
.trust-banner {
    padding: 60px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.trust-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.trust-title {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.trust-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.trust-card svg {
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.trust-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: var(--font-sans);
    color: #FFFFFF;
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Catalog Filterable Section */
.catalog-section {
    padding: 100px 0;
}

.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--border-subtle);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    color: #000000;
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.watch-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.watch-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: var(--card-glow);
}

.watch-img-container {
    position: relative;
    background: #000000;
    height: 320px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.watch-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    padding: 24px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.watch-card:hover .watch-img {
    transform: scale(1.08);
}

.watch-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 10px;
    background: rgba(10, 10, 11, 0.85);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.watch-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.watch-name {
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.watch-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 300;
}

.watch-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.watch-specs span {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    padding: 4px 10px;
    border-radius: 3px;
    color: var(--text-secondary);
}

.watch-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.watch-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-serif);
}

.btn-card-enquiry {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.btn-card-enquiry:hover {
    background: var(--accent-gold);
    color: #000000;
}

/* Services Lounge Section */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 48px 32px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--card-glow);
    transform: translateY(-5px);
}

.service-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-gold);
    margin-bottom: 28px;
}

.service-title {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.service-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 300;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: auto;
}

.service-link:hover {
    color: var(--accent-gold-hover);
    transform: translateX(4px);
}

/* Watch Wiki Section */
.wiki-section {
    padding: 100px 0;
}

.wiki-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 48px;
}

.wiki-search-box {
    position: relative;
    margin-bottom: 32px;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
}

#wikiSearchInput {
    width: 100%;
    padding: 18px 24px 18px 56px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    font-size: 1.05rem;
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

#wikiSearchInput:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.wiki-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.wiki-cat-btn {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.wiki-cat-btn:hover,
.wiki-cat-btn.active {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.wiki-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    min-height: 200px;
}

.wiki-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 24px;
    transition: var(--transition-smooth);
    animation: fadeReveal 0.5s ease-out;
}

.wiki-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.02);
}

.wiki-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.wiki-term {
    font-size: 1.25rem;
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-weight: 600;
}

.wiki-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--accent-gold);
    border: 1px solid var(--border-gold);
    padding: 2px 8px;
    border-radius: 3px;
}

.wiki-definition {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
}

.wiki-empty {
    grid-column: span 2;
    text-align: center;
    padding: 48px 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 300;
}

/* Legacy Section */
.legacy-section {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.03) 0%, rgba(10, 10, 11, 0) 50%), var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.legacy-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.legacy-story p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 300;
}

.legacy-story strong {
    color: #FFFFFF;
}

.legacy-story blockquote {
    border-left: 2px solid var(--accent-gold);
    padding-left: 24px;
    margin: 32px 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.3rem;
    color: #FFFFFF;
}

.legacy-story cite {
    display: block;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-gold);
    margin-top: 12px;
}

.legacy-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    padding: 40px;
    box-shadow: var(--card-glow);
}

.legacy-card h3 {
    font-size: 1.6rem;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.legacy-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
}

.legacy-table td {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.95rem;
}

.legacy-table td:first-child {
    color: var(--text-secondary);
    font-weight: 500;
    width: 35%;
}

.legacy-table td:last-child {
    color: #FFFFFF;
    font-weight: 300;
}

.legacy-badge-box {
    display: flex;
    gap: 16px;
    align-items: center;
    background: rgba(212, 175, 55, 0.05);
    border: 1px dashed var(--border-gold);
    padding: 20px;
    border-radius: 4px;
}

.legacy-badge-box svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.legacy-badge-box strong {
    display: block;
    font-size: 0.95rem;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.legacy-badge-box span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Calculator & Estimator Grid */
.calculator-section {
    padding: 100px 0;
}

.calculator-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.card-morph {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 40px;
    transition: var(--transition-smooth);
}

.card-morph:hover {
    border-color: var(--border-gold);
}

.calc-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.calc-title svg {
    color: var(--accent-gold);
}

.calc-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-weight: 300;
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group select,
.form-group input,
.form-group textarea {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    padding: 14px 16px;
    color: #FFFFFF;
    border-radius: 4px;
    font-size: 0.95rem;
    width: 100%;
    transition: var(--transition-smooth);
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.6);
}

.calc-result-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.01) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 24px;
    margin: 8px 0;
    text-align: center;
}

.result-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.result-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-serif);
}

.result-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 10px;
    font-weight: 300;
}

.btn-calc-action {
    width: 100%;
}

/* Contact & Enquiries */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 60px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--border-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-detail-item strong {
    display: block;
    font-size: 0.95rem;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.contact-detail-item span,
.contact-link {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.contact-link:hover {
    color: var(--accent-gold);
}

.whatsapp-card {
    background: rgba(37, 211, 102, 0.03);
    border: 1px dashed rgba(37, 211, 102, 0.2);
    padding: 24px;
    border-radius: 4px;
}

.whatsapp-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #25D366;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.panel-title {
    font-size: 1.6rem;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    margin-top: 12px;
}

.form-success-msg {
    display: none;
    padding: 16px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 4px;
    color: #25D366;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 16px;
    animation: fadeIn 0.4s ease-out;
}

/* Footer Section */
.main-footer {
    background-color: #050506;
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.85fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-stats-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact .footer-phone {
    font-size: 1.05rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 16px;
}

.footer-contact .footer-owner {
    font-size: 0.85rem;
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes floatWatch {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.05);
    }

    100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
    }
}

@keyframes fadeReveal {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==========================================
   RESPONSIVE DESIGN (MOBILE & TABLET VIEWS)
   ========================================== */

/* Tablet & Smaller Layouts */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
        width: 100%;
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .legacy-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .calculator-grid-layout {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile Screen Layouts */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Header Drawer Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 11, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-top: 1px solid var(--border-subtle);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--accent-gold);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--accent-gold);
    }

    .header-actions .btn-tel {
        display: none;
        /* Hide telephone button on header inside compact headers */
    }

    .nav-menu .btn-tel-drawer {
        display: flex !important;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 120px 0 60px 0;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero-img {
        max-width: 80%;
    }

    /* Trust, Catalog & Services Mobile */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .catalog-filters {
        flex-wrap: wrap;
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .watch-img-container {
        height: 280px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        padding: 36px 24px;
    }

    /* Wiki Mobile */
    .wiki-widget {
        padding: 24px;
    }

    .wiki-results {
        grid-template-columns: 1fr;
    }

    .wiki-categories {
        justify-content: center;
    }

    /* Owner & Calculators Mobile */
    .legacy-card {
        padding: 24px;
    }

    .card-morph {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer Mobile */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

/* ==========================================
   SHOPPING CART & CHECKOUT STYLING
   ========================================== */

/* Cart Toggle Button in Header */
.btn-cart-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.btn-cart-toggle:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.15);
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B88E2F 100%);
    color: #000000;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: pulseGlow 2s infinite alternate;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    visibility: hidden;
    transition: visibility 0.4s;
}

.cart-drawer.active {
    visibility: visible;
}

.cart-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cart-drawer.active .cart-drawer-overlay {
    opacity: 1;
}

.cart-drawer-content {
    position: absolute;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--border-gold);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    padding: 32px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active .cart-drawer-content {
    right: 0;
}

/* Cart Drawer Header */
.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.cart-drawer-header h3 {
    font-size: 1.6rem;
    color: #FFFFFF;
}

.btn-close-cart {
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.btn-close-cart:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

/* Cart Items List */
.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 8px;
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--text-secondary);
}

.cart-empty-state p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 300;
}

.btn-shop-now {
    padding: 12px 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 16px;
    align-items: center;
    transition: var(--transition-smooth);
}

.cart-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.02);
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #000;
    border-radius: 4px;
    padding: 6px;
    flex-shrink: 0;
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-item-title {
    font-size: 1.05rem;
    font-family: var(--font-sans);
    font-weight: 600;
    color: #FFFFFF;
}

.cart-item-price {
    font-size: 1.1rem;
    font-family: var(--font-serif);
    color: var(--accent-gold);
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.2);
}

.btn-qty {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-qty:hover {
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.04);
}

.cart-qty-val {
    width: 32px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
}

.btn-remove-item {
    color: #FF453A;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-remove-item:hover {
    color: #FF6961;
    text-decoration: underline;
}

/* Cart Footer */
.cart-drawer-footer {
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.cart-total-price {
    font-size: 1.7rem;
    font-family: var(--font-serif);
    color: var(--accent-gold);
    font-weight: 700;
}

.btn-checkout {
    width: 100%;
}

/* Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    transition: visibility 0.3s;
}

.checkout-modal.active {
    visibility: visible;
}

.checkout-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkout-modal.active .checkout-modal-overlay {
    opacity: 1;
}

.checkout-modal-content {
    position: relative;
    width: 90%;
    max-width: 480px;
    z-index: 3001;
    opacity: 0;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

.checkout-modal.active .checkout-modal-content {
    opacity: 1;
    transform: scale(1);
}

.btn-close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.btn-close-modal:hover {
    color: var(--accent-gold);
}

.modal-title {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.modal-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 300;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-summary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 16px;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.summary-total-price {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    color: var(--accent-gold);
    font-weight: 700;
}

.btn-submit-order {
    width: 100%;
    margin-top: 10px;
}

/* Add support for Add to Cart CTA in catalog card footer */
.catalog-card-buttons {
    display: flex;
    gap: 10px;
}

.btn-card-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-card-add-cart:hover {
    background: var(--accent-gold);
    color: #000;
}

/* Adjust mobile styles to support cart items */
@media (max-width: 480px) {
    .cart-drawer-content {
        padding: 24px;
    }
    .cart-total-price {
        font-size: 1.4rem;
    }
}

/* ==========================================
   WATCHABLE GOOGLE AUTH & ENCRYPTION UI STYLES
   ========================================== */

/* User Dropdown Header Styles */
.user-dropdown-container {
    position: relative;
    display: inline-block;
}

.btn-auth-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.btn-auth-toggle:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.user-avatar-wrapper {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-secondary);
    border: 1px solid var(--bg-primary);
    transition: var(--transition-smooth);
}

.user-status-dot.signed-in {
    background: #4caf50;
    box-shadow: 0 0 6px #4caf50;
}

.user-dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    width: 250px;
    background: rgba(22, 22, 24, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    box-shadow: var(--card-glow);
    padding: 16px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.user-dropdown-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.dropdown-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-username {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-email {
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 4px 0;
}

.dropdown-item {
    text-align: left;
    padding: 8px 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.02);
}

.dropdown-item:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.08);
    padding-left: 16px;
}

/* Modal Core Styles */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.auth-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.auth-modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.auth-modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: rgba(18, 18, 20, 0.95);
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    padding: 30px;
    z-index: 10002;
    transform: scale(0.9);
    transition: var(--transition-smooth);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.auth-modal.active .auth-modal-content {
    transform: scale(1);
}

/* Tabs UI styling */
.modal-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 20px;
    gap: 15px;
}

.modal-tab-btn {
    padding: 8px 12px 12px 12px;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
    background: none;
    border: none;
}

.modal-tab-btn:hover {
    color: var(--accent-gold);
}

.modal-tab-btn.active {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

.modal-tab-content {
    display: none;
    flex-direction: column;
    overflow-y: auto;
    padding-right: 4px;
}

.modal-tab-content.active {
    display: flex;
}

/* Google Auth States */
.google-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 20px 0;
    min-height: 44px;
}

.auth-footer-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
}

.user-profile-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    padding: 16px;
    border-radius: 4px;
    margin: 20px 0;
}

.profile-detail-avatar-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.profile-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-detail-text h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.profile-detail-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.badge-encrypted {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
}

.badge-encrypted svg {
    margin-top: -1px;
}

.decrypted-preview {
    margin-bottom: 20px;
}

.decrypted-preview h5 {
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-family: var(--font-sans);
}

.decrypted-preview pre {
    background: #060607;
    border: 1px solid var(--border-subtle);
    padding: 12px;
    border-radius: 4px;
    color: #4caf50;
    font-family: monospace;
    font-size: 0.75rem;
    overflow-x: auto;
    max-height: 150px;
}

/* Config Form UI */
.config-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-with-action {
    display: flex;
    gap: 8px;
}

.input-with-action input {
    flex: 1;
}

.btn-small-action {
    padding: 0 16px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.8rem;
    background: rgba(212, 175, 55, 0.05);
    transition: var(--transition-smooth);
}

.btn-small-action:hover {
    background: var(--accent-gold);
    color: #000;
}

.btn-save-config {
    margin-top: 10px;
}

.btn-full {
    width: 100%;
}

/* Setup Instructions UI */
.instructions-scroll {
    overflow-y: auto;
    max-height: 50vh;
    padding-right: 10px;
}

.instructions-list {
    margin-left: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.instructions-list > li {
    margin-bottom: 16px;
}

.instructions-list > li::marker {
    color: var(--accent-gold);
    font-weight: bold;
}

.instructions-list ul {
    margin-top: 6px;
    margin-left: 20px;
    list-style-type: circle;
}

.instructions-list ul li {
    margin-bottom: 6px;
}

.instructions-list a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.instructions-list a:hover {
    color: var(--accent-gold-hover);
}

.instructions-list code {
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text-primary);
}