/* assets/css/style.css */
/* TechProfixer - Main Stylesheet */

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

a {
    text-decoration: none;
    color: #1a237e;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ HEADER ============ */
.header {
    background: #1a237e;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: white;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu ul {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: #ffd54f;
    background: rgba(255,255,255,0.1);
}

.btn-login {
    border: 2px solid white;
    padding: 8px 20px !important;
    border-radius: 5px !important;
}

.btn-register {
    background: #ffd54f;
    color: #1a237e !important;
    padding: 8px 20px !important;
    border-radius: 5px !important;
}

.btn-register:hover {
    background: #ffca28 !important;
    color: #1a237e !important;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 10px 0;
    display: none;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    color: #333 !important;
    padding: 10px 20px !important;
    display: block;
    border-radius: 0 !important;
}

.dropdown-menu a:hover {
    background: #f5f5f5 !important;
    color: #1a237e !important;
}

.dropdown-menu hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 5px 0;
}

/* Cart Icon */
.cart-icon {
    position: relative;
}

.cart-count {
    background: #ffd54f;
    color: #1a237e;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* ============ MAIN CONTENT ============ */
.main-content {
    margin-top: 80px;
    min-height: 70vh;
}

/* ============ HERO SECTION ============ */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content h1 span {
    color: #ffd54f;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: #ffd54f;
    color: #1a237e;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #1a237e;
    transform: translateY(-3px);
}

/* ============ SECTION TITLES ============ */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a237e;
}

/* ============ CATEGORIES ============ */
.categories-section {
    padding: 60px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.category-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: block;
    color: #333;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.category-card i {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 10px;
}

.category-card h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.category-card p {
    font-size: 0.8rem;
    color: #666;
}

/* ============ PRODUCTS ============ */
.products-section {
    padding: 60px 0;
    background: #f5f7fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e53935;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.product-info h3 a {
    color: #333;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a237e;
}

.old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.product-rating {
    margin-bottom: 10px;
}

.product-rating .fa-star {
    color: #ddd;
    font-size: 14px;
}

.product-rating .fa-star.active {
    color: #ffc107;
}

.product-rating span {
    font-size: 13px;
    color: #666;
    margin-left: 5px;
}

.btn-add-cart {
    width: 100%;
    padding: 10px;
    background: #1a237e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 500;
}

.btn-add-cart:hover {
    background: #0d47a1;
}

/* ============ FEATURES ============ */
.features-section {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 30px;
}

.feature-box i {
    font-size: 3rem;
    color: #1a237e;
    margin-bottom: 15px;
}

.feature-box h3 {
    margin-bottom: 10px;
    color: #1a237e;
}

.feature-box p {
    color: #666;
}

/* ============ CTA SECTION ============ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ============ FOOTER ============ */
.footer {
    background: #1a237e;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #90caf9;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ffd54f;
}

.newsletter {
    margin-top: 20px;
}

.newsletter form {
    display: flex;
    gap: 10px;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.newsletter button {
    padding: 10px 20px;
    background: #ffd54f;
    color: #1a237e;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #90caf9;
}

/* ============ ALERTS ============ */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-danger {
    background: #fde8e8;
    color: #c62828;
    border: 1px solid #f5c6c6;
}

.alert-info {
    background: #e3f2fd;
    color: #0d47a1;
    border: 1px solid #bbdefb;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .nav-menu ul {
        gap: 10px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter form {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}
/* assets/css/style.css */
/* TechProfixer - Main Stylesheet */

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

a {
    text-decoration: none;
    color: #1a237e;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ HEADER ============ */
.header {
    background: #1a237e;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: white;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu ul {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: #ffd54f;
    background: rgba(255,255,255,0.1);
}

.btn-login {
    border: 2px solid white;
    padding: 8px 20px !important;
    border-radius: 5px !important;
}

.btn-register {
    background: #ffd54f;
    color: #1a237e !important;
    padding: 8px 20px !important;
    border-radius: 5px !important;
}

.btn-register:hover {
    background: #ffca28 !important;
    color: #1a237e !important;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 10px 0;
    display: none;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    color: #333 !important;
    padding: 10px 20px !important;
    display: block;
    border-radius: 0 !important;
}

.dropdown-menu a:hover {
    background: #f5f5f5 !important;
    color: #1a237e !important;
}

.dropdown-menu hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 5px 0;
}

/* Cart Icon */
.cart-icon {
    position: relative;
}

.cart-count {
    background: #ffd54f;
    color: #1a237e;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* ============ MAIN CONTENT ============ */
.main-content {
    margin-top: 80px;
    min-height: 70vh;
}

/* ============ AUTH PAGES (Login/Register) ============ */
.auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f5f7fa;
}

.auth-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    max-width: 450px;
    width: 100%;
}

.register-box {
    max-width: 550px;
}

.auth-box h2 {
    text-align: center;
    color: #1a237e;
    margin-bottom: 10px;
    font-size: 2rem;
}

.auth-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

/* User Type Selector */
.user-type-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.type-option {
    cursor: pointer;
}

.type-option input {
    display: none;
}

.type-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
}

.type-label i {
    font-size: 24px;
    margin-bottom: 5px;
    color: #666;
}

.type-option input:checked + .type-label {
    border-color: #1a237e;
    background: #e8eaf6;
}

.type-option input:checked + .type-label i {
    color: #1a237e;
}

.type-option:hover .type-label {
    border-color: #1a237e;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #1a237e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.form-control.error {
    border-color: #e53935;
}

.form-control.success {
    border-color: #43a047;
}

.form-row {
    display: flex;
    gap: 15px;
}

.half {
    flex: 1;
}

.help-text {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.remember-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.forgot-link {
    color: #1a237e;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #1a237e;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}

.btn-block {
    width: 100%;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #1a237e;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #1a237e;
    transition: all 0.3s;
    text-align: center;
}

.btn-secondary:hover {
    background: #1a237e;
    color: white;
    transform: translateY(-2px);
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.auth-footer a {
    color: #1a237e;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.social-login {
    margin-top: 20px;
}

.social-login p {
    color: #666;
    margin-bottom: 10px;
}

.social-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-google, .btn-facebook {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s;
}

.btn-google {
    background: #db4437;
}

.btn-facebook {
    background: #4267b2;
}

.btn-google:hover, .btn-facebook:hover {
    opacity: 0.9;
}

/* ============ ALERTS ============ */
.alert {
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-danger {
    background: #fde8e8;
    color: #c62828;
    border: 1px solid #f5c6c6;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-info {
    background: #e3f2fd;
    color: #0d47a1;
    border: 1px solid #bbdefb;
}

.alert-warning {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffe0b2;
}

/* ============ DASHBOARDS ============ */
.dashboard-page {
    padding: 40px 0;
}

.dashboard-header {
    margin-bottom: 30px;
}

.dashboard-header h1 {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 5px;
}

.dashboard-header p {
    color: #666;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.stat-icon.blue {
    background: #1a237e;
}

.stat-icon.green {
    background: #43a047;
}

.stat-icon.orange {
    background: #f57c00;
}

.stat-icon.red {
    background: #e53935;
}

.stat-icon.purple {
    background: #7b1fa2;
}

.stat-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2px;
    color: #1a237e;
}

.stat-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Dashboard Sections */
.dashboard-sections {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.dashboard-section {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dashboard-section h2 {
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5f5f5;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f5f7fa;
    border-radius: 8px;
    color: #333;
    transition: all 0.3s;
    text-decoration: none;
}

.quick-action:hover {
    background: #e8eaf6;
    transform: translateX(5px);
}

.quick-action i {
    width: 30px;
    color: #1a237e;
    font-size: 18px;
}

/* Recent Items */
.recent-list {
    list-style: none;
}

.recent-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recent-list li:last-child {
    border-bottom: none;
}

.recent-list .item-title {
    color: #333;
    font-weight: 500;
}

.recent-list .item-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending {
    background: #fff3e0;
    color: #e65100;
}

.status-processing {
    background: #e3f2fd;
    color: #0d47a1;
}

.status-completed {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-cancelled {
    background: #fde8e8;
    color: #c62828;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .auth-box {
        padding: 25px;
    }
    
    .register-box {
        padding: 20px;
    }
    
    .user-type-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-sections {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .auth-box {
        padding: 20px;
    }
    
    .user-type-selector {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Add to style.css */
.main-content {
    margin-top: 0;
    min-height: 70vh;
    padding: 20px 0;
}

/* Alert Styles */
.alert {
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-error {
    background: #fde8e8;
    color: #c62828;
    border: 1px solid #f5c6c6;
}

.alert-info {
    background: #e3f2fd;
    color: #0d47a1;
    border: 1px solid #bbdefb;
}

.alert-warning {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffe0b2;
}
/* ============ WISHLIST BUTTON ============ */
.btn-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: #e53935;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-wishlist:hover {
    background: #e53935;
    color: white;
    transform: scale(1.1);
}

.btn-wishlist.active {
    background: #e53935;
    color: white;
}

.btn-wishlist.active i {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* Product Image Container - Make sure position is relative */
.product-image {
    position: relative;
}