@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #000000;
    --primary-dark: #1a1a1a;
    --primary-light: #333333;
    --primary-50: #f5f5f5;
    --secondary: #ffffff;
    --accent: #ea580c;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --dark: #000000;
    --dark-700: #111111;
    --dark-600: #222222;
    --dark-500: #333333;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --white: #ffffff;
    --bg: #ffffff;
    --text: #000000;
    --text-light: #666666;
    --border: #e5e5e5;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.05);
    --radius: 0px;
    --radius-sm: 0px;
    --radius-lg: 0px;
    --radius-xl: 0px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 100%;
    --container-padding: 40px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding, 40px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
}

.site-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(--border);
    transition: var(--transition);
}

.header-top {
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}

.header-top a {
    color: var(--white);
}

.header-top a:hover {
    color: var(--gray-300);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.header-top a:hover {
    color: var(--white);
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-top-right .lang-switch {
    display: flex;
    gap: 8px;
}

.header-top-right .lang-switch a {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.header-top-right .lang-switch a.active {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.header-main {
    padding: 16px 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 32px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -2px;
    text-transform: uppercase;
}

.site-logo img {
    height: 40px;
    width: auto;
}

.header-search {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.header-search input {
    width: 100%;
    padding: 12px 48px 12px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: var(--gray-100);
    transition: var(--transition);
    outline: none;
}

.header-search input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.header-search button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.header-search button:hover {
    background: var(--primary-dark);
}

.search-results-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    display: none;
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
}

.search-results-dropdown.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.search-result-item:hover {
    background: var(--primary-50);
}

.search-result-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.search-result-item .result-info {
    flex: 1;
}

.search-result-item .result-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.search-result-item .result-info .result-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 0;
    border: 2px solid transparent;
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.header-action-btn:hover {
    border-color: var(--dark);
    background: transparent;
    color: var(--dark);
}

.header-action-btn i {
    font-size: 18px;
}

.header-action-btn .badge {
    position: absolute;
    top: 2px;
    right: 4px;
    background: var(--danger);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.nav-bar {
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.nav-bar .container {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 18px 20px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-menu>li>a:hover,
.nav-menu>li.active>a {
    color: var(--dark);
}

.nav-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--dark);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-menu>li>a:hover::after,
.nav-menu>li.active>a::after {
    transform: scaleX(1);
}

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: 0;
    border: 2px solid var(--dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    z-index: 100;
    padding: 16px 0;
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-menu .dropdown-menu li a:hover {
    background: var(--dark);
    color: var(--white);
    padding-left: 28px;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu .dropdown-menu a:hover {
    background: var(--primary-50);
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--secondary);
}

.hero-slider .swiper-slide {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-slider .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-slider .slide-overlay {
    position: absolute;
    inset: 0;
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 0;
}

.hero-slider .slide-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-slider .slide-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-slider .slide-buttons {
    display: flex;
    gap: 12px;
}

.stories-section {
    padding: 30px 0;
    overflow-x: auto;
}

.stories-wrap {
    display: flex;
    gap: 20px;
    padding: 0 20px;
}

.story-circle {
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
}

.story-circle .story-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--danger));
}

.story-circle .story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--white);
}

.story-circle .story-title {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-light);
    font-size: 15px;
    margin-top: 4px;
}

.section-header .view-all {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.section-header .view-all:hover {
    gap: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    border: none;
    transition: var(--transition);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.product-card:hover {
    transform: none;
    box-shadow: none;
}

.product-card .product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--gray-100);
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 8px;
    background: var(--white, #fff);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge.sale {
    background: var(--dark);
    color: var(--white);
}

.product-badge.new {
    background: var(--white);
    color: var(--dark);
    border: 1px solid var(--dark);
}

.product-badge.bestseller {
    background: var(--accent);
    color: var(--white);
}

.product-card .product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    color: var(--dark);
    font-size: 16px;
    transition: var(--transition);
}

.product-action-btn:hover {
    background: var(--dark);
    color: var(--white);
}

.product-card .product-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 16px;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
}

.product-card:hover .product-quick-add {
    transform: translateY(0);
}

.product-quick-add button {
    width: 100%;
    padding: 12px;
    border: none;
    background: transparent;
    color: var(--white);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.product-quick-add button:hover {
    color: var(--accent);
}

.product-card .product-info {
    padding: 20px 0 0 0;
    text-align: center;
}

.product-card .product-brand {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-card .product-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    min-height: 42px;
}

.product-card .product-name a {
    color: inherit;
}

.product-card .product-name a:hover {
    color: var(--accent);
}

.product-card .product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.product-card .price-current {
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
}

.product-card .price-old {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-400);
    text-decoration: line-through;
}

.product-card .price-discount {
    font-size: 11px;
    font-weight: 800;
    color: var(--danger);
    background: rgba(239, 68, 68, 0.1);
    padding: 4px 8px;
    border-radius: 0;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.brand-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    min-height: 100px;
}

.brand-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.brand-card img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
}

.brand-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card .category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.category-card .category-name {
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    border: none;
    transition: var(--transition);
}

.blog-card:hover {
    transform: none;
}

.blog-card .blog-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card .blog-content {
    padding: 24px 0 0 0;
}

.blog-card .blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.blog-card .blog-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.blog-card .blog-title a {
    color: inherit;
}

.blog-card .blog-title a:hover {
    color: var(--accent);
}

.blog-card .blog-excerpt {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.testimonial-card .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 14px;
}

.testimonial-card .testimonial-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.testimonial-card .author-title {
    font-size: 13px;
    color: var(--text-light);
}

.newsletter-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px 0;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px 0 0 50px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 14px;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 14px 32px;
    border: none;
    border-radius: 0 50px 50px 0;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.newsletter-form button:hover {
    background: var(--primary-50);
}

.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-contact-item i {
    color: var(--primary-light);
    margin-top: 3px;
    width: 16px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.breadcrumb {
    padding: 16px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 13px;
}

.breadcrumb-list li a {
    color: var(--text-light);
}

.breadcrumb-list li a:hover {
    color: var(--primary);
}

.breadcrumb-list li.active {
    color: var(--text);
    font-weight: 600;
}

.breadcrumb-list li+li::before {
    content: '/';
    margin-right: 8px;
    color: var(--gray-300);
}

.pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    gap: 6px;
    list-style: none;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-dots {
    display: flex;
    align-items: center;
    padding: 0 6px;
    color: var(--gray-400);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    transition: var(--transition);
    outline: none;
    color: var(--text);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 40px;
}

.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.glassmorphism-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.glassmorphism-loader.hide {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-content p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99998;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 24px;
    box-shadow: var(--shadow-xl);
    border-left: 4px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.3s ease;
    min-width: 300px;
}

.toast-item.success {
    border-left-color: var(--success);
}

.toast-item.error {
    border-left-color: var(--danger);
}

.toast-item.warning {
    border-left-color: var(--warning);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.mobile-nav,
.mobile-nav-overlay {
    display: none;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .header-search {
        display: none;
    }

    .nav-bar {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 40px 0;
    }

    .hero-slider .slide-content h1 {
        font-size: 28px;
    }

    .hero-slider .slide-content p {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 50px;
    }

    .newsletter-form button {
        border-radius: 50px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 8px;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--white);
        z-index: 10000;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: var(--shadow-xl);
    }

    .mobile-nav.active {
        left: 0;
    }

    .mobile-nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
    }

    .mobile-nav-overlay.active {
        display: block;
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 1px solid var(--border);
    }

    .mobile-nav-close {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--text);
    }

    .mobile-nav-list {
        list-style: none;
        padding: 12px 0;
    }

    .mobile-nav-list li a {
        display: block;
        padding: 14px 24px;
        font-size: 15px;
        font-weight: 600;
        color: var(--text);
        border-bottom: 1px solid var(--gray-100);
    }

    .mobile-nav-list li a:hover {
        background: var(--primary-50);
        color: var(--primary);
    }

    .mobile-search {
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
    }

    .mobile-search input {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid var(--border);
        border-radius: var(--radius-sm);
        font-size: 14px;
        font-family: 'Inter', sans-serif;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-slider .slide-content h1 {
        font-size: 24px;
    }

    .container {
        padding: 0 16px;
    }
}

.products-page {
    padding: 60px 0 80px;
}

.products-header {
    margin-bottom: 40px;
}

.products-title-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--dark);
    padding-bottom: 16px;
}

.products-title-bar h1 {
    font-size: 40px;
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
}

.product-count {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 700;
}

.products-toolbar {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sort-select {
    padding: 12px 20px;
    border: 2px solid var(--border);
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 14px center;
    background-repeat: no-repeat;
    background-size: 18px;
    padding-right: 48px;
}

.subcategory-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.chip {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}

.chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px 24px;
}

.products-grid .product-card {
    margin-bottom: 40px;
}

.products-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}

.products-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-section {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border, #e5e5e5);
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark, #000);
    margin-bottom: 14px;
}

.sidebar-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-cat-list li {
    margin-bottom: 2px;
}

.sidebar-cat-list li a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light, #666);
    transition: all 0.2s;
    border-left: 2px solid transparent;
    padding-left: 12px;
}

.sidebar-cat-list li a:hover {
    color: var(--dark, #000);
    border-left-color: var(--dark, #000);
}

.sidebar-cat-list li a.active {
    color: var(--dark, #000);
    font-weight: 700;
    border-left-color: var(--accent, #ea580c);
}

.sidebar-sub-list {
    list-style: none;
    padding: 0 0 0 16px;
    margin: 0;
}

.sidebar-sub-list li a {
    font-size: 13px;
    padding: 6px 0;
    padding-left: 12px;
}

.sidebar-sort-select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border, #e5e5e5);
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    background: var(--white, #fff);
    color: var(--dark, #000);
    cursor: pointer;
    outline: none;
}

.products-main {
    min-width: 0;
}

.products-layout .products-grid {
    grid-template-columns: repeat(3, 1fr);
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 60px;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.empty-state p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.product-detail-page {
    padding: 40px 0 60px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.product-gallery {
    position: relative;
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    aspect-ratio: 1;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-main .badge-sale {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--danger);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
}

.gallery-main .badge-new {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--success);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.gallery-thumbs .thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border);
    transition: var(--transition);
    flex-shrink: 0;
}

.gallery-thumbs .thumb:hover {
    border-color: var(--primary);
}

.gallery-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-brand-link {
    font-size: 14px;
    font-weight: 900;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.product-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.product-sku {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-price-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.product-price-block .price-current {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark);
}

.product-price-block .price-old {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-400);
    text-decoration: line-through;
}

.product-short-desc {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-variants {
    margin-bottom: 20px;
}

.product-variants label:first-child {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-option {
    display: inline-block;
}

.variant-option input {
    display: none;
}

.variant-option span {
    display: inline-flex;
    padding: 10px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.variant-option input:checked+span {
    border-color: var(--primary);
    background: var(--primary-50);
    color: var(--primary);
}

.product-stock-info {
    margin-bottom: 20px;
}

.in-stock {
    color: var(--success);
    font-size: 14px;
    font-weight: 600;
}

.out-of-stock {
    color: var(--danger);
    font-size: 14px;
    font-weight: 600;
}

.add-to-cart-form {
    margin-bottom: 24px;
}

.qty-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--gray-100);
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--primary-50);
    color: var(--primary);
}

.qty-control input[type="number"] {
    width: 56px;
    height: 44px;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    -moz-appearance: textfield;
}

.qty-control input[type="number"]::-webkit-outer-spin-button,
.qty-control input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.btn-add-cart {
    flex: 1;
    padding: 14px 28px;
    font-size: 15px;
}

.product-meta {
    font-size: 14px;
    color: var(--text-light);
}

.product-meta div {
    margin-bottom: 6px;
}

.product-meta span {
    font-weight: 600;
    color: var(--text);
}

.product-meta a {
    color: var(--primary);
}

.product-tabs {
    margin-top: 48px;
}

.tab-headers {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
}

.tab-btn {
    padding: 14px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.tab-btn.active {
    border-bottom-color: var(--primary);
    color: var(--primary);
}

.tab-panel {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}

.related-products {
    margin-top: 60px;
    padding-bottom: 130px;
}

.related-products h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.cart-page {
    padding: 60px 0 80px;
}

.cart-page h1 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 32px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    margin-bottom: 16px;
    transition: var(--transition);
}

.cart-item:hover {
    border-color: var(--dark);
}

.cart-item-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 0;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-item-brand {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.cart-item-line-total {
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
}

.btn-remove {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    transition: var(--transition);
}

.btn-remove:hover {
    color: var(--danger);
}

.cart-summary {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    background: var(--white);
    border: 2px solid var(--dark);
    border-radius: 0;
    padding: 32px;
}

.cart-summary h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--dark);
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
}

.summary-row.discount {
    color: var(--danger);
}

.summary-row.total {
    font-size: 20px;
    font-weight: 900;
    border-top: 2px solid var(--border);
    margin-top: 12px;
    padding-top: 20px;
    color: var(--dark);
}

.coupon-form {
    margin: 24px 0;
}

.coupon-input-group {
    display: flex;
    gap: 0;
}

.coupon-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.coupon-input-group button {
    border-radius: 0;
    padding: 12px 20px;
}

.cart-summary .btn-block {
    margin-top: 16px;
}

.checkout-page {
    padding: 60px 0 80px;
}

.checkout-page h1 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 32px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.checkout-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 32px;
    margin-bottom: 24px;
}

.checkout-section h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--dark);
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-form-area textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    resize: vertical;
    outline: none;
}

.checkout-form-area textarea:focus {
    border-color: var(--dark);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-grid .form-group {
    margin-bottom: 0;
}

.form-grid .form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--dark);
    box-shadow: none;
}

.saved-addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.address-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    border: 2px solid var(--border);
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}

.address-card:has(input:checked) {
    border-color: var(--dark);
    background: var(--primary-50);
}

.address-card input {
    margin-top: 4px;
}

.address-card .small {
    font-size: 12px;
    color: var(--text-light);
}

.shipping-options,
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shipping-option,
.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 2px solid var(--border);
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}

.shipping-option:has(input:checked),
.payment-option:has(input:checked) {
    border-color: var(--dark);
    background: var(--primary-50);
}

.shipping-option input,
.payment-option input {
    margin-top: 4px;
}

.free-shipping {
    color: var(--dark);
    font-weight: 800;
}

.small {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

.checkout-summary {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    background: var(--white);
    border: 2px solid var(--dark);
    border-radius: 0;
    padding: 32px;
}

.summary-items {
    border-bottom: 2px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
}

.summary-item-name {
    flex: 1;
    font-weight: 600;
    color: var(--dark);
}

.summary-item-qty {
    color: var(--text-light);
    margin: 0 12px;
    font-weight: 700;
}

.checkout-result-page {
    padding: 80px 0 100px;
}

.text-center {
    text-align: center;
}

.result-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.result-icon.success {
    color: var(--success);
}

.result-icon.fail {
    color: var(--danger);
}

.result-order-no {
    font-size: 18px;
    margin-bottom: 8px;
}

.result-message {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.result-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.search-page {
    padding: 40px 0 60px;
}

.search-header {
    margin-bottom: 24px;
}

.search-header h1 {
    font-size: 24px;
    font-weight: 700;
}

.search-count {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 4px;
}

.search-form {
    margin-bottom: 32px;
}

.search-input-group {
    display: flex;
    gap: 0;
    max-width: 600px;
}

.search-input-group input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.search-input-group input:focus {
    border-color: var(--primary);
}

.search-input-group button {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 14px 24px;
}

.order-track-page {
    padding: 40px 0 60px;
}

.track-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 32px;
}

.track-form .form-grid {
    margin-bottom: 20px;
}

.order-track-result {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.order-info-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.order-info-bar div {
    font-size: 14px;
}

.order-info-bar strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.status-badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #b45309;
}

.status-processing {
    background: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
}

.status-shipped {
    background: rgba(139, 92, 246, 0.1);
    color: #6d28d9;
}

.status-delivered {
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
}

.status-cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
}

.status-returned {
    background: rgba(107, 114, 128, 0.1);
    color: #374151;
}

.track-timeline,
.status-timeline {
    position: relative;
    padding-left: 28px;
}

.timeline-item {
    position: relative;
    padding-bottom: 24px;
    padding-left: 20px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -28px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 18px;
    width: 2px;
    bottom: 0;
    background: var(--border);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-content strong {
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.timeline-content small {
    font-size: 12px;
    color: var(--text-light);
}

.timeline-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.order-items-list {
    margin-top: 24px;
}

.order-items-list h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.order-item-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.order-item-row img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.order-item-info {
    flex: 1;
}

.order-item-info span {
    display: block;
}

.order-item-info .small {
    font-size: 12px;
    color: var(--text-light);
}

.order-item-total {
    font-weight: 700;
}

.blog-page {
    padding: 40px 0 60px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
}

.blog-main h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
}

.blog-card-image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 20px;
}

.blog-card-category {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: inline-block;
}

.blog-card-body h2 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-card-body h2 a {
    color: var(--text);
}

.blog-card-body h2 a:hover {
    color: var(--primary);
}

.blog-card-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-card-meta {
    font-size: 12px;
    color: var(--gray-400);
    display: flex;
    gap: 12px;
}

.blog-sidebar .sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-widget h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
}

.category-list li a:hover,
.category-list li a.active {
    background: var(--primary-50);
    color: var(--primary);
}

.category-list li a span {
    color: var(--text-light);
    font-size: 12px;
}

.blog-detail-page {
    padding: 40px 0 60px;
}

.blog-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
    max-height: 480px;
}

.blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article-header {
    margin-bottom: 32px;
}

.blog-category-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-article-header h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-content.prose {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.blog-content.prose img {
    border-radius: var(--radius);
    margin: 24px 0;
}

.blog-content.prose h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 32px 0 16px;
}

.blog-content.prose h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 24px 0 12px;
}

.blog-content.prose p {
    margin-bottom: 16px;
}

.blog-content.prose ul,
.blog-content.prose ol {
    margin: 16px 0;
    padding-left: 24px;
}

.blog-content.prose li {
    margin-bottom: 8px;
}

.related-blogs {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.related-blogs h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
}

.blog-article-main {
    min-width: 0;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-sidebar .sidebar-section {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border, #e5e5e5);
}

.blog-sidebar .sidebar-section:last-child {
    border-bottom: none;
}

.blog-sidebar .sidebar-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark, #000);
    margin-bottom: 14px;
}

.blog-sidebar .sidebar-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar .sidebar-cat-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light, #666);
    transition: color 0.2s;
    border-left: 2px solid transparent;
    padding-left: 12px;
}

.blog-sidebar .sidebar-cat-list li a:hover,
.blog-sidebar .sidebar-cat-list li a.active {
    color: var(--dark, #000);
    border-left-color: var(--accent, #ea580c);
    font-weight: 700;
}

.cat-count {
    font-size: 12px;
    color: var(--text-light, #999);
    font-weight: 400;
}

.sidebar-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.recent-post-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.recent-post-item:hover {
    opacity: 0.8;
}

.recent-post-img {
    width: 70px;
    height: 52px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gray-100, #f3f4f6);
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 16px;
}

.recent-post-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark, #000);
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.recent-post-info span {
    font-size: 11px;
    color: var(--text-light, #999);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border, #e5e5e5);
}

.blog-share span {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100, #f3f4f6);
    color: var(--dark, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
}

.share-btn:hover {
    background: var(--dark, #000);
    color: var(--white, #fff);
}

.products-page {
    padding-bottom: 130px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.related-blogs .blog-card-body h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.related-blogs .blog-card-body h3 a {
    color: var(--text);
}

.faq-page {
    padding: 40px 0 60px;
}

.faq-page h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
    text-align: center;
}

.faq-category {
    margin-bottom: 32px;
}

.faq-category h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 4px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.open {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
}

.accordion-header i {
    color: var(--text-light);
    transition: transform 0.3s ease;
    font-size: 12px;
}

.accordion-item.open .accordion-header i {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.open .accordion-body {
    max-height: 500px;
}

.accordion-body p {
    padding: 0 20px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-page {
    padding: 40px 0 60px;
}

.contact-page h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.contact-form-area {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.contact-form-area h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-info-area .contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 14px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.info-item a {
    color: var(--text);
}

.info-item a:hover {
    color: var(--primary);
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 250px;
    border: 0;
}

.catalogs-page {
    padding: 40px 0 60px;
}

.catalogs-page h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
}

.catalogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.catalog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.catalog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.catalog-body {
    padding: 20px;
}

.catalog-body h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.catalog-body p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.gallery-page {
    padding: 40px 0 60px;
}

.gallery-page h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.gallery-overlay span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.gallery-detail-page {
    padding: 40px 0 60px;
}

.gallery-detail-page h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.gallery-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    font-size: 36px;
}

.payment-notification-page {
    padding: 40px 0 60px;
}

.pn-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.pn-form-area {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.pn-form-area h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.pn-accounts h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.bank-account-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 12px;
}

.bank-account-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.bank-account-card p {
    font-size: 14px;
    margin-bottom: 6px;
}

.mono {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    letter-spacing: 1px;
}

.page-detail {
    padding: 40px 0 60px;
}

.page-detail h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
}

.page-content.prose {
    font-size: 16px;
    line-height: 1.8;
}

.page-content.prose h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 32px 0 16px;
}

.page-content.prose p {
    margin-bottom: 16px;
}

.page-content.prose img {
    border-radius: var(--radius);
    max-width: 100%;
    margin: 24px 0;
}

.auth-page {
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.auth-card {
    background: var(--white);
    border: 4px solid var(--dark);
    border-radius: 0;
    padding: 48px;
    max-width: 460px;
    width: 100%;
    box-shadow: 16px 16px 0 var(--dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 20px 20px 0 var(--dark);
}

.auth-card h1 {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--dark);
}

.form-row-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.link-small {
    font-size: 13px;
    color: var(--dark);
    font-weight: 700;
    text-decoration: underline;
}

.link-small:hover {
    color: var(--accent);
}

.auth-footer {
    text-align: center;
    margin-top: 32px;
    font-size: 15px;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--dark);
    font-weight: 800;
    text-decoration: underline;
}

.auth-footer a:hover {
    color: var(--accent);
}

.account-page {
    padding: 60px 0 80px;
}

.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.account-sidebar {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 0;
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-height) + 40px);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.sidebar-user span {
    font-size: 15px;
    font-weight: 600;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: var(--primary-50);
    color: var(--primary);
}

.sidebar-nav a.logout {
    color: var(--danger);
}

.sidebar-nav a.logout:hover {
    background: rgba(239, 68, 68, 0.05);
}

.sidebar-nav a i {
    width: 18px;
    text-align: center;
}

.account-content h1 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--dark);
}

.content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.content-header h1 {
    margin-bottom: 0;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 0;
    padding: 32px;
}

.stat-card i {
    font-size: 28px;
    color: var(--white);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 0;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    display: block;
    color: var(--dark);
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.account-content h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
}

.orders-table-wrap {
    overflow-x: auto;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 0;
    overflow: hidden;
}

.orders-table th {
    background: var(--gray-100);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 2px solid var(--border);
}

.orders-table td {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    font-weight: 500;
}

.fw-bold {
    font-weight: 800;
    color: var(--dark);
}

.order-detail-bar {
    display: flex;
    gap: 32px;
    padding: 24px;
    background: var(--gray-100);
    border-radius: 0;
    margin-bottom: 24px;
    font-size: 14px;
}

.order-summary-card {
    background: var(--gray-100);
    border-radius: 0;
    padding: 24px;
    margin-top: 24px;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.address-card-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.address-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.address-card-header h3 {
    font-size: 15px;
    font-weight: 700;
}

.badge-default {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    background: var(--primary-50);
    color: var(--primary);
}

.address-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.profile-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
}

.profile-section h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.alert-error {
    background: rgba(239, 68, 68, 0.08);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 20px;
}

.hidden {
    display: none !important;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 {
    font-size: 18px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    padding: 4px;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-detail-grid {
        gap: 32px;
    }

    .checkout-layout {
        grid-template-columns: 1fr 340px;
    }

    .cart-layout {
        grid-template-columns: 1fr 300px;
    }

    .blog-layout {
        grid-template-columns: 1fr 240px;
    }

    .contact-layout {
        grid-template-columns: 1fr 320px;
    }

    .pn-layout {
        grid-template-columns: 1fr 320px;
    }

    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .pn-layout {
        grid-template-columns: 1fr;
    }

    .account-layout {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalogs-grid {
        grid-template-columns: 1fr;
    }

    .order-info-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .address-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .saved-addresses {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .product-title {
        font-size: 22px;
    }

    .product-price-block .price-current {
        font-size: 22px;
    }

    .blog-article-header h1 {
        font-size: 24px;
    }

    /* Hesap sayfalarındaki sipariş tablolarını kart görünüme çevir (mobil) */
    .account-page .orders-table {
        min-width: 100%;
        border: none;
    }

    .account-page .orders-table thead {
        display: none;
    }

    .account-page .orders-table tbody tr {
        display: block;
        margin-bottom: 12px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 0;
        box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
    }

    .account-page .orders-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 12px;
        font-size: 13px;
        border-top: 1px solid var(--border);
    }

    .account-page .orders-table td:first-child {
        border-top: none;
    }

    .account-page .orders-table tbody tr td:nth-child(1)::before {
        content: 'Sipariş No';
    }

    .account-page .orders-table tbody tr td:nth-child(2)::before {
        content: 'Tarih';
    }

    .account-page .orders-table tbody tr td:nth-child(3)::before {
        content: 'Ürün Sayısı';
    }

    .account-page .orders-table tbody tr td:nth-child(4)::before {
        content: 'Toplam';
    }

    .account-page .orders-table tbody tr td:nth-child(5)::before {
        content: 'Durum';
    }

    .account-page .orders-table tbody tr td:nth-child(6)::before {
        content: '';
    }

    .account-page .orders-table td::before {
        font-weight: 600;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 11px;
        margin-right: 12px;
    }

    .account-page .orders-table td:last-child {
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .cart-item {
        flex-direction: column;
    }

    .cart-item-image {
        width: 100%;
        height: 160px;
    }

    .cart-item-actions {
        flex-direction: row;
        align-items: center;
    }

    .checkout-page h1,
    .cart-page h1 {
        font-size: 22px;
    }

    .auth-card {
        padding: 24px;
    }

    .result-icon {
        font-size: 60px;
    }
}

/* PREMIUM MAGAZINE UI REVAMP */
.hero-slider-section {
    width: 100%;
    position: relative;
}

.hero-swiper {
    width: 100%;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    width: 100%;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide-subtitle {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.hero-slide-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-slide-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-slide-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-slide-buttons .btn {
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #fff;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 16px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 50px;
}

@media (max-width: 768px) {
    .hero-swiper {
        height: 60vh;
        min-height: 350px;
    }

    .hero-slide-content {
        padding: 0 30px;
    }

    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }
}

.section-dark {
    background: var(--dark);
    color: var(--white);
    padding: 100px 0;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-dark .view-all {
    color: var(--white);
    border-bottom-color: var(--white);
}

.section-header-magazine {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header-magazine h2 {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
}

.section-header-magazine p {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 10px;
    color: var(--text-light);
}

.special-production {
    padding: 120px 0;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.special-production-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.special-text-huge {
    font-size: clamp(60px, 10vw, 160px);
    font-weight: 900;
    line-height: 0.8;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: -3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    white-space: nowrap;
    opacity: 0.9;
}

.special-text-huge span.outline {
    -webkit-text-stroke: 2px var(--gray-300);
    color: transparent;
    display: block;
}

.special-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    z-index: 2;
    position: relative;
}

.special-img {
    width: 280px;
    height: 400px;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.special-img:nth-child(2) {
    transform: translateY(-40px);
}

.special-img:nth-child(3) {
    transform: translateY(40px);
}

.newsletter-huge {
    background: var(--dark);
    color: var(--white);
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 15vw, 250px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
    line-height: 1;
}

.newsletter-huge h2 {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.newsletter-huge .newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    position: relative;
    z-index: 2;
}

.newsletter-huge .newsletter-form input {
    flex: 1;
    padding: 20px 30px;
    border: none;
    font-size: 16px;
    border-radius: 0;
}

.newsletter-huge .newsletter-form button {
    padding: 20px 40px;
    background: var(--white);
    color: var(--dark);
    font-weight: 900;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 0;
}

.newsletter-huge .newsletter-form button:hover {
    background: var(--accent);
    color: var(--white);
}

.banner-row {
    margin: 60px 0;
    position: relative;
}

.banner-row img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: var(--dark);
}

.banner-text {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    text-align: right;
}

.banner-text h3 {
    font-size: 80px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
}

.banner-text .btn {
    background: var(--white);
    color: var(--dark);
}

.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.feature-item i {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--dark);
}

.feature-item h4 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-huge {
    text-align: center;
    padding: 100px 0;
}

.testimonial-huge .section-header-magazine {
    margin-bottom: 80px;
}

.testimonial-mag-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--gray-100);
    padding: 60px;
    border-radius: var(--radius-xl);
}

.testimonial-mag-content {
    flex: 1;
    text-align: left;
}

.testimonial-mag-content h3 {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.testimonial-mag-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
}

.testimonial-mag-image {
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}

.gallery-instagram {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.gallery-instagram img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-instagram img:hover {
    filter: brightness(0.7);
}

@media (max-width: 1024px) {
    .special-text-huge {
        font-size: 80px;
    }

    .hero-mag-img {
        width: 220px;
        height: 320px;
    }

    .hero-mag-img.center {
        width: 280px;
        height: 400px;
    }

    .banner-text h3 {
        font-size: 50px;
    }

    .testimonial-mag-layout {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .testimonial-mag-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-magazine-images {
        flex-direction: column;
        gap: 20px;
    }

    .hero-mag-img {
        width: 100%;
        height: 400px;
    }

    .hero-mag-img.center {
        width: 100%;
        height: 450px;
        transform: translateY(0);
    }

    .special-images {
        grid-template-columns: 1fr;
    }

    .special-img {
        width: 100%;
        height: auto;
        transform: translateY(0) !important;
    }

    .special-text-huge {
        font-size: 40px;
        white-space: normal;
        text-align: center;
    }

    .banner-row img {
        height: 300px;
    }

    .banner-text {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .banner-text h3 {
        font-size: 36px;
    }

    .features-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-instagram {
        grid-template-columns: repeat(2, 1fr);
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe,
embed,
object,
svg {
    max-width: 100%;
    height: auto;
}

table {
    max-width: 100%;
}

input,
select,
textarea,
button {
    max-width: 100%;
    box-sizing: border-box;
}

pre,
code {
    overflow-x: auto;
    max-width: 100%;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }

    .header-main .container {
        gap: 12px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-actions .action-text {
        display: none;
    }

    .hero-swiper {
        height: 60vh;
        min-height: 300px;
        max-height: 500px;
    }

    .hero-slide-content h1,
    .hero-slide-content .slide-title {
        font-size: 24px !important;
    }

    .hero-slide-content p,
    .hero-slide-content .slide-desc {
        font-size: 14px !important;
    }

    .products-title-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .products-title-bar h1 {
        font-size: 24px;
    }

    .products-filter-bar {
        flex-direction: column;
        gap: 12px;
    }

    .orders-table-wrap,
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .orders-table {
        min-width: 500px;
    }

    .products-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .products-sidebar {
        position: static;
    }

    .products-layout .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-detail-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .blog-sidebar {
        position: static;
        order: 2;
    }

    .blog-article-main {
        order: 1;
    }

    .contact-layout,
    .pn-layout {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 24px !important;
    }

    h2 {
        font-size: 20px !important;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 14px;
    }

    .hero-swiper {
        height: 50vh;
        min-height: 250px;
        max-height: 400px;
    }

    .hero-slide-content h1,
    .hero-slide-content .slide-title {
        font-size: 20px !important;
    }

    .hero-slide-content .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-card .product-name {
        font-size: 13px;
    }

    .product-card .product-price {
        font-size: 14px;
    }

    .section {
        padding: 30px 0;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .newsletter-section {
        padding: 30px 0;
    }

    h1 {
        font-size: 20px !important;
    }

    h2 {
        font-size: 18px !important;
    }

    h3 {
        font-size: 16px !important;
    }
}

.mobile-bottom-bar {
    display: none;
}

@media (max-width: 768px) {
    .header-action-btn span {
        display: none;
    }

    .header-action-btn {
        position: relative;
    }

    .header-action-btn .badge {
        position: absolute;
        top: -6px;
        right: -6px;
    }

    body {
        padding-bottom: 64px;
    }

    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 64px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid var(--border, #e5e5e5);
        z-index: 9995;
        align-items: center;
        justify-content: space-around;
        padding: 0 8px;
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    .mb-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        flex: 1;
        text-decoration: none;
        color: var(--text-light, #666);
        font-size: 10px;
        font-weight: 600;
        padding: 8px 0;
        position: relative;
        transition: color 0.2s;
    }

    .mb-item i {
        font-size: 20px;
        line-height: 1;
    }

    .mb-item.active {
        color: var(--accent, #ea580c);
    }

    .mb-item:hover {
        color: var(--accent, #ea580c);
    }

    .mb-badge {
        position: absolute;
        top: 2px;
        right: 50%;
        transform: translateX(14px);
        min-width: 18px;
        height: 18px;
        background: var(--accent, #ea580c);
        color: #fff;
        border-radius: 50%;
        font-size: 10px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    #scroll-to-top {
        bottom: 80px !important;
        right: 16px !important;
    }

    footer {
        margin-bottom: 0;
    }
}