/* ========================================
   Woodmart - Furniture Store
   Modern & Clean Design
   ======================================== */

/* CSS Variables */
:root {
    --primary: #1a1a1a;
    --secondary: #333;
    --accent: #c9a96e;
    --accent-hover: #b8985d;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg: #fff;
    --bg-light: #f8f8f8;
    --bg-dark: #1a1a1a;
    --border: #e5e5e5;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 10px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.2);
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 26, 26, 0.3);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* Section Headers */
.section-header {
    margin-bottom: 40px;
}

.section-header.center {
    text-align: center;
}

.section-header.with-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header.with-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 14px;
}

.view-all {
    color: var(--text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all:hover {
    color: var(--accent);
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 12px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.lang-selector img {
    width: 16px;
    height: 12px;
    border-radius: 2px;
}

.lang-selector i {
    font-size: 10px;
    color: var(--text-muted);
}

.top-link {
    color: var(--text-light);
}

.top-link:hover {
    color: var(--primary);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-info i {
    font-size: 12px;
    color: var(--accent);
}

/* ========================================
   Header
   ======================================== */
.header {
    padding: 20px 0;
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

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

.logo i {
    color: var(--accent);
    font-size: 28px;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.search-box {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.action-btn i {
    font-size: 18px;
}

.action-btn:hover {
    color: var(--accent);
}

.auth-btns {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

.auth-btns i {
    font-size: 18px;
}

.auth-btns a {
    color: var(--text);
    transition: var(--transition);
}

.auth-btns a:hover {
    color: var(--accent);
}

.auth-btns span {
    color: var(--text-muted);
}

.cart-btn {
    background: var(--bg-light);
    padding: 10px 20px;
    border-radius: 50px;
}

.cart-btn i {
    color: var(--accent);
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    background: #2b4eff;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    margin-left: 6px;
    padding: 0 6px;
}

.wishlist-count {
    position: absolute;
    top: -6px;
    right: -6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    padding: 0 4px;
}

/* ========================================
   Navigation
   ======================================== */
.main-nav {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--primary);
    padding: 5px;
    cursor: pointer;
}

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

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after {
    width: 100%;
}

.nav-menu a i {
    color: var(--text-muted);
}

.promo-tag {
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-light);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0e6dc 50%, #f8f0e8 100%);
    min-height: 85vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    contain: layout style;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.4) 0%, transparent 70%);
    pointer-events: none;
}

.hero-slider {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    position: relative;
    height: 650px;
}

.hero-slide {
    display: flex;
    align-items: center;
    gap: 80px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(60px, 0, 0);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
    z-index: 1;
    will-change: opacity, transform, visibility;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
    z-index: 2;
}

.hero-slide.exit {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(-60px, 0, 0);
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.5);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge i {
    color: var(--accent);
    font-size: 16px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 35px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-title span {
    color: var(--accent);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 480px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-price-box {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
}

.hero-price .currency {
    font-size: 24px;
    font-weight: 500;
    margin-right: 4px;
}

.hero-image {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 550px;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero-image img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
    transform: scale(0.95);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.hero-slide.active .hero-image img {
    transform: scale(1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.5);
}

.slider-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.2);
}

.slider-btn.prev {
    left: 40px;
}

.slider-btn.next {
    right: 40px;
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.dot.active::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.dot:hover {
    background: var(--text-light);
}

/* ========================================
   Categories Section
   ======================================== */
.categories {
    padding: 100px 0;
    background: #f5f3f0;
}

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

.category-card {
    display: block;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: #e8e4df;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.category-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    z-index: 2;
}

.category-card:hover .category-label {
    background: #1a1a1a;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ========================================
   Bestsellers Section
   ======================================== */
.bestsellers {
    padding: 100px 0;
    background: var(--bg-light);
}

.tab-nav {
    display: flex;
    gap: 25px;
}

.tab-btn {
    font-size: 14px;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
    font-weight: 500;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}

.products-grid.loading {
    position: relative;
    min-height: 300px;
}

.products-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: var(--accent);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 16px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px 24px;
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-light);
}

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

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

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.action-icon:hover {
    background: var(--primary);
    color: #fff;
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.sale {
    background: #e74c3c;
    color: #fff;
}

.badge.new {
    background: #27ae60;
    color: #fff;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.product-category {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.original-price {
    font-size: 14px;
    color: #999 !important;
    text-decoration: line-through;
}

.original-price .woocommerce-Price-amount {
    color: #999 !important;
    text-decoration: line-through;
}

/* ========================================
   Brands Section
   ======================================== */
.brands {
    padding: 100px 0;
    background: var(--bg);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px 24px;
}

.brand-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.brand-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.brand-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
}

.brand-name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.brand-origin {
    font-size: 12px;
    opacity: 0.8;
}

/* ========================================
   Collections Section
   ======================================== */
.collections {
    padding: 100px 0;
    background: var(--bg-light);
}

.collections-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 24px;
}

.collection-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.collection-item.large {
    grid-row: span 2;
    grid-column: span 2;
}

.collection-item.wide {
    grid-column: span 2;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.collection-item:hover img {
    transform: scale(1.08);
}

.collection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    color: #fff;
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-item:hover .collection-content {
    transform: translateY(0);
    opacity: 1;
}

.collection-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    transform: translateY(10px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
}

.collection-item:hover .collection-content h3 {
    transform: translateY(0);
}

.collection-content p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 16px;
    transform: translateY(10px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.collection-item:hover .collection-content p {
    transform: translateY(0);
}

.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--accent);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.collection-item:hover .collection-link {
    transform: translateY(0);
    opacity: 1;
}

.collection-link:hover {
    color: var(--accent);
    gap: 12px;
}

/* Touch devices - always show content */
@media (hover: none) {
    .collection-content {
        transform: translateY(0);
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    }
    
    .collection-content h3,
    .collection-content p,
    .collection-link {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   Furniture Guide Section
   ======================================== */
.furniture-guide {
    padding: 80px 0;
    background: var(--bg-light);
}

.guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.guide-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.guide-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.guide-text p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.guide-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guide-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.guide-list i {
    color: var(--accent);
    font-size: 18px;
}

/* ========================================
   SOLREM Collection Section
   ======================================== */
.solrem-collection {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.solrem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solrem-text {
    color: #fff;
}

.solrem-label {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.solrem-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.solrem-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.solrem-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

/* ========================================
   Info Section
   ======================================== */
.info-section {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.info-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.info-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin: 30px 0 15px;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-brand .logo {
    color: #fff;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links span {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
}

.app-download span {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.app-discount {
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 15px;
}

.app-badges {
    display: flex;
    gap: 10px;
}

.app-badges img {
    height: 36px;
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

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

.newsletter p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 15px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form button {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: var(--radius);
    color: #fff;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-hover);
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 24px;
    color: rgba(255,255,255,0.6);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1400px) {
    .container-wide {
        padding: 0 40px;
    }
}

@media (max-width: 1200px) {
    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .header-main {
        flex-wrap: wrap;
    }
    
    .search-box {
        order: 3;
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 15px;
    }
    
    .nav-menu {
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .nav-menu::-webkit-scrollbar {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-slider {
        height: auto;
        min-height: auto;
        padding: 0 20px 50px;
        position: relative;
        overflow: hidden;
    }
    
    .hero-slide {
        flex-direction: column-reverse;
        text-align: center;
        gap: 25px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        opacity: 0;
        visibility: hidden;
        transform: translate3d(30px, 0, 0);
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
        padding-bottom: 0;
        pointer-events: none;
        will-change: opacity, transform, visibility;
    }
    
    .hero-slide.active {
        opacity: 1;
        visibility: visible;
        transform: translate3d(0, 0, 0);
        position: relative;
        pointer-events: auto;
    }
    
    .hero-slide.exit {
        opacity: 0;
        visibility: hidden;
        transform: translate3d(-30px, 0, 0);
    }
    
    .hero-content {
        padding: 15px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }
    
    .hero-price-box {
        justify-content: center;
    }
    
    .hero-image {
        height: 280px;
        flex: none;
    }
    
    .hero-image::before {
        width: 300px;
        height: 300px;
    }
    
    .hero-image img {
        max-height: 260px;
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .collections-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 20px;
    }
    
    .collection-item {
        height: 240px;
        border-radius: 12px;
    }
    
    .collection-item.large {
        grid-row: span 2;
        grid-column: span 1;
        height: auto;
    }
    
    .collection-item.wide {
        grid-column: span 2;
        height: 180px;
    }
    
    .collection-item img {
        transition: transform 0.5s ease;
    }
    
    .collection-item:active img {
        transform: scale(1.05);
    }
    
    .collection-content {
        padding: 24px;
        transform: translateY(0);
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    }
    
    .collection-content h3 {
        font-size: 20px;
        transform: translateY(0);
        margin-bottom: 8px;
    }
    
    .collection-content p {
        transform: translateY(0);
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .collection-link {
        transform: translateY(0);
        opacity: 1;
    }
    
    .guide-content,
    .solrem-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    /* Header mobile optimization */
    .header {
        padding: 12px 0;
    }
    
    .header-main {
        gap: 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo i {
        font-size: 24px;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .action-btn i {
        font-size: 16px;
    }
    
    .cart-btn {
        padding: 8px 12px;
    }
    
    /* Navigation mobile optimization */
    .main-nav {
        padding: 10px 0;
        position: relative;
    }
    
    .main-nav .container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 1;
    }
    
    .nav-menu {
        display: none;
        gap: 0;
        overflow-x: visible;
        padding-bottom: 0;
        width: 100%;
        justify-content: flex-start;
        order: 3;
        flex-direction: column;
        background: #fff;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        margin-top: 10px;
        padding: 10px 0;
    }
    
    .nav-menu.mobile-open {
        display: flex;
    }
    
    .nav-menu li {
        flex-shrink: 0;
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 14px;
        padding: 10px 20px;
        gap: 10px;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a i {
        font-size: 14px;
        width: 20px;
        text-align: center;
    }
    
    .promo-tag {
        font-size: 11px;
        padding: 6px 12px;
        text-align: center;
        order: 2;
        flex: 1;
    }
    
    /* Hero mobile optimization */
    .hero {
        padding: 20px 0 40px;
        min-height: auto;
    }
    
    .hero-slider {
        height: auto;
        min-height: auto;
        padding: 0 15px 40px;
        position: relative;
        overflow: hidden;
    }
    
    .hero-slide {
        flex-direction: column-reverse;
        gap: 15px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        opacity: 0;
        visibility: hidden;
        transform: translate3d(20px, 0, 0);
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
        padding-bottom: 0;
        pointer-events: none;
        will-change: opacity, transform, visibility;
    }
    
    .hero-slide.active {
        opacity: 1;
        visibility: visible;
        transform: translate3d(0, 0, 0);
        position: relative;
        pointer-events: auto;
    }
    
    .hero-slide.exit {
        opacity: 0;
        visibility: hidden;
        transform: translate3d(-20px, 0, 0);
    }
    
    .hero-content {
        padding: 10px 0 20px;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 15px;
    }
    
    .hero-badge i {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        max-width: 100%;
    }
    
    .hero-price-box {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .hero-price {
        font-size: 28px;
    }
    
    .hero-price .currency {
        font-size: 18px;
    }
    
    .hero-image {
        height: 200px;
        flex: none;
        width: 100%;
    }
    
    .hero-image::before {
        width: 180px;
        height: 180px;
    }
    
    .hero-image img {
        max-height: 180px;
        width: auto;
        margin: 0 auto;
        transition: transform 0.5s ease;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
        transition: all 0.3s ease;
    }
    
    .slider-btn.prev {
        left: 5px;
    }
    
    .slider-btn.next {
        right: 5px;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        transition: all 0.3s ease;
    }
    
    .section-header.with-tabs {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .tab-nav {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .container-wide {
        padding: 0 24px;
    }
    
    .categories,
    .bestsellers,
    .brands,
    .collections {
        padding: 60px 0;
    }
    
    /* Collections tablet/mobile optimization */
    .collections-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 16px;
    }
    
    .collection-item {
        height: 200px;
        border-radius: 12px;
    }
    
    .collection-item.large {
        grid-row: span 2;
        grid-column: span 1;
        height: auto;
    }
    
    .collection-item.wide {
        grid-column: span 2;
        height: 160px;
    }
    
    .collection-item img {
        transition: transform 0.5s ease;
    }
    
    .collection-item:active img {
        transform: scale(1.05);
    }
    
    .collection-content {
        padding: 20px;
        transform: translateY(0);
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    }
    
    .collection-content h3 {
        font-size: 18px;
        transform: translateY(0);
        margin-bottom: 6px;
    }
    
    .collection-content p {
        font-size: 13px;
        transform: translateY(0);
        margin-bottom: 8px;
    }
    
    .collection-link {
        transform: translateY(0);
        opacity: 1;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container-wide {
        padding: 0 16px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Header mobile optimization */
    .header {
        padding: 10px 0;
    }
    
    .header-main {
        gap: 10px;
    }
    
    .logo {
        font-size: 18px;
        gap: 6px;
    }
    
    .logo i {
        font-size: 22px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .action-btn i {
        font-size: 15px;
    }
    
    .login-btn span {
        display: none;
    }
    
    .cart-btn {
        padding: 6px 10px;
        gap: 4px;
    }
    
    .cart-btn .cart-total {
        display: none;
    }
    
    .cart-count {
        min-width: 16px;
        height: 16px;
        font-size: 10px;
        padding: 0 4px;
        margin-left: 2px;
    }
    
    .search-box {
        margin-top: 10px;
    }
    
    .search-box input {
        padding: 10px 40px 10px 15px;
        font-size: 13px;
    }
    
    .search-btn {
        width: 32px;
        height: 32px;
    }
    
    /* Navigation mobile optimization */
    .main-nav {
        padding: 8px 0;
    }
    
    .main-nav .container {
        gap: 8px;
    }
    
    .mobile-menu-toggle {
        font-size: 18px;
        padding: 4px;
    }
    
    .nav-menu {
        margin-top: 8px;
        padding: 8px 0;
    }
    
    .nav-menu a {
        font-size: 13px;
        padding: 8px 16px;
        gap: 8px;
    }
    
    .nav-menu a i {
        font-size: 12px;
    }
    
    .promo-tag {
        font-size: 9px;
        padding: 4px 8px;
    }
    
    /* Hero mobile optimization */
    .hero {
        padding: 15px 0 30px;
        min-height: auto;
    }
    
    .hero-slider {
        padding: 0 10px 35px;
        height: auto;
        min-height: auto;
        overflow: hidden;
    }
    
    .hero-slide {
        gap: 10px;
        transform: translate3d(15px, 0, 0);
        will-change: opacity, transform, visibility;
    }
    
    .hero-slide.active {
        transform: translate3d(0, 0, 0);
    }
    
    .hero-slide.exit {
        transform: translate3d(-15px, 0, 0);
    }
    
    .hero-content {
        padding: 5px 0 10px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 12px;
        gap: 6px;
    }
    
    .hero-badge i {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .hero-desc {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .hero-price-box {
        gap: 10px;
    }
    
    .hero-price {
        font-size: 24px;
    }
    
    .hero-price .currency {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .hero-image {
        height: 160px;
    }
    
    .hero-image::before {
        width: 150px;
        height: 150px;
    }
    
    .hero-image img {
        max-height: 140px;
    }
    
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }
    
    .slider-btn.prev {
        left: 5px;
    }
    
    .slider-btn.next {
        right: 5px;
    }
    
    .slider-dots {
        bottom: 5px;
        gap: 6px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .categories-grid,
    .products-grid,
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .category-label {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    /* Collections mobile optimization */
    .collections {
        padding: 40px 0;
    }
    
    .collections-masonry {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }
    
    .collection-item {
        height: 200px;
        border-radius: 12px;
    }
    
    .collection-item.large,
    .collection-item.wide {
        grid-row: auto;
        grid-column: span 1;
        height: 220px;
    }
    
    .collection-item img {
        transition: transform 0.5s ease;
    }
    
    .collection-item:active img {
        transform: scale(1.05);
    }
    
    .collection-content {
        padding: 20px;
        transform: translateY(0);
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    }
    
    .collection-content h3 {
        font-size: 18px;
        margin-bottom: 6px;
        transform: translateY(0);
    }
    
    .collection-content p {
        font-size: 13px;
        margin-bottom: 8px;
        transform: translateY(0);
        opacity: 0.9;
    }
    
    .collection-link {
        font-size: 13px;
        transform: translateY(0);
        opacity: 1;
        border-bottom-width: 1px;
    }
}

/* ========================================
   Page Banner
   ======================================== */
.page-banner {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.page-banner h1 {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.cart-banner {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
}

.checkout-banner {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
}

.account-banner {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
}

/* ========================================
   Empty Cart State
   ======================================== */
.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
    background: #fff;
    border-radius: var(--radius);
    margin: 40px 0;
}

.cart-empty-state i {
    font-size: 80px;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.cart-empty-state h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.cart-empty-state p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-continue-shopping {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-continue-shopping:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.2);
}

/* WooCommerce Cart Empty */
.cart-empty.woocommerce-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
    background: #fff;
    border-radius: var(--radius);
    margin: 40px 0;
    border: none;
}

.cart-empty.woocommerce-info::before {
    content: '\f290';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 80px;
    color: #e0e0e0;
    margin-bottom: 30px;
    display: block;
    position: static;
    line-height: 1;
}

.return-to-shop {
    margin-top: 30px;
}

.return-to-shop .button {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.return-to-shop .button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.2);
}

/* ========================================
   WooCommerce Container
   ======================================== */
.woocommerce-container {
    padding: 40px 20px;
}

.cart-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   Cart Page Full Width
   ======================================== */
.cart-page-wrapper {
    width: 100%;
    background: #fff;
}

/* ========================================
   Page Banner
   ======================================== */
.page-banner {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    letter-spacing: -0.5px;
}

.cart-banner {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.checkout-banner {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
}

.account-banner {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
}

@media (max-width: 768px) {
    .page-banner {
        padding: 50px 20px;
    }
    
    .page-banner h1 {
        font-size: 32px;
    }
}


/* ==========================================================================
   Product Card Actions - Fix
   ========================================================================== */

/* Ensure product actions are properly styled */
.bestsellers .product-actions,
.products-grid .product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.bestsellers .product-card:hover .product-actions,
.products-grid .product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.bestsellers .action-icon,
.products-grid .action-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.bestsellers .action-icon:hover,
.products-grid .action-icon:hover {
    background: #1a1a1a;
    color: #fff;
    transform: scale(1.1);
}

.bestsellers .action-icon i,
.products-grid .action-icon i {
    pointer-events: none;
}

/* Mobile: Always show actions */
@media (max-width: 768px) {
    .bestsellers .product-actions,
    .products-grid .product-actions {
        opacity: 1;
        transform: translateX(0);
        top: 10px;
        right: 10px;
    }
    
    .bestsellers .action-icon,
    .products-grid .action-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
