@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-main: #f4f6f9;
    --bg-card: #ffffff;
    --bg-header: rgba(255, 255, 255, 0.85);
    --border-glass: rgba(0, 0, 0, 0.08);
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --accent-neon: #2563eb;       /* Royal Watch Blue */
    --accent-purple: #6366f1;     /* Indigo Accent */
    --accent-glow: rgba(37, 99, 235, 0.08);
    --accent-glow-purple: rgba(99, 102, 241, 0.06);
    --font-sans: 'Montserrat', Arial, 'Helvetica Neue', Helvetica, sans-serif;
    --font-heading: 'Montserrat', Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-main);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Elegant light theme glows */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Header & Navigation */
header {
    background-color: var(--bg-header);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-icon-container {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.logo-wrapper:hover .logo-icon-container {
    transform: rotate(5deg) scale(1.05);
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.logo-svg {
    width: 32px;
    height: 32px;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #0f172a 30%, var(--accent-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-top: 2px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0f172a 30%, var(--accent-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 2rem;
    margin-right: auto;
}

.header-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switch {
    display: flex;
    gap: 0.25rem;
    background: rgba(0, 0, 0, 0.03);
    padding: 0.25rem;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
}

.lang-btn {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    color: var(--text-secondary);
}

.lang-btn.active {
    background: #ffffff;
    color: var(--accent-neon);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cart-header-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e3a8a;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.cart-header-wrapper:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.cart-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-svg-icon {
    width: 24px;
    height: 24px;
    stroke: #1e3a8a;
    stroke-width: 2.2;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ff2d55;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    padding: 0 4px;
    line-height: 1;
}

.cart-total-price {
    font-size: 16px;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
    white-space: nowrap;
}

/* Main Container */
main {
    max-width: 1440px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Light Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(0px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.08);
}

/* Hero Section Redesign */
.hero {
    text-align: left;
    padding: 4rem 3rem;
    margin-bottom: 3.5rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 3rem;
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        text-align: center;
        gap: 2rem;
    }
}

.hero-info {
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.hero-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-neon);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 992px) {
    .hero-badge {
        align-self: center;
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #0f172a 30%, #312e81 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 100%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

@media (max-width: 992px) {
    .hero-actions {
        justify-content: center;
    }
}

.btn-hero-cta {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-watch-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-watch-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* Manufacturer & Watch Selection Page */
.manufacturer-section {
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
    color: var(--text-primary);
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-neon));
    border-radius: 2px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.brand-card {
    cursor: pointer;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.brand-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-neon);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.brand-svg-icon {
    height: 38px;
    width: auto;
    max-width: 100%;
    fill: var(--text-primary);
    transition: transform 0.3s ease, fill 0.3s ease, filter 0.3s ease;
}

.brand-card:hover .brand-svg-icon {
    transform: scale(1.08);
    fill: var(--accent-neon);
}

.brand-text-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.brand-card:hover .brand-text-logo {
    color: var(--accent-neon);
}

.brand-text-sub {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-text-sub {
    color: var(--text-primary);
}

/* Brand specific styling overrides */
.apple-logo .brand-svg-icon {
    height: 44px;
}

.mi-logo {
    width: 40px;
    height: 40px;
    background: #ff6700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.20rem;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 103, 0, 0.2);
    transition: all 0.3s ease;
}

.brand-card:hover .mi-logo {
    background: #ff8533;
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(255, 103, 0, 0.4);
}

.amazfit-logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, #ff007f, var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.brand-card:hover .amazfit-logo i {
    transform: scale(1.08);
}

.generic-logo .brand-text-logo {
    font-size: 1.15rem;
    letter-spacing: 0.05em;
}

.model-list-wrapper {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.model-list-wrapper.open {
    max-height: 1000px;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.model-list-inner {
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.02);
}

.model-group {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding-bottom: 1.5rem;
}

.model-group:last-child {
    border-bottom: none;
}

.model-group-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-neon);
    margin-bottom: 0.75rem;
}

.model-link {
    display: block;
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.model-link:hover {
    color: var(--text-primary);
    background: rgba(37, 99, 235, 0.05);
    padding-left: 0.9rem;
}

/* Catalog View (Filters & Grid) */
.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Filters */
.filters-sidebar {
    height: fit-content;
}

.filter-group {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.filter-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Price Range */
.price-inputs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.price-input-wrapper {
    flex: 1;
}

.price-input-wrapper label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.25rem;
}

.price-input-wrapper input {
    width: 100%;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-glass);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    color: var(--text-primary);
    outline: none;
    font-size: 0.85rem;
    transition: border-color 0.2s ease;
}

.price-input-wrapper input:focus {
    border-color: var(--accent-neon);
    background: #ffffff;
}

/* Colors Grid Filter */
.color-filter-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.color-checkbox {
    position: relative;
    cursor: pointer;
}

.color-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border-glass);
    display: inline-block;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.color-checkbox input:checked + .color-swatch {
    transform: scale(1.15);
    border-color: var(--text-primary);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.color-tooltip {
    visibility: hidden;
    background-color: var(--text-primary);
    color: #fff;
    text-align: center;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    position: absolute;
    z-index: 10;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.color-checkbox:hover .color-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Material Filter */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.checkbox-label input {
    accent-color: var(--accent-neon);
}

.checkbox-label:hover {
    color: var(--text-primary);
}

/* Product Catalog Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    margin-bottom: 1rem;
    border: 0;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 80px;
    color: var(--text-primary);
    line-height: 16px;
}

.product-specs-summary {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

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

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.product-price span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 2px;
}

.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-neon));
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    filter: brightness(1.05);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: rgba(0, 0, 0, 0.15);
}

.btn-full {
    width: 100%;
}

/* Product Detail Page */
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    background: #ffffff;
}

.main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnails-strip {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.thumbnail-item.active {
    border-color: var(--accent-neon);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-container {
    display: flex;
    flex-direction: column;
}

.detail-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.detail-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-neon);
    margin-bottom: 1.5rem;
}

.purchase-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.specs-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.specs-table td:last-child {
    font-weight: 600;
    color: var(--text-primary);
}

.product-description-html {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.product-description-html p {
    margin-bottom: 1rem;
}

.product-description-html strong {
    color: var(--text-primary);
}

.product-description-html ul, .product-description-html ol {
    margin: 0.5rem 0 1.5rem 1.5rem;
}

.product-description-html li {
    margin-bottom: 0.25rem;
}

/* Checkout Page */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-glass);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--text-primary);
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-input:focus {
    border-color: var(--accent-neon);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border: 1px solid var(--border-glass);
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.radio-option input {
    accent-color: var(--accent-neon);
}

.radio-option.selected, .radio-option:hover {
    border-color: var(--accent-neon);
    background: rgba(37, 99, 235, 0.02);
}

.summary-card {
    height: fit-content;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.summary-item.total {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-neon);
}

/* Modal Popup (Quick Checkout / Cart) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal.open {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border: 1px solid var(--border-glass);
    max-width: 500px;
    width: 100%;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* Select2 style overrides for light integration */
.select2-container--default .select2-selection--single {
    background-color: #ffffff !important;
    border: 1px solid var(--border-glass) !important;
    border-radius: 8px !important;
    height: 44px !important;
    color: var(--text-primary) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--text-primary) !important;
    line-height: 42px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px !important;
}

.select2-dropdown {
    background-color: #ffffff !important;
    border: 1px solid var(--border-glass) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.select2-search__field {
    background-color: #f8fafc !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-glass) !important;
}

.select2-results__option {
    color: var(--text-secondary) !important;
}

.select2-results__option--highlighted[aria-selected] {
    background-color: var(--accent-neon) !important;
    color: #fff !important;
}

.select2-results__option[aria-selected=true] {
    background-color: rgba(37, 99, 235, 0.05) !important;
}

/* Utility layout helpers */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.font-bold { font-weight: 700; }
.text-neon { color: var(--accent-neon); }

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

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

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

.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.05);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-neon);
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background: var(--accent-neon);
    color: #ffffff;
    transform: scale(1.08);
}

.advantage-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.advantage-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Strap Materials Section */
.materials-section {
    margin-top: 4.5rem;
    margin-bottom: 3.5rem;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

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

.material-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.material-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-purple);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.06);
}

.material-svg-container {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.material-card:hover .material-svg-container {
    transform: scale(1.1);
}

.material-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.material-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================================
   BRAND PAGE - Model Cards (image + title)
   ============================================================ */

.brand-page-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
}

.brand-page-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.brand-page-logo .brand-svg-icon {
    width: 48px;
    height: 48px;
    fill: var(--accent-neon);
}

.brand-page-logo .brand-text-logo {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.brand-page-info h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.brand-page-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Group title (e.g. "44mm", "Galaxy Watch 4") */
.model-cards-group {
    margin-bottom: 3rem;
}

.model-cards-group-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-glass);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.model-cards-group-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--accent-neon);
    border-radius: 4px;
}

/* Grid of model watch cards */
.model-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
}

@media (max-width: 640px) {
    .model-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Single model card */
.model-watch-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.28s ease;
    cursor: pointer;
}

.model-watch-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}

.model-watch-card-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.model-watch-card-img-wrap img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

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

/* Placeholder if no image */
.model-watch-card-placeholder {
    width: 60px;
    height: 60px;
    opacity: 0.15;
}

.model-watch-card-name {
    padding: 0.75rem 0.75rem 1rem;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

.breadcrumbs a {
    color: var(--accent-neon);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.breadcrumbs a:hover {
    opacity: 0.75;
}

.breadcrumbs .sep {
    color: var(--border-glass);
    font-size: 1rem;
}

.breadcrumbs .current {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================================
   HAMBURGER BUTTON & MOBILE NAV DRAWER
   ============================================================ */

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.2s ease;
    padding: 0;
}

.hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    background: var(--bg-card);
    border-top: 1px solid var(--border-glass);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-nav.open {
    max-height: 400px;
}

.mobile-nav-inner {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: background 0.2s ease;
}

.mobile-nav-link:hover {
    background: rgba(37, 99, 235, 0.05);
    color: var(--accent-neon);
}

.cart-badge-mobile {
    margin-left: auto;
    background: linear-gradient(135deg, #ff3b30, #ff2d55);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

/* ============================================================
   TABLET  ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
    main {
        padding: 0 1.5rem;
    }

    .header-container {
        padding: 0.85rem 1.5rem;
    }

    .hero {
        padding: 3rem 2.5rem;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

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

    .brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================================
   MOBILE  ≤ 768px
   ============================================================ */
@media (max-width: 768px) {

    /* --- HEADER --- */
    .header-container {
        padding: 0.75rem 1rem;
    }

    .header-container .lang-switch {
        display: none; /* скрываем в шапке, показываем в мобильном меню */
    }

    .hamburger-btn {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    /* --- MAIN --- */
    main {
        margin: 1rem auto;
        padding: 0 1rem;
    }

    /* --- HERO --- */
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1.25rem;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        align-self: center;
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image-container {
        order: -1; /* фото выше текста на мобиле */
    }

    .hero-watch-img {
        transform: none;
        max-height: 240px;
        width: auto;
        margin: 0 auto;
        display: block;
    }

    .hero-watch-img:hover {
        transform: none;
    }

    /* --- ADVANTAGES --- */
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .advantage-card {
        padding: 1.25rem 1rem;
    }

    /* --- BRAND GRID --- */
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .brand-card {
        min-height: 90px;
        padding: 1.25rem 0.75rem;
    }

    /* --- SECTION TITLES --- */
    .section-title {
        font-size: 1.4rem;
    }

    /* --- BRAND PAGE --- */
    .brand-page-header {
        padding: 1.25rem;
        gap: 1rem;
    }

    .brand-page-logo {
        width: 56px;
        height: 56px;
    }

    .brand-page-info h1 {
        font-size: 1.35rem;
    }

    .model-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* --- CATALOG --- */
    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filters-sidebar {
        position: static;
        border-radius: 12px;
    }

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

    /* --- PRODUCT DETAIL --- */
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .detail-title {
        font-size: 1.5rem;
    }

    .detail-price {
        font-size: 1.4rem;
    }

    .purchase-actions {
        flex-direction: column;
    }

    .purchase-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* --- CHECKOUT --- */
    .checkout-layout {
        grid-template-columns: 1fr !important;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    /* --- MATERIALS --- */
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* --- FOOTER --- */
    footer {
        margin-top: 3rem !important;
        padding: 2rem 1rem !important;
    }

    footer > div {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1.5rem !important;
    }

    footer div[style*="gap:1.5rem"] {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
}

/* ============================================================
   SMALL PHONES  ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 1.5rem 1rem;
    }

    .logo-subtitle {
        display: none; /* скрываем подпись лого на маленьких экранах */
    }

    .logo-title {
        font-size: 1.2rem;
    }

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

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .product-card .btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .product-price {
        font-size: 1rem;
    }

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

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

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

    .breadcrumbs {
        font-size: 0.78rem;
    }

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

/* Footer Logo Brightness Styling */
.footer-logo-wrapper .footer-logo-icon-container {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.footer-logo-wrapper:hover .footer-logo-icon-container {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.footer-logo-title {
    background: linear-gradient(135deg, #ffffff 30%, #849fd9 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* ============================================================
   RETURNS PAGE
   ============================================================ */
.returns-page {
    max-width: 860px;
    margin: 0 auto;
}

/* Intro banner */
.returns-intro {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 2.25rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-neon);
    border-radius: 16px;
    font-size: 1.05rem;
    line-height: 1.65;
}

.returns-intro-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--accent-neon);
}

/* Sections list */
.returns-sections {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.returns-section {
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.returns-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.07);
}

.returns-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(99, 102, 241, 0.03) 100%);
    border-bottom: 1px solid var(--border-glass);
}

.returns-section-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 10px;
    font-size: 1.1rem;
    color: var(--accent-neon);
}

.returns-section-header h2 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.returns-section-body {
    padding: 1.5rem 1.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.returns-section-body p {
    color: var(--text-primary);
}

/* Checklist */
.returns-list {
    list-style: none;
    padding: 0;
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.returns-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.returns-list li i {
    color: var(--accent-neon);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Info notice */
.returns-notice {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-top: 1rem;
    padding: 0.85rem 1.1rem;
    background: rgba(37, 99, 235, 0.05);
    border-left: 3px solid rgba(37, 99, 235, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.returns-notice > i {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-neon);
}

.returns-notice p {
    color: var(--text-secondary) !important;
    margin: 0;
}

/* Contacts */
.returns-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.returns-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 10px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    width: fit-content;
}

.returns-contact-item:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--accent-neon);
    color: var(--accent-neon);
}

.returns-contact-item i {
    font-size: 1.2rem;
    color: var(--accent-neon);
}

.returns-contact-item em {
    font-style: normal;
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

@media (max-width: 640px) {
    .returns-intro {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1.25rem;
    }

    .returns-section-header {
        padding: 1rem 1.25rem;
    }

    .returns-section-body {
        padding: 1.25rem;
    }

    .returns-section-header h2 {
        font-size: 0.95rem;
    }
}

/* Select2 overrides */
.select2-results__option[aria-selected=true] {
    background-color: transparent;
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.privacy-page {
    max-width: 900px;
    margin: 0 auto;
}

/* Intro banner */
.privacy-intro {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 2.25rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--accent-purple);
    border-radius: 16px;
    font-size: 1.05rem;
    line-height: 1.65;
}

.privacy-intro-icon {
    flex-shrink: 0;
    font-size: 2rem;
    color: var(--accent-purple);
    margin-top: 2px;
}

/* Sections list */
.privacy-sections {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.privacy-section {
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.privacy-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(99, 102, 241, 0.07);
}

.privacy-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.75rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(37, 99, 235, 0.03) 100%);
    border-bottom: 1px solid var(--border-glass);
}

.privacy-section-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 9px;
    font-size: 1rem;
    color: var(--accent-purple);
}

.privacy-section-header h2 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.privacy-num {
    color: var(--accent-purple);
    font-weight: 800;
}

.privacy-section-body {
    padding: 1.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* Individual item row */
.privacy-item {
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    transition: background 0.18s ease;
    font-size: 0.93rem;
    line-height: 1.65;
}

.privacy-item:hover {
    background: rgba(99, 102, 241, 0.04);
}

.privacy-item-num {
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-purple);
    min-width: 36px;
    opacity: 0.75;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.privacy-item p {
    margin: 0;
    color: var(--text-primary);
    flex: 1;
}

.privacy-item strong {
    color: var(--text-primary);
}

@media (max-width: 640px) {
    .privacy-intro {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.5rem 1.25rem;
    }

    .privacy-section-header {
        padding: 1rem 1.25rem;
    }

    .privacy-section-body {
        padding: 1rem 1.25rem;
    }

    .privacy-section-header h2 {
        font-size: 0.9rem;
    }

    .privacy-item {
        flex-direction: column;
        gap: 0.25rem;
    }

    .privacy-item-num {
        min-width: unset;
    }
}

/* Select2 — option text colors */
.select2-container--default .select2-results__option--selected {
    color: #000 !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #2563eb !important;
    color: #fff !important;
}

.select2-container--default .select2-results__option {
    color: #1e293b !important;
}

.select2-container--default .select2-results__option--selected.select2-results__option--highlighted {
    background-color: #1d4ed8 !important;
    color: #fff !important;
}
