/*
Theme Name: BuyAnyTech Theme
Theme URI: https://buyanytech.com
Author: BuyAnyTech
Author URI: https://buyanytech.com
Description: A modern e-commerce theme for BuyAnyTech, inspired by MPB.com design with full WooCommerce integration
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: buyanytech
Tags: e-commerce, woocommerce, shop, marketplace, buy-sell, tech

This theme is designed specifically for BuyAnyTech, a WooCommerce-powered marketplace for buying and selling tech products.
*/

/* ===================================
   CSS Variables - MPB.com Actual Colors
   =================================== */
:root {
    /* Primary Brand Colors - FROM MPB.COM */
    --primary-color: #0d0033;        /* Dark navy/purple (header, sections) */
    --secondary-color: #1a0f3d;      /* Slightly lighter purple */
    --accent-color: #ff00c7;         /* Bright magenta/pink (MPB brand color) */
    --accent-hover: #e600b3;         /* Darker magenta on hover */
    --accent-glow: #ff1ad4;          /* Pink "glow" accent */

    /* UI Colors */
    --text-primary: #000000;         /* Black for main text */
    --text-secondary: #666666;       /* Gray for secondary text */
    --text-light: #999999;           /* Light gray */
    --text-white: #ffffff;           /* White text on dark backgrounds */
    --border-color: #e5e5e5;         /* Light border */
    --background-light: #f5f5f5;     /* Light gray background */
    --background-white: #ffffff;     /* White background */
    --background-dark: #0d0033;      /* Dark navy/purple background */

    /* Semantic Colors */
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --info-color: #17a2b8;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-headings: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Global Anchor Styles */
    --link-color: #ff18bd;
    --link-weight: 600;
    --link-size: 1.8rem;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Container */
    --container-max-width: 1400px;
    --container-padding: 1.5rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
}

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

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

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

.site-content {
    min-height: 60vh;
    padding: var(--spacing-lg) 0;
}

/* ===================================
   Header - MPB.com Style (Dark Navy/Purple)
   =================================== */
.site-header {
    background: var(--background-dark);  /* Dark navy/purple like MPB */
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.header-top {
    background: rgba(255,255,255,0.05);  /* Subtle lighter purple */
    padding: var(--spacing-xs) 0;
    font-size: 0.875rem;
    color: var(--text-white);
}

.header-top a {
    color: var(--text-white);
}

.header-top a:hover {
    color: var(--accent-color);
}

.header-main {
    padding: var(--spacing-sm) 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

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

/* ===================================
   Navigation
   =================================== */
.main-navigation {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex: 1;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    display: block;
    transition: var(--transition-fast);
    color: var(--text-white);  /* White text on dark header */
}

.nav-menu a:hover {
    color: var(--accent-color);  /* Pink on hover like MPB */
}

/* Dropdown Menu */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
    z-index: 100;
}

.nav-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    display: block;
}

.nav-menu .sub-menu a {
    padding: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.nav-menu .sub-menu li:last-child a {
    border-bottom: none;
}

/* ===================================
   Header Actions
   =================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.header-search,
.header-account,
.header-cart {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    cursor: pointer;
    color: var(--text-white);  /* White icons/text */
}

.header-search:hover,
.header-account:hover,
.header-cart:hover {
    background: rgba(255,255,255,0.1);  /* Subtle hover on dark background */
}

.header-actions svg {
    stroke: var(--text-white);  /* White SVG icons */
}

.cart-count {
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 1rem;
    line-height: 1.5;
}

.btn-primary {
    background: var(--primary-color);  /* Dark navy like MPB buttons */
    color: var(--text-white);
    border-radius: 50px;  /* Pill-shaped buttons like MPB */
    padding: 0.875rem 2rem;
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

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

.btn-outline:hover {
    background: var(--text-primary);
    color: white;
}

/* ===================================
   Footer - MPB.com Dark Style
   =================================== */
.site-footer {
    background: var(--primary-color);  /* Dark navy/purple like MPB */
    color: var(--text-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-xxl);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-widget h3 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

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

.footer-widget ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-widget a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}

.footer-widget a:hover {
    color: var(--accent-color);  /* Pink hover like MPB */
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

/* ===================================
   Mobile Menu Toggle
   =================================== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition-base);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: var(--spacing-sm);
    }

    .nav-menu a {
        padding: var(--spacing-xs);
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .mobile-menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--background-white);
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: var(--transition-base);
        z-index: 1001;
    }

    .main-navigation.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }

    .nav-menu a {
        width: 100%;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.hidden { display: none; }
.visible { display: block; }

/* ===================================
   Front Page Sections
   =================================== */
.front-page section {
    padding: var(--spacing-xxl) 0;
}

/* Hero Section - MPB.com Style */
.hero-section {
    background: var(--background-light);  /* Light background like MPB */
    color: var(--text-primary);
    text-align: left;  /* Left-aligned like MPB */
    padding: var(--spacing-xxl) 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-title {
    font-size: 4rem;  /* Large, bold like MPB */
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--accent-color);  /* BRIGHT MAGENTA like "Buy, sell or trade" */
    line-height: 1.1;
    text-transform: lowercase;  /* MPB uses lowercase */
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-primary);  /* Black text */
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-start;  /* Left-aligned */
    flex-wrap: wrap;
}

.hero-buttons .btn {
    background: var(--primary-color);  /* Dark navy buttons like MPB */
    color: var(--text-white);
    padding: 1rem 2.5rem;
    border-radius: 50px;  /* Rounded pill buttons */
    font-weight: 600;
}

.hero-buttons .btn:hover {
    background: var(--secondary-color);
}

/* "From snow to glow" Dark Section - MPB Style */
.featured-section-dark {
    background: var(--primary-color);  /* Dark navy/purple like MPB */
    color: var(--text-white);
    padding: var(--spacing-xxl) 0;
}

.featured-section-dark h2 {
    color: var(--text-white);
}

.featured-section-dark .section-title span {
    color: var(--accent-color);  /* "glow" in pink */
}

/* Categories Section */
.categories-section {
    background: var(--background-white);  /* White background */
}

.section-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-xl);
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.category-card {
    background: var(--background-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

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

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

.category-name {
    padding: var(--spacing-md);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.category-count {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Trust Section */
.trust-section {
    background: var(--background-white);
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.trust-item {
    text-align: center;
    padding: var(--spacing-lg);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    color: var(--accent-color);
}

.trust-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.trust-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-modal-content {
    background: var(--background-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    position: relative;
}

.search-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
}

.search-close:hover {
    color: var(--text-primary);
}

.search-form {
    display: flex;
    gap: var(--spacing-sm);
}

.search-field {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

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

.search-submit {
    padding: 1rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
}

.search-submit:hover {
    background: var(--accent-hover);
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
}

/* Notification */
.notification {
    position: fixed;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--background-white);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    opacity: 0;
    transform: translateX(400px);
    transition: var(--transition-base);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid var(--success-color);
}

.notification-error {
    border-left: 4px solid var(--error-color);
}

.notification-info {
    border-left: 4px solid var(--info-color);
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Header Enhancements */
.site-header.scrolled {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.site-header.header-hidden {
    transform: translateY(-100%);
    transition: var(--transition-base);
}

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

/* Footer Enhancements */
.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    margin: 0;
    padding: 0;
}

/* Quantity Buttons */
.qty-wrapper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 36px;
    height: 36px;
    background: var(--background-light);
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background: var(--accent-color);
    color: white;
}

.qty-wrapper input.qty {
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    width: 60px;
    text-align: center;
    padding: 0.5rem;
    height: 36px;
}

/* Form Error States */
.form-row input.error,
.form-row textarea.error,
.form-row select.error {
    border-color: var(--error-color);
}

/* Loading State */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
    .product-categories,
    .trust-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .product-categories,
    .trust-features {
        grid-template-columns: 1fr;
    }

    .footer-info {
        flex-direction: column;
        text-align: center;
    }

    #back-to-top {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
        width: 40px;
        height: 40px;
    }

    .notification {
        top: var(--spacing-sm);
        right: var(--spacing-sm);
        left: var(--spacing-sm);
    }
}

/* ===================================
   Custom Header Styles
   =================================== */

/* Notice Bar */
.header-notice-bar {
    background-color: #ff18bd;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.header-notice-bar p {
    margin: 0;
}

/* Header Main - New Layout */
.header-main {
    background: var(--primary-color);
    padding: 15px 0;
}

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

/* Hamburger Menu with Circle */
.menu-toggle-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.menu-toggle-circle:hover {
    background-color: var(--accent-color);
    color: white;
}

.menu-toggle-circle i {
    font-size: 20px;
    color: var(--primary-color);
}

.menu-toggle-circle:hover i {
    color: white;
}

/* Logo */
.site-logo {
    flex-shrink: 0;
}

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

.site-title {
    margin: 0;
    font-size: 24px;
}

.site-title a {
    color: white;
    text-decoration: none;
}

/* Large Search Box */
.header-search-large {
    flex: 1;
    max-width: 600px;
}

.header-search-large .search-form {
    display: flex;
    position: relative;
}

.header-search-large .search-field {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
}

.header-search-large .search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.header-search-large .search-submit:hover {
    background: var(--accent-hover);
}

.header-search-large .search-submit i {
    color: white;
    font-size: 16px;
}

/* Header Spacer */
.header-spacer {
    width: 2px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

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

/* User Icon with Circle */
.user-toggle-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.user-toggle-circle:hover {
    background-color: var(--accent-color);
}

.user-toggle-circle i {
    font-size: 18px;
    color: var(--primary-color);
}

.user-toggle-circle:hover i {
    color: white;
}

/* Cart Icon with Circle */
.cart-toggle-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    text-decoration: none;
}

.cart-toggle-circle:hover {
    background-color: var(--accent-color);
}

.cart-toggle-circle i {
    font-size: 18px;
    color: var(--primary-color);
}

.cart-toggle-circle:hover i {
    color: white;
}

.header-cart {
    position: relative;
}

.header-cart .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Sliding Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.side-menu.active {
    left: 0;
}

.side-menu-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
}

.side-menu-close {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-primary);
}

.side-menu-close:hover {
    color: var(--accent-color);
}

.side-navigation {
    padding: 20px;
}

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

.side-nav-menu li {
    margin-bottom: 10px;
}

.side-nav-menu a {
    display: block;
    padding: 12px 15px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.side-nav-menu a:hover {
    background-color: var(--background-light);
    color: var(--accent-color);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Login/Register Popup */
.login-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: white;
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-width: 450px;
    width: 90%;
    overflow: hidden;
}

.login-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.login-popup-content {
    position: relative;
    padding: 60px 40px 40px;
}

/* Curved top section */
.login-popup-curve {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    z-index: 1;
}

.login-popup-close {
    position: absolute !important;
    top: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: white !important;
    border: 2px solid #e5e5e5 !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    cursor: pointer !important;
    color: #666 !important;
    z-index: 100 !important;
    transition: all 0.3s ease !important;
}

.login-popup-close:hover {
    border-color: #ff18bd !important;
    color: #ff18bd !important;
}

.login-heading {
    margin: 0 0 10px 0;
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}

.login-register-text {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-secondary);
    font-size: 14px;
}

.join-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

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

/* Login Form */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition-base);
    font-family: var(--font-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-login-submit {
    width: 100%;
    padding: 14px 30px;
    background: var(--primary-color);
    color: white;
    border: 2px solid #ff18bd;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    margin-top: 10px;
}

.btn-login-submit:hover {
    background: var(--secondary-color);
    border-color: #ff18bd;
}

/* User Menu for Logged-in Users */
.user-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.user-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.user-menu a:hover {
    background-color: var(--background-light);
    color: var(--accent-color);
}

.user-menu i {
    width: 20px;
}

/* Login Popup Overlay */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.login-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles for New Header */
@media (max-width: 768px) {
    .header-search-large {
        max-width: 100%;
        flex: 1;
    }

    .header-spacer {
        display: none;
    }

    .menu-toggle-circle,
    .user-toggle-circle,
    .cart-toggle-circle {
        width: 40px;
        height: 40px;
    }

    .menu-toggle-circle i,
    .user-toggle-circle i,
    .cart-toggle-circle i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header-content {
        gap: 10px;
    }

    .site-logo img {
        max-height: 35px;
    }

    .header-search-large .search-field {
        padding: 10px 45px 10px 15px;
        font-size: 14px;
    }

    .header-search-large .search-submit {
        width: 35px;
        height: 35px;
    }
}

/* ===================================
   Hero Section Updates
   =================================== */
.hero-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ff18bd;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #0d0033;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    max-width: 600px;
}

.hero-buttons .btn {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.hero-buttons .btn-primary {
    background: #0d0033;
    color: white;
}

.hero-buttons .btn-primary:hover {
    background: #1a0f3d;
}

.hero-buttons .btn-outline {
    background: #0d0033;
    color: white;
}

.hero-buttons .btn-outline:hover {
    background: #1a0f3d;
}

/* ===================================
   Product Slider Section
   =================================== */
.products-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 70px;
}

.products-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-slider::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.slider-product-card {
    flex: 0 0 auto;
}

.slider-product-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover,
.slider-next:hover {
    background: #f5f5f5;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .slider-header {
        flex-direction: column !important;
    }

    .trustpilot-widget {
        margin-top: 20px;
        text-align: left !important;
    }

    .products-slider-wrapper {
        padding: 0 20px;
    }
}

/* ===================================
   Global Anchor Tag Styles
   =================================== */
a {
    color: #ff18bd;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #ff18bd;
    transition: all 0.3s ease;
}

a:hover {
    color: #e600b3;
    text-decoration-color: #e600b3;
}

/* Exception: Product titles, images, and buttons should not have underline */
.hero-buttons a,
.just-added-product-card h3 a,
.just-added-product-card .product-image a,
.slider-product-card h3 a,
.slider-product-card .product-image a,
.blog-card h3 a,
.blog-card .blog-image a,
.add-to-cart-btn,
.wishlist-btn,
.filter-btn,
.site-logo a,
.menu-toggle-circle,
.user-toggle-circle,
.cart-toggle-circle,
button a {
    text-decoration: none !important;
}

/* ===================================
   Single Product Page Styles
   =================================== */

/* Hide default WooCommerce elements */
.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary,
.single-product .woocommerce-tabs,
.single-product .related,
.single-product .upsells {
    display: none !important;
}

/* Force single column for WooCommerce default wrapper */
.single-product div.product {
    display: block !important;
}

/* Grid Layout */
.single-product-page .product-layout-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    background: white !important;
    padding: 40px !important;
    border-radius: 12px !important;
}

/* Product Gallery - Left Column */
.single-product-page .product-gallery-section {
    width: 100% !important;
}

/* Slick Product Gallery */
.slick-product-gallery {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.product-slider-main {
    margin-bottom: 20px;
    max-width: 100%;
    overflow: hidden;
}

.product-slider-main .slick-list,
.product-slider-main .slick-track {
    max-width: 100% !important;
}

.product-slider-main .slider-item {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    max-height: 500px;
    overflow: hidden;
}

.product-slider-main .slider-item img {
    max-width: 100% !important;
    max-height: 460px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    margin: 0 auto !important;
}

.product-slider-nav {
    margin: 0 -5px;
}

.product-slider-nav .nav-item {
    padding: 0 5px;
    cursor: pointer;
    outline: none;
}

.product-slider-nav .nav-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-slider-nav .slick-current .nav-item img,
.product-slider-nav .nav-item:hover img {
    border-color: #0d0033;
}

/* Slick Slider Arrow Customization */
.product-slider-main .slick-prev,
.product-slider-main .slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-slider-main .slick-prev {
    left: 15px;
}

.product-slider-main .slick-next {
    right: 15px;
}

.product-slider-main .slick-prev:hover,
.product-slider-main .slick-next:hover {
    background: white;
}

.product-slider-main .slick-prev:before,
.product-slider-main .slick-next:before {
    color: #0d0033;
    opacity: 1;
    font-size: 20px;
}

/* Hide WooCommerce default gallery */
.single-product-page .woocommerce-product-gallery {
    display: none !important;
}

/* Product Info - Right Column */
.single-product-page .product-info-section {
    width: 100%;
}

.single-product-page .product-info-section h1 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #0d0033 !important;
}

/* Add to Cart Button */
.single-product-page .single_add_to_cart_button {
    width: 100% !important;
    padding: 18px 40px !important;
    background: #0d0033 !important;
    color: white !important;
    border: none !important;
    border-radius: 30px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
}

.single-product-page .single_add_to_cart_button:hover {
    background: #1a0f3d !important;
}

.single-product-page .quantity {
    display: none !important;
}

.single-product-page .cart {
    margin-bottom: 0 !important;
}

/* Override WooCommerce default single product layout */
.single-product div.product {
    display: block !important;
}

.single-product-page .product-gallery-section {
    grid-column: 1 !important;
}

.single-product-page .product-info-section {
    grid-column: 2 !important;
}

/* Hide WooCommerce default tabs and related */
.single-product-page .woocommerce-tabs {
    display: none !important;
}

.single-product-page .related.products {
    display: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .single-product-page .product-layout-grid {
        grid-template-columns: 1fr !important;
    }

    .single-product-page .product-gallery-section,
    .single-product-page .product-info-section {
        grid-column: 1 !important;
    }

    .single-product-page .product-info-section h1 {
        font-size: 2rem !important;
    }
}

/* ===================================
   Comprehensive Responsive Styles
   =================================== */

/* Tablet Responsive (max-width: 1024px) */
@media (max-width: 1024px) {
    :root {
        --container-padding: 1.25rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    /* Products Sliders */
    .products-slider-wrapper,
    .just-added-slider-wrapper {
        padding: 0 50px;
    }

    .slider-prev,
    .slider-next,
    .just-added-prev,
    .just-added-next {
        width: 45px;
        height: 45px;
    }

    /* Blog Grid */
    .original-content-section [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Featured Slider Section */
    .slider-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .trustpilot-widget {
        text-align: left !important;
        margin-top: 20px;
    }
}

/* Mobile Landscape (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    /* Header */
    .header-content {
        gap: 10px;
    }

    .site-logo img {
        max-height: 40px;
    }

    .header-search-large {
        max-width: 100%;
    }

    .header-search-large .search-field {
        padding: 10px 45px 10px 15px;
        font-size: 14px;
    }

    .header-search-large .search-submit {
        width: 35px;
        height: 35px;
    }

    .header-spacer {
        display: none;
    }

    .menu-toggle-circle,
    .user-toggle-circle,
    .cart-toggle-circle {
        width: 40px;
        height: 40px;
    }

    .menu-toggle-circle i,
    .user-toggle-circle i,
    .cart-toggle-circle i {
        font-size: 16px;
    }

    /* Hero Section */
    .hero-section {
        min-height: 400px;
        padding: 60px 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }

    /* Featured Slider Section */
    .featured-slider-section {
        padding: 60px 0 !important;
    }

    .slider-header {
        margin-bottom: 30px !important;
    }

    .slider-header h2 {
        font-size: 2.5rem !important;
    }

    .slider-header p {
        font-size: 1rem !important;
    }

    .products-slider-wrapper {
        padding: 0 40px;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .slider-product-card {
        min-width: 260px;
        flex: 0 0 260px;
        padding: 15px;
    }

    /* Just Added Section */
    .just-added-section {
        padding: 60px 0 !important;
    }

    .just-added-section h2 {
        font-size: 2rem !important;
    }

    .just-added-section > div > div:first-child {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }

    .category-filters {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex-wrap: nowrap !important;
    }

    .category-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        white-space: nowrap;
    }

    .just-added-slider-wrapper {
        padding: 0 40px;
    }

    .just-added-prev,
    .just-added-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .just-added-product-card {
        min-width: 240px;
        flex: 0 0 240px;
        padding: 15px;
    }

    /* Blog Section */
    .original-content-section {
        padding: 60px 0 !important;
    }

    .original-content-section h2 {
        font-size: 2rem !important;
    }

    .original-content-section p {
        font-size: 1rem !important;
    }

    .original-content-section [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .blog-card .blog-image {
        height: 220px !important;
    }

    .blog-card [style*="padding: 30px"] {
        padding: 20px !important;
    }

    /* Login Popup */
    .login-popup {
        max-width: 90%;
    }

    .login-popup-content {
        padding: 50px 30px 30px;
    }

    .login-heading {
        font-size: 24px !important;
    }

    /* Side Menu */
    .side-menu {
        width: 280px;
        left: -280px;
    }

    /* Footer */
    .footer-widgets {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }
}

/* Mobile Portrait (max-width: 480px) */
@media (max-width: 480px) {
    :root {
        --container-padding: 0.875rem;
    }

    /* Typography */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    /* Header */
    .header-content {
        gap: 8px;
    }

    .site-logo img {
        max-height: 35px;
    }

    .header-search-large .search-field {
        padding: 8px 40px 8px 12px;
        font-size: 13px;
    }

    .header-search-large .search-submit {
        width: 32px;
        height: 32px;
    }

    .menu-toggle-circle,
    .user-toggle-circle,
    .cart-toggle-circle {
        width: 36px;
        height: 36px;
    }

    .menu-toggle-circle i,
    .user-toggle-circle i,
    .cart-toggle-circle i {
        font-size: 14px;
    }

    /* Hero Section */
    .hero-section {
        min-height: 350px;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    /* Featured Slider Section */
    .featured-slider-section {
        padding: 40px 0 !important;
    }

    .slider-header h2 {
        font-size: 2rem !important;
        margin-bottom: 10px !important;
    }

    .slider-header p {
        font-size: 0.95rem !important;
    }

    .products-slider-wrapper {
        padding: 0 35px;
    }

    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .slider-product-card {
        min-width: 220px;
        flex: 0 0 220px;
        padding: 12px;
    }

    .slider-product-card h3 {
        font-size: 1rem !important;
    }

    .slider-product-card [style*="background: #f3f2f8"] {
        padding: 12px !important;
    }

    /* Just Added Section */
    .just-added-section {
        padding: 40px 0 !important;
    }

    .just-added-section h2 {
        font-size: 1.75rem !important;
    }

    .just-added-section > div > div:first-child a {
        font-size: 0.9rem !important;
    }

    .category-filters {
        gap: 8px !important;
        margin-bottom: 30px !important;
    }

    .filter-btn {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }

    .just-added-slider-wrapper {
        padding: 0 35px;
        margin-bottom: 40px !important;
    }

    .just-added-prev,
    .just-added-next {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .just-added-product-card {
        min-width: 200px;
        flex: 0 0 200px;
        padding: 12px;
    }

    .just-added-product-card h3 {
        font-size: 1rem !important;
    }

    .just-added-product-card [style*="font-size: 1.5rem"] {
        font-size: 1.25rem !important;
    }

    .wishlist-btn,
    .add-to-cart-btn {
        width: 36px !important;
        height: 36px !important;
    }

    .wishlist-btn i,
    .add-to-cart-btn i {
        font-size: 14px !important;
    }

    .just-added-section [style*="text-align: center"] p {
        font-size: 1rem !important;
    }

    /* Blog Section */
    .original-content-section {
        padding: 40px 0 !important;
    }

    .original-content-section h2 {
        font-size: 1.75rem !important;
    }

    .original-content-section > div > div:first-child p {
        font-size: 0.95rem !important;
    }

    .blog-card .blog-image {
        height: 180px !important;
    }

    .blog-card [style*="padding: 30px"] {
        padding: 15px !important;
    }

    .blog-card h3 {
        font-size: 1.25rem !important;
    }

    .blog-card p {
        font-size: 0.9rem !important;
    }

    /* Login Popup */
    .login-popup-content {
        padding: 40px 20px 20px;
    }

    .login-heading {
        font-size: 20px !important;
    }

    .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-login-submit {
        padding: 12px 25px;
        font-size: 15px;
    }

    /* Side Menu */
    .side-menu {
        width: 260px;
        left: -260px;
    }

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

    .site-footer {
        padding: var(--spacing-lg) 0 var(--spacing-sm);
    }

    /* Back to Top */
    #back-to-top {
        width: 45px;
        height: 45px;
        bottom: var(--spacing-md);
        right: var(--spacing-md);
    }

    /* Notification */
    .notification {
        top: var(--spacing-sm);
        right: var(--spacing-sm);
        left: var(--spacing-sm);
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .slider-header h2,
    .just-added-section h2,
    .original-content-section h2 {
        font-size: 1.5rem !important;
    }

    .slider-product-card,
    .just-added-product-card {
        min-width: 180px;
        flex: 0 0 180px;
    }

    .products-slider-wrapper,
    .just-added-slider-wrapper {
        padding: 0 30px;
    }

    .slider-prev,
    .slider-next,
    .just-added-prev,
    .just-added-next {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }
}
