/* ============================================
   ClinicalHub - Combined Stylesheet
   Extracted from: index, kategori, urun-detay,
   hakkimizda, iletisim
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --oxygen-white: #FFFFFF;
    --cloud-gray: #F8FAFC;
    --deep-sapphire: #0F172A;
    --medical-cyan: #0891B2;
    --cyan-light: #06B6D4;
    --sterile-silver: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;
    --success: #22C55E;
    --error: #EF4444;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--oxygen-white);
    color: var(--slate-900);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--sterile-silver);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--medical-cyan) 0%, var(--cyan-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '';
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E") no-repeat center / contain;
}

.logo-icon::after {
    display: none;
}

.logo-text {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--medical-cyan);
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    text-decoration: none;
    color: var(--slate-600);
    font-weight: 500;
    font-size: 0.925rem;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--deep-sapphire);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--medical-cyan);
    transition: width 0.3s;
}

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

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

.btn-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--sterile-silver);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.btn-icon:hover {
    background: var(--cloud-gray);
    border-color: var(--medical-cyan);
}

.btn-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--slate-700);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--medical-cyan);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    padding: 12px 24px;
    background: var(--deep-sapphire);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--medical-cyan);
}

/* ===== PAGE BANNER (unified breadcrumb + title) ===== */
.page-banner {
    padding: 120px 48px 40px;
    background: var(--deep-sapphire);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 70% 40%, rgba(8, 145, 178, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(8, 145, 178, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(8, 145, 178, 0.3), transparent);
}

.page-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.page-banner-crumb-link {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.page-banner-crumb-link:hover {
    color: var(--cyan-light);
}

.page-banner-sep {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
    user-select: none;
}

.page-banner-crumb-current {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.page-banner-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin: 0;
}

.page-banner-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    line-height: 1.6;
    margin-top: 10px;
}

/* Legacy breadcrumb compat (kategori inline) */
.breadcrumb {
    display: none;
}

.breadcrumb-current {
    color: var(--deep-sapphire);
    font-weight: 600;
}

/* ===== HERO (index.html) ===== */
.hero {
    min-height: 100vh;
    padding: 120px 48px 80px;
    background: linear-gradient(135deg, var(--cloud-gray) 0%, #EFF6FF 50%, var(--oxygen-white) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(8, 145, 178, 0.03) 100%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--sterile-silver);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--medical-cyan);
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--medical-cyan);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

.hero-title {
    font-size: clamp(2.75rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--deep-sapphire);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, var(--medical-cyan) 0%, #0E7490 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--slate-500);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.7;
}

/* HERO SEARCH */
.hero-search {
    background: white;
    padding: 8px;
    display: flex;
    gap: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
    max-width: 540px;
}

.search-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 1rem;
    background: var(--cloud-gray);
}

.search-input:focus {
    outline: none;
    background: var(--slate-100);
}

.search-input::placeholder {
    color: var(--slate-400);
}

.search-btn {
    padding: 16px 32px;
    background: var(--deep-sapphire);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.search-btn:hover {
    background: var(--medical-cyan);
}

.search-btn svg {
    width: 18px;
    height: 18px;
}

/* HERO STATS */
.hero-stats {
    display: flex;
    gap: 48px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    line-height: 1;
}

.stat-number span {
    color: var(--medical-cyan);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--slate-500);
    margin-top: 4px;
}

/* HERO VISUAL - 3D ABSTRACT */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.hero-3d {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Floating Elements */
.float-element {
    position: absolute;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.float-element svg {
    width: 50%;
    height: 50%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.float-1 {
    width: 180px;
    height: 180px;
    top: 5%;
    left: 15%;
    animation-delay: 0s;
    background: linear-gradient(135deg, var(--medical-cyan) 0%, #0E7490 100%);
}

.float-1 svg {
    stroke: white;
    fill: none;
}

.float-2 {
    width: 140px;
    height: 140px;
    top: 25%;
    right: 10%;
    animation-delay: 1s;
    background: var(--deep-sapphire);
}

.float-2 svg {
    stroke: var(--cyan-light);
    fill: none;
}

.float-3 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 25%;
    animation-delay: 2s;
    background: white;
    border: 2px solid var(--sterile-silver);
}

.float-3 svg {
    stroke: var(--deep-sapphire);
    fill: none;
}

.float-4 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 20%;
    animation-delay: 3s;
    background: var(--slate-100);
}

.float-4 svg {
    stroke: var(--medical-cyan);
    fill: none;
}

.float-5 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 5%;
    animation-delay: 4s;
    background: var(--cyan-light);
}

.float-5 svg {
    stroke: white;
    fill: none;
}

/* Center Badge */
.hero-center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 32px 48px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    text-align: center;
    z-index: 10;
}

.hero-center-badge h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    margin-bottom: 4px;
}

.hero-center-badge p {
    font-size: 0.9rem;
    color: var(--slate-500);
}

/* Grid Lines */
.grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.3;
}

.grid-lines::before,
.grid-lines::after {
    content: '';
    position: absolute;
    background: var(--sterile-silver);
}

.grid-lines::before {
    width: 1px;
    height: 100%;
    left: 50%;
}

.grid-lines::after {
    width: 100%;
    height: 1px;
    top: 50%;
}

/* ===== SECTION COMMON (index.html) ===== */
.section {
    padding: 120px 48px;
}

.section-header {
    max-width: 1400px;
    margin: 0 auto 64px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--medical-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--slate-500);
    margin-top: 12px;
    max-width: 500px;
}

.section-link {
    color: var(--medical-cyan);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
    font-size: 0.95rem;
}

.section-link:hover {
    gap: 14px;
}

/* ===== CATEGORY GRID (index.html) ===== */
.category-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    position: relative;
    background: var(--cloud-gray);
    padding: 32px;
    min-height: 260px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--deep-sapphire) 0%, var(--slate-800) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

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

.category-icon {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    background: var(--medical-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.category-content {
    position: relative;
    z-index: 2;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    margin-bottom: 8px;
    transition: color 0.3s;
    line-height: 1.3;
}

.category-card:hover .category-title {
    color: white;
}

.category-desc {
    font-size: 0.875rem;
    color: var(--slate-500);
    transition: color 0.3s;
    line-height: 1.6;
}

.category-card:hover .category-desc {
    color: rgba(255, 255, 255, 0.7);
}

.category-count {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--slate-400);
    transition: color 0.3s;
    z-index: 2;
}

.category-card:hover .category-count {
    color: var(--cyan-light);
}

.category-arrow {
    position: absolute;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s;
    z-index: 2;
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

.category-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--deep-sapphire);
}

/* ===== PRODUCTS SECTION (index.html) ===== */
.products-section {
    background: white;
    padding: 120px 48px;
}

.products-header {
    max-width: 1400px;
    margin: 0 auto 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.filter-tabs {
    display: flex;
    gap: 8px;
}

.filter-tab {
    padding: 14px 28px;
    background: var(--cloud-gray);
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-600);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--deep-sapphire);
    color: white;
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.product-card {
    background: white;
    border: 1px solid var(--sterile-silver);
    transition: all 0.4s ease;
}

.product-card:hover {
    border-color: var(--medical-cyan);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.products-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 240px 1fr;
}

.product-image-wrap {
    position: relative;
    aspect-ratio: 1;
    background: var(--cloud-gray);
    overflow: hidden;
    display: block;
}

.products-grid.list-view .product-image-wrap {
    aspect-ratio: auto;
    height: 100%;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 32px;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.new {
    background: var(--medical-cyan);
    color: white;
}

.product-badge.sale {
    background: #DC2626;
    color: white;
}

.product-badge.b2b {
    background: var(--deep-sapphire);
    color: white;
}

.product-badge.bestseller {
    background: #F59E0B;
    color: white;
}

.product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.product-card:hover .product-wishlist {
    opacity: 1;
}

.product-wishlist svg {
    width: 20px;
    height: 20px;
    stroke: var(--slate-500);
    fill: none;
}

.product-wishlist:hover svg {
    stroke: #DC2626;
    fill: #FEE2E2;
}

.product-quick {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.product-card:hover .product-quick {
    transform: translateY(0);
}

.quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quick-item {
    font-size: 0.8rem;
}

.quick-label {
    color: rgba(255, 255, 255, 0.6);
    display: block;
}

.quick-value {
    color: white;
    font-weight: 600;
}

.product-info {
    padding: 24px;
}

.products-grid.list-view .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 32px;
}

.product-brand {
    font-size: 0.8rem;
    color: var(--medical-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--deep-sapphire);
    margin-bottom: 16px;
    line-height: 1.4;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.product-name:hover {
    color: var(--medical-cyan);
}

.product-specs {
    display: none;
    font-size: 0.85rem;
    color: var(--slate-500);
    margin-bottom: 16px;
    line-height: 1.6;
}

.products-grid.list-view .product-specs {
    display: block;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 14px;
    height: 14px;
    fill: #F59E0B;
}

.star.empty {
    fill: var(--sterile-silver);
}

.rating-count {
    font-size: 0.8rem;
    color: var(--slate-400);
}

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

.product-price {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--deep-sapphire);
}

.product-price-old {
    font-size: 0.9rem;
    color: var(--slate-400);
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 500;
}

.btn-cart {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--deep-sapphire);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cart:hover {
    background: var(--medical-cyan);
}

.btn-cart svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

/* ===== TRUST SECTION (index.html) ===== */
.trust-section {
    background: var(--deep-sapphire);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(6, 182, 212, 0.1) 100%);
    pointer-events: none;
}

.trust-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.trust-header {
    text-align: center;
    margin-bottom: 64px;
}

.trust-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cyan-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.trust-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.trust-subtitle {
    color: var(--slate-400);
    font-size: 1.1rem;
}

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

.trust-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s;
}

.trust-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: var(--cyan-light);
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(6, 182, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--cyan-light);
}

.trust-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.trust-desc {
    font-size: 0.9rem;
    color: var(--slate-400);
    line-height: 1.7;
}

/* ===== STORE SECTION (index.html) ===== */
.store-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.store-visual {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.store-visual iframe,
.store-visual .store-map-placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.store-visual .store-map-placeholder iframe {
    position: absolute;
    inset: 0;
}

.store-visual-content {
    text-align: center;
    padding: 48px;
}

.store-visual-icon {
    width: 120px;
    height: 120px;
    background: white;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.store-visual-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--medical-cyan);
}

.store-visual h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    margin-bottom: 8px;
}

.store-visual p {
    color: var(--slate-500);
}

/* Map Grid Pattern */
.map-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image:
        linear-gradient(var(--slate-300) 1px, transparent 1px),
        linear-gradient(90deg, var(--slate-300) 1px, transparent 1px);
    background-size: 40px 40px;
}

.store-info {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(34, 197, 94, 0.1);
    width: fit-content;
    margin-bottom: 32px;
}

.store-badge-dot {
    width: 10px;
    height: 10px;
    background: #22C55E;
    animation: pulse 2s infinite;
}

.store-badge-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #16A34A;
}

.store-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.store-desc {
    font-size: 1.1rem;
    color: var(--slate-500);
    margin-bottom: 40px;
    line-height: 1.8;
}

.store-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

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

.store-detail-icon {
    width: 56px;
    height: 56px;
    background: var(--cloud-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.store-detail-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--medical-cyan);
}

.store-detail-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    margin-bottom: 4px;
}

.store-detail-content p {
    font-size: 0.95rem;
    color: var(--slate-500);
}

.store-cta {
    display: flex;
    gap: 16px;
}

.btn-secondary {
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--deep-sapphire);
    color: var(--deep-sapphire);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: var(--deep-sapphire);
    color: white;
}

/* ===== PAGE HEADER (used in admin/B2B panels) ===== */
.page-header {
    padding: 24px 0;
}

.page-header-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--slate-600);
    max-width: 640px;
    line-height: 1.7;
}

.page-desc {
    font-size: 1rem;
    color: var(--slate-500);
    max-width: 600px;
}

.page-stats {
    display: flex;
    gap: 32px;
}

.page-stat {
    text-align: center;
    padding: 20px 32px;
    background: white;
    border: 1px solid var(--sterile-silver);
}

.page-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--deep-sapphire);
}

.page-stat-number span {
    color: var(--medical-cyan);
}

.page-stat-label {
    font-size: 0.85rem;
    color: var(--slate-500);
    margin-top: 4px;
}

/* ===== KATEGORI PAGE (kategori.html) ===== */

/* Main Content Layout */
.main-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 48px;
}

/* Sidebar Filters */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.filter-section {
    background: white;
    border: 1px solid var(--sterile-silver);
    padding: 24px;
}

.filter-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-title button {
    background: none;
    border: none;
    color: var(--medical-cyan);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.filter-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--sterile-silver);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.filter-item:hover .filter-checkbox {
    border-color: var(--medical-cyan);
}

.filter-item.active .filter-checkbox {
    background: var(--medical-cyan);
    border-color: var(--medical-cyan);
}

.filter-item.active .filter-checkbox::after {
    content: '\2713';
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.filter-label {
    font-size: 0.9rem;
    color: var(--slate-600);
    flex: 1;
}

.filter-count {
    font-size: 0.8rem;
    color: var(--slate-400);
}

/* Price Range */
.price-inputs {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.price-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--sterile-silver);
    font-size: 0.9rem;
    text-align: center;
    background: white;
    font-family: inherit;
    transition: border-color 0.2s;
}

.price-input:focus {
    outline: none;
    border-color: var(--medical-cyan);
    background: white;
}

.price-input::placeholder {
    color: var(--slate-400);
}

.price-slider {
    width: 100%;
    height: 4px;
    background: var(--sterile-silver);
    appearance: none;
    cursor: pointer;
}

.price-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--medical-cyan);
    cursor: pointer;
}

/* Products Area */
.products-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Toolbar */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: white;
    border: 1px solid var(--sterile-silver);
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.result-count {
    font-size: 0.95rem;
    color: var(--slate-500);
}

.result-count strong {
    color: var(--deep-sapphire);
}

.active-filters {
    display: flex;
    gap: 8px;
}

.active-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--cloud-gray);
    font-size: 0.8rem;
    color: var(--slate-600);
}

.active-filter button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--slate-400);
    font-size: 1rem;
    line-height: 1;
}

.active-filter button:hover {
    color: var(--medical-cyan);
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sort-select {
    padding: 10px 16px;
    border: 1px solid var(--sterile-silver);
    font-size: 0.9rem;
    color: var(--slate-600);
    background: white;
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
    border-color: var(--medical-cyan);
}

.view-toggle {
    display: flex;
    gap: 4px;
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--sterile-silver);
    cursor: pointer;
    transition: all 0.2s;
}

.view-btn.active {
    background: var(--deep-sapphire);
    border-color: var(--deep-sapphire);
}

.view-btn.active svg {
    stroke: white;
}

.view-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--slate-500);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}

.page-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--sterile-silver);
    font-weight: 600;
    color: var(--slate-600);
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover {
    border-color: var(--medical-cyan);
    color: var(--medical-cyan);
}

.page-btn.active {
    background: var(--deep-sapphire);
    border-color: var(--deep-sapphire);
    color: white;
}

.page-btn.arrow svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* ===== PRODUCT DETAIL (urun-detay.html) ===== */
.product-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.main-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--cloud-gray);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;
    transition: transform 0.5s ease;
}

.main-image:hover img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge.bestseller {
    background: #F59E0B;
    color: white;
}

.badge.stock {
    background: var(--success);
    color: white;
}

.thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.thumbnail {
    aspect-ratio: 1;
    background: var(--cloud-gray);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    padding: 12px;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--medical-cyan);
}

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

/* Product Detail Info */
.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.rating-text {
    font-size: 0.95rem;
    color: var(--slate-500);
}

.rating-text strong {
    color: var(--deep-sapphire);
}

.product-price-section {
    margin-bottom: 32px;
}

.product-discount {
    display: inline-block;
    padding: 6px 12px;
    background: #FEE2E2;
    color: #DC2626;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 12px;
}

.product-desc {
    font-size: 1.05rem;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Variants */
.variant-section {
    margin-bottom: 32px;
}

.variant-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    margin-bottom: 12px;
}

.variant-label span {
    font-weight: 400;
    color: var(--slate-500);
}

.variant-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.variant-btn {
    padding: 14px 24px;
    background: white;
    border: 2px solid var(--sterile-silver);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-600);
    cursor: pointer;
    transition: all 0.2s;
}

.variant-btn:hover {
    border-color: var(--medical-cyan);
    color: var(--medical-cyan);
}

.variant-btn.active {
    border-color: var(--deep-sapphire);
    background: var(--deep-sapphire);
    color: white;
}

.variant-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Quantity */
.quantity-section {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--sterile-silver);
}

.qty-btn {
    width: 52px;
    height: 52px;
    background: var(--cloud-gray);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    color: var(--deep-sapphire);
}

.qty-btn:hover {
    background: var(--sterile-silver);
}

.qty-input {
    width: 80px;
    height: 52px;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.qty-input:focus {
    outline: none;
}

.qty-value {
    width: 48px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
}

.btn-add-cart {
    flex: 1;
    padding: 16px 32px;
    background: var(--deep-sapphire);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-add-cart:hover {
    background: var(--medical-cyan);
}

.btn-add-cart svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

/* Secondary Actions */
.secondary-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

/* Product Features */
.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 32px;
    background: var(--cloud-gray);
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--medical-cyan);
}

.feature-text {
    font-size: 0.9rem;
    color: var(--slate-600);
}

.feature-text strong {
    display: block;
    color: var(--deep-sapphire);
    font-weight: 700;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 24px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--slate-500);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--success);
}

/* Product Tabs */
.product-tabs {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px 80px;
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--sterile-silver);
    margin-bottom: 40px;
}

.tab-btn {
    padding: 20px 32px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-500);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.tab-btn:hover {
    color: var(--deep-sapphire);
}

.tab-btn.active {
    color: var(--deep-sapphire);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--medical-cyan);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--sterile-silver);
}

.specs-table th,
.specs-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 0.95rem;
}

.specs-table th {
    width: 200px;
    background: var(--cloud-gray);
    font-weight: 600;
    color: var(--deep-sapphire);
}

.specs-table td {
    color: var(--slate-600);
}

/* Reviews */
.reviews-summary {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--sterile-silver);
}

.reviews-score {
    text-align: center;
}

.score-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    line-height: 1;
}

.score-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 12px 0;
}

.score-count {
    font-size: 0.9rem;
    color: var(--slate-500);
}

.reviews-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bar-label {
    width: 60px;
    font-size: 0.9rem;
    color: var(--slate-600);
}

.bar-track {
    flex: 1;
    height: 8px;
    background: var(--sterile-silver);
}

.bar-fill {
    height: 100%;
    background: #F59E0B;
}

.bar-count {
    width: 40px;
    font-size: 0.85rem;
    color: var(--slate-400);
}

.review-item {
    padding: 32px 0;
    border-bottom: 1px solid var(--sterile-silver);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: var(--cloud-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--slate-500);
}

.reviewer-name {
    font-weight: 700;
    color: var(--deep-sapphire);
}

.reviewer-date {
    font-size: 0.85rem;
    color: var(--slate-400);
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating .star {
    width: 16px;
    height: 16px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.7;
}

/* Related Products */
.related-section {
    background: var(--cloud-gray);
    padding: 80px 48px;
    margin-bottom: 64px;
}

.related-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.related-card {
    background: white;
    border: 1px solid var(--sterile-silver);
    transition: all 0.3s;
}

.related-card:hover {
    border-color: var(--medical-cyan);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.related-image {
    aspect-ratio: 1;
    background: var(--cloud-gray);
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.related-info {
    padding: 20px;
}

.related-brand {
    font-size: 0.75rem;
    color: var(--medical-cyan);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.related-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-sapphire);
    margin-bottom: 8px;
}

.related-price {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--deep-sapphire);
}

/* ===== ABOUT PAGE (hakkimizda.html) ===== */

/* About Intro */
.about-intro {
    padding: 100px 48px;
}

.about-intro-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-content {
    padding-right: 40px;
}

.about-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-intro p {
    font-size: 1.1rem;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-intro-visual {
    position: relative;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-image {
    aspect-ratio: 4/3;
    background: var(--cloud-gray);
    position: relative;
    overflow: hidden;
}

.about-image:nth-child(2) {
    transform: translateY(40px);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--deep-sapphire), var(--slate-700));
    opacity: 0.08;
}

.about-image-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-icon svg {
    width: 64px;
    height: 64px;
    stroke: var(--medical-cyan);
    opacity: 0.3;
}

/* Vision Mission */
.vision-mission {
    padding: 100px 48px;
    background: var(--deep-sapphire);
    position: relative;
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(6, 182, 212, 0.1) 100%);
    pointer-events: none;
}

.vision-mission-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.vm-card {
    padding: 56px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.vm-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--cyan-light);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: rgba(6, 182, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.vm-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--cyan-light);
}

.vm-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.vm-card p {
    font-size: 1.05rem;
    color: var(--slate-400);
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    padding: 100px 48px;
    background: var(--cloud-gray);
}

.stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.stats-header {
    text-align: center;
    margin-bottom: 64px;
}

.stats-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    margin-bottom: 16px;
}

.stats-header p {
    font-size: 1.1rem;
    color: var(--slate-600);
}

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

.stat-card {
    background: white;
    padding: 48px 32px;
    text-align: center;
    border: 1px solid var(--sterile-silver);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--medical-cyan);
}

/* Values Section */
.values-section {
    padding: 100px 48px;
}

.values-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    margin-bottom: 64px;
}

.values-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    margin-bottom: 16px;
}

.values-header p {
    font-size: 1.1rem;
    color: var(--slate-600);
    max-width: 640px;
    margin: 0 auto;
}

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

.value-card {
    padding: 48px 40px;
    background: var(--cloud-gray);
    border: 1px solid transparent;
    transition: all 0.3s;
}

.value-card:hover {
    background: white;
    border-color: var(--medical-cyan);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid var(--sterile-silver);
}

.value-card:hover .value-icon {
    background: var(--deep-sapphire);
    border-color: var(--deep-sapphire);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--medical-cyan);
    transition: all 0.3s;
}

.value-card:hover .value-icon svg {
    stroke: white;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 100px 48px;
    background: var(--cloud-gray);
}

.team-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 64px;
}

.team-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    margin-bottom: 16px;
}

.team-header p {
    font-size: 1.1rem;
    color: var(--slate-600);
}

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

.team-card {
    background: white;
    border: 1px solid var(--sterile-silver);
    overflow: hidden;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.team-photo {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--slate-100) 0%, var(--slate-200) 100%);
    position: relative;
    overflow: hidden;
}

.team-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(15, 23, 42, 0.8));
    opacity: 0;
    transition: opacity 0.3s;
}

.team-card:hover .team-photo::before {
    opacity: 1;
}

.team-photo-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo-icon svg {
    width: 80px;
    height: 80px;
    stroke: var(--slate-300);
}

.team-social {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.team-social a:hover {
    background: var(--medical-cyan);
}

.team-social svg {
    width: 18px;
    height: 18px;
    fill: var(--deep-sapphire);
}

.team-social a:hover svg {
    fill: white;
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.9rem;
    color: var(--medical-cyan);
    font-weight: 600;
}

/* Timeline */
.timeline-section {
    padding: 100px 48px;
}

.timeline-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    margin-bottom: 16px;
}

.timeline-header p {
    font-size: 1.1rem;
    color: var(--slate-600);
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--sterile-silver);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 48px);
    position: relative;
    margin-bottom: 64px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 48px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--medical-cyan);
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--sterile-silver);
}

.timeline-content {
    max-width: 480px;
    padding: 32px;
    background: var(--cloud-gray);
    border: 1px solid var(--sterile-silver);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 24px;
    width: 24px;
    height: 24px;
    background: var(--cloud-gray);
    border: 1px solid var(--sterile-silver);
    border-top: none;
    border-left: none;
    transform: rotate(-45deg);
    right: -13px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: auto;
    left: -13px;
    transform: rotate(135deg);
}

.timeline-year {
    display: inline-block;
    padding: 6px 16px;
    background: var(--deep-sapphire);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    margin-bottom: 12px;
}

.timeline-desc {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 48px;
    background: linear-gradient(135deg, var(--deep-sapphire) 0%, var(--slate-800) 100%);
    text-align: center;
}

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

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.15rem;
    color: var(--slate-400);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-cta {
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-primary {
    background: var(--medical-cyan);
    color: white;
}

.btn-cta-primary:hover {
    background: var(--cyan-light);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--deep-sapphire);
    border-color: white;
}

/* ===== CONTACT PAGE (iletisim.html) ===== */

/* Contact Section */
.contact-section {
    padding: 100px 48px;
}

.contact-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

/* Contact Info */
.contact-info {
    padding-right: 40px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 1.05rem;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--cloud-gray);
    border: 1px solid transparent;
    transition: all 0.3s;
}

.contact-card:hover {
    background: white;
    border-color: var(--medical-cyan);
    transform: translateX(8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--sterile-silver);
}

.contact-card:hover .contact-card-icon {
    background: var(--deep-sapphire);
    border-color: var(--deep-sapphire);
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--medical-cyan);
    transition: stroke 0.3s;
}

.contact-card:hover .contact-card-icon svg {
    stroke: white;
}

.contact-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    margin-bottom: 6px;
}

.contact-card-content p {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.contact-card-content a {
    color: var(--medical-cyan);
    text-decoration: none;
    font-weight: 600;
}

.contact-card-content a:hover {
    text-decoration: underline;
}

/* Working Hours */
.working-hours {
    background: var(--deep-sapphire);
    padding: 32px;
}

.working-hours h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.working-hours h3 svg {
    width: 20px;
    height: 20px;
    stroke: var(--cyan-light);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-day {
    font-size: 0.95rem;
    color: var(--slate-400);
}

.hours-time {
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
}

.hours-closed {
    color: var(--slate-500);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--cloud-gray);
    padding: 48px;
    border: 1px solid var(--sterile-silver);
}

.contact-form-wrapper h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    font-size: 0.95rem;
    color: var(--slate-600);
    margin-bottom: 32px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group.full {
    grid-column: span 2;
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-sapphire);
    margin-bottom: 8px;
}

.form-label span {
    color: var(--error);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: white;
    border: 1px solid var(--sterile-silver);
    font-size: 1rem;
    font-family: inherit;
    color: var(--slate-900);
    transition: all 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--medical-cyan);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--slate-400);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--medical-cyan);
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--slate-600);
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--medical-cyan);
    text-decoration: none;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    background: var(--deep-sapphire);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-submit:hover {
    background: var(--medical-cyan);
}

.btn-submit svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Map Section */
.map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.map-placeholder {
    background: var(--slate-100);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.map-icon-wrapper {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.map-icon-wrapper svg {
    width: 60px;
    height: 60px;
    stroke: var(--medical-cyan);
}

.map-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.map-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    margin-bottom: 4px;
}

.map-text p {
    font-size: 0.95rem;
    color: var(--slate-500);
}

.locations-panel {
    background: var(--deep-sapphire);
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.locations-panel h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.locations-panel > p {
    font-size: 1.05rem;
    color: var(--slate-400);
    margin-bottom: 40px;
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.location-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--cyan-light);
}

.location-icon {
    width: 48px;
    height: 48px;
    background: rgba(6, 182, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--cyan-light);
}

.location-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.location-content p {
    font-size: 0.9rem;
    color: var(--slate-400);
    line-height: 1.6;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(34, 197, 94, 0.15);
    font-size: 0.8rem;
    font-weight: 600;
    color: #22C55E;
    margin-top: 8px;
}

.location-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #22C55E;
    animation: pulse 2s infinite;
}

/* FAQ Section */
.faq-section {
    padding: 100px 48px;
    background: var(--cloud-gray);
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    margin-bottom: 12px;
}

.faq-header p {
    font-size: 1.1rem;
    color: var(--slate-600);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 1px solid var(--sterile-silver);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: var(--medical-cyan);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--cloud-gray);
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--deep-sapphire);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cloud-gray);
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-item.active .faq-toggle {
    background: var(--deep-sapphire);
    transform: rotate(180deg);
}

.faq-toggle svg {
    width: 20px;
    height: 20px;
    stroke: var(--slate-600);
    transition: stroke 0.3s;
}

.faq-item.active .faq-toggle svg {
    stroke: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 28px 28px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.8;
}

/* Support Channels */
.support-section {
    padding: 100px 48px;
}

.support-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.support-header {
    text-align: center;
    margin-bottom: 56px;
}

.support-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    margin-bottom: 12px;
}

.support-header p {
    font-size: 1.1rem;
    color: var(--slate-600);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.support-card {
    padding: 40px 32px;
    background: var(--cloud-gray);
    border: 1px solid transparent;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
}

.support-card:hover {
    background: white;
    border-color: var(--medical-cyan);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.support-icon {
    width: 72px;
    height: 72px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--sterile-silver);
    transition: all 0.3s;
}

.support-card:hover .support-icon {
    background: var(--deep-sapphire);
    border-color: var(--deep-sapphire);
}

.support-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--medical-cyan);
    transition: stroke 0.3s;
}

.support-card:hover .support-icon svg {
    stroke: white;
}

.support-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    margin-bottom: 8px;
}

.support-card p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--medical-cyan), var(--cyan-light), var(--medical-cyan));
}

/* Footer Top - Newsletter */
.footer-top {
    padding: 80px 48px;
    background: var(--slate-800);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.newsletter-content p {
    color: var(--slate-400);
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 18px 24px;
    background: var(--slate-700);
    border: 1px solid var(--slate-600);
    color: white;
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: var(--slate-400);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--medical-cyan);
}

.newsletter-btn {
    padding: 18px 36px;
    background: var(--medical-cyan);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-btn:hover {
    background: var(--cyan-light);
}

/* Footer Main */
.footer-main {
    padding: 80px 48px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand {
    padding-right: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--deep-sapphire) 0%, var(--slate-700) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-logo-icon::before {
    content: '';
    width: 26px;
    height: 26px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2306B6D4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E") no-repeat center / contain;
}

.footer-logo-icon::after {
    display: none;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.footer-logo-text span {
    color: var(--cyan-light);
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--slate-400);
    line-height: 1.8;
    margin-bottom: 32px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--medical-cyan);
    border-color: var(--medical-cyan);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: white;
    color: white;
}

.footer-col-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--slate-400);
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--cyan-light);
    padding-left: 8px;
}

/* Footer Certifications */
.footer-certs {
    padding: 40px 48px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-certs-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cert-icon {
    width: 48px;
    height: 48px;
    background: rgba(6, 182, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--cyan-light);
}

.cert-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.cert-text span {
    display: block;
    font-weight: 400;
    color: var(--slate-400);
    font-size: 0.8rem;
}

/* Footer Bottom */
.footer-bottom {
    padding: 32px 48px;
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-copy {
    font-size: 0.9rem;
    color: var(--slate-500);
}

.footer-payments {
    display: flex;
    gap: 12px;
}

.payment-icon {
    width: 56px;
    height: 36px;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--slate-400);
    font-weight: 700;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--slate-500);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--cyan-light);
}

/* ===== AI ASSISTANT (index.html) ===== */
.ai-assistant {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1000;
}

.ai-toggle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--deep-sapphire) 0%, var(--slate-700) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    position: relative;
}

.ai-toggle::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--medical-cyan), var(--cyan-light));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.ai-toggle:hover::before {
    opacity: 1;
}

.ai-toggle:hover {
    transform: scale(1.05);
}

.ai-toggle svg {
    width: 28px;
    height: 28px;
    stroke: white;
    fill: none;
}

.ai-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 400px;
    background: white;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.ai-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.ai-header {
    background: var(--deep-sapphire);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ai-avatar {
    width: 48px;
    height: 48px;
    background: var(--medical-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-avatar svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.ai-header-text h4 {
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
}

.ai-header-text p {
    color: var(--slate-400);
    font-size: 0.85rem;
}

.ai-close {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.ai-close svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.ai-body {
    padding: 24px;
    max-height: 360px;
    overflow-y: auto;
}

.ai-message {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.ai-message-avatar {
    width: 36px;
    height: 36px;
    background: var(--cloud-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-message-avatar svg {
    width: 18px;
    height: 18px;
    stroke: var(--medical-cyan);
}

.ai-message-content {
    background: var(--cloud-gray);
    padding: 16px 20px;
    font-size: 0.95rem;
    color: var(--slate-700);
    line-height: 1.6;
}

.ai-suggestions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.ai-suggestion {
    padding: 14px 18px;
    background: white;
    border: 1px solid var(--sterile-silver);
    font-size: 0.9rem;
    color: var(--slate-600);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}

.ai-suggestion:hover {
    border-color: var(--medical-cyan);
    color: var(--medical-cyan);
    background: rgba(8, 145, 178, 0.05);
}

.ai-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--sterile-silver);
    display: flex;
    gap: 12px;
}

.ai-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--sterile-silver);
    font-size: 0.95rem;
}

.ai-input:focus {
    outline: none;
    border-color: var(--medical-cyan);
}

.ai-send {
    width: 52px;
    height: 52px;
    background: var(--deep-sapphire);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.ai-send:hover {
    background: var(--medical-cyan);
}

.ai-send svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

/* ===== CART DRAWER (index.html) ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 440px;
    height: 100%;
    background: white;
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 28px;
    border-bottom: 1px solid var(--sterile-silver);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--deep-sapphire);
}

.cart-close {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--sterile-silver);
    cursor: pointer;
    transition: all 0.2s;
}

.cart-close:hover {
    border-color: var(--deep-sapphire);
    background: var(--cloud-gray);
}

.cart-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--deep-sapphire);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 28px;
}

.cart-empty {
    text-align: center;
    padding: 48px 0;
    color: var(--slate-400);
}

.cart-item {
    display: flex;
    gap: 20px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--sterile-silver);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background: var(--cloud-gray);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-sapphire);
    margin-bottom: 6px;
}

.cart-item-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--medical-cyan);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--slate-400);
    font-size: 0.85rem;
    margin-top: 12px;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: #DC2626;
}

.cart-footer {
    padding: 28px;
    border-top: 1px solid var(--sterile-silver);
    background: var(--cloud-gray);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cart-total-label {
    font-size: 1rem;
    color: var(--slate-500);
}

.cart-total-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--deep-sapphire);
}

.cart-checkout {
    width: 100%;
    padding: 18px;
    background: var(--deep-sapphire);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.cart-checkout:hover {
    background: var(--medical-cyan);
}

/* ===== TOAST (index.html) ===== */
.toast {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--deep-sapphire);
    color: white;
    padding: 18px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 3000;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 14px;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast svg {
    width: 22px;
    height: 22px;
    stroke: var(--cyan-light);
}

/* ===== RESPONSIVE ===== */

/* 1200px */
@media (max-width: 1200px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        height: 400px;
        order: -1;
    }

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

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: span 3;
        padding-right: 0;
        margin-bottom: 24px;
    }

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

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

    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .contact-info {
        padding-right: 0;
    }

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

/* 992px */
@media (max-width: 992px) {
    .section {
        padding: 80px 32px;
    }

    .header-inner {
        padding: 0 24px;
    }

    .nav {
        display: none;
    }

    .store-section {
        grid-template-columns: 1fr;
    }

    .store-visual {
        min-height: 300px;
    }

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

    .footer-top-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .main-content {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .page-banner {
        padding: 110px 24px 32px;
    }

    .page-banner-title {
        font-size: 1.6rem;
    }

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

    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-gallery {
        position: static;
    }

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

    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-intro-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-intro-content {
        padding-right: 0;
    }

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

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

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 64px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -13px;
        transform: rotate(135deg);
    }

    .map-section {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        min-height: 300px;
    }

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

/* 768px */
@media (max-width: 768px) {
    .hero {
        padding: 120px 24px 60px;
    }

    .hero-stats {
        gap: 32px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section {
        padding: 60px 24px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

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

    .filter-tabs {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .cart-drawer {
        width: 100%;
    }

    .ai-panel {
        width: calc(100vw - 64px);
        right: 0;
    }

    .page-banner,
    .about-intro,
    .vision-mission,
    .stats-section,
    .values-section,
    .team-section,
    .timeline-section,
    .cta-section,
    .contact-section,
    .faq-section,
    .support-section,
    .footer-top,
    .footer-main,
    .footer-certs,
    .footer-bottom {
        padding-left: 24px;
        padding-right: 24px;
    }

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

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

    .toolbar {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .toolbar-left,
    .toolbar-right {
        justify-content: space-between;
    }

    .product-title {
        font-size: 1.75rem;
    }

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

    .quantity-section {
        flex-direction: column;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .tabs-nav {
        overflow-x: auto;
    }

    .tab-btn {
        padding: 16px 20px;
        white-space: nowrap;
    }

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

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

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .stat-number {
        font-size: 3rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-certs-inner {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

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

    .form-group.full {
        grid-column: span 1;
    }

    .locations-panel {
        padding: 48px 24px;
    }

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

/* 480px */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-search {
        flex-direction: column;
    }

    .search-btn {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

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

    .store-info {
        padding: 48px 24px;
    }

    .store-cta {
        flex-direction: column;
    }

    .store-cta .btn-primary,
    .store-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .footer-certs-inner {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ============================================
   ACCOUNT AREA - Customer Account Pages
   ============================================ */

/* --- Alert Messages --- */
.alert {
    padding: 14px 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
    border-left: 4px solid transparent;
}

.alert-success {
    background: #F0FDF4;
    color: #166534;
    border-left-color: var(--success);
}

.alert-error {
    background: #FEF2F2;
    color: #991B1B;
    border-left-color: var(--error);
}

.alert-warning {
    background: #FFFBEB;
    color: #92400E;
    border-left-color: #F59E0B;
}

.alert-info {
    background: #EFF6FF;
    color: #1E40AF;
    border-left-color: var(--medical-cyan);
}

/* --- Auth Pages (Login / Register) --- */
.account-section {
    padding: 80px 48px 120px;
    background: var(--cloud-gray);
    min-height: calc(100vh - 120px);
}

.account-auth-container {
    max-width: 520px;
    margin: 0 auto;
}

.auth-card {
    background: white;
    padding: 48px;
    border: 1px solid var(--sterile-silver);
    margin-top: 32px;
}

.auth-header {
    margin-bottom: 32px;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    letter-spacing: -0.5px;
}

.auth-subtitle {
    font-size: 0.95rem;
    color: var(--slate-500);
    margin-top: 8px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}

.auth-form .form-row .form-group {
    margin-bottom: 20px;
}

.form-row-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.form-row-between .form-checkbox {
    margin-bottom: 0;
}

.btn-full {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    text-align: center;
    display: block;
}

.auth-link {
    color: var(--medical-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--sterile-silver);
    font-size: 0.95rem;
    color: var(--slate-500);
}

/* --- Account Layout (Dashboard & Inner Pages) --- */
.account-container {
    max-width: 1400px;
    margin: 0 auto;
}

.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    margin-top: 32px;
}

/* --- Account Sidebar --- */
.account-sidebar {
    background: white;
    border: 1px solid var(--sterile-silver);
    padding: 28px;
    align-self: start;
    position: sticky;
    top: 120px;
}

.account-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--sterile-silver);
}

.account-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--deep-sapphire), var(--slate-700));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.account-user-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.account-user-info strong {
    font-size: 0.95rem;
    color: var(--deep-sapphire);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.account-user-info span {
    font-size: 0.8rem;
    color: var(--slate-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--slate-600);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.account-nav-link:hover {
    color: var(--deep-sapphire);
    background: var(--cloud-gray);
}

.account-nav-link.active {
    color: var(--medical-cyan);
    background: rgba(8, 145, 178, 0.06);
    font-weight: 600;
    border-left: 3px solid var(--medical-cyan);
    padding-left: 13px;
}

.account-nav-link svg {
    flex-shrink: 0;
    stroke: currentColor;
}

.account-nav-logout {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--sterile-silver);
}

.account-nav-logout:hover {
    color: var(--error);
}

/* --- Account Main Content --- */
.account-main {
    min-width: 0;
}

.account-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
}

.account-page-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    letter-spacing: -0.5px;
}

.account-page-subtitle {
    font-size: 0.9rem;
    color: var(--slate-500);
    margin-top: 4px;
}

/* --- Dashboard Cards --- */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.dashboard-card {
    background: white;
    border: 1px solid var(--sterile-silver);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.dashboard-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dashboard-card-icon svg {
    stroke: var(--deep-sapphire);
}

.dashboard-card-icon.icon-success {
    background: rgba(34, 197, 94, 0.08);
}

.dashboard-card-icon.icon-success svg {
    stroke: var(--success);
}

.dashboard-card-icon.icon-cyan {
    background: rgba(8, 145, 178, 0.08);
}

.dashboard-card-icon.icon-cyan svg {
    stroke: var(--medical-cyan);
}

.dashboard-card-icon.icon-danger {
    background: rgba(239, 68, 68, 0.08);
}

.dashboard-card-icon.icon-danger svg {
    stroke: var(--error);
}

.dashboard-card-content {
    display: flex;
    flex-direction: column;
}

.dashboard-card-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--deep-sapphire);
    letter-spacing: -0.5px;
    line-height: 1;
}

.dashboard-card-label {
    font-size: 0.8rem;
    color: var(--slate-500);
    margin-top: 6px;
}

/* --- Quick Links --- */
.dashboard-quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.quick-link-card {
    background: white;
    border: 1px solid var(--sterile-silver);
    padding: 24px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: all 0.2s;
}

.quick-link-card svg {
    stroke: var(--slate-400);
    transition: stroke 0.2s;
}

.quick-link-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-600);
    transition: color 0.2s;
}

.quick-link-card:hover {
    border-color: var(--medical-cyan);
}

.quick-link-card:hover svg {
    stroke: var(--medical-cyan);
}

.quick-link-card:hover span {
    color: var(--medical-cyan);
}

/* --- Account Card (Generic Container) --- */
.account-card {
    background: white;
    border: 1px solid var(--sterile-silver);
    margin-bottom: 24px;
}

.account-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--sterile-silver);
}

.account-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-sapphire);
}

.account-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--medical-cyan);
    text-decoration: none;
}

.account-card-link:hover {
    text-decoration: underline;
}

/* --- Account Table --- */
.table-responsive {
    overflow-x: auto;
}

.account-table {
    width: 100%;
    border-collapse: collapse;
}

.account-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--cloud-gray);
    border-bottom: 1px solid var(--sterile-silver);
    white-space: nowrap;
}

.account-table td {
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--slate-700);
    border-bottom: 1px solid var(--slate-100);
    white-space: nowrap;
}

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

.table-action {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--medical-cyan);
    text-decoration: none;
}

.table-action:hover {
    text-decoration: underline;
}

/* --- Status Badges --- */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.status-badge-lg {
    padding: 6px 16px;
    font-size: 0.85rem;
}

.status-warning {
    background: #FFFBEB;
    color: #92400E;
}

.status-info {
    background: #EFF6FF;
    color: #1E40AF;
}

.status-cyan {
    background: #ECFEFF;
    color: #155E75;
}

.status-purple {
    background: #F5F3FF;
    color: #5B21B6;
}

.status-success {
    background: #F0FDF4;
    color: #166534;
}

.status-danger {
    background: #FEF2F2;
    color: #991B1B;
}

.status-muted {
    background: var(--slate-100);
    color: var(--slate-500);
}

/* --- Payment Status --- */
.payment-status {
    font-size: 0.85rem;
    font-weight: 600;
}

.payment-pending { color: #92400E; }
.payment-paid { color: #166534; }
.payment-failed { color: #991B1B; }
.payment-refunded { color: var(--slate-500); }

/* --- Empty State --- */
.account-empty {
    background: white;
    border: 1px solid var(--sterile-silver);
    padding: 80px 40px;
    text-align: center;
}

.account-empty svg {
    stroke: var(--slate-300);
    margin-bottom: 16px;
}

.account-empty p {
    font-size: 1rem;
    color: var(--slate-500);
    margin-bottom: 24px;
}

/* --- Order Filters --- */
.order-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-600);
    text-decoration: none;
    border: 1px solid var(--sterile-silver);
    background: white;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: var(--medical-cyan);
    color: var(--medical-cyan);
}

.filter-btn.active {
    background: var(--deep-sapphire);
    color: white;
    border-color: var(--deep-sapphire);
}

/* --- Order Detail --- */
.order-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.order-info-card {
    background: white;
    border: 1px solid var(--sterile-silver);
    padding: 20px;
}

.order-info-label {
    display: block;
    font-size: 0.8rem;
    color: var(--slate-500);
    margin-bottom: 6px;
}

.order-info-card strong {
    font-size: 0.95rem;
    color: var(--deep-sapphire);
}

/* --- Order Timeline --- */
.order-timeline {
    display: flex;
    justify-content: space-between;
    padding: 32px 24px;
    position: relative;
}

.order-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--sterile-silver);
    transform: translateY(-8px);
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid var(--sterile-silver);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.timeline-icon svg {
    stroke: var(--slate-400);
}

.timeline-step.completed .timeline-icon {
    background: var(--medical-cyan);
    border-color: var(--medical-cyan);
}

.timeline-step.completed .timeline-icon svg {
    stroke: white;
}

.timeline-step.current .timeline-icon {
    background: var(--deep-sapphire);
    border-color: var(--deep-sapphire);
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.1);
}

.timeline-step.current .timeline-icon svg {
    stroke: white;
}

.timeline-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--slate-400);
    text-align: center;
    white-space: nowrap;
}

.timeline-step.completed .timeline-label,
.timeline-step.current .timeline-label {
    color: var(--deep-sapphire);
}

/* --- Status History --- */
.status-history {
    padding: 24px;
}

.history-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--slate-100);
}

.history-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.history-dot {
    width: 10px;
    height: 10px;
    background: var(--medical-cyan);
    flex-shrink: 0;
    margin-top: 6px;
}

.history-content strong {
    display: block;
    font-size: 0.9rem;
    color: var(--deep-sapphire);
}

.history-content p {
    font-size: 0.85rem;
    color: var(--slate-600);
    margin-top: 4px;
}

.history-date {
    font-size: 0.8rem;
    color: var(--slate-400);
    margin-top: 4px;
    display: block;
}

/* --- Tracking Info --- */
.tracking-info {
    padding: 24px;
}

.tracking-info p {
    font-size: 0.9rem;
    color: var(--slate-600);
    margin-bottom: 4px;
}

/* --- Order Items --- */
.order-items {
    padding: 0;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--slate-100);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid var(--sterile-silver);
}

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

.order-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cloud-gray);
}

.order-item-placeholder svg {
    stroke: var(--slate-300);
}

.order-item-info {
    flex: 1;
    min-width: 0;
}

.order-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-sapphire);
    text-decoration: none;
    display: block;
}

a.order-item-name:hover {
    color: var(--medical-cyan);
}

.order-item-sku {
    font-size: 0.8rem;
    color: var(--slate-400);
    display: block;
    margin-top: 4px;
}

.order-item-variant {
    font-size: 0.8rem;
    color: var(--slate-500);
    display: block;
}

.order-item-qty {
    text-align: center;
    flex-shrink: 0;
}

.order-item-qty span {
    font-size: 0.85rem;
    color: var(--slate-600);
}

.order-item-price {
    text-align: right;
    flex-shrink: 0;
}

.order-item-price strong {
    display: block;
    font-size: 0.95rem;
    color: var(--deep-sapphire);
}

.order-item-unit {
    font-size: 0.78rem;
    color: var(--slate-400);
    display: block;
}

/* --- Order Bottom Grid --- */
.order-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.order-addresses {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.address-detail {
    padding: 20px 24px;
}

.address-detail strong {
    display: block;
    font-size: 0.95rem;
    color: var(--deep-sapphire);
    margin-bottom: 4px;
}

.address-detail p {
    font-size: 0.85rem;
    color: var(--slate-600);
    margin: 2px 0;
}

/* --- Order Totals --- */
.order-totals {
    padding: 20px 24px;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--slate-600);
}

.totals-grand {
    border-top: 2px solid var(--deep-sapphire);
    margin-top: 12px;
    padding-top: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-sapphire);
}

.text-success {
    color: var(--success);
}

/* --- Account Actions --- */
.account-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-secondary {
    padding: 12px 24px;
    background: white;
    color: var(--deep-sapphire);
    border: 1px solid var(--sterile-silver);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--deep-sapphire);
}

/* --- Address Page --- */
.address-form {
    padding: 24px;
}

.address-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}

.address-form .form-group {
    margin-bottom: 20px;
}

.address-form .form-textarea {
    min-height: 80px;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.address-card {
    background: white;
    border: 1px solid var(--sterile-silver);
    padding: 24px;
    position: relative;
}

.address-card.address-default {
    border-color: var(--medical-cyan);
}

.address-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--medical-cyan);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.address-title {
    font-size: 1rem;
    color: var(--deep-sapphire);
}

.address-type {
    font-size: 0.78rem;
    color: var(--slate-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.address-card-body p {
    font-size: 0.85rem;
    color: var(--slate-600);
    margin: 2px 0;
}

.address-card-body p strong {
    color: var(--deep-sapphire);
}

.address-company {
    color: var(--slate-400) !important;
    font-style: italic;
}

.address-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--slate-100);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--sterile-silver);
    background: white;
    color: var(--slate-600);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
}

.btn-sm:hover {
    border-color: var(--deep-sapphire);
    color: var(--deep-sapphire);
}

.btn-sm-outline {
    border-color: var(--medical-cyan);
    color: var(--medical-cyan);
}

.btn-sm-outline:hover {
    background: var(--medical-cyan);
    color: white;
}

.btn-sm-danger {
    border-color: var(--error);
    color: var(--error);
}

.btn-sm-danger:hover {
    background: var(--error);
    color: white;
}

/* --- Wishlist --- */
.wishlist-grid {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--sterile-silver);
    border: 1px solid var(--sterile-silver);
}

.wishlist-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: white;
}

.wishlist-item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid var(--sterile-silver);
}

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

.wishlist-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cloud-gray);
}

.wishlist-item-placeholder svg {
    stroke: var(--slate-300);
}

.wishlist-item-info {
    flex: 1;
    min-width: 0;
}

.wishlist-item-brand {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--medical-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.wishlist-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-sapphire);
    text-decoration: none;
    display: block;
}

.wishlist-item-name:hover {
    color: var(--medical-cyan);
}

.wishlist-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    margin-top: 8px;
}

.wishlist-price-old {
    font-size: 0.85rem;
    color: var(--slate-400);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
}

.wishlist-stock {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 6px;
}

.wishlist-stock.in-stock {
    color: var(--success);
}

.wishlist-stock.out-of-stock {
    color: var(--error);
}

.wishlist-item-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.btn-sm-cart {
    padding: 10px 18px;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-sm-cart svg {
    stroke: white;
}

/* --- Profile & Password Forms --- */
.profile-form,
.password-form {
    padding: 24px;
}

.profile-form .form-row,
.password-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}

.profile-form .form-group,
.password-form .form-group {
    margin-bottom: 20px;
}

.profile-meta {
    padding: 16px 0;
    border-top: 1px solid var(--slate-100);
    margin-top: 8px;
}

.profile-meta p {
    font-size: 0.85rem;
    color: var(--slate-500);
    margin: 4px 0;
}

.security-info {
    padding: 24px;
}

.security-info p {
    font-size: 0.9rem;
    color: var(--slate-600);
    margin-bottom: 16px;
}

.password-tips {
    background: var(--cloud-gray);
    padding: 20px;
    margin-bottom: 24px;
}

.password-tips h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    margin-bottom: 8px;
}

.password-tips ul {
    list-style: none;
    padding: 0;
}

.password-tips li {
    font-size: 0.82rem;
    color: var(--slate-500);
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
}

.password-tips li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: var(--medical-cyan);
}

/* ============================================
   ACCOUNT AREA - Responsive
   ============================================ */
@media (max-width: 1024px) {
    .account-section {
        padding: 60px 24px 80px;
    }

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

    .account-sidebar {
        position: static;
    }

    .account-user {
        display: none;
    }

    .account-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 4px;
        padding-bottom: 4px;
    }

    .account-nav-link {
        white-space: nowrap;
        padding: 10px 14px;
        font-size: 0.82rem;
    }

    .account-nav-link.active {
        border-left: none;
        border-bottom: 3px solid var(--medical-cyan);
        padding-left: 14px;
    }

    .account-nav-link svg {
        display: none;
    }

    .account-nav-logout {
        margin-top: 0;
        padding-top: 10px;
        border-top: none;
        border-left: 1px solid var(--sterile-silver);
        margin-left: 4px;
        padding-left: 8px;
    }

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

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

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

    .order-bottom-grid {
        grid-template-columns: 1fr;
    }

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

    .order-timeline {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .order-timeline::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .account-section {
        padding: 40px 16px 60px;
    }

    .auth-card {
        padding: 28px 20px;
    }

    .auth-form .form-row {
        grid-template-columns: 1fr;
    }

    .dashboard-cards {
        grid-template-columns: 1fr;
    }

    .dashboard-quick-links {
        grid-template-columns: 1fr 1fr;
    }

    .order-info-grid {
        grid-template-columns: 1fr;
    }

    .account-page-header {
        flex-direction: column;
        gap: 12px;
    }

    .order-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-item-image {
        width: 60px;
        height: 60px;
    }

    .order-item-qty,
    .order-item-price {
        text-align: left;
    }

    .wishlist-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .wishlist-item-image {
        width: 80px;
        height: 80px;
    }

    .wishlist-item-actions {
        flex-direction: row;
        width: 100%;
    }

    .address-form .form-row,
    .profile-form .form-row,
    .password-form .form-row {
        grid-template-columns: 1fr;
    }

    .form-row-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .account-nav {
        gap: 2px;
    }

    .account-nav-link {
        padding: 8px 10px;
        font-size: 0.78rem;
    }
}

/* ============================================
   MISSING CLASSES - Top Bar, Container,
   Nav Dropdown, Search Overlay, Cart Footer,
   Mobile Menu, Branding, etc.
   ============================================ */

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--deep-sapphire);
    color: white;
    font-size: 0.8125rem;
    height: 36px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.top-bar-link:hover {
    color: var(--cyan-light);
}

.top-bar-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    flex-shrink: 0;
}

.top-bar-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8125rem;
    font-weight: 500;
}

.top-bar-b2b {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.2s;
}

.top-bar-b2b:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ===== HEADER SPACER ===== */
.header-spacer {
    display: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown .nav-link svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-link svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: white;
    border: 1px solid var(--sterile-silver);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 100;
    padding: 8px 0;
    margin-top: 6px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--slate-600);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.15s;
}

.dropdown-item:hover {
    background: var(--cloud-gray);
    color: var(--medical-cyan);
    padding-left: 24px;
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--sterile-silver);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 99;
}

.search-overlay.active {
    max-height: 400px;
    opacity: 1;
    padding: 24px 0;
}

.search-overlay-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.search-form {
    display: flex;
    gap: 0;
    border: 2px solid var(--sterile-silver);
    transition: border-color 0.2s;
}

.search-form:focus-within {
    border-color: var(--medical-cyan);
}

.search-form .search-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 1rem;
    background: transparent;
}

.search-form .search-input:focus {
    outline: none;
}

.search-submit {
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--deep-sapphire);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.search-submit:hover {
    background: var(--medical-cyan);
}

.search-submit svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.search-results {
    margin-top: 16px;
    max-height: 280px;
    overflow-y: auto;
}

.search-results:empty {
    display: none;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--slate-100);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}

.search-result-item:hover {
    background: var(--cloud-gray);
}

/* ===== CART FOOTER ELEMENTS (subtotal, shipping, continue, empty) ===== */
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cart-subtotal-label {
    font-size: 1rem;
    color: var(--slate-500);
    font-weight: 500;
}

.cart-subtotal-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--deep-sapphire);
}

.cart-shipping-note {
    font-size: 0.82rem;
    color: var(--slate-400);
    margin-bottom: 20px;
    text-align: center;
}

.cart-continue {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid var(--sterile-silver);
    color: var(--slate-600);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    margin-top: 10px;
}

.cart-continue:hover {
    border-color: var(--medical-cyan);
    color: var(--medical-cyan);
}

.cart-empty-link {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 28px;
    background: var(--deep-sapphire);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
}

.cart-empty-link:hover {
    background: var(--medical-cyan);
}

.cart-empty svg {
    stroke: var(--slate-300);
    margin-bottom: 16px;
}

.cart-empty p {
    font-size: 1rem;
    color: var(--slate-400);
    margin-bottom: 8px;
}

/* ===== CART ITEM EXTRAS ===== */
.cart-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cloud-gray);
    color: var(--slate-300);
}

.cart-item-variant {
    display: block;
    font-size: 0.8rem;
    color: var(--slate-400);
    margin-bottom: 4px;
}

.cart-item-name {
    text-decoration: none;
    display: block;
}

/* ===== PRODUCT IMAGE PLACEHOLDER ===== */
.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cloud-gray);
    color: var(--slate-300);
}

.product-image-placeholder svg {
    stroke: var(--slate-300);
}

/* ===== PRODUCT RATING COUNT ===== */
.product-rating-count {
    font-size: 0.8rem;
    color: var(--slate-400);
}

/* ===== BRANDING ===== */

/* ============================================
   PRODUCT CARD - Badge & Spacing Fix
   ============================================ */

/* Ensure badge stays inside image area and doesn't overlap info */
.product-image-wrap {
    position: relative;
    overflow: hidden;
}

.product-badge {
    z-index: 2;
    line-height: 1;
}

/* Fix product-quick overlay inside image-wrap */
.product-quick {
    z-index: 3;
}

/* Wishlist button z-index fix */
.product-wishlist {
    z-index: 4;
}

/* Product info spacing fix for cards without brand or rating */
.product-info {
    display: flex;
    flex-direction: column;
}

.product-name {
    flex: 1;
}

/* ============================================
   MISSING CLASSES - Top Bar & Header Responsive
   ============================================ */
@media (max-width: 1024px) {
    .top-bar {
        height: auto;
        padding: 6px 0;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 4px;
        padding: 0 24px;
    }

    .top-bar-left,
    .top-bar-right {
        gap: 12px;
    }

    .header-spacer {
        display: none;
    }

    .container {
        padding: 0 24px;
    }

    .nav {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .search-overlay-inner {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-bar-right {
        justify-content: center;
    }

    .header-spacer {
        display: none;
    }

    .container {
        padding: 0 16px;
    }

    .search-overlay-inner {
        padding: 0 16px;
    }

    .cart-drawer {
        width: 100%;
    }

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

    .product-info {
        padding: 16px;
    }

    .product-name {
        font-size: 0.9rem;
    }

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

    .btn-cart {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 0.75rem;
    }

    .top-bar-b2b {
        padding: 3px 8px;
        font-size: 0.75rem;
    }

    /* branding handled via fcreds */
}

/* =============================================
   BREADCRUMB CHILDREN
   ============================================= */
.breadcrumb-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: var(--slate-500);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-link:hover {
    color: var(--medical-cyan);
}

.breadcrumb-link svg {
    flex-shrink: 0;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    color: var(--slate-400);
}

.breadcrumb-separator svg {
    width: 14px;
    height: 14px;
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--sterile-silver);
    color: var(--slate-600);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.pagination-btn:hover:not(.disabled) {
    border-color: var(--medical-cyan);
    color: var(--medical-cyan);
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-page {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--sterile-silver);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--slate-600);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.pagination-page:hover {
    border-color: var(--medical-cyan);
    color: var(--medical-cyan);
}

.pagination-page.active {
    background: var(--deep-sapphire);
    border-color: var(--deep-sapphire);
    color: white;
    pointer-events: none;
}

.pagination-ellipsis {
    padding: 0 8px;
    color: var(--slate-400);
    font-weight: 600;
}

/* =============================================
   EMPTY STATE
   ============================================= */
.empty-state {
    text-align: center;
    padding: 80px 40px;
}

.empty-state svg {
    display: block;
    margin: 0 auto 24px;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--slate-500);
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   PRODUCT DESCRIPTION
   ============================================= */
.product-description {
    font-size: 1rem;
    color: var(--slate-600);
    line-height: 1.8;
}

.product-description p {
    margin-bottom: 16px;
}

.product-description h3,
.product-description h4 {
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--deep-sapphire);
    font-weight: 700;
}

.product-description ul,
.product-description ol {
    margin: 16px 0;
    padding-left: 24px;
}

.product-description li {
    margin-bottom: 8px;
}

.product-description strong {
    color: var(--deep-sapphire);
    font-weight: 600;
}

/* =============================================
   CART PAGE (sepet.php)
   ============================================= */
.empty-cart {
    text-align: center;
    padding: 80px 40px;
}

.empty-cart-icon {
    margin-bottom: 24px;
}

.empty-cart h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    margin-bottom: 12px;
}

.empty-cart p {
    color: var(--slate-500);
    margin-bottom: 24px;
}

.cart-page-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-page-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto auto;
    gap: 16px;
    align-items: center;
    padding: 20px;
    background: white;
    border: 1px solid var(--sterile-silver);
    transition: border-color 0.2s;
}

.cart-page-item:hover {
    border-color: var(--medical-cyan);
}

.cart-page-item-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    background: var(--cloud-gray);
}

.cart-page-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-page-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cloud-gray);
}

.cart-page-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.cart-page-item-category {
    font-size: 0.75rem;
    color: var(--medical-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-page-item-name {
    font-weight: 600;
    color: var(--deep-sapphire);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cart-page-item-name:hover {
    color: var(--medical-cyan);
}

.cart-page-item-variant {
    font-size: 0.8rem;
    color: var(--slate-500);
}

.cart-page-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.cart-page-price {
    font-weight: 700;
    color: var(--deep-sapphire);
    font-size: 1rem;
}

.cart-page-price-old {
    font-size: 0.8rem;
    color: var(--slate-400);
    text-decoration: line-through;
}

.cart-page-item-quantity {
    display: flex;
    align-items: center;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--sterile-silver);
}

.quantity-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cloud-gray);
    border: none;
    color: var(--slate-600);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.quantity-btn:hover {
    background: var(--sterile-silver);
    color: var(--deep-sapphire);
}

.quantity-input {
    width: 48px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--sterile-silver);
    border-right: 1px solid var(--sterile-silver);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-sapphire);
    font-family: inherit;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-page-item-total {
    font-weight: 700;
    color: var(--deep-sapphire);
    font-size: 1.05rem;
    white-space: nowrap;
}

.cart-page-item-remove {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid transparent;
    color: var(--slate-400);
    cursor: pointer;
    transition: all 0.2s;
}

.cart-page-item-remove:hover {
    color: var(--error);
    border-color: var(--error);
}

/* Cart Summary */
.cart-summary {
    background: white;
    border: 1px solid var(--sterile-silver);
    padding: 28px;
    position: sticky;
    top: 100px;
}

.cart-summary-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sterile-silver);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--slate-600);
}

.cart-summary-total {
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid var(--deep-sapphire);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep-sapphire);
}

.cart-discount {
    color: var(--success);
}

.cart-coupon-form {
    display: flex;
    gap: 8px;
    margin: 16px 0;
}

.coupon-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--sterile-silver);
    font-size: 0.85rem;
    font-family: inherit;
    color: var(--deep-sapphire);
}

.coupon-input:focus {
    outline: none;
    border-color: var(--medical-cyan);
}

.coupon-btn {
    padding: 10px 18px;
    background: var(--deep-sapphire);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}

.coupon-btn:hover {
    background: var(--medical-cyan);
}

.coupon-remove {
    background: none;
    border: none;
    color: var(--error);
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
    margin-left: 4px;
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--medical-cyan);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    text-align: center;
    margin-top: 16px;
}

.btn-checkout:hover {
    background: #06B6D4;
}

.btn-continue {
    display: block;
    text-align: center;
    padding: 14px;
    margin-top: 12px;
    color: var(--slate-600);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid var(--sterile-silver);
    transition: all 0.2s;
}

.btn-continue:hover {
    border-color: var(--medical-cyan);
    color: var(--medical-cyan);
}

.text-success {
    color: var(--success) !important;
}

/* =============================================
   CHECKOUT PAGE
   ============================================= */
.checkout-form {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
}

.checkout-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-right {
    position: relative;
}

.checkout-card {
    background: white;
    border: 1px solid var(--sterile-silver);
    padding: 28px;
}

.checkout-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--deep-sapphire);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sterile-silver);
}

.checkout-card-title svg {
    flex-shrink: 0;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--sterile-silver);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--deep-sapphire);
    background: white;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--medical-cyan);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

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

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-600);
    margin-bottom: 6px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--slate-600);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--medical-cyan);
}

.checkbox-label a {
    color: var(--medical-cyan);
    text-decoration: underline;
}

/* Shipping Options */
.shipping-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--sterile-silver);
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.shipping-option:hover {
    border-color: var(--medical-cyan);
}

.shipping-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--medical-cyan);
    flex-shrink: 0;
}

.shipping-option-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.shipping-option-info strong {
    font-size: 0.9rem;
    color: var(--deep-sapphire);
}

.shipping-option-info span {
    font-size: 0.8rem;
    color: var(--slate-500);
}

.shipping-option-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--deep-sapphire);
    white-space: nowrap;
}

/* Payment Options */
.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--sterile-silver);
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.payment-option:hover {
    border-color: var(--medical-cyan);
}

.payment-option input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--medical-cyan);
    flex-shrink: 0;
}

.payment-option-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-option-info strong {
    font-size: 0.9rem;
    color: var(--deep-sapphire);
}

.payment-option-info span {
    font-size: 0.8rem;
    color: var(--slate-500);
}

.payment-note {
    font-size: 0.75rem;
    color: var(--warning, #F59E0B);
    font-weight: 600;
}

.bank-account-card {
    background: var(--cloud-gray);
    padding: 16px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.bank-account-card strong {
    color: var(--deep-sapphire);
    display: block;
    margin-bottom: 4px;
}

/* Checkout Summary */
.checkout-summary {
    background: white;
    border: 1px solid var(--sterile-silver);
    padding: 28px;
}

.sticky-summary {
    position: sticky;
    top: 100px;
}

.checkout-items {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sterile-silver);
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    gap: 16px;
}

.checkout-item-info {
    flex: 1;
    min-width: 0;
}

.checkout-item-name {
    font-size: 0.85rem;
    color: var(--deep-sapphire);
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

.checkout-item-qty {
    font-size: 0.8rem;
    color: var(--slate-500);
}

.checkout-item-price {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--deep-sapphire);
    white-space: nowrap;
}

.checkout-totals {
    margin-bottom: 16px;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--slate-600);
}

.checkout-grand-total {
    padding-top: 12px;
    margin-top: 8px;
    border-top: 2px solid var(--deep-sapphire);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep-sapphire);
}

.address-select select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--sterile-silver);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--deep-sapphire);
    background: white;
}

/* =============================================
   SEARCH RESULTS
   ============================================= */
.search-results-section {
    padding: 60px 48px 100px;
}

/* =============================================
   RESPONSIVE - CART & CHECKOUT
   ============================================= */
@media (max-width: 992px) {
    .cart-page-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .cart-page-item {
        grid-template-columns: 80px 1fr;
        gap: 12px;
    }

    .cart-page-item-price,
    .cart-page-item-quantity,
    .cart-page-item-total {
        grid-column: 2;
    }

    .cart-page-item-remove {
        position: absolute;
        top: 12px;
        right: 12px;
    }

    .cart-page-item {
        position: relative;
    }

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

    .checkout-form {
        padding: 0 24px;
    }

    .sticky-summary {
        position: static;
    }

    .breadcrumb-inner {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .cart-page-grid {
        padding: 0 16px;
    }

    .checkout-form {
        padding: 0 16px;
    }

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

    .breadcrumb-inner {
        padding: 0 16px;
        font-size: 0.8rem;
    }

    .pagination-page,
    .pagination-btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .search-results-section {
        padding: 40px 16px 60px;
    }
}

@media (max-width: 480px) {
    .cart-page-item {
        grid-template-columns: 70px 1fr;
        padding: 14px;
    }

    .cart-page-item-image {
        width: 70px;
        height: 70px;
    }

    .cart-summary {
        padding: 20px;
    }

    .checkout-card {
        padding: 20px;
    }

    .checkout-summary {
        padding: 20px;
    }
}
