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

:root {
    /* Werista Premium Theme Colors */
    --primary: #18181b;       /* Zinc 900 (almost black) */
    --primary-dark: #09090b;  /* Zinc 950 */
    --primary-light: #3f3f46; /* Zinc 700 */
    --primary-bg: #f5f5f4;    /* Stone 100 (warm off-white/beige) */

    /* Accent (Limon / Goldish Green) */
    --accent: #d2ef82;        /* Fıstık Yeşili / Gold */
    --accent-dark: #c5e17e;
    --accent-bg: #f9fbf0;

    /* Backgrounds */
    --bg-base: #f8f8f6;       /* Warm beige background */
    --bg-secondary: #ffffff;  /* Pure white for cards */
    --bg-tertiary: #f1f1ee;   /* Medium warm gray/beige */
    --bg-blue-light: #f4f6ec;

    /* Text */
    --text-primary: #18181b;   /* Almost black */
    --text-secondary: #52525b; /* Zinc 600 */
    --text-tertiary: #8b8ba2;  /* Cool grey */
    --text-light: #ffffff;     /* White text */

    /* Borders */
    --border-light: #e4e4e7;  /* Zinc 200 */
    --border-default: #d4d4d8;/* Zinc 300 */
    --border-dark: #71717a;   /* Zinc 500 */

    /* System Colors */
    --success: #10B981;
    --success-bg: #D1FAE5;
    --danger: #EF4444;
    --danger-bg: #FEE2E2;
    --warning: #F59E0B;
    --warning-bg: #FEF3C7;
    --info: #18181b;
    --info-bg: #f4f6ec;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
    --shadow-md: 0 8px 16px -2px rgba(24, 24, 27, 0.04);
    --shadow-lg: 0 16px 24px -4px rgba(24, 24, 27, 0.06);
    --shadow-xl: 0 24px 36px -8px rgba(24, 24, 27, 0.08);
    --shadow-card: 0 1px 3px 0 rgba(24, 24, 27, 0.02);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 26px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --header-height: 80px;
    --container-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-base);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}


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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    outline: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--bg-base);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--border-default);
    box-shadow: var(--shadow-sm);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, #EFF6FF 0%, #E0F2FE 100%);
    padding: 13px 0;
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    font-weight: 500;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-base);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    transition: var(--transition-fast);
}

.site-logo:hover {
    opacity: 0.8;
}

.site-logo img {
    height: 32px;
    width: auto;
}

.site-logo span {
    font-size: 22px;
}

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

.main-nav a {
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
    background: var(--bg-secondary);
}

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

.btn-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    transition: var(--transition-normal);
}

.btn-cart:hover {
    background: var(--bg-tertiary);
    transform: scale(1.05);
}

.btn-cart .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #F0F7FF 0%, var(--bg-base) 100%);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: #FCD34D;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Info Bar */
.info-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 18px 0;
    margin-bottom: 30px;
    /* Reduced from 60px */
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.info-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.info-bar-text {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-bar-text i {
    font-size: 18px;
}

.info-bar-actions {
    display: flex;
    gap: 12px;
}

.info-bar-actions .btn {
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-bar-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Product Grid */
.product-section {
    padding: 20px 0 80px;
    /* Reduced top padding from 80px to 20px */
}

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

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-blue-light);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-description {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 36px 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px -12px rgba(59, 130, 246, 0.2);
    transform: translateY(-8px);
}

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

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(8px);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    z-index: 10;
}

.product-icon {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1 / 1;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    background: #fff;
    position: relative;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.product-icon-blur {
    position: absolute;
    inset: -15%;
    z-index: -1;
    filter: blur(25px);
    opacity: 0.4;
    transition: all 0.6s ease;
    pointer-events: none;
}

.product-icon-blur img,
.product-icon-blur i {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
}

.product-icon-blur i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--primary-light);
}

.product-card:hover .product-icon {
    transform: scale(1.08) translateY(-5px) rotate(2deg);
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.3);
}

.product-card:hover .product-icon-blur {
    opacity: 0.7;
    inset: -25%;
    filter: blur(35px);
}

.product-icon-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

img.product-icon-main {
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

i.product-icon-main {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    object-fit: contain;
    /* Icons should be contained */
}

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

img.product-icon-main:hover {
    filter: drop-shadow(0 12px 25px rgba(59, 130, 246, 0.3));
}

.product-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.product-name a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.product-name a:hover {
    color: var(--primary);
}

/* Tabular Product List & Filters */
.products-filter-container {
    margin-bottom: 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--bg-base);
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-pill {
    padding: 10px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-pill:hover,
.category-pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.search-wrapper {
    position: relative;
    width: 300px;
}

.search-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

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

.product-list-header {
    display: grid;
    grid-template-columns: 80px 1fr 180px 150px 140px;
    padding: 0 24px 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-row {
    display: grid;
    grid-template-columns: 80px 1fr 180px 150px 140px;
    align-items: center;
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 16px 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.product-row:hover {
    border-color: var(--primary-light);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
    background: var(--bg-secondary);
}

.row-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
}

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

.row-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.row-category {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.row-price .current {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.row-price .original {
    font-size: 13px;
    color: var(--text-tertiary);
    text-decoration: line-through;
    margin-left: 6px;
}

.row-action .btn {
    padding: 8px 16px;
    font-size: 13px;
    width: 100%;
}

.pagination-ajax {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@media (max-width: 992px) {
    .product-list-header {
        display: none;
    }

    .product-row {
        grid-template-columns: 60px 1fr 120px;
        gap: 15px;
    }

    .row-category,
    .row-action {
        display: none;
    }
}

@media (max-width: 600px) {
    .products-filter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .search-wrapper {
        width: 100%;
    }

    .product-row {
        grid-template-columns: 50px 1fr;
    }

    .row-price {
        grid-column: 2;
    }
}

.product-icon-link {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.product-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    min-height: 48px;
    display: -webkit-box;
    display: box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
}

/* Product Gallery Premium (Detail Page) */

/* ===== PRODUCTS PAGE PREMIUM REDESIGN ===== */
.products-page-section {
    padding: 40px 0 80px; /* Reduced from 120px to fix spacing under sticky header */
}

/* Hero Header */
.products-page-hero {
    text-align: center;
    margin-bottom: 48px;
}
.products-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(210, 239, 130, 0.15);
    color: #18181b;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}
.products-hero-badge i {
    font-size: 11px;
    color: #18181b;
}
.products-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #18181b;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}
.products-hero-desc {
    font-size: 16px;
    color: #71717a;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Toolbar */
.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.products-categories-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.products-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(24, 24, 27, 0.04);
    border: 1px solid transparent;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 600;
    color: #52525b;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}
.products-cat-btn:hover {
    background: rgba(24, 24, 27, 0.08);
    color: #18181b;
}
.products-cat-btn.active {
    background: #18181b;
    color: #ffffff;
    border-color: #18181b;
    box-shadow: 0 4px 14px rgba(24, 24, 27, 0.12);
}
.cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: rgba(24, 24, 27, 0.08);
    border-radius: 100px;
    font-size: 10.5px;
    font-weight: 700;
    color: #71717a;
    transition: all 0.25s ease;
}
.products-cat-btn.active .cat-count {
    background: #d2ef82; /* Lime */
    color: #18181b;
}

/* Search Box */
.products-search-box {
    position: relative;
    width: 320px;
    flex-shrink: 0;
}
.products-search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #71717a;
    font-size: 14px;
    transition: color 0.25s ease;
}
.products-search-box input {
    width: 100%;
    padding: 10px 16px 10px 46px;
    background: rgba(24, 24, 27, 0.04);
    border: 1px solid transparent;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 500;
    color: #18181b;
    transition: all 0.25s ease;
}
.products-search-box input::placeholder {
    color: #a1a1aa;
}
.products-search-box input:focus {
    outline: none;
    background: #ffffff;
    border-color: #18181b;
    box-shadow: 0 4px 14px rgba(24, 24, 27, 0.06);
}
.products-search-box:focus-within i {
    color: #18181b;
}

/* Mobile responsive enhancements for toolbar */
@media (max-width: 768px) {
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-bottom: 24px;
    }
    .products-categories-wrap {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        margin-bottom: -8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .products-categories-wrap::-webkit-scrollbar {
        display: none;
    }
    .products-search-box {
        width: 100%;
    }
}

/* Results Info */
.products-results-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    font-size: 14px;
    color: #71717a;
}
.products-results-info strong {
    color: #18181b;
    font-weight: 800;
}
.products-view-toggle {
    display: flex;
    gap: 4px;
    background: #f4f4f5;
    border-radius: 10px;
    padding: 4px;
}
.view-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: 8px;
    color: #a1a1aa;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}
.view-btn.active {
    background: #ffffff;
    color: #18181b;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* === PRODUCT CARDS GRID === */
.products-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    transition: opacity 0.3s ease;
}

/* List View Toggle */
.products-grid-premium.list-view {
    grid-template-columns: 1fr;
    gap: 12px;
}
.products-grid-premium.list-view .product-card-premium {
    flex-direction: row;
    border-radius: 16px;
}
.products-grid-premium.list-view .pcp-image {
    width: 160px;
    min-height: 120px;
    height: auto;
    flex-shrink: 0;
    border-radius: 12px;
}
.products-grid-premium.list-view .pcp-content {
    flex: 1;
    padding: 16px 0;
}
.products-grid-premium.list-view .pcp-footer {
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    border-top: none;
    padding-top: 0;
    min-width: 140px;
}

/* Product Card */
.product-card-premium {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(24, 24, 27, 0.06);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.product-card-premium:hover {
    border-color: rgba(24, 24, 27, 0.12);
    box-shadow: 0 20px 60px rgba(24, 24, 27, 0.08), 0 0 0 1px rgba(210, 239, 130, 0.15);
    transform: translateY(-6px);
}

/* Card Image */
.pcp-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f9fafb;
}
.pcp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card-premium:hover .pcp-image img {
    transform: scale(1.06);
}
.pcp-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f4f4f5 0%, #e4e4e7 100%);
    color: #a1a1aa;
    font-size: 32px;
}
.pcp-discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ef4444;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 8px;
    letter-spacing: 0.02em;
}
.pcp-featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(24, 24, 27, 0.85);
    backdrop-filter: blur(8px);
    color: #d2ef82;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pcp-featured-badge i {
    font-size: 10px;
}

/* Card Content */
.pcp-content {
    padding: 20px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.pcp-category-tag {
    display: inline-flex;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #71717a;
    background: #f4f4f5;
    padding: 4px 10px;
    border-radius: 6px;
}
.pcp-name {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #18181b;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin: 0;
}
.pcp-desc {
    font-size: 13px;
    color: #71717a;
    line-height: 1.5;
    margin: 0;
}

/* Feature Tags */
.pcp-features-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}
.pcp-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: rgba(210, 239, 130, 0.12);
    color: #3f3f46;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}
.pcp-feature-tag i {
    font-size: 8px;
    color: #22c55e;
}
.pcp-feature-more {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    color: #a1a1aa;
    font-size: 11px;
    font-weight: 600;
}

/* Card Footer */
.pcp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px 20px;
    margin-top: auto;
    border-top: 1px solid rgba(24, 24, 27, 0.04);
}
.pcp-price-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.pcp-price {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #18181b;
    letter-spacing: -0.02em;
}
.pcp-price-old {
    font-size: 14px;
    color: #a1a1aa;
    text-decoration: line-through;
    font-weight: 500;
}
.pcp-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #18181b;
    padding: 8px 16px;
    background: rgba(24, 24, 27, 0.04);
    border-radius: 10px;
    transition: all 0.25s ease;
}
.pcp-action-btn i {
    font-size: 11px;
    transition: transform 0.25s ease;
}
.product-card-premium:hover .pcp-action-btn {
    background: #18181b;
    color: #ffffff;
}
.product-card-premium:hover .pcp-action-btn i {
    transform: translateX(3px);
}

/* Empty State */
.products-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}
.products-empty-state .empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #f4f4f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #a1a1aa;
}
.products-empty-state h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #18181b;
    margin-bottom: 8px;
}
.products-empty-state p {
    font-size: 14px;
    color: #71717a;
}

/* Pagination */
.products-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.page-btn {
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    color: #52525b;
    cursor: pointer;
    transition: all 0.2s ease;
}
.page-btn:hover {
    background: #f4f4f5;
    border-color: #d4d4d8;
}
.page-btn.active {
    background: #18181b;
    color: #ffffff;
    border-color: #18181b;
    box-shadow: 0 4px 12px rgba(24, 24, 27, 0.15);
}
.page-btn.page-prev,
.page-btn.page-next {
    color: #a1a1aa;
    font-size: 12px;
}
.page-btn.page-prev:hover,
.page-btn.page-next:hover {
    color: #18181b;
}

/* Responsive */
@media (max-width: 768px) {
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .products-search-box {
        width: 100%;
    }
    .products-grid-premium {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 16px;
    }
    .products-grid-premium.list-view .product-card-premium {
        flex-direction: column;
    }
    .products-grid-premium.list-view .pcp-image {
        width: 100%;
        height: 180px;
    }
    .products-grid-premium.list-view .pcp-footer {
        flex-direction: row;
        align-items: center;
        border-top: 1px solid rgba(24, 24, 27, 0.04);
        min-width: auto;
        padding-top: 16px;
    }
}
@media (max-width: 480px) {
    .products-grid-premium {
        grid-template-columns: 1fr;
    }
    .products-categories-wrap {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .pcp-image {
        height: 160px;
    }
}

.product-gallery-premium {
    position: relative;
    border-radius: 32px;
    background: var(--bg-secondary);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Strictly square for screenshots */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    cursor: zoom-in;
}

@media (max-width: 768px) {
    .product-gallery-premium {
        aspect-ratio: 1 / 1;
        min-height: 300px;
    }
}

.product-gallery-blur {
    position: absolute;
    inset: -10%;
    filter: blur(40px);
    opacity: 0.3;
    pointer-events: none;
}

.product-gallery-blur img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-main-img {
    position: relative;
    z-index: 2;
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    border-radius: 16px;
    transition: transform var(--transition-normal);
}

.product-gallery-premium:hover .product-gallery-main-img {
    transform: scale(1.02);
}

.product-gallery-main-icon {
    font-size: 160px;
    color: var(--primary);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(59, 130, 246, 0.3));
}

@media (max-width: 768px) {
    .product-gallery-main-icon {
        font-size: 100px;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    object-fit: contain;
}

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

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #fff;
    font-size: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background: var(--danger);
    border-color: transparent;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .lightbox-modal {
        padding: 16px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Reduced gap */
    margin-bottom: 28px;
    padding: 10px 16px;
    /* Reduced horizontal padding */
    background: var(--bg-secondary);
    border-radius: 16px;
    width: fit-content;
    max-width: 100%;
    /* Ensure it doesn't exceed card width */
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
    /* Prevent internal wrapping */
}

.product-price .current {
    font-size: 24px;
    /* Slightly reduced font size to fit better */
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.product-price .original {
    font-size: 18px;
    color: var(--text-tertiary);
    text-decoration: line-through;
    font-weight: 600;
    opacity: 0.7;
}

.product-info-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-info-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.product-info-btn:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px var(--primary);
}

.product-info-btn:hover::before {
    opacity: 1;
}

.product-info-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.product-info-btn:hover i {
    transform: translateX(3px);
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.testimonial-card {
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 0 auto;
    max-width: 800px;
}

.testimonial-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-secondary);
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 24px;
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    color: var(--primary);
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.feature-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer-content {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.blog-card {
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
    border-color: var(--border-default);
}

.blog-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-secondary);
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-blue-light);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.blog-link:hover {
    gap: 8px;
}

/* Footer */
.site-footer {
    background: #1F2937;
    color: #fff;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .site-logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-tertiary);
    font-size: 14px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.3px;
}

.footer-col a {
    display: block;
    color: #9CA3AF;
    font-size: 14px;
    margin-bottom: 14px;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 30px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #9CA3AF;
}

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

.footer-social a {
    color: var(--text-tertiary);
    font-size: 20px;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    color: #fff;
}

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

.payment-icons i {
    font-size: 36px;
    color: #6B7280;
    transition: var(--transition-fast);
}

.payment-icons i:hover {
    color: #9CA3AF;
}

/* Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback: if JS doesn't run within 3s, show everything */
@keyframes reveal-fallback {
    to { opacity: 1; transform: translateY(0); }
}
.reveal {
    animation: reveal-fallback 0s 3s forwards;
}
.reveal.active {
    animation: none;
}

/* ===== TYPING EFFECT ===== */
.typing-container {
    display: inline;
    position: relative;
}
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--accent, #d2ef82);
    margin-left: 4px;
    animation: blink-cursor 0.8s step-end infinite;
    vertical-align: text-bottom;
    border-radius: 2px;
}
@keyframes blink-cursor {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

/* ===== APPROACH CARD INTERACTIVE EFFECTS ===== */
.approach-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(210, 239, 130, 0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}
.approach-card:hover::before {
    opacity: 1;
}
.approach-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(24, 24, 27, 0.08), 0 0 0 1px rgba(210, 239, 130, 0.3);
    border-color: rgba(210, 239, 130, 0.4);
}
.approach-card:active {
    transform: translateY(-4px) scale(0.98);
    transition-duration: 0.1s;
}
.approach-card > * {
    position: relative;
    z-index: 1;
}

/* Approach card mockup pulse animation on hover */
.approach-card:hover .mockup-browser,
.approach-card:hover .mockup-dashboard {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.mockup-browser,
.mockup-dashboard {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

/* Approach card click ripple */
.approach-card-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(210, 239, 130, 0.25);
    transform: scale(0);
    animation: approach-ripple 0.6s ease-out forwards;
    pointer-events: none;
    z-index: 0;
}
@keyframes approach-ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header-inner {
        height: 64px;
    }

    .site-logo {
        font-size: 20px;
    }

    .main-nav {
        display: none;
    }

    .nav-actions {
        gap: 8px;
    }

    .hero-section {
        padding: 48px 0 !important;
    }

    .hero-title {
        font-size: 32px !important;
    }

    .hero-description {
        font-size: 16px;
    }

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

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

    .product-section,
    .features-section,
    .testimonial-section,
    .faq-section,
    .blog-section {
        padding: 48px 0 !important;
    }

    .section-title {
        font-size: 28px !important;
    }

    .section-description {
        font-size: 15px;
    }

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

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

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

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

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

    .info-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .info-bar-actions {
        width: 100%;
        flex-direction: column;
    }

    .info-bar-actions .btn {
        width: 100%;
    }

    .auth-card {
        padding: 40px 24px;
    }

    .testimonial-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }

    .product-card {
        padding: 20px;
    }

    .product-icon {
        width: 56px;
        height: 56px;
    }

    .product-icon img {
        width: 40px;
        height: 40px;
    }

    .product-name {
        font-size: 16px;
    }

    .product-price .current {
        font-size: 20px;
    }
}

/* ============================================
   HERO SLIDER STYLES
   ============================================ */

.hero-slider-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-top: 0;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-content {
    max-width: 700px;
    animation: slideInUp 0.8s ease;
}

.hero-slide.active .hero-slide-content {
    animation: slideInUp 0.8s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: 0;
    margin-right: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* Hero Latest Products Sidebar */
.hero-container-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.hero-latest-products {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 380px;
    min-width: 350px;
    animation: fadeInRight 1s ease 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.hero-product-mini-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 12px 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-product-mini-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-10px) translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.hero-mini-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-mini-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-mini-info {
    flex: 1;
    overflow: hidden;
}

.hero-mini-name {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-mini-price {
    display: block;
    color: var(--primary-light);
    font-weight: 800;
    font-size: 14px;
}

.hero-mini-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.hero-product-mini-card:hover .hero-mini-arrow {
    transform: translateX(5px);
    color: #fff;
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-control:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-dot.active {
    background: #fff;
    width: 32px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-slider-section {
        height: 500px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-prev {
        left: 20px;
    }

    .slider-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: 450px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .slider-control {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .slider-dots {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-slider-section {
        height: 400px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

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

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

/* Special Offer Nav Animation - Fixed & Premium */
.nav-special-offer {
    position: relative;
    padding: 8px 18px !important;
    border-radius: 100px;
    background: #fff;
    color: var(--primary) !important;
    font-weight: 700 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    border: none !important;
    transition: all 0.3s ease;
    z-index: 1;
}

.nav-special-offer::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    /* Border thickness */
    border-radius: 100px;
    background: conic-gradient(from var(--a, 0deg), transparent, var(--primary), transparent 30%, var(--primary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: borderRotate 3s linear infinite;
}

@property --a {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

@keyframes borderRotate {
    0% {
        --a: 0deg;
    }

    100% {
        --a: 360deg;
    }
}

/* Fallback for browsers that don't support @property (like some older versions) */
@supports not (background: paint(something)) {
    .nav-special-offer::before {
        background: conic-gradient(from 0deg, transparent, var(--primary), transparent 30%, var(--primary), transparent);
        animation: navRotate 3s linear infinite;
    }
}

.nav-special-offer:hover {
    background: var(--primary-bg);
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .nav-special-offer {
        background: var(--primary-bg) !important;
        margin: 10px 0;
    }

    .nav-special-offer::before {
        display: none;
    }
/* Blog Table Redesign */
.blog-table-container {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.blog-table-row {
    display: grid;
    grid-template-columns: 120px 1fr 160px;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: #fff;
    text-decoration: none;
    color: inherit;
}

.blog-table-row:last-child {
    border-bottom: none;
}

.blog-table-row:hover {
    background: #FAFBFF;
    transform: translateX(8px);
    border-color: var(--primary-light);
}

.blog-table-row:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
}

.blog-row-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    padding: 12px;
    border-radius: 14px;
    min-height: 80px;
}

.blog-row-date .day {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.blog-row-date .month {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
}

.blog-row-info {
    padding: 0 24px;
}

.blog-row-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.blog-table-row:hover .blog-row-title {
    color: var(--primary);
}

.blog-row-excerpt {
    font-size: 15px;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.blog-row-action {
    text-align: right;
    font-weight: 700;
    color: var(--text-tertiary);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    transition: all 0.3s ease;
}

.blog-table-row:hover .blog-row-action {
    color: var(--primary);
    gap: 16px;
}

@media (max-width: 768px) {
    .blog-table-row {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 16px;
    }
    .blog-row-date {
        flex-direction: row;
        min-height: auto;
        justify-content: flex-start;
        gap: 8px;
        padding: 8px 16px;
    }
    .blog-row-info {
        padding: 0;
    }
    .blog-row-action {
        }
}
}

/* ==========================================================================
   WERISTA PREMIUM LANDING PAGE SECTIONS (MATCHING SPECIFIC DESIGN)
   ========================================================================== */

/* Page Background Overrides */
body {
    background-color: #f7f7f5;
}

/* Header & Navigation Styling */
.site-header {
    background: #f7f7f5;
    border-bottom: 1px solid rgba(24, 24, 27, 0.04);
}
.header-inner {
    height: 90px;
}
.site-logo {
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}
.site-logo span {
    font-size: 24px;
    letter-spacing: -0.02em;
}
.main-nav a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #18181b;
    padding: 8px 20px;
    font-size: 14px;
}
.main-nav a:hover, .main-nav a.active {
    background: rgba(24, 24, 27, 0.04);
    color: #000;
}
.btn-talk-project {
    background: #18181b;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.btn-talk-project:hover {
    background: #000000;
    transform: translateY(-1px);
}

/* 1. Landing Hero Section */
.landing-hero-section {
    padding: 60px 0 100px;
}
.landing-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}
.hero-tagline {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #b3b3a4;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-title-premium {
    font-size: 54px;
    font-weight: 700;
    color: #18181b;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    min-height: 2.3em;
}
.hero-desc-premium {
    font-size: 16px;
    color: #6c6c60;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-buttons-group {
    display: flex;
    gap: 16px;
}
.btn-dark-premium {
    background: #18181b;
    color: #fff;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease;
}
.btn-dark-premium:hover {
    background: #000;
    transform: translateY(-1px);
}
.btn-light-premium {
    background: #f0f0ed;
    color: #18181b;
    border: 1px solid #e4e4e0;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease;
}
.btn-light-premium:hover {
    background: #e6e6e2;
    transform: translateY(-1px);
}

/* Hero Right Mockup Window */
.hero-mockup-window {
    background: linear-gradient(145deg, #18181b 0%, #09090b 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    color: #ffffff;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    user-select: none;
    box-sizing: border-box;
    width: 100%;
}
.mockup-header {
    height: 48px;
    background: rgba(24, 24, 27, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.mockup-dots {
    display: flex;
    gap: 8px;
}
.mockup-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}
.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }

.mockup-address {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    font-size: 11px;
    color: #71717a;
    padding: 6px 20px;
    width: 190px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: 0.02em;
}
.mockup-address i {
    font-size: 10px;
    color: #10b981;
}

.mockup-body {
    display: flex;
    height: 380px;
    position: relative;
}

/* Sidebar styling */
.mockup-sidebar {
    width: 150px;
    background: rgba(9, 9, 11, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-sizing: border-box;
}
.mockup-sidebar-item {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #a1a1aa;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.mockup-sidebar-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
}
.mockup-sidebar-item.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.mockup-sidebar-item.active i {
    color: var(--accent, #d2ef82);
    filter: drop-shadow(0 0 4px rgba(210, 239, 130, 0.3));
}
.mockup-sidebar-item i {
    font-size: 14px;
    width: 16px;
    text-align: center;
    transition: color 0.2s ease;
}

/* Content Area */
.mockup-content-area {
    flex: 1;
    position: relative;
    padding: 24px;
    overflow: hidden;
    box-sizing: border-box;
    background: rgba(9, 9, 11, 0.2);
}

.mockup-tab-panel {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.97);
    transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                visibility 0.4s;
    display: flex;
    flex-direction: column;
}
.mockup-tab-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    z-index: 5;
}

/* Simulated Mouse Cursor */
.mockup-cursor {
    position: absolute;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 100;
    transition: top 0.9s cubic-bezier(0.25, 1, 0.5, 1), 
                left 0.9s cubic-bezier(0.25, 1, 0.5, 1);
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.6));
    opacity: 1;
}

/* Click Ripple Effect */
.click-ripple {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(210, 239, 130, 0.4);
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    z-index: 99;
}
@keyframes playRipple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}
.click-ripple.animate {
    animation: playRipple 0.4s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

/* Tab 1: CMS Editor Mockup CSS */
.cms-mock-editor {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}
.cms-mock-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 11px;
}
.cms-mock-filename {
    color: #a1a1aa;
    font-weight: 500;
}
.cms-mock-btn-publish {
    background: #d2ef82;
    color: #09090b;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 11px;
    box-shadow: 0 4px 12px rgba(210, 239, 130, 0.2);
    transition: transform 0.2s;
}
.cms-mock-btn-publish.clicked {
    transform: scale(0.95);
    background: #c5e17e;
}
.cms-mock-canvas {
    flex: 1;
    border: 2px dashed rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.01);
}
.cms-canvas-element {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.cms-canvas-element.loaded {
    opacity: 1;
    transform: translateY(0);
}
.cms-canvas-element .el-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cms-canvas-element .el-icon {
    font-size: 14px;
    color: #d2ef82;
    background: rgba(210, 239, 130, 0.08);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cms-canvas-element h5 {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}
.cms-canvas-element p {
    font-size: 10px;
    color: #71717a;
    margin: 2px 0 0 0 !important;
}
.cms-canvas-element .el-status {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #a1a1aa;
    font-weight: 500;
}
.cms-canvas-element .el-status.published {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

/* Custom Success Notification */
.cms-success-toast {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(24, 24, 27, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 20;
}
.cms-success-toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.cms-success-toast i {
    font-size: 18px;
    color: #10b981;
}
.cms-success-toast div h6 {
    font-size: 12px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}
.cms-success-toast div p {
    font-size: 10px;
    color: #a1a1aa;
    margin: 2px 0 0 0 !important;
}

/* Tab 2: Forum Stats Mockup CSS */
.forum-mock-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}
.forum-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.forum-stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.forum-stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #71717a;
    font-weight: 600;
}
.forum-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
}
.forum-stat-value.accent {
    color: #d2ef82;
}
.forum-stat-trend {
    font-size: 9px;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 4px;
}
.forum-recent-activity {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.forum-activity-title {
    font-size: 11px;
    font-weight: 700;
    color: #a1a1aa;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 6px;
}
.forum-activity-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.forum-activity-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.forum-activity-item.loaded {
    opacity: 1;
    transform: translateX(0);
}
.forum-activity-item .user-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}
.forum-activity-item .avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #d2ef82;
}
.forum-activity-item .topic-name {
    color: #e4e4e7;
    font-weight: 500;
}
.forum-activity-item .time-meta {
    font-size: 10px;
    color: #71717a;
}

/* Tab 3: Destek Chat Mockup CSS */
.support-mock-chat {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.support-chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.support-agent-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d2ef82 0%, #10b981 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    font-size: 12px;
}
.support-agent-info h5 {
    font-size: 11px;
    font-weight: 700;
    margin: 0;
}
.support-agent-info p {
    font-size: 9px;
    color: #10b981;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 4px;
}
.support-agent-info p::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 4px #10b981;
}
.support-chat-messages {
    flex: 1;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}
.support-chat-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 11px;
    line-height: 1.4;
}
.support-chat-bubble.user {
    align-self: flex-end;
    background: rgba(255, 255, 255, 0.05);
    color: #e4e4e7;
    border-bottom-right-radius: 2px;
}
.support-chat-bubble.agent {
    align-self: flex-start;
    background: rgba(210, 239, 130, 0.08);
    color: #ffffff;
    border-left: 2px solid #d2ef82;
    border-bottom-left-radius: 2px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}
.support-chat-bubble.agent.loaded {
    opacity: 1;
    transform: translateY(0);
}
.support-chat-bubble.agent.typing {
    opacity: 1;
    transform: translateY(0);
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border-left: none;
    padding: 8px 12px;
    width: 45px;
}
.chat-typing-dot {
    width: 4px;
    height: 4px;
    background: #a1a1aa;
    border-radius: 50%;
    animation: chatBlink 1.4s infinite both;
}
.chat-typing-dot:nth-child(2) { animation-delay: .2s; }
.chat-typing-dot:nth-child(3) { animation-delay: .4s; }

@keyframes chatBlink {
    0% { opacity: .2; }
    20% { opacity: 1; }
    100% { opacity: .2; }
}

.support-chat-input-mock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 10px;
    color: #71717a;
}
.support-chat-input-mock i {
    color: #a1a1aa;
}

/* Responsiveness for Mockup Window */
@media (max-width: 768px) {
    .mockup-body {
        flex-direction: column;
        height: auto;
        min-height: 380px;
    }
    .mockup-sidebar {
        width: 100%;
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 10px;
        overflow-x: auto;
        justify-content: space-around;
    }
    .mockup-sidebar-item {
        padding: 8px 12px;
        font-size: 11px;
    }
    .mockup-sidebar-item span {
        display: inline; /* Keep text visible but compact */
    }
    .mockup-cursor {
        display: none !important; /* Hide simulated cursor on mobile/touch screens */
    }
}


/* 2. Features Row (4 columns below hero) */
.landing-features-row {
    padding: 40px 0;
    border-top: 1px solid rgba(24, 24, 27, 0.06);
    border-bottom: 1px solid rgba(24, 24, 27, 0.06);
    background: rgba(24, 24, 27, 0.01);
}
.features-cols-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.feature-item-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-right: 1px solid rgba(24, 24, 27, 0.06);
}
.feature-item-col:last-child {
    border-right: none;
}
.feature-col-icon {
    font-size: 28px;
    color: #18181b;
    margin-bottom: 8px;
}
.feature-col-title {
    font-size: 16px;
    font-weight: 700;
    color: #18181b;
}
.feature-col-desc {
    font-size: 13px;
    color: #6c6c60;
    line-height: 1.5;
}

/* 3. Hizmetler Section */
.landing-services-section {
    padding: 100px 0;
}
.services-main-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
}
.section-tagline {
    font-size: 12px;
    font-weight: 700;
    color: #b3b3a4;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}
.section-title-premium {
    font-size: 40px;
    font-weight: 700;
    color: #18181b;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.services-list-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.service-list-item {
    display: grid;
    grid-template-columns: 80px 180px 1fr;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(24, 24, 27, 0.08);
}
.service-list-item:last-child {
    border-bottom: none;
}
.service-list-num {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #c5e17e;
    line-height: 1;
}
.service-list-name-group h4 {
    font-size: 16px;
    font-weight: 700;
    color: #18181b;
    margin-bottom: 4px;
}
.service-list-name-group span {
    font-size: 13px;
    color: #929288;
}
.service-list-desc {
    font-size: 14px;
    color: #565650;
    line-height: 1.6;
    padding-left: 12px;
}

/* 4. Yaklaşım Section & Mockups */
.landing-approach-section {
    padding: 60px 0 100px;
}
.approach-main-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    margin-bottom: 48px;
}
.approach-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.approach-card {
    background: #ffffff;
    border: 1px solid rgba(24, 24, 27, 0.06);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.approach-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #18181b;
    letter-spacing: -0.01em;
}
.approach-card-desc {
    font-size: 14px;
    color: #6c6c60;
    line-height: 1.6;
}

/* Browser Mockup CSS */
.mockup-browser {
    background: #fdfdfc;
    border: 1px solid #e2e2de;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}
.mockup-browser-header {
    background: #f0f0eb;
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
    border-bottom: 1px solid #e2e2de;
}
.mockup-browser-dots {
    display: flex;
    gap: 5px;
}
.mockup-browser-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d1ca;
}
.mockup-browser-address {
    background: #ffffff;
    height: 18px;
    flex: 1;
    border-radius: 4px;
    max-width: 180px;
    margin: 0 auto;
}
.mockup-browser-content {
    padding: 24px;
    text-align: left;
}
.mockup-browser-logo {
    font-size: 10px;
    font-weight: 700;
    color: #b5b5ad;
    margin-bottom: 24px;
}
.mockup-browser-heading {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}
.mockup-browser-btn {
    display: inline-block;
    background: #18181b;
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    margin-top: 8px;
}
.mockup-browser-image {
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #e8e8e4;
}

/* Dashboard Mockup CSS */
.mockup-dashboard {
    background: #121213;
    border: 1px solid #232326;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: sans-serif;
    font-size: 11px;
}
.mockup-dashboard-inner {
    display: grid;
    grid-template-columns: 80px 1fr;
    height: 240px;
}
.mockup-dashboard-sidebar {
    background: #19191b;
    border-right: 1px solid #232326;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mockup-dashboard-item {
    height: 12px;
    background: #2b2b2e;
    border-radius: 3px;
    width: 80%;
}
.mockup-dashboard-item.active {
    background: rgba(255, 255, 255, 0.15);
}
.mockup-dashboard-main {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mockup-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.mockup-dashboard-stat {
    background: #19191b;
    border: 1px solid #232326;
    border-radius: 6px;
    padding: 8px;
    text-align: left;
}
.mockup-dashboard-label {
    font-size: 8px;
    color: #7d7e82;
    margin-bottom: 4px;
}
.mockup-dashboard-value {
    font-size: 13px;
    font-weight: 700;
}
.mockup-dashboard-trend {
    font-size: 8px;
    color: #c5e17e;
    margin-top: 2px;
}
.mockup-dashboard-chart {
    flex: 1;
    background: #19191b;
    border: 1px solid #232326;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    padding: 12px;
}
.mockup-dashboard-line {
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 10px;
    height: 40px;
    border-bottom: 1px dashed #2d2d31;
}

/* 5. Ürünler Sekmeli Fiyat Bölümü */
.landing-products-section {
    padding: 80px 0 100px;
}
.products-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}
.products-section-desc {
    max-width: 480px;
    font-size: 15px;
    color: #6c6c60;
    line-height: 1.6;
    text-align: right;
}
.products-tabs-row {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}
.products-tabs-container {
    background: #eaeae6;
    padding: 6px;
    border-radius: 10px;
    display: flex;
    gap: 4px;
}
.tab-pill-premium {
    padding: 10px 24px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #565650;
    cursor: pointer;
    transition: all 0.2s ease;
}
.tab-pill-premium.active {
    background: #c5e17e;
    color: #18181b;
}

/* Pricing Cards Grid */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.pricing-card-premium {
    background: #ffffff;
    border: 1px solid rgba(24, 24, 27, 0.05);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.01);
}
.pricing-card-premium.featured {
    border: 2px solid #18181b;
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}
.pricing-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #18181b;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 100px;
    text-transform: uppercase;
}
.pricing-card-header {
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.pricing-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #18181b;
}
.pricing-card-duration {
    background: #f0f0ed;
    color: #565650;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}
.pricing-card-price {
    font-size: 38px;
    font-weight: 700;
    color: #18181b;
    line-height: 1;
    margin-bottom: 28px;
    font-family: 'Outfit', sans-serif;
}
.pricing-card-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
    flex: 1;
}
.pricing-card-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #565650;
    line-height: 1.4;
}
.pricing-card-feature-item i {
    color: #18181b;
    font-size: 12px;
    margin-top: 3px;
}
.pricing-card-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: #18181b;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}
.pricing-card-btn:hover {
    background: #000000;
}

/* Category bottom pricing summaries */
.pricing-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}
.pricing-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(24, 24, 27, 0.05);
    border-radius: 12px;
    padding: 18px 24px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}
.pricing-summary-row:hover {
    border-color: rgba(24, 24, 27, 0.15);
    transform: translateY(-1px);
}
.pricing-summary-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.pricing-summary-logo-wrapper {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #18181b;
}
.pricing-summary-category-name {
    font-weight: 700;
    font-size: 14px;
    color: #18181b;
}
.pricing-summary-prices {
    font-size: 13px;
    color: #6c6c60;
}
.pricing-summary-prices span {
    font-weight: 600;
    color: #18181b;
}
.pricing-summary-arrow {
    color: #929288;
    font-size: 12px;
}

/* 6. Süreç (Process) Section */
.landing-process-section {
    padding: 60px 0 100px;
}
.process-dark-container {
    background: #18181b;
    border-radius: 32px;
    padding: 72px 80px;
    color: #ffffff;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}
.process-left-title {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.process-left-desc {
    font-size: 16px;
    color: #a1a1aa;
    line-height: 1.6;
}
.process-steps-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.process-step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.process-step-badge {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #27272a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #c5e17e;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-step-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}
.process-step-info p {
    font-size: 14px;
    color: #a1a1aa;
    line-height: 1.6;
}

/* 7. Contact Section (Footer Form) */
.landing-contact-section {
    padding: 60px 0 100px;
}
.contact-form-container-premium {
    background: #f0f0eb;
    border-radius: 24px;
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    border: 1px solid #e2e2de;
}
.contact-info-title {
    font-size: 40px;
    font-weight: 700;
    color: #18181b;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.contact-info-desc {
    font-size: 15px;
    color: #565650;
    line-height: 1.6;
}
.contact-form-inputs-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-input-premium {
    width: 100%;
    background: #ffffff;
    border: 1px solid #dcdcd8;
    padding: 16px 20px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #18181b;
    transition: all 0.2s ease;
}
.contact-input-premium:focus {
    outline: none;
    border-color: #18181b;
    box-shadow: 0 0 0 4px rgba(24, 24, 27, 0.05);
}
.contact-btn-premium {
    background: #18181b;
    color: #ffffff;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}
.contact-btn-premium:hover {
    background: #000000;
}

/* Global Footer Styles Override */
.site-footer {
    background: #f7f7f5;
    border-top: 1px solid rgba(24, 24, 27, 0.05);
    color: #18181b;
    padding: 48px 0;
}
.footer-brand p {
    color: #6c6c60;
}
.footer-col a {
    color: #6c6c60;
}
.footer-col a:hover {
    color: #000000;
}
.footer-bottom {
    border-top: 1px solid rgba(24, 24, 27, 0.05);
    padding-top: 24px;
    color: #929288;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .landing-hero-grid, 
    .services-main-grid, 
    .approach-main-grid, 
    .process-dark-container, 
    .contact-form-container-premium {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .approach-cards-grid {
        grid-template-columns: 1fr;
    }
    .process-dark-container {
        padding: 40px;
    }
    .contact-form-container-premium {
        padding: 40px;
    }
    .products-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .products-section-desc {
        text-align: left;
    }
}

/* Premium Proje Konuşalım (Özel Teklif) Button */
.btn-talk-project-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #d2ef82; /* Lime Green */
    color: #18181b; /* Dark Zinc */
    font-weight: 700;
    font-size: 13px;
    padding: 8px 8px 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 14px rgba(210, 239, 130, 0.3);
    border: 1px solid rgba(24, 24, 27, 0.05);
}

.btn-talk-project-premium .btn-arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #18181b; /* Dark Zinc */
    color: #d2ef82; /* Lime Green */
    border-radius: 50%;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-talk-project-premium:hover {
    background: #c5e17e; /* Slightly darker lime */
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 239, 130, 0.45);
}

.btn-talk-project-premium:hover .btn-arrow-circle {
    transform: translateX(3px);
    background: #000000;
    color: #ffffff;
}

@media (max-width: 640px) {
    .btn-talk-project-premium {
        font-size: 12px;
        padding: 6px 6px 6px 14px;
    }
    .btn-talk-project-premium .btn-arrow-circle {
        width: 24px;
        height: 24px;
    }
    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }
    .features-cols-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .feature-item-col {
        border-right: none;
        border-bottom: 1px solid rgba(24, 24, 27, 0.06);
        padding-bottom: 20px;
    }
    .feature-item-col:last-child {
        border-bottom: none;
    }
    .hero-title-premium {
        font-size: 38px;
    }
    .section-title-premium {
        font-size: 28px;
    }
    .process-left-title {
        font-size: 28px;
    }
    .contact-info-title {
        font-size: 28px;
    }
    .service-list-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .service-list-desc {
        padding-left: 0;
    }
    .hero-buttons-group {
        flex-direction: column;
    }
    .hero-buttons-group a {
        width: 100%;
        text-align: center;
    }
}