/*!
Theme Name: MegaTheme 2.0
Theme URI: https://megatheme.com
Author: MegaTheme
Author URI: https://megatheme.com
Description: Professional E-Commerce WordPress Theme with Full Customization
Version: 2.0
License: GPL v2 or later
Text Domain: megatheme
Domain Path: /languages
*/

/* ====================================
   CSS VARIABLES & ROOT STYLES
   ==================================== */

:root {
    --primary-color: #1dd1a1;
    --secondary-color: #2c3e50;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --text-color: #333;
    --text-muted: #7f8c8d;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --success-color: #27ae60;
}

/* ====================================
   GLOBAL STYLES
   ==================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    background-color: var(--light-gray);
    line-height: 1.6;
    font-size: 14px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #16a085;
}

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

/* ====================================
   HEADER TOP
   ==================================== */

.header-top {
    background: linear-gradient(135deg, #3b4a6e 0%, #1a2a4e 100%);
    color: white;
    padding: 12px 20px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header-top-right span {
    white-space: nowrap;
}

/* ====================================
   NAVIGATION & NAVBAR
   ==================================== */

.navbar {
    background: white;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    width: 100%;
}

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

.navbar-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
    min-width: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo img {
    max-height: 50px;
    width: auto;
}

.navbar-logo span {
    font-weight: 700;
}

.search-bar {
    flex: 1;
    max-width: 400px;
}

.search-bar form {
    display: flex;
    gap: 8px;
}

.search-bar input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(29, 209, 161, 0.1);
}

.search-bar button {
    background: var(--primary-color);
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    transition: background 0.3s;
}

.search-bar button:hover {
    background: #16a085;
}

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

.account-links {
    display: flex;
    gap: 15px;
    font-size: 13px;
}

.account-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.account-links a:hover {
    color: var(--primary-color);
}

.cart-icon {
    position: relative;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.cart-icon:hover {
    color: var(--primary-color);
}

.cart-icon a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--danger-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    border: 2px solid white;
}

/* Main Menu */
.main-menu {
    padding: 10px 0;
    border-top: 1px solid var(--border-color);
}

.main-menu .menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 5px 0;
}

.main-menu a:hover {
    color: var(--primary-color);
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.main-menu a:hover::after {
    width: 100%;
}

/* ====================================
   HERO BANNER
   ==================================== */

.hero-banner-wrapper {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 60px 20px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.hero-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 300px;
}

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

.hero-text h1 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

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

.discount-badge {
    background: var(--danger-color);
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.shop-now-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(29, 209, 161, 0.3);
}

.shop-now-btn:hover {
    background: #16a085;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 209, 161, 0.4);
}

/* ====================================
   CATEGORIES SECTION
   ==================================== */

.categories-section {
    background: white;
    padding: 40px 20px;
    margin: 0;
}

.section-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--text-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.category-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.category-image {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    position: relative;
}

.category-card:hover .category-image {
    filter: brightness(0.9);
}

.category-name {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: white;
    background: var(--secondary-color);
    font-size: 14px;
}

/* ====================================
   FEATURED PRODUCTS SECTION
   ==================================== */

.featured-products-section {
    background: var(--light-gray);
    padding: 40px 20px;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
}

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--danger-color);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
}

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

.wishlist-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.product-title {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.product-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.product-price-wrapper .price {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
}

.price-current {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
}

.discount-percentage {
    background: var(--danger-color);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
}

.add-to-cart-link {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: auto;
    cursor: pointer;
}

.add-to-cart-link:hover {
    background: #16a085;
}

/* ====================================
   BANNERS SECTION
   ==================================== */

.banners-section {
    padding: 30px 20px;
    background: var(--light-gray);
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.banner-card {
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: background 0.3s;
}

.banner-card:hover::before {
    background: rgba(0, 0, 0, 0.3);
}

.banner-card h3 {
    font-size: 28px;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.banner-btn {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    align-self: flex-start;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.banner-btn:hover {
    background: #16a085;
    transform: translateY(-2px);
}

/* ====================================
   FOOTER
   ==================================== */

.footer {
    background: var(--secondary-color);
    color: white;
    margin-top: 60px;
}

.footer-top {
    padding: 40px 20px;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
}

.footer-section p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 13px;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 18px;
}

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

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ====================================
   SHOP PAGE
   ==================================== */

.shop-header {
    background: white;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.shop-header h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.shop-container {
    background: white;
    margin: 20px 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    padding: 20px 0;
}

.shop-sidebar {
    background: white;
    padding: 20px;
    border-radius: 6px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.shop-sidebar .widget {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.shop-sidebar .widget:last-child {
    border-bottom: none;
}

.shop-sidebar .widget-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-color);
}

.shop-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

/* ====================================
   SINGLE PRODUCT PAGE
   ==================================== */

.single-product-wrapper {
    padding: 20px;
    background: white;
}

.product-container {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 30px;
}

/* Product Images Section */
.product-images-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.timer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

.compare-btn,
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.compare-btn {
    right: 60px;
}

.compare-btn:hover,
.wishlist-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #ecf0f1;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

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

/* Product Details Section */
.product-details-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-details-section .product-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-color);
    line-height: 1.3;
    margin: 0;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.meta-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    min-width: 120px;
    font-weight: 500;
}

.meta-value {
    color: var(--text-color);
    font-weight: 500;
}

.stock-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.stock-badge.in-stock {
    background: var(--primary-color);
}

.stock-badge.out-of-stock {
    background: var(--danger-color);
}

.shipping-badge {
    display: inline-block;
    background: var(--warning-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Price Section */
.price-section {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.price-current {
    font-size: 36px;
    font-weight: bold;
    color: var(--text-color);
}

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

.original-price {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--danger-color);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}

.installment-info {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.5;
}

.payment-methods {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.payment-icon {
    background: white;
    padding: 6px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    border: 1px solid var(--border-color);
}

/* Action Section */
.action-section {
    padding: 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.promo-button {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.promo-button:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.promo-link {
    text-decoration: underline;
}

.delivery-info {
    background: #f0f7ff;
    padding: 12px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-color);
    margin: 15px 0;
    border-left: 4px solid var(--primary-color);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #f8f9fa;
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid var(--border-color);
    padding: 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}

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

.add-to-cart-btn {
    background: var(--primary-color);
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(29, 209, 161, 0.2);
}

.add-to-cart-btn:hover {
    background: #16a085;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 209, 161, 0.3);
}

.payment-info {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
}

.help-section {
    padding: 15px;
    background: #f0f7ff;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 15px;
    border-left: 4px solid var(--primary-color);
}

.help-section strong {
    color: var(--text-color);
}

/* Product Tabs */
.product-details-tabs {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    list-style: none;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
}

.tab-buttons li {
    flex: 1;
    min-width: 150px;
}

.tab-btn {
    width: 100%;
    padding: 15px 20px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

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

.tab-content {
    display: none;
    padding: 30px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.tab-content h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-color);
}

.tab-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.tab-content ul {
    margin-left: 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

.tab-content li {
    margin-bottom: 8px;
}

/* Related Products Section */
.related-products-section {
    padding: 40px 20px;
    background: var(--light-gray);
    margin-top: 40px;
}

.related-products-section .section-title {
    margin-bottom: 30px;
}

/* ====================================
   WOOCOMMERCE OVERRIDES
   ==================================== */

.woocommerce-Price-amount {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
}

.woocommerce-Price-currencySymbol {
    font-size: 16px;
}

del .woocommerce-Price-amount {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: normal;
}

ins {
    text-decoration: none;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    width: 100%;
}

.woocommerce ul.products li.product:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px;
    padding: 15px;
    margin: 0;
    color: var(--text-color);
    line-height: 1.4;
}

.woocommerce ul.products li.product .price {
    padding: 0 15px 15px;
    font-size: 18px;
    font-weight: bold;
}

.woocommerce ul.products li.product .button {
    display: block;
    margin: 0 15px 15px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 13px;
    font-weight: 600;
    border: none;
}

.woocommerce ul.products li.product .button:hover {
    background: #16a085;
}

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

@media (max-width: 768px) {
    /* Header */
    .header-top {
        flex-direction: column;
        gap: 10px;
    }

    .header-top-left,
    .header-top-right {
        width: 100%;
        justify-content: center;
    }

    .navbar-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .search-bar {
        width: 100%;
        max-width: 100%;
    }

    .navbar-right {
        width: 100%;
        justify-content: space-between;
    }

    .main-menu .menu {
        flex-direction: column;
        gap: 10px;
    }

    /* Hero Section */
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-banner-wrapper {
        padding: 40px 20px;
    }

    .hero-badges {
        flex-direction: column;
        gap: 15px;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .category-image {
        height: 120px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .product-image-wrapper {
        height: 180px;
    }

    /* Single Product */
    .product-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .main-image {
        height: 350px;
    }

    .product-details-section .product-title {
        font-size: 20px;
    }

    .price-current {
        font-size: 28px;
    }

    .tab-buttons li {
        min-width: 120px;
    }

    .tab-btn {
        padding: 12px 10px;
        font-size: 12px;
    }

    /* Shop */
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    /* Banners */
    .banners-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Header */
    .header-top {
        font-size: 11px;
        padding: 8px 15px;
    }

    .header-top-left,
    .header-top-right {
        gap: 10px;
    }

    .navbar {
        padding: 10px 15px;
    }

    .navbar-logo {
        font-size: 18px;
    }

    .search-bar form {
        flex-wrap: wrap;
    }

    .navbar-right {
        gap: 10px;
    }

    /* Hero */
    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .discount-badge {
        font-size: 18px;
        padding: 10px 15px;
    }

    .shop-now-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Categories & Products */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

    .category-image {
        height: 100px;
        font-size: 12px;
    }

    .category-name {
        padding: 10px;
        font-size: 12px;
    }

    .product-image-wrapper {
        height: 150px;
    }

    .product-info {
        padding: 10px;
    }

    .product-title {
        font-size: 12px;
    }

    /* Single Product */
    .main-image {
        height: 280px;
    }

    .product-details-section .product-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .price-current {
        font-size: 24px;
    }

    .quantity-selector {
        gap: 8px;
    }

    .quantity-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .add-to-cart-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Tabs */
    .tab-buttons li {
        min-width: 100px;
    }

    .tab-content {
        padding: 15px;
    }

    /* Footer */
    .footer-section h3 {
        font-size: 14px;
    }

    .footer-section a {
        font-size: 12px;
    }

    .social-links {
        gap: 10px;
        font-size: 16px;
    }

    .social-links a {
        width: 30px;
        height: 30px;
    }
}

/* ====================================
   PRINT STYLES
   ==================================== */

@media print {
    .header-top,
    .navbar,
    .footer,
    .wishlist-btn,
    .compare-btn,
    .add-to-cart-btn,
    .search-bar {
        display: none;
    }

    body {
        background: white;
    }

    .product-layout {
        box-shadow: none;
    }
}

/* ====================================
   ACCESSIBILITY
   ==================================== */

:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* ====================================
   DHL BANNER
   ==================================== */

.dhl-banner {
    background: #ffd700;
    padding: 12px 20px;
    text-align: center;
    font-weight: bold;
    color: #d63031;
    font-size: 16px;
    margin: 0;
}

.dhl-banner p {
    margin: 0;
    color: #d63031;
}

/* ====================================
   CATEGORIES SECTION UPDATED
   ==================================== */

.categories-section {
    background: var(--light-gray);
    padding: 40px 20px;
    margin: 0;
}

.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f39c12;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    z-index: 10;
}

.category-image {
    position: relative;
}

.category-placeholder {
    text-align: center;
}

/* ====================================
   FEATURED PRODUCTS SECTION UPDATED
   ==================================== */

.featured-products-section {
    background: var(--light-gray);
    padding: 40px 20px;
    margin: 0;
}

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

.section-header div {
    display: flex;
    flex-direction: column;
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 5px;
}

.view-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    align-self: flex-start;
    padding-top: 10px;
}

.view-all-link:hover {
    text-decoration: underline;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
}

/* ====================================
   BANNERS SECTION UPDATED
   ==================================== */

.banners-section {
    padding: 30px 20px;
    background: var(--light-gray);
    margin: 0;
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.banner-card {
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
    transition: background 0.3s;
}

.banner-card:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

.banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.banner-card h3 {
    font-size: 28px;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    line-height: 1.3;
}

.banner-btn {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    align-self: flex-start;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
    font-size: 14px;
}

.banner-btn:hover {
    background: #16a085;
    transform: translateY(-2px);
}

/* ====================================
   RESPONSIVE ADJUSTMENTS FOR HOMEPAGE
   ==================================== */

@media (max-width: 768px) {
    .dhl-banner {
        font-size: 14px;
        padding: 10px 15px;
    }

    .section-header {
        flex-direction: column;
        gap: 10px;
    }

    .view-all-link {
        align-self: flex-start;
        padding-top: 0;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .category-image {
        height: 140px;
    }

    .category-name {
        padding: 12px;
        font-size: 12px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .product-image-wrapper {
        height: 180px;
    }

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

    .banner-card {
        padding: 30px;
        min-height: 150px;
    }

    .banner-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-image {
        height: 100px;
        font-size: 11px;
    }

    .category-name {
        padding: 10px;
        font-size: 11px;
    }

    .new-badge {
        padding: 3px 6px;
        font-size: 10px;
    }

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

    .product-image-wrapper {
        height: 150px;
    }

    .product-title {
        font-size: 12px;
    }

    .product-price-wrapper {
        font-size: 13px;
    }

    .discount-percentage {
        font-size: 10px;
        padding: 2px 6px;
    }

    .banner-card {
        padding: 20px;
        min-height: 140px;
    }

    .banner-card h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .banner-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ====================================
   DHL TOP BANNER
   ==================================== */

.dhl-banner-top {
    background: #ffd700;
    padding: 15px 20px;
    margin: 0;
    border-radius: 6px;
}

.dhl-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.dhl-logo {
    width: 50px;
    height: auto;
}

.dhl-banner-top p {
    margin: 0;
    color: #d63031;
    font-weight: bold;
    font-size: 16px;
}

/* ====================================
   BRANDS SECTION
   ==================================== */

.brands-section {
    background: white;
    padding: 40px 20px;
    margin: 20px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.brand-logo {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    min-height: 80px;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ====================================
   FEATURED DEALS SECTION
   ==================================== */

.featured-deals-section {
    padding: 40px 20px;
    background: var(--light-gray);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.featured-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 20px;
}

.featured-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.featured-label {
    font-size: 11px;
    font-weight: bold;
    color: white;
    background: var(--warning-color);
    display: inline-block;
    padding: 4px 8px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.featured-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.featured-item {
    aspect-ratio: 1;
}

.featured-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    border-radius: 4px;
}

.featured-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.featured-product-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    border-radius: 4px;
    margin-bottom: 10px;
}

.featured-highlight {
    padding: 20px;
}

.featured-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
}

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

.featured-price .price {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
}

.featured-price sup {
    font-size: 12px;
}

.featured-price .original-price {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.featured-price .discount {
    background: var(--danger-color);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
}

.featured-offer {
    font-size: 12px;
    color: var(--text-muted);
}

.featured-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    width: 100%;
}

.featured-btn:hover {
    background: #16a085;
}

/* ====================================
   FOLEJA DEALS SECTION
   ==================================== */

.foleja-deals-section {
    padding: 40px 20px;
    background: var(--light-gray);
}

.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.deals-card {
    position: relative;
}

.timer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    z-index: 10;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    border-radius: 6px;
}

.furniture-placeholder {
    background: linear-gradient(135deg, #d4a89e 0%, #c89890 100%);
    min-height: 220px;
}

/* ====================================
   FURNITURE SECTION
   ==================================== */

.furniture-section {
    padding: 40px 20px;
    background: var(--light-gray);
}

.furniture-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.furniture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.furniture-card .product-image-wrapper {
    height: 220px;
}

/* ====================================
   RESPONSIVE - FEATURED DEALS
   ==================================== */

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

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

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

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

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }

    .brand-logo {
        font-size: 11px;
        padding: 15px 10px;
        min-height: 70px;
    }
}

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

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

    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .furniture-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .brand-logo {
        font-size: 10px;
        padding: 10px 8px;
        min-height: 60px;
    }

    .featured-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}
/* ====================================
   FOOTER STYLES
   ==================================== */

.footer {
    background: white;
    color: var(--text-color);
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
}

/* Footer Top Section */
.footer-top {
    padding: 40px 20px;
    background: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: bold;
    color: var(--text-color);
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.business-info {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

.business-info a {
    color: var(--text-muted);
    text-decoration: none;
}

.business-info a:hover {
    color: var(--primary-color);
}

/* Footer Logo Section */
.footer-logo-section {
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-color);
}

.newsletter-form {
    display: flex;
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: white;
    font-size: 13px;
    color: var(--text-muted);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

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

.newsletter-btn {
    background: var(--primary-color);
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s;
}

.newsletter-btn:hover {
    background: #16a085;
}

/* Social Links Footer */
.social-links-footer {
    display: flex;
    gap: 12px;
    font-size: 16px;
}

.social-links-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--light-gray);
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links-footer a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ====================================
   COMPANIES SECTION
   ==================================== */

.companies-section {
    padding: 30px 20px;
    background: var(--light-gray);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.companies-label {
    font-size: 14px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 20px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}

.company-logo {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    transition: all 0.3s;
}

.company-logo:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ====================================
   DHL FOOTER BANNER
   ==================================== */

.dhl-banner-footer {
    background: #ffd700;
    padding: 20px;
}

.dhl-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.dhl-logo-large {
    width: 80px;
    height: 40px;
}

.dhl-banner-footer p {
    margin: 0;
    color: #d63031;
    font-weight: bold;
    font-size: 18px;
}

/* ====================================
   PAYMENT SECTION
   ==================================== */

.payment-section {
    padding: 30px 20px;
    background: white;
    border-top: 1px solid var(--border-color);
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-label {
    font-size: 13px;
    font-weight: bold;
    color: var(--text-color);
    margin: 0;
    white-space: nowrap;
}

.payment-methods-footer {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-method {
    background: white;
    border: 1px solid var(--border-color);
    padding: 6px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    color: var(--text-muted);
}

.payment-method.visa {
    color: #1a1f71;
}

.payment-method.mastercard {
    color: #eb001b;
}

.copyright-text {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
    margin-left: auto;
}

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

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

    .footer-logo-section {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 30px 15px;
    }

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

    .footer-logo-section {
        grid-column: 1 / -1;
        flex-direction: column;
        gap: 15px;
    }

    .social-links-footer {
        justify-content: flex-start;
    }

    .newsletter-form {
        width: 100%;
    }

    .companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 10px;
    }

    .company-logo {
        font-size: 11px;
        padding: 10px;
        min-height: 50px;
    }

    .payment-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .copyright-text {
        margin-left: 0;
        margin-top: 10px;
    }

    .dhl-banner-footer p {
        font-size: 16px;
    }

    .dhl-logo-large {
        width: 60px;
        height: 30px;
    }

    .companies-label {
        font-size: 13px;
    }

    .payment-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 20px 10px;
    }

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

    .footer-section h3 {
        font-size: 13px;
    }

    .footer-section a {
        font-size: 12px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .newsletter-form {
        width: 100%;
    }

    .newsletter-input,
    .newsletter-btn {
        padding: 10px 12px;
        font-size: 12px;
    }

    .social-links-footer {
        gap: 10px;
    }

    .social-links-footer a {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .company-logo {
        font-size: 10px;
        padding: 8px;
        min-height: 45px;
    }

    .companies-label {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .dhl-banner-footer {
        padding: 15px 10px;
    }

    .dhl-banner-content {
        gap: 10px;
    }

    .dhl-banner-footer p {
        font-size: 14px;
    }

    .dhl-logo-large {
        width: 50px;
        height: 25px;
    }

    .payment-section {
        padding: 20px 10px;
    }

    .payment-content {
        gap: 10px;
    }

    .payment-method {
        padding: 5px 8px;
        font-size: 9px;
    }

    .payment-label {
        font-size: 11px;
    }

    .copyright-text {
        font-size: 11px;
    }
}
