/*
===============================================
MASTER STYLESHEET - CONSOLIDATED & CONFLICT-FREE
All styles merged, duplicates removed, responsive design
===============================================
*/

/* =============================================================================
   CSS VARIABLES - CONSISTENT DESIGN SYSTEM
============================================================================= */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #3b82f6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

/* =============================================================================
   RESET & BASE STYLES
============================================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    max-width: 100vw;
}

/* =============================================================================
   LAYOUT COMPONENTS
============================================================================= */

/* Container - Single Definition */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Navigation Styles */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.custom-logo-link {
    display: block;
    line-height: 0;
}

.custom-logo-link img {
    max-height: 50px;
    width: auto;
    transition: var(--transition);
}

.custom-logo-link:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover:before,
.nav-link.active:before {
    width: 80%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--bg-light);
}

/* =============================================================================
   PRODUCT SYSTEM STYLES
============================================================================= */

/* Product Layout Grid - Responsive */
.product-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
    min-width: 0;
}

/* Product Main Content */
.product-main {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Product Sidebar */
.product-sidebar {
    min-width: 0;
}

.product-sidebar > div {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: sticky;
    top: 2rem;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

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

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

/* Responsive Typography */
h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    line-height: 1.4;
}

/* Text Wrapping for All Elements */
h1, h2, h3, h4, h5, h6, p, span, div, a, li {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
}

/* Enhanced Content Typography */
.enhanced-content h1,
.enhanced-content h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem) !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    margin: 2rem 0 1rem 0 !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 2px solid var(--border-color) !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.enhanced-content h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem) !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin: 1.5rem 0 1rem 0 !important;
    position: relative !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.enhanced-content h3::before {
    content: "📌" !important;
    margin-right: 0.5rem !important;
    font-size: 1.2rem !important;
}

.enhanced-content p {
    margin-bottom: 1.5rem !important;
    line-height: 1.8 !important;
    color: #374151 !important;
    font-size: clamp(0.9rem, 1.5vw, 1rem) !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.enhanced-content ul,
.enhanced-content ol {
    margin: 1.5rem 0 !important;
    padding-left: 0 !important;
    list-style: none !important;
}

.enhanced-content li {
    margin-bottom: 0.8rem !important;
    line-height: 1.7 !important;
    padding: 0.8rem 1rem !important;
    background: var(--bg-light) !important;
    border-left: 4px solid var(--primary-color) !important;
    border-radius: 0 8px 8px 0 !important;
    position: relative !important;
    font-size: clamp(0.85rem, 1.4vw, 0.95rem) !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.enhanced-content li::before {
    content: "✓" !important;
    color: var(--success-color) !important;
    font-weight: bold !important;
    margin-right: 0.5rem !important;
    font-size: 1.1rem !important;
}

.enhanced-content blockquote {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1)) !important;
    border-left: 4px solid var(--primary-color) !important;
    padding: 1.5rem 2rem !important;
    margin: 2rem 0 !important;
    border-radius: 0 15px 15px 0 !important;
    font-style: italic !important;
    color: #4b5563 !important;
    position: relative !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.enhanced-content strong {
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    background: rgba(251, 191, 36, 0.2) !important;
    padding: 0.1rem 0.3rem !important;
    border-radius: 3px !important;
}

.enhanced-content a {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    border-bottom: 2px solid transparent !important;
    transition: var(--transition) !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.enhanced-content a:hover {
    border-bottom-color: var(--primary-color) !important;
    color: #5a67d8 !important;
}

/* =============================================================================
   BUTTON STYLES
============================================================================= */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.btn-success:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Purchase Button Responsive */
.purchase-btn,
.product-sidebar a[href*="paypal"] {
    display: block !important;
    width: 100% !important;
    padding: 1rem !important;
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 12px !important;
    text-align: center !important;
    font-weight: 600 !important;
    font-size: clamp(0.9rem, 1.5vw, 1rem) !important;
    margin-bottom: 1.5rem !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    box-sizing: border-box !important;
}

.purchase-btn:hover,
.product-sidebar a[href*="paypal"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
}

/* =============================================================================
   FORM STYLES
============================================================================= */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* =============================================================================
   BLOG STYLES
============================================================================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

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

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Pagination Styling */
.pagination-wrapper .page-numbers {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    margin: 0 0.3rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    font-weight: 600;
    transition: var(--transition);
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* =============================================================================
   CATEGORIES & ARCHIVE STYLES
============================================================================= */

.categories-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-card-new {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    text-align: center;
}

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

.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.products-grid.loading {
    opacity: 0.6;
    pointer-events: none;
}

.products-grid.loading .product-card {
    transform: scale(0.95);
}

/* Filter buttons */
.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.filter-btn.active {
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.filter-btn:hover:not(.active) {
    background: var(--bg-light);
}

/* =============================================================================
   ANIMATIONS
============================================================================= */

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40%, 60% { transform: translateY(-10px); }
}

/* Animation Classes */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-slide-in-left {
    animation: slideInLeft 1s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 1s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

/* Staggered animations for product cards */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

/* =============================================================================
   ALERT STYLES
============================================================================= */

.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-color: var(--success-color);
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
    border-color: var(--warning-color);
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border-color: var(--error-color);
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border-color: var(--primary-color);
}

/* =============================================================================
   LOADING & UTILITY STYLES
============================================================================= */

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

/* Search Form */
.search-form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-form input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 1rem;
    transition: var(--transition);
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-form .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

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

.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p, 
.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* =============================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
============================================================================= */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .product-layout {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

/* Desktop/Laptop (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .product-layout {
        grid-template-columns: 1fr 300px;
        gap: 3rem;
    }
    
    .product-main {
        padding: 2rem;
    }
    
    .product-sidebar > div {
        padding: 1.5rem;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .product-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .product-main,
    .product-sidebar > div {
        padding: 1.5rem !important;
    }
    
    .product-sidebar > div {
        position: static !important;
        margin-top: 0 !important;
    }
    
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        border-radius: 0 0 10px 10px;
    }

    .nav-menu.show {
        display: flex;
    }

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

    .nav-link {
        display: block;
        padding: 1rem;
        text-align: center;
        border-radius: var(--border-radius);
        width: 100%;
    }

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

/* Tablet Portrait (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .container {
        padding: 0 1rem !important;
    }
    
    .product-layout {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .product-main,
    .product-sidebar > div {
        padding: 1rem !important;
        border-radius: 12px !important;
    }
    
    .product-content {
        padding: 2rem 0 !important;
    }
    
    .enhanced-content li {
        padding: 0.6rem 0.8rem !important;
        font-size: clamp(0.8rem, 1.8vw, 0.9rem) !important;
    }
    
    .blog-grid {
        grid-template-columns: 1fr !important;
    }
    
    .categories-grid-new {
        grid-template-columns: 1fr !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem !important;
    }
    
    .product-layout {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .product-main,
    .product-sidebar > div {
        padding: 0.75rem !important;
        border-radius: 10px !important;
    }
    
    .product-content {
        padding: 1.5rem 0 !important;
    }
    
    .enhanced-content li {
        padding: 0.5rem 0.7rem !important;
        margin-bottom: 0.5rem !important;
        border-radius: 0 6px 6px 0 !important;
    }
    
    .enhanced-content h3::before {
        font-size: 1rem !important;
    }
    
    .purchase-btn,
    .product-sidebar a[href*="paypal"] {
        padding: 0.8rem !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
    }
    
    h1 {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
    }
    
    .blog-content .container > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem !important;
    }
    
    .product-main,
    .product-sidebar > div {
        padding: 0.5rem !important;
    }
    
    .enhanced-content li {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.8rem !important;
    }
}

/* =============================================================================
   UTILITY CLASSES FOR OVERFLOW PREVENTION
============================================================================= */

.no-overflow {
    min-width: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
}

/* Apply no-overflow to critical elements */
.container,
.product-layout,
.product-main,
.product-sidebar,
.enhanced-content,
.nav-menu {
    min-width: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* =============================================================================
   HARDWARE ACCELERATION & PERFORMANCE
============================================================================= */

.purchase-btn,
.product-sidebar a[href*="paypal"],
.product-card,
.blog-card,
.category-card-new {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Optimize image loading */
.product-main img,
.blog-image img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

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

/* Focus styles for keyboard navigation */
.purchase-btn:focus,
.product-sidebar a:focus,
.enhanced-content a:focus,
.nav-link:focus,
.btn:focus {
    outline: 2px solid var(--primary-color) !important;
    outline-offset: 2px !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .enhanced-content {
        color: #000 !important;
    }
    
    .enhanced-content h1,
    .enhanced-content h2,
    .enhanced-content h3,
    .enhanced-content h4 {
        color: #000 !important;
    }
    
    .purchase-btn,
    .product-sidebar a[href*="paypal"] {
        background: #000 !important;
        color: #fff !important;
        border: 2px solid #000 !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .purchase-btn,
    .product-sidebar a[href*="paypal"],
    .enhanced-content a,
    .product-card,
    .blog-card {
        transition: none !important;
    }
    
    .purchase-btn:hover,
    .product-sidebar a[href*="paypal"]:hover,
    .product-card:hover,
    .blog-card:hover {
        transform: none !important;
    }
    
    .animate-float,
    .animate-slide-in-left,
    .animate-slide-in-right,
    .animate-fade-in-up {
        animation: none !important;
    }
}