/* ============================================
   PAWFINITY - UNIFIED MODERN THEME
   Clean, Professional Black & White Design
   ============================================ */

/* CSS Custom Properties - Design Tokens */
:root {
    /* Primary Colors */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-900: #111111;
    --color-gray-800: #1a1a1a;
    --color-gray-700: #333333;
    --color-gray-600: #4a4a4a;
    --color-gray-500: #666666;
    --color-gray-400: #888888;
    --color-gray-300: #b3b3b3;
    --color-gray-200: #d4d4d4;
    --color-gray-100: #e8e8e8;
    --color-gray-50: #f5f5f5;
    
    /* Semantic Colors */
    --primary-color: #000000;
    --primary-hover: #333333;
    --secondary-color: #000000;
    --accent-color: #000000;
    --text-primary: #000000;
    --text-secondary: #4a4a4a;
    --text-muted: #666666;
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f5f5f5;
    --border-color: #e5e5e5;
    --border-light: #f0f0f0;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================
   GLOBAL RESETS & BASE
   ============================================ */

body {
    font-family: var(--font-sans) !important;
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    line-height: 1.6;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    line-height: 1.3 !important;
}

p {
    color: var(--text-secondary) !important;
}

a {
    color: var(--text-primary) !important;
    text-decoration: none !important;
    transition: var(--transition-base) !important;
}

a:hover {
    color: var(--color-gray-600) !important;
}

/* ============================================
   HEADER & NAVIGATION - Modern Professional
   ============================================ */

.header,
.main-header,
header,
.luxury-header {
    background: #ffffff !important;
    border-bottom: 1px solid #f0f0f0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    height: 72px !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
}

.header.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
}

.header .container,
.header-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    height: 100% !important;
}

/* Logo */
.logo {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
}

.logo a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
}

.logo h1,
.logo a h1,
.luxury-logo h1 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin: 0 !important;
    letter-spacing: -0.5px !important;
    background: none !important;
    -webkit-text-fill-color: #000000 !important;
}

.logo i,
.logo a i {
    font-size: 1.4rem !important;
    color: #000000 !important;
}

/* Navigation */
.nav,
.main-nav {
    display: flex !important;
    align-items: center !important;
}

.nav-list,
.nav ul {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-link,
.nav-list a,
.luxury-nav a,
.main-nav a {
    color: #333333 !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    padding: 10px 18px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    position: relative !important;
}

.nav-link:hover,
.nav-list a:hover,
.luxury-nav a:hover,
.main-nav a:hover {
    color: #000000 !important;
    background: #f5f5f5 !important;
}

.nav-link.active,
.nav-list a.active {
    color: #000000 !important;
    background: #f0f0f0 !important;
    font-weight: 600 !important;
}

.nav-link::after {
    display: none !important;
}

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

/* Search Box */
.search-box {
    display: flex !important;
    align-items: center !important;
    background: #f5f5f5 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 1px solid transparent !important;
    transition: all 0.2s ease !important;
}

.search-box:focus-within {
    background: #ffffff !important;
    border-color: #000000 !important;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05) !important;
}

.search-box input {
    border: none !important;
    background: transparent !important;
    padding: 10px 16px !important;
    font-size: 0.9rem !important;
    width: 200px !important;
    outline: none !important;
    color: #000000 !important;
}

.search-box input::placeholder {
    color: #888888 !important;
}

.search-box button {
    background: #000000 !important;
    border: none !important;
    color: #ffffff !important;
    padding: 10px 14px !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
}

.search-box button:hover {
    background: #333333 !important;
}

/* Cart Icon */
.cart-icon {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    background: #f5f5f5 !important;
    border-radius: 10px !important;
    color: #000000 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.cart-icon:hover {
    background: #000000 !important;
    color: #ffffff !important;
}

.cart-icon i {
    font-size: 1.1rem !important;
}

.cart-count {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    background: #000000 !important;
    color: #ffffff !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    border-radius: 9px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 5px !important;
    border: 2px solid #ffffff !important;
}

.cart-icon:hover .cart-count {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #000000 !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none !important;
    background: #f5f5f5 !important;
    border: none !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 10px !important;
    color: #000000 !important;
    cursor: pointer !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    transition: all 0.2s ease !important;
}

.mobile-menu-toggle:hover {
    background: #000000 !important;
    color: #ffffff !important;
}

@media (max-width: 992px) {
    .search-box {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .header {
        height: 64px !important;
    }
    
    .nav,
    .main-nav {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .logo h1 {
        font-size: 1.25rem !important;
    }
}

/* ============================================
   BUTTONS - ALL VARIANTS
   ============================================ */

.btn,
button,
input[type="submit"],
input[type="button"],
.luxury-btn {
    font-family: var(--font-sans) !important;
    font-weight: 500 !important;
    border-radius: var(--radius-sm) !important;
    transition: var(--transition-base) !important;
    cursor: pointer !important;
}

/* Primary Button - Black */
.btn-primary,
.luxury-btn-primary,
button.btn-primary,
a.btn-primary,
.add-to-cart,
.add-to-cart-btn,
.cta-button,
button[class*="add-to-cart"],
.checkout-btn {
    background: var(--color-black) !important;
    color: var(--color-white) !important;
    border: none !important;
    padding: 12px 24px !important;
    font-weight: 500 !important;
    box-shadow: var(--shadow-sm) !important;
}

.btn-primary:hover,
.luxury-btn-primary:hover,
button.btn-primary:hover,
a.btn-primary:hover,
.add-to-cart:hover,
.add-to-cart-btn:hover,
.cta-button:hover,
button[class*="add-to-cart"]:hover,
.checkout-btn:hover {
    background: var(--color-gray-700) !important;
    color: var(--color-white) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-md) !important;
}

/* Secondary/Outline Button */
.btn-secondary,
.btn-outline,
.luxury-btn-secondary,
.quick-view-btn {
    background: transparent !important;
    color: var(--color-black) !important;
    border: 1px solid var(--color-black) !important;
}

.btn-secondary:hover,
.btn-outline:hover,
.luxury-btn-secondary:hover,
.quick-view-btn:hover {
    background: var(--color-black) !important;
    color: var(--color-white) !important;
}

/* ============================================
   HERO SECTIONS - DARK THEME
   ============================================ */

/* Page Hero - Dark Theme with Green Accent */
.hero,
.hero-section,
.luxury-hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero::before,
.hero-section::before,
.luxury-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 20%, rgba(34, 197, 94, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%) !important;
    pointer-events: none !important;
}

.hero h1,
.hero-section h1,
.luxury-hero h1 {
    color: #ffffff !important;
}

.hero .accent,
.hero-section .accent,
.luxury-hero .accent {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero p,
.hero-section p,
.luxury-hero p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Category Hero - Enhanced Dark Theme */
.category-hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.category-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 20%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%) !important;
    pointer-events: none !important;
}

.category-hero .category-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3) !important;
}

.category-hero .category-icon i {
    color: #ffffff !important;
}

.category-hero h1 {
    color: #ffffff !important;
}

.category-hero p {
    color: rgba(255, 255, 255, 0.7) !important;
    opacity: 1 !important;
}

.hero-slider {
    background: var(--color-gray-50) !important;
}

.hero-slide-overlay {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0) 100%
    ) !important;
}

.hero-slide-content h2,
.hero-slide-content p {
    color: var(--color-white) !important;
}

.hero-slide-content .cta-button {
    background: var(--color-black) !important;
    color: var(--color-white) !important;
    border-radius: var(--radius-sm) !important;
    box-shadow: var(--shadow-md) !important;
    border: none !important;
}

.hero-slide-content .cta-button:hover {
    background: var(--color-gray-800) !important;
}

/* Page Headers */
.page-header {
    background: var(--bg-secondary) !important;
    border-bottom: 1px solid var(--border-color) !important;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

.product-card,
.category-card,
.feature-card,
.card {
    background: var(--bg-primary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden !important;
    transform: perspective(1000px) translateZ(0) !important;
    transform-style: preserve-3d !important;
}

.product-card:hover,
.category-card:hover,
.feature-card:hover,
.card:hover {
    border-color: rgba(34, 197, 94, 0.3) !important;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(34, 197, 94, 0.08),
        0 0 0 1px rgba(34, 197, 94, 0.1) !important;
    transform: perspective(1000px) translateY(-8px) translateZ(10px) !important;
}

.product-info,
.card-body {
    padding: 20px !important;
    background: var(--bg-primary) !important;
}

.product-name,
.product-title,
.card-title {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
}

.product-description,
.card-text {
    color: var(--text-muted) !important;
    font-size: 0.875rem !important;
}

.product-price,
.price,
.price-current {
    color: var(--text-primary) !important;
    font-weight: 700 !important;
    font-size: 1.125rem !important;
}

.product-image-container {
    background: var(--bg-secondary) !important;
}

/* ============================================
   ICONS - GREEN GLOWING 3D STYLE
   ============================================ */

/* Maximum specificity for green icons */
body .category-icon,
body .feature-icon,
body .contact-icon,
body .subcat-icon,
.categories .category-icon,
.categories-grid .category-icon,
.category-card .category-icon,
.features .feature-icon,
.features-grid .feature-icon,
.feature-card .feature-icon,
.contact-info .contact-icon,
.subcategories .subcat-icon,
div.category-icon,
div.feature-icon,
div.contact-icon,
div.subcat-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: #ffffff !important;
    box-shadow: 
        0 8px 24px rgba(34, 197, 94, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: translateZ(0) !important;
    position: relative !important;
}

body .category-icon::after,
body .feature-icon::after,
body .contact-icon::after,
body .subcat-icon::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    border-radius: inherit !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%) !important;
    pointer-events: none !important;
}

body .category-icon i,
body .feature-icon i,
body .contact-icon i,
body .subcat-icon i,
.category-icon i,
.feature-icon i,
.contact-icon i,
.subcat-icon i {
    color: #ffffff !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
}

/* Hover state - enhanced 3D lift */
.category-card:hover .category-icon,
.feature-card:hover .feature-icon,
.contact-item:hover .contact-icon,
.subcat-card:hover .subcat-icon,
a:hover .category-icon,
div:hover > .feature-icon {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 
        0 16px 40px rgba(34, 197, 94, 0.45),
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* Loading spinner */
.loading i,
.spinner {
    color: #22c55e !important;
}

/* ============================================
   FORMS & INPUTS
   ============================================ */

input,
textarea,
select,
.form-control {
    background: var(--bg-primary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    color: var(--text-primary) !important;
    padding: 12px 16px !important;
    transition: var(--transition-base) !important;
}

input:focus,
textarea:focus,
select:focus,
.form-control:focus {
    outline: none !important;
    border-color: var(--color-black) !important;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08) !important;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted) !important;
}

.search-box button,
.luxury-search button {
    background: var(--color-black) !important;
    color: var(--color-white) !important;
    border: none !important;
}

/* ============================================
   CART & CHECKOUT
   ============================================ */

.cart-count {
    background: var(--color-black) !important;
    color: var(--color-white) !important;
}

.cart-table,
.cart-summary,
.order-summary,
.checkout-card {
    background: var(--bg-primary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-lg) !important;
}

/* ============================================
   FOOTER - Modern Professional Design
   ============================================ */

.footer,
.luxury-footer,
footer {
    background: #111111 !important;
    color: #ffffff !important;
    padding: 60px 0 0 0 !important;
}

.footer .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
    gap: 48px !important;
    padding-bottom: 40px !important;
    align-items: start !important;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px !important;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 32px !important;
    }
}

.footer-section {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
}

@media (max-width: 480px) {
    .footer-section {
        text-align: center !important;
        align-items: center !important;
    }
}

.footer-section h3,
.footer h3,
.footer h4,
.footer-section h4 {
    color: #ffffff !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    margin-bottom: 16px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

.footer-section h3 i {
    margin-right: 8px !important;
    color: #22c55e !important;
}

/* First footer section - brand */
.footer-section:first-child h3 {
    text-transform: none !important;
    font-size: 1.25rem !important;
}

.footer-section p,
.footer p {
    color: #9ca3af !important;
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
    max-width: 280px !important;
}

@media (max-width: 480px) {
    .footer-section p {
        max-width: 100% !important;
    }
}

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

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

.footer-section ul li a,
.footer-section a,
.footer a {
    color: #9ca3af !important;
    font-size: 0.875rem !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    display: inline-block !important;
}

.footer-section ul li a:hover,
.footer-section a:hover,
.footer a:hover {
    color: #22c55e !important;
    transform: translateX(3px) !important;
}

/* Social Links */
.social-links {
    display: flex !important;
    gap: 12px !important;
    margin-top: 8px !important;
}

@media (max-width: 480px) {
    .social-links {
        justify-content: center !important;
    }
}

.social-links a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: #1f1f1f !important;
    border: 1px solid #333333 !important;
    border-radius: 8px !important;
    color: #9ca3af !important;
    font-size: 1.1rem !important;
    transition: all 0.2s ease !important;
}

.social-links a:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #111111 !important;
    transform: translateY(-2px) !important;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #222222 !important;
    padding: 24px 0 !important;
    margin-top: 20px !important;
}

.footer-bottom p,
.footer-bottom,
.footer-bottom a {
    color: #6b7280 !important;
    font-size: 0.85rem !important;
    text-align: center !important;
    margin: 0 !important;
}

.footer-bottom a {
    margin: 0 4px !important;
}

.footer-bottom a:hover {
    color: #ffffff !important;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: #111111 !important;
    padding: 60px 0 !important;
    text-align: center !important;
}

.cta-section h2 {
    color: #ffffff !important;
    font-size: 2rem !important;
    font-weight: 600 !important;
    margin-bottom: 16px !important;
}

.cta-section p {
    color: #9ca3af !important;
    font-size: 1.1rem !important;
    max-width: 600px !important;
    margin: 0 auto 24px auto !important;
}

.cta-section .cta-btn,
.cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #ffffff !important;
    color: #111111 !important;
    padding: 14px 28px !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.cta-section .cta-btn:hover,
.cta-btn:hover {
    background: #f0f0f0 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter {
    background: #000000 !important;
    padding: 60px 0 !important;
    text-align: center !important;
}

.newsletter h2,
.newsletter h3 {
    color: #ffffff !important;
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
}

.newsletter p {
    color: #9ca3af !important;
    font-size: 1rem !important;
    margin-bottom: 24px !important;
}

.newsletter-form {
    display: flex !important;
    gap: 12px !important;
    max-width: 440px !important;
    margin: 0 auto !important;
}

@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column !important;
    }
}

.newsletter-form input {
    flex: 1 !important;
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    color: #ffffff !important;
    padding: 14px 16px !important;
    border-radius: 4px !important;
    font-size: 0.95rem !important;
}

.newsletter-form input::placeholder {
    color: #666666 !important;
}

.newsletter-form input:focus {
    border-color: #ffffff !important;
    outline: none !important;
}

.newsletter-form button {
    background: #ffffff !important;
    color: #000000 !important;
    padding: 14px 24px !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.newsletter-form button:hover {
    background: #f0f0f0 !important;
}

/* ============================================
   SWIPER / SLIDERS
   ============================================ */

.swiper-button-next,
.swiper-button-prev,
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    background: var(--bg-primary) !important;
    color: var(--color-black) !important;
    box-shadow: var(--shadow-md) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--color-black) !important;
    color: var(--color-white) !important;
}

.swiper-pagination-bullet {
    background: var(--color-gray-300) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--color-black) !important;
}

/* ============================================
   SECTIONS
   ============================================ */

section,
.section {
    background: #ffffff !important;
    padding: 80px 0 !important;
}

/* Hero 3D - Preserve dark background */
section.hero-3d,
.hero-3d,
body section.hero-3d {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    padding: 0 !important;
    min-height: 100vh !important;
}

.section-header {
    text-align: center !important;
    margin-bottom: 48px !important;
}

.section-header h2,
.section-title {
    color: #000000 !important;
    font-size: 2rem !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
}

.section-header p {
    color: #666666 !important;
    font-size: 1.1rem !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* Categories Section */
.categories {
    background: #fafafa !important;
}

.categories-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

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

.category-card {
    background: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 12px !important;
    padding: 32px 24px !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.category-card:hover {
    border-color: #000000 !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}

.category-icon {
    width: 64px !important;
    height: 64px !important;
    background: #000000 !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px auto !important;
}

.category-icon i {
    color: #ffffff !important;
    font-size: 1.5rem !important;
}

.category-card h3 {
    color: #000000 !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

.category-card p {
    color: #666666 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
}

.category-card .status-badge {
    display: inline-block !important;
    background: #000000 !important;
    color: #ffffff !important;
    padding: 6px 14px !important;
    border-radius: 4px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
}

/* Features Section - "Why Choose" Section */
.features {
    background: #ffffff !important;
    padding: 80px 0 !important;
}

.features .section-header h2 {
    color: #000000 !important;
}

.features .section-header p {
    color: #666666 !important;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 32px !important;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

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

.feature-card {
    text-align: center !important;
    padding: 24px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.feature-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

.feature-icon {
    width: 64px !important;
    height: 64px !important;
    background: #000000 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 16px auto !important;
}

.feature-icon i {
    color: #ffffff !important;
    font-size: 1.5rem !important;
}

.feature-card h3 {
    color: #000000 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

.feature-card p {
    color: #666666 !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
}

/* Product Slider Section */
.product-slider-section {
    background: #fafafa !important;
}

/* ============================================
   BADGES
   ============================================ */

.badge,
.tag,
.product-badge {
    background: #000000 !important;
    color: #ffffff !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
}

/* ============================================
   PAGE HEADER (Category/Product Pages)
   ============================================ */

.page-header {
    background: #fafafa !important;
    padding: 100px 0 40px 0 !important;
    text-align: center !important;
    border-bottom: 1px solid #e5e5e5 !important;
}

.page-header h1 {
    color: #000000 !important;
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
}

.page-header p {
    color: #666666 !important;
    font-size: 1.1rem !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* Breadcrumb */
.breadcrumb {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 16px !important;
    color: #888888 !important;
    font-size: 0.9rem !important;
}

.breadcrumb a {
    color: #666666 !important;
}

.breadcrumb a:hover {
    color: #000000 !important;
}

/* ============================================
   ACCENTS - REMOVE ALL COLOR EFFECTS
   ============================================ */

.accent,
.luxury-accent,
.highlight {
    color: #000000 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #000000 !important;
}

/* Hero 3D - Keep dark theme */
.hero-3d .highlight {
    color: transparent !important;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* ============================================
   HEADER REFINEMENTS
   ============================================ */

.header,
.main-header {
    background: #ffffff !important;
    border-bottom: 1px solid #e5e5e5 !important;
    padding: 0 !important;
}

.header .container,
.main-header .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 24px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.logo h1 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #000000 !important;
}

.logo i {
    margin-right: 8px !important;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero-slide-content h2 {
        font-size: 2rem !important;
    }
    
    .hero-slide-content p {
        font-size: 1rem !important;
    }
    
    .section-header h2 {
        font-size: 1.75rem !important;
    }
    
    section,
    .section {
        padding: 60px 0 !important;
    }
    
    .page-header {
        padding: 80px 0 30px 0 !important;
    }
    
    .page-header h1 {
        font-size: 2rem !important;
    }
    
    .footer {
        padding: 40px 0 0 0 !important;
    }
    
    .cta-section {
        padding: 40px 0 !important;
    }
    
    .cta-section h2 {
        font-size: 1.5rem !important;
    }
}

/* ============================================
   3D EFFECTS & GREEN ACCENTS - GLOBAL
   ============================================ */

/* Logo icon - green 3D glow */
.logo i,
.header .logo i,
.main-header .logo i,
body .logo i,
.logo a i,
.header-content .logo i {
    color: #22c55e !important;
    font-size: 1.6rem !important;
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5)) !important;
    transition: all 0.3s ease !important;
}

.logo:hover i,
.logo a:hover i {
    color: #4ade80 !important;
    filter: drop-shadow(0 0 15px rgba(34, 197, 94, 0.7)) !important;
    transform: scale(1.1) !important;
}

/* Status badges - green */
.status-badge {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3) !important;
    transition: all 0.3s ease !important;
}

.category-card:hover .status-badge {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4) !important;
}

/* Add to cart buttons - green accent */
.add-to-cart,
.add-to-cart-btn,
button[class*="add-to-cart"] {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3) !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.add-to-cart:hover,
.add-to-cart-btn:hover,
button[class*="add-to-cart"]:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4) !important;
}

/* Product card image overlay on hover */
.product-card .product-image-container {
    position: relative !important;
    overflow: hidden !important;
}

.product-card:hover .product-image-container::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, transparent 100%) !important;
    pointer-events: none !important;
}

/* Cart count badge - green */
.cart-count {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4) !important;
}

/* Newsletter button - green */
.newsletter-form button {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3) !important;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4) !important;
}

/* CTA section - green theme */
.cta-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.cta-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(34, 197, 94, 0.15) 0%, transparent 70%) !important;
    pointer-events: none !important;
}

.cta-section .cta-btn,
.cta-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.35) !important;
    border: none !important;
}

.cta-section .cta-btn:hover,
.cta-btn:hover {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.45) !important;
}

/* Swiper pagination - green */
.swiper-pagination-bullet-active {
    background: #22c55e !important;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5) !important;
}

/* Links hover - green accent */
a:hover {
    color: #22c55e !important;
}

/* Focus states - green outline */
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2) !important;
}

/* Price highlight */
.product-price,
.price,
.price-current {
    color: #16a34a !important;
}

/* Section headers subtle green underline */
.section-header h2::after,
.section-title::after {
    content: '' !important;
    display: block !important;
    width: 60px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #22c55e, #4ade80) !important;
    margin: 16px auto 0 !important;
    border-radius: 2px !important;
}

/* Filter chips active state */
.filter-chip.active {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    border-color: #22c55e !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3) !important;
}

/* FAQ question icons */
.faq-question i,
.faq-item i {
    color: #22c55e !important;
    filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.3)) !important;
}

/* Checkout & Order icons */
.checkout-step-icon,
.order-icon,
.confirmation-icon,
.step-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35) !important;
}

/* Social links hover */
.social-links a:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4) !important;
}

.social-links a:hover i {
    color: #ffffff !important;
}

/* Mobile menu toggle */
.mobile-menu-toggle:hover {
    background: rgba(34, 197, 94, 0.1) !important;
}

.mobile-menu-toggle:hover i {
    color: #22c55e !important;
}

/* Search button hover */
.search-box button:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3) !important;
}

/* Floating cards icons (homepage) */
.floating-card-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3) !important;
}

.floating-card-icon i {
    color: #ffffff !important;
}

/* Admin dashboard icons */
.stat-icon,
.admin-icon,
.dashboard-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35) !important;
}

/* Policy page icons */
.policy-icon {
    color: #22c55e !important;
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.4)) !important;
}

/* Button icons - subtle glow */
.btn i,
button i,
a.btn i {
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3)) !important;
}

/* Hero 3D paw icon glow */
.hero-3d-icon {
    box-shadow: 
        0 0 60px rgba(34, 197, 94, 0.3),
        0 0 120px rgba(34, 197, 94, 0.15) !important;
}
