/*
Theme Name: Velour
Theme URI: https://spiraclethemes.com/
Author: Spiracle Themes
Author URI: https://spiraclethemes.com/
Description: Premium men's and women's fashion WooCommerce theme with modern design, elegant layout, and powerful customization options.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Tags: e-commerce, blog, custom-colors, sticky-post, one-column, custom-logo, custom-menu, entertainment, featured-images, full-width-template, left-sidebar, right-sidebar, theme-options, threaded-comments, translation-ready, two-columns, footer-widgets
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: st-velour
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* ── CSS Variables ── */
:root {
    --brand-sky: #0072FF;
    --brand-secondary: #FF3D81;
    --brand-highlight: #FFB800;
    --brand-accent: #00A86B;
    --brand-dark: #111827;
    --brand-panel: #F8F9FA;
    --brand-card: #FFFFFF;
    --brand-text: #111827;
    --brand-muted: #6B7280;
    --brand-border: #E5E7EB;
    --brand-bg: #FAFBFC;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Sora', sans-serif;
    --font-hand: 'Caveat', cursive;
    --font-dm: 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', monospace;
    
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-slow: 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Global Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--brand-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--brand-bg);
    width: 100%;
}

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

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

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

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ── Scrollbar ── */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.12) transparent;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 3px;
}

/* ── Focus Styles ── */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 114, 255, 0.25);
}

/* ── Skip Link ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-dark);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    transition: top var(--transition-base);
}

.skip-link:focus {
    top: 16px;
    color: #fff;
}

/* ── Typography ── */
.font-display {
    font-family: var(--font-display);
}

.font-sans {
    font-family: var(--font-sans);
}

.font-hand {
    font-family: var(--font-hand);
}

.font-dm {
    font-family: var(--font-dm);
}

.font-mono {
    font-family: var(--font-mono);
}

/* ── Container ── */
.container {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

@media (min-width: 1024px) {
    .container {
        padding-left: 32px;
        padding-right: 32px;
    }
}

/* ── Utility Classes ── */
.text-brand-sky { color: var(--brand-sky); }
.text-brand-secondary { color: var(--brand-secondary); }
.text-brand-highlight { color: var(--brand-highlight); }
.text-brand-accent { color: var(--brand-accent); }
.text-brand-dark { color: var(--brand-dark); }
.text-brand-muted { color: var(--brand-muted); }
.text-white { color: #fff; }

.bg-brand-sky { background-color: var(--brand-sky); }
.bg-brand-secondary { background-color: var(--brand-secondary); }
.bg-brand-highlight { background-color: var(--brand-highlight); }
.bg-brand-accent { background-color: var(--brand-accent); }
.bg-brand-dark { background-color: var(--brand-dark); }
.bg-brand-bg { background-color: var(--brand-bg); }
.bg-brand-card { background-color: var(--brand-card); }
.bg-white { background-color: #fff; }

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

/* ── Card Hover Effect ── */
.card-hover {
    transition: all var(--transition-base);
}

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

/* ── Image Zoom Effect ── */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform var(--transition-slow);
}

.img-zoom:hover img {
    transform: scale(1.06);
}

/* ── Announcement Bar ── */
.announcement-bar {
    background: var(--brand-dark);
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 110;
    padding: 0;
}

/* Reset widget wrapper inside announcement bar */
.announcement-bar .widget {
    margin: 0;
    padding: 0;
}

.announcement-bar .widget-title {
    display: none;
}

/* Widget output styles */
.velour-announcement-bar-widget {
    padding: 10px 0;
}

.velour-announcement-marquee {
    overflow: hidden;
    white-space: nowrap;
}

.velour-announcement-content {
    display: inline-flex;
    animation: velour-marquee 40s linear infinite;
}

.velour-announcement-content:hover {
    animation-play-state: paused;
}

@keyframes velour-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.velour-announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 32px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.velour-announcement-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-size: 14px;
    line-height: 1;
}

.velour-announcement-text {
    white-space: nowrap;
}

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--brand-border);
    transition: all var(--transition-base);
}

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

@media (min-width: 1024px) {
    .header-main {
        height: 72px;
    }
}

.site-branding {
    display: flex;
    flex-direction: column;
}

.site-logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--brand-dark);
}

.site-logo span {
    color: var(--brand-sky);
}

.site-description {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    color: var(--brand-muted);
    letter-spacing: 0.02em;
    margin-top: 2px;
    line-height: 1.2;
}

/* Custom Logo Image */
.site-branding .custom-logo-link {
    display: block;
}

.site-branding .custom-logo {
    max-height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .site-branding .custom-logo {
        max-height: 44px;
        max-width: 200px;
    }
}

/* Navigation */
.main-navigation {
    display: none;
}

@media (min-width: 1024px) {
    .main-navigation {
        display: flex;
        align-items: center;
    }
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--brand-muted);
    transition: color var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--brand-dark);
}

/* Mega Menu */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 12px;
    z-index: 100;
}

.nav-menu li:hover .mega-menu {
    display: block;
}

.mega-menu-inner {
    background: var(--brand-card);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    width: 700px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.mega-menu-col h4 {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-sky);
    font-weight: 600;
    margin: 0 0 16px;
}

.mega-menu-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu-col li {
    margin-bottom: 10px;
}

.mega-menu-col a {
    font-size: 14px;
    color: var(--brand-muted);
    transition: color var(--transition-fast);
}

.mega-menu-col a:hover {
    color: var(--brand-dark);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (min-width: 1024px) {
    .header-actions {
        gap: 12px;
    }
}

.header-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--brand-muted);
    transition: all var(--transition-fast);
    position: relative;
    border-radius: 50%;
    background: transparent;
}

.header-action-btn:hover {
    color: var(--brand-dark);
    background: rgba(17, 24, 39, 0.05);
}

.header-action-btn:active {
    transform: scale(0.95);
}

.header-action-btn svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.header-action-btn:hover svg {
    transform: scale(1.1);
}

.header-action-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .header-action-desktop {
        display: flex;
    }
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--brand-sky);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.wishlist-count {
    background: var(--brand-secondary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    color: var(--brand-dark);
    padding: 8px;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ── Toast Notification ── */
.toast-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-xl);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition-base);
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    flex-shrink: 0;
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-dark);
}

/* ── Drawer Styles ── */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 130;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.drawer {
    position: fixed;
    top: 0;
    height: 100%;
    background: var(--brand-card);
    z-index: 135;
    transition: transform var(--transition-base);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.08);
}

.drawer.right {
    right: 0;
    width: 100%;
    max-width: 448px;
    transform: translateX(100%);
    border-left: 1px solid var(--brand-border);
}

.drawer.left {
    left: 0;
    width: 100%;
    max-width: 384px;
    transform: translateX(-100%);
    border-right: 1px solid var(--brand-border);
}

.drawer.open {
    transform: translateX(0);
}

.drawer-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--brand-border);
}

.drawer-title {
    font-size: 18px;
    font-weight: 600;
}

.drawer-close {
    color: #9ca3af;
    transition: color var(--transition-fast);
}

.drawer-close:hover {
    color: var(--brand-dark);
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--brand-border);
}

/* Cart Drawer Items */
.cart-drawer-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
}

.cart-drawer-item:last-child {
    margin-bottom: 0;
}

.cart-item-image {
    width: 80px;
    height: 96px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    background: #f3f4f6;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cart-item-name {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.cart-item-meta {
    font-size: 12px;
    color: var(--brand-muted);
    margin-top: 4px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-sm);
}

.qty-btn {
    padding: 4px 8px;
    font-size: 12px;
    color: var(--brand-muted);
}

.qty-btn:hover {
    color: var(--brand-dark);
}

.qty-value {
    font-size: 12px;
    font-weight: 500;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 600;
}

/* Cart Item Remove Button */
.cart-item-remove {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--brand-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    transition: all var(--transition-fast);
    opacity: 0;
}

.cart-drawer-item:hover .cart-item-remove {
    opacity: 1;
}

.cart-item-remove:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
}

.cart-empty-state {
    text-align: center;
    padding: 40px 20px;
}

.cart-empty-state p {
    color: var(--brand-muted);
    margin: 16px 0 24px;
}

.cart-shipping-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius-lg);
    background: rgba(0, 114, 255, 0.05);
    border: 1px solid rgba(0, 114, 255, 0.2);
    margin-bottom: 16px;
    color: var(--brand-sky);
    font-size: 12px;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 16px;
}

.subtotal-label {
    color: var(--brand-muted);
}

.subtotal-value {
    font-weight: 600;
}

.btn-checkout {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: var(--radius-xl);
    background: var(--brand-dark);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: background var(--transition-fast);
}

.btn-checkout:hover {
    background: rgba(17, 24, 39, 0.85);
    color: #fff;
}

.cart-tax-note {
    text-align: center;
    font-size: 12px;
    color: var(--brand-muted);
    margin-top: 12px;
}

/* Mobile Navigation */
.mobile-nav {
    padding: 24px;
    flex: 1;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid transparent;
}

.mobile-nav-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 300;
    color: var(--brand-dark);
    transition: color var(--transition-fast);
}

.mobile-nav-menu a:hover {
    color: var(--brand-sky);
}

.mobile-nav-footer {
    padding: 24px;
    border-top: 1px solid var(--brand-border);
    display: flex;
    gap: 24px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--brand-muted);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--brand-dark);
}

/* ── Search Overlay ── */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 96px;
}

.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.search-overlay-inner {
    width: 100%;
    max-width: 640px;
    padding: 0 24px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 2px solid rgba(0, 114, 255, 0.4);
    padding-bottom: 16px;
    position: relative;
}

.search-input-wrapper svg:first-child {
    width: 24px;
    height: 24px;
    color: var(--brand-sky);
    flex-shrink: 0;
}

.search-input-wrapper .search-form {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-input-wrapper .search-field {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 24px;
    font-weight: 300;
    color: var(--brand-dark);
    outline: none;
    padding: 8px 0;
    font-family: var(--font-sans);
    line-height: 1.2;
    box-shadow: none !important;
}

.search-input-wrapper .search-field:focus {
    box-shadow: none !important;
}

.search-input-wrapper .search-field::placeholder {
    color: #d1d5db;
    font-weight: 300;
}

.search-input-wrapper .search-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-sky);
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    font-family: var(--font-sans);
}

.search-input-wrapper .search-submit:hover {
    background: rgba(0, 114, 255, 0.85);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
}

.search-input-wrapper .search-submit:active {
    transform: translateY(0);
}

.search-input-wrapper .search-submit svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.search-input-wrapper .search-submit-text {
    display: inline-block;
}

.search-close-btn {
    color: #9ca3af;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
}

.search-close-btn:hover {
    color: var(--brand-dark);
    background: rgba(0, 0, 0, 0.05);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.search-trending {
    margin-top: 32px;
}

.search-trending-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-muted);
    margin-bottom: 16px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-tag {
    padding: 8px 16px;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--brand-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-tag:hover {
    border-color: rgba(0, 114, 255, 0.5);
    color: var(--brand-sky);
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    background: var(--brand-dark);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-base);
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.2);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: rgba(17, 24, 39, 0.85);
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    background: #fff;
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--brand-border);
    transition: all var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.btn-secondary:hover {
    background: #f9fafb;
}

/* ── Section Styles ── */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 20px;
    }
}

.section-title-lg {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0;
}

@media (min-width: 1024px) {
    .section-title-lg {
        font-size: 36px;
    }
}

.section-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-sky);
    font-weight: 600;
    margin-bottom: 8px;
}

.section-label-secondary {
    color: var(--brand-secondary);
}

.section-label-highlight {
    color: var(--brand-highlight);
}

.section-label-accent {
    color: var(--brand-accent);
}

.section-link {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-sky);
    font-weight: 600;
}

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

/* ── Features Section ── */
.features-section {
    padding: 40px 0;
    background: var(--brand-bg);
    border-top: 1px solid var(--brand-border);
    border-bottom: 1px solid var(--brand-border);
}

@media (min-width: 1024px) {
    .features-section {
        padding: 56px 0;
    }
}

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

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.feature-icon-sky {
    background: rgba(0, 114, 255, 0.1);
    color: var(--brand-sky);
}

.feature-icon-secondary {
    background: rgba(255, 61, 129, 0.1);
    color: var(--brand-secondary);
}

.feature-icon-highlight {
    background: rgba(255, 184, 0, 0.1);
    color: var(--brand-highlight);
}

.feature-icon-accent {
    background: rgba(0, 168, 107, 0.1);
    color: var(--brand-accent);
}

.feature-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
}

.feature-desc {
    font-size: 12px;
    color: var(--brand-muted);
    margin: 0;
}

/* ── Newsletter Section ── */
.newsletter-section {
    padding: 64px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .newsletter-section {
        padding: 96px 0;
    }
}

.newsletter-bg-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: rgba(0, 114, 255, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.newsletter-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.newsletter-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-sky);
    font-weight: 600;
    margin-bottom: 16px;
}

.newsletter-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--brand-dark);
    margin: 0 0 16px;
}

@media (min-width: 1024px) {
    .newsletter-title {
        font-size: 48px;
    }
}

.newsletter-desc {
    font-size: 16px;
    color: var(--brand-muted);
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 32px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border-radius: var(--radius-full);
    background: var(--brand-bg);
    border: 1px solid var(--brand-border);
    font-size: 14px;
    color: var(--brand-dark);
    font-family: var(--font-sans);
}

.newsletter-input::placeholder {
    color: rgba(107, 114, 128, 0.5);
}

.newsletter-input:focus {
    border-color: rgba(0, 114, 255, 0.5);
}

.newsletter-btn {
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.15);
}

.newsletter-privacy {
    font-size: 12px;
    color: rgba(107, 114, 128, 0.5);
    margin-top: 16px;
}

.newsletter-privacy a {
    text-decoration: underline;
}

.newsletter-privacy a:hover {
    color: var(--brand-muted);
}

/* ── Footer ── */
.site-footer {
    background: var(--brand-dark);
    padding: 64px 0 32px;
}

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

/* 2 Column Footer */
@media (min-width: 768px) {
    .footer-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-cols-2 {
        grid-template-columns: 2fr 1fr;
    }
}

/* 3 Column Footer */
@media (min-width: 768px) {
    .footer-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-cols-3 {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* 4 Column Footer */
@media (min-width: 768px) {
    .footer-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-cols-4 {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* 5 Column Footer */
@media (min-width: 768px) {
    .footer-cols-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-cols-5 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

/* First footer column (brand) spans 2 cols on mobile */
.footer-brand-col {
    grid-column: span 1;
}

@media (max-width: 767px) {
    .footer-brand-col {
        grid-column: 1 / -1;
    }
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    display: inline-block;
}

.footer-logo span {
    color: var(--brand-sky);
}

.footer-brand-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    line-height: 1.7;
    margin: 16px 0 0;
    max-width: 384px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.social-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* Footer Widget Columns */
.footer-widget-col {
    color: #fff;
}

.footer-widget-col .widget-title {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-widget-col .section {
    margin-bottom: 0;
}

/* Footer Brand Column - widget overrides */
.footer-brand-col .section {
    margin-bottom: 0;
    padding: 0;
}

.footer-brand-col .widget {
    margin: 0;
    padding: 0;
}

.footer-brand-col .widget-title {
    display: none;
}

/* Footer About Widget inside brand column */
.footer-brand-col .footer-brand {
    grid-column: auto;
}

.footer-brand-col .footer-logo-wrap {
    margin-bottom: 0;
}

.footer-brand-col .footer-logo-wrap img {
    max-height: 40px;
    width: auto;
}

.footer-brand-col .footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    line-height: 1.7;
    margin: 16px 0 0;
}

.footer-brand-col .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-brand-col .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.footer-brand-col .social-icon:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* Footer Nav Menu Widget inside widget columns */
.footer-widget-col .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget-col .footer-links li {
    margin-bottom: 8px;
}

.footer-widget-col .footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition-fast);
}

.footer-widget-col .footer-links a:hover {
    color: #fff;
}

.footer-col-title {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin: 0 0 16px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition-fast);
}

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

.footer-sale-link {
    color: var(--brand-secondary) !important;
    font-weight: 500;
}

.footer-sale-link:hover {
    color: rgba(255, 61, 129, 0.8) !important;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 1024px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    margin: 0;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-copyright a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-credits {
    color: rgba(255, 255, 255, 0.2);
}

.footer-payments {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* ── Product Card ── */
.product-card {
    background: var(--brand-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--brand-border);
    transition: all var(--transition-base);
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10;
    background: var(--brand-secondary);
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-badge.new {
    background: var(--brand-highlight);
    color: var(--brand-dark);
}

.product-badge.bestseller {
    background: var(--brand-sky);
}

.product-badge.eco {
    background: var(--brand-accent);
}

.product-wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-muted);
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-wishlist-btn:hover {
    color: var(--brand-secondary);
}

.product-wishlist-btn.active {
    color: var(--brand-secondary);
}

.product-image-wrapper {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f3f4f6;
}

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

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

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

.product-info {
    padding: 12px;
}

@media (min-width: 1024px) {
    .product-info {
        padding: 16px;
    }
}

.product-brand {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-muted);
    margin: 0;
}

.product-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-dark);
    margin: 4px 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-title a {
    color: var(--brand-dark);
}

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

.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.product-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-secondary);
}

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

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

.product-rating-count {
    font-size: 10px;
    color: var(--brand-muted);
    margin-left: 4px;
}

/* Quick View Overlay */
.product-quick-view {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.product-card:hover .product-quick-view {
    opacity: 1;
    pointer-events: auto;
}

.btn-quick-view {
    padding: 10px 20px;
    background: var(--brand-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-quick-view:hover {
    background: rgba(17, 24, 39, 0.85);
    color: #fff;
}

/* ── Filter Chips ── */
.filter-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--brand-border);
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all var(--transition-fast);
    font-weight: 500;
    color: var(--brand-muted);
    cursor: pointer;
}

.filter-chip.active {
    background: var(--brand-sky);
    color: #fff;
    border-color: var(--brand-sky);
}

.filter-chip:hover:not(.active) {
    border-color: var(--brand-dark);
    color: var(--brand-dark);
}

/* ── Search Overlay Responsive ── */
@media (max-width: 640px) {
    .search-overlay {
        padding-top: 80px;
    }
    
    .search-overlay-inner {
        padding: 0 16px;
    }
    
    .search-input-wrapper {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .search-input-wrapper .search-field {
        font-size: 18px;
        padding: 6px 0;
    }
    
    .search-input-wrapper .search-submit {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .search-input-wrapper .search-submit svg {
        width: 16px;
        height: 16px;
    }
    
    .search-input-wrapper .search-submit-text {
        display: none;
    }
    
    .search-input-wrapper svg:first-child {
        width: 20px;
        height: 20px;
    }
    
    .search-trending {
        margin-top: 24px;
    }
    
    .search-tags {
        gap: 6px;
    }
    
    .search-tag {
        padding: 6px 12px;
        font-size: 13px;
    }
}
