/*--------------------------------------------------------------------
    Home Page Modern & Clean Aesthetic Enhancements
    AskDealia - 2026
--------------------------------------------------------------------*/

/* =============================================
   0. DESIGN TOKENS (CSS Custom Properties)
   ============================================= */

:root {
    /* Primary Colors */
    --color-primary: #00a2ad;
    --color-primary-dark: #008b95;
    --color-primary-rgb: 0, 162, 173;
    --color-accent: #fed701;
    --color-accent-rgb: 254, 215, 1;

    /* Navy Palette */
    --color-navy: #0b233f;
    --color-navy-light: #1a3a5c;
    --color-navy-rgb: 11, 35, 63;

    /* Text Colors */
    --color-text: #222222;
    --color-text-muted: #666666;
    --color-text-light: #999999;

    /* Backgrounds & Borders */
    --color-bg: #ffffff;
    --color-bg-subtle: #f8fafb;
    --color-bg-muted: #f0f2f5;
    --color-border: #e8e8e8;
    --color-border-light: #f0f0f0;

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.03);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(var(--color-primary-rgb), 0.15);
    --shadow-xl: 0 20px 48px rgba(var(--color-primary-rgb), 0.2);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 50px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration: 0.35s;
    --duration-slow: 0.5s;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    --gradient-navy: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    --gradient-accent: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

/* =============================================
   1. GLOBAL SMOOTH SCROLL & BASE
   ============================================= */

html {
    scroll-behavior: smooth;
}

/* =============================================
   2. MODERNIZED HEADER — Sticky + Glass Effect
   ============================================= */

.header-pos {
    position: relative;
    z-index: 1000;
}

.header-top-menu {
    transition: all var(--duration) var(--ease);
}

.header-top-menu.header-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(var(--color-navy-rgb), 0.85) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.3s var(--ease) forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Compensate for fixed header */
.header-scrolled-spacer {
    display: none;
}

body.header-is-scrolled .header-scrolled-spacer {
    display: block;
}

/* =============================================
   3. REFRESHED HERO SECTION
   ============================================= */

/* Gradient overlay for better text contrast */
.slider-area .single-slider {
    position: relative;
}

.slider-area .single-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    z-index: 1;
}

.slider-area .single-slider .container-fluid {
    position: relative;
    z-index: 2;
}

/* Staggered hero text animation */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-text h1,
.slider-text p,
.slider-text .btn-1 {
    opacity: 0;
    animation: heroFadeUp 0.8s var(--ease) forwards;
}

.slider-text h1 {
    animation-delay: 0.1s;
}

.slider-text p:nth-of-type(1) {
    animation-delay: 0.25s;
}

.slider-text p:nth-of-type(2) {
    animation-delay: 0.4s;
}

.slider-text .btn-1 {
    animation-delay: 0.55s;
}

/* Animated gradient text highlight */
.text-highlight-blue {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* =============================================
   4. UNIFIED BUTTON SYSTEM
   ============================================= */

/* Hero CTA Button */
.btn-1.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--gradient-primary);
    color: #ffffff !important;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: none;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    box-shadow: 0 4px 20px rgba(var(--color-primary-rgb), 0.35);
    position: relative;
    overflow: hidden;
}

.btn-1.home-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.btn-1.home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(var(--color-primary-rgb), 0.45);
}

.btn-1.home-btn:hover::before {
    opacity: 1;
}

.btn-1.home-btn:active {
    transform: scale(0.97) translateY(-1px);
}

/* Compare Button — Pill outline */
.btn-compare {
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    padding: 10px 18px;
    border: 2px solid var(--color-primary);
    color: var(--color-primary) !important;
    background: transparent;
    transition: all var(--duration) var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    letter-spacing: 0.2px;
}

.btn-compare i {
    font-size: 14px;
    transition: transform var(--duration) var(--ease);
}

.btn-compare:hover {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(var(--color-primary-rgb), 0.3);
    transform: translateY(-1px);
}

.btn-compare:hover i {
    transform: rotate(180deg);
}

/* Add to Grocery List — Solid gradient pill */
.btn-list {
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 14px 20px;
    margin-top: 12px;
    color: #ffffff !important;
    background: var(--gradient-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--duration) var(--ease);
    width: 100%;
    border: none;
    text-decoration: none;
    letter-spacing: 0.2px;
    box-shadow: 0 3px 12px rgba(var(--color-navy-rgb), 0.2);
}

.btn-list:hover {
    background: var(--gradient-primary);
    box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.35);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.btn-list i {
    font-size: 16px;
}

/* See More Button — Secondary solid pill */
.see-more.btn-cart {
    background: var(--gradient-navy);
    border: none;
    border-radius: var(--radius-pill);
    color: #ffffff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 48px;
    line-height: 1.4;
    transition: all var(--duration) var(--ease);
    box-shadow: 0 4px 15px rgba(var(--color-navy-rgb), 0.2);
    letter-spacing: 0.3px;
}

.see-more.btn-cart:hover {
    background: var(--gradient-primary);
    box-shadow: 0 6px 24px rgba(var(--color-primary-rgb), 0.35);
    transform: translateY(-2px);
}

/* Button universal press effect */
.btn-list:active,
.btn-compare:active,
.btn-1.home-btn:active,
.dropdown-button:active,
.see-more.btn-cart:active {
    transform: scale(0.97);
}

/* Focus states for accessibility */
.btn-list:focus-visible,
.btn-compare:focus-visible,
.btn-1.home-btn:focus-visible,
.dropdown-button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* =============================================
   5. ENHANCED PRODUCT CARDS
   ============================================= */

/* Modern card styling */
.product-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--duration) var(--ease);
}

.product-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

/* Gradient accent line on hover */
.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform var(--duration) var(--ease);
    z-index: 10;
    transform-origin: left;
}

.product-item:hover::before {
    transform: scaleX(1);
}

/* Image hover zoom */
.product-thumb {
    overflow: hidden;
    background: var(--color-bg-subtle);
}

.product-thumb img {
    transition: transform var(--duration-slow) var(--ease);
}

.product-item:hover .product-thumb img {
    transform: scale(1.05);
}

/* Enhanced product caption with frosted glass */
.product-caption {
    padding: 16px 18px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    position: relative;
}

/* Brand styling */
.manufacture-product a {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color var(--duration-fast) ease;
}

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

/* Product name */
.product-name h4 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 4px;
}

.product-name h4 a {
    color: var(--color-text);
    transition: color var(--duration-fast) ease;
    text-decoration: none;
}

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

/* Enhanced price display — badge style */
.regular-price {
    color: var(--color-navy);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.08) 0%, rgba(var(--color-accent-rgb), 0.08) 100%);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* Price and compare container */
.product-price-compare-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 4px;
    flex-wrap: wrap;
    gap: 8px;
}

/* Improved quantity controls */
.pro-table {
    margin-top: 10px;
    margin-bottom: 0;
}

.pro-table .btn1 {
    border-radius: var(--radius-sm);
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    border: none;
    transition: all var(--duration-fast) var(--ease);
}

.pro-table .btn-danger {
    background: #fee2e2;
    color: #dc2626;
}

.pro-table .btn-danger:hover {
    background: #dc2626;
    color: #ffffff;
}

.pro-table .btn-success {
    background: #d1fae5;
    color: #059669;
}

.pro-table .btn-success:hover {
    background: #059669;
    color: #ffffff;
}

.pro-table .form-control1 {
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    border: 2px solid var(--color-border);
    width: 48px;
    height: 36px;
}

.trash-icon {
    color: #dc2626;
    cursor: pointer;
    font-size: 18px;
    transition: all var(--duration-fast) var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
}

.trash-icon:hover {
    background: #fee2e2;
    transform: scale(1.1);
}

/* =============================================
   6. VENDOR DROPDOWN ENHANCEMENTS
   ============================================= */

.container-dropdownbutton {
    gap: 30px;
}

.dropdown-button {
    padding: 18px 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    min-width: 280px;
    box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.25);
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    color: #ffffff;
    text-align: left;
}

.dropdown-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    pointer-events: none;
}

.dropdown-button:hover {
    box-shadow: 0 6px 24px rgba(var(--color-primary-rgb), 0.4);
    transform: translateY(-2px);
}

.dropdown-button .vendor-name {
    font-size: 20px;
    font-weight: 600;
}

.dropdown-button .icon {
    transition: transform var(--duration) var(--ease);
}

.dropdown-button:hover .icon {
    transform: translateY(2px);
}

/* Dropdown menu animation */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(var(--color-primary-rgb), 0.05);
    padding: 20px;
    background: var(--color-bg);
}

.dropdown-content[style*="display: grid"] {
    animation: dropdownFadeIn 0.25s var(--ease) forwards;
}

.dropdown-content a {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s var(--ease);
    background: var(--color-bg);
    color: var(--color-text);
    text-decoration: none;
    border: 1px solid transparent;
}

.dropdown-content a:hover {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.2);
    transform: translateY(-2px);
}

/* Text content styling */
.text-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.3;
    margin-bottom: 12px;
}

.text-content h2 .vendor_name {
    color: var(--color-primary);
}

.text-content p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 15px;
}

/* =============================================
   7. LAYOUT & SPACING IMPROVEMENTS
   ============================================= */

/* Featured Products Section */
.product-wrapper.fix.pb-70 {
    background: linear-gradient(180deg, var(--color-bg-subtle) 0%, var(--color-bg) 100%);
    padding-top: 60px;
    padding-bottom: 80px;
    position: relative;
}

.product-wrapper.fix.pb-70::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

/* Section titles with gradient underline */
.section-title h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
}

.section-title h3 span {
    color: var(--color-primary);
    font-weight: 700;
}

.section-title.hm-11 {
    margin-bottom: 40px;
}

/* Gradient underline for section titles */
.section-title.hm-11 h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Compare section */
.home-module-three.hm-1.fix.pb-40 {
    background: var(--color-bg);
    padding-top: 70px;
    padding-bottom: 80px;
}

/* Product grid spacing */
.module-four-wrapper.custom-seven-column {
    margin-left: -12px;
    margin-right: -12px;
}

.module-four-wrapper.custom-seven-column > .col,
.module-four-wrapper.custom-seven-column > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}

/* See More area */
.see-more-area {
    padding-top: 30px;
}

/* =============================================
   8. SKELETON LOADING
   ============================================= */

/* Loading skeleton shimmer */
.loading-skeleton,
.skeleton-card .skeleton-img,
.skeleton-card .skeleton-line {
    background: linear-gradient(90deg, var(--color-border-light) 25%, var(--color-border) 50%, var(--color-border-light) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Skeleton card structure */
.skeleton-card {
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-bg);
}

.skeleton-card .skeleton-img {
    width: 100%;
    height: 180px;
    border-radius: 0;
}

.skeleton-card .skeleton-body {
    padding: 16px 18px 20px;
}

.skeleton-card .skeleton-line {
    height: 12px;
    margin-bottom: 10px;
    border-radius: 6px;
}

.skeleton-card .skeleton-line.short {
    width: 40%;
}

.skeleton-card .skeleton-line.medium {
    width: 70%;
}

.skeleton-card .skeleton-line.price {
    width: 30%;
    height: 20px;
    margin-top: 14px;
}

.skeleton-card .skeleton-line.btn-skel {
    width: 100%;
    height: 44px;
    margin-top: 14px;
    border-radius: var(--radius-pill);
}

/* Override old spinner — use skeletons instead */
#fetchproducts.loading {
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

#fetchproducts.loading::after {
    display: none;
}

/* =============================================
   9. SCROLL-TRIGGERED REVEAL ANIMATIONS
   ============================================= */

.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Product fade-in animation */
@keyframes productFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.module-four-wrapper .product-item {
    animation: productFadeIn 0.4s var(--ease) forwards;
}

/* Staggered animation for grid items */
.module-four-wrapper .col:nth-child(1) .product-item,
.module-four-wrapper [class*="col-"]:nth-child(1) .product-item { animation-delay: 0.05s; }
.module-four-wrapper .col:nth-child(2) .product-item,
.module-four-wrapper [class*="col-"]:nth-child(2) .product-item { animation-delay: 0.1s; }
.module-four-wrapper .col:nth-child(3) .product-item,
.module-four-wrapper [class*="col-"]:nth-child(3) .product-item { animation-delay: 0.15s; }
.module-four-wrapper .col:nth-child(4) .product-item,
.module-four-wrapper [class*="col-"]:nth-child(4) .product-item { animation-delay: 0.2s; }
.module-four-wrapper .col:nth-child(5) .product-item,
.module-four-wrapper [class*="col-"]:nth-child(5) .product-item { animation-delay: 0.25s; }
.module-four-wrapper .col:nth-child(6) .product-item,
.module-four-wrapper [class*="col-"]:nth-child(6) .product-item { animation-delay: 0.3s; }
.module-four-wrapper .col:nth-child(7) .product-item,
.module-four-wrapper [class*="col-"]:nth-child(7) .product-item { animation-delay: 0.35s; }
.module-four-wrapper .col:nth-child(8) .product-item,
.module-four-wrapper [class*="col-"]:nth-child(8) .product-item { animation-delay: 0.4s; }

/* =============================================
   10. MODERNIZED FOOTER
   ============================================= */

.site-footer {
    position: relative;
}

/* Gradient top accent */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

.footer-main {
    background: linear-gradient(135deg, var(--color-navy) 0%, #0f2d4f 50%, var(--color-navy-light) 100%);
    padding: 60px 0 40px;
    color: #ffffff;
}

.footer-widget-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

/* Social icons — circles */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    transition: all var(--duration) var(--ease);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.4);
}

/* Footer links with animated underline */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color var(--duration-fast) ease;
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width var(--duration) var(--ease);
}

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

.footer-links a:hover::after {
    width: 100%;
}

/* Partner logos on frosted card */
.footer-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    transition: all var(--duration) var(--ease);
}

.partner-logo:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.partner-logo img {
    max-height: 40px;
    width: auto;
    opacity: 1;
    transition: opacity var(--duration-fast) ease;
}

.partner-logo:hover img {
    opacity: 1;
}

/* Footer bottom */
.footer-bottom {
    background: rgba(var(--color-navy-rgb), 0.95);
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
    text-align: center;
}

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

.footer-copyright a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--duration-fast) ease;
}

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

/* =============================================
   11. TYPOGRAPHY POLISH
   ============================================= */

/* Section subtitle styling */
.section-title.module-three h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.2px;
}

.section-title.module-three h3 span {
    color: var(--color-primary);
    font-weight: 700;
}

/* Breadcrumb modernization */
.breadcrumb-area {
    background: var(--color-bg-subtle);
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.breadcrumb-wrap h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: -0.3px;
    margin-bottom: 4px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 13px;
    color: var(--color-text-muted);
}

.breadcrumb-item a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--duration-fast) ease;
}

.breadcrumb-item a:hover {
    color: var(--color-primary-dark);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '\203A';
    color: var(--color-text-light);
    font-size: 16px;
}

/* =============================================
   12. CATEGORY PAGE FILTER BAR
   ============================================= */

.shop-top-bar {
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 30px !important;
}

.shop-top-bar .row {
    align-items: center;
}

.shop-top-bar .per-page {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-top-bar .per-page p {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin: 0;
    white-space: nowrap;
}

/* Nice select styling override */
.shop-top-bar .nice-select {
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    height: 38px;
    line-height: 36px;
    font-size: 13px;
    background: var(--color-bg);
    min-width: 120px;
    transition: border-color var(--duration-fast) ease;
}

.shop-top-bar .nice-select:hover,
.shop-top-bar .nice-select.open {
    border-color: var(--color-primary);
}

.shop-top-bar .nice-select .list {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
    max-height: 250px;
    overflow-y: auto;
}

/* Product view mode toggle */
.product-view-mode a {
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    transition: all var(--duration-fast) ease;
    text-decoration: none;
}

.product-view-mode a.active,
.product-view-mode a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

/* =============================================
   13. OWL CAROUSEL NAVIGATION
   ============================================= */

.owl-arrow-style .owl-nav {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
}

.owl-arrow-style .owl-nav div {
    color: var(--color-text-muted);
    transition: color var(--duration-fast) ease;
}

.owl-arrow-style .owl-nav div:hover {
    color: var(--color-primary);
}

/* =============================================
   14. SCROLL TO TOP BUTTON
   ============================================= */

.scroll-top {
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.3);
    transition: all var(--duration) var(--ease);
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(var(--color-primary-rgb), 0.45);
}

/* =============================================
   15. SMOOTH TRANSITIONS FOR ALL INTERACTIVE ELEMENTS
   ============================================= */

a, button, .product-item, .dropdown-button, .btn-compare, .btn-list {
    -webkit-transition: all var(--duration) var(--ease);
    transition: all var(--duration) var(--ease);
}

/* =============================================
   16. RESPONSIVE ADJUSTMENTS
   ============================================= */

/* Mobile adjustments */
@media (max-width: 767px) {
    .product-item:hover {
        transform: translateY(-3px);
    }

    .product-price-compare-btn {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-compare {
        margin-top: 8px;
        width: 100%;
        justify-content: center;
    }

    .dropdown-button {
        min-width: 100%;
    }

    .container-dropdownbutton {
        flex-direction: column;
        gap: 20px;
    }

    .text-content h2 {
        font-size: 22px;
    }

    .section-title h3 {
        font-size: 18px;
    }

    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-widget-title {
        font-size: 15px;
    }

    .shop-top-bar {
        padding: 12px 14px;
    }

    .regular-price {
        font-size: 18px;
        padding: 3px 10px;
    }

    /* Skeleton mobile - 2 columns */
    .skeleton-card-col {
        width: 50% !important;
    }

    /* Disable heavy animations on mobile for performance */
    .section-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .slider-text h1,
    .slider-text p,
    .slider-text .btn-1 {
        opacity: 1;
        animation: none;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .dropdown-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .text-content h2 {
        font-size: 24px;
    }

    .skeleton-card-col {
        width: 33.333% !important;
    }
}

/* Large desktop */
@media (min-width: 1200px) {
    .product-item:hover {
        transform: translateY(-8px);
    }
}
