﻿/* Custom Styles - Works with Tailwind CSS */

/* Remove default body padding as layout is controlled by Tailwind */
body {
    margin: 0;
    padding: 0;
}

/* Line clamp utility for text truncation */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

/* Focus states for better accessibility */
*:focus {
    outline-offset: 2px;
}

/* Better button transitions */
button,
a {
    transition: all 0.2s ease-in-out;
}

/* Search Autocomplete Styles */
#search-results {
    border-top: none;
}

.search-result-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f9fafb;
}

.search-result-item img {
    width: 48px;
    height: 68px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-price {
    font-size: 16px;
    font-weight: 700;
    color: #dc2626;
}

.search-view-more {
    display: block;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    color: #4b5563;
    border-top: 2px solid #f3f4f6;
    transition: all 0.2s;
}

.search-view-more:hover {
    background-color: #f9fafb;
    color: #1f2937;
}

.search-no-results {
    padding: 32px 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

/* Animated Detail Button - Slide Effect */
.detail-btn-animated {
    width: auto;
    min-width: 120px;
    height: 40px;
    padding: 0 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.detail-btn-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #2563eb;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.detail-btn-animated:hover::before {
    left: 0;
}

.detail-btn-animated:hover {
    min-width: 140px;
    color: white;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.detail-btn-animated i,
.detail-btn-text {
    position: relative;
    z-index: 2;
}

.detail-btn-text {
    opacity: 1;
    max-width: 100px;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    overflow: visible;
}

/* Gradient Glow Animated Buttons */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.btn-gradient-blue,
.btn-gradient-green,
.btn-gradient-gray {
    position: relative;
    color: white;
    font-weight: 600;
    background-size: 200% 200%;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Blue Gradient Button */
.btn-gradient-blue {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #2563eb 100%);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-gradient-blue:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #1d4ed8 100%);
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px) scale(1.02);
}

.btn-gradient-blue:active {
    transform: translateY(0) scale(0.98);
}

/* Green Gradient Button */
.btn-gradient-green {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #16a34a 100%);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-gradient-green:hover {
    background: linear-gradient(135deg, #15803d 0%, #16a34a 50%, #15803d 100%);
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.5);
    transform: translateY(-2px) scale(1.02);
}

.btn-gradient-green:active {
    transform: translateY(0) scale(0.98);
}

/* Gray Gradient Button */
.btn-gradient-gray {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #6b7280 100%);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.btn-gradient-gray:hover {
    background: linear-gradient(135deg, #4b5563 0%, #6b7280 50%, #4b5563 100%);
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.5);
    transform: translateY(-2px) scale(1.02);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f9fafb;
}

.search-result-item img {
    width: 48px;
    height: 68px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-price {
    font-size: 16px;
    font-weight: 700;
    color: #dc2626;
}

.search-view-more {
    display: block;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    color: #4b5563;
    border-top: 2px solid #f3f4f6;
    transition: all 0.2s;
}

.search-view-more:hover {
    background-color: #f9fafb;
    color: #1f2937;
}

.search-no-results {
    padding: 32px 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

/* Animated Detail Button - Slide Effect */
.detail-btn-animated {
    width: auto;
    min-width: 120px;
    height: 40px;
    padding: 0 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.detail-btn-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #2563eb;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.detail-btn-animated:hover::before {
    left: 0;
}

.detail-btn-animated:hover {
    min-width: 140px;
    color: white;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.detail-btn-animated i,
.detail-btn-text {
    position: relative;
    z-index: 2;
}

.detail-btn-text {
    opacity: 1;
    max-width: 100px;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    overflow: visible;
}

/* Gradient Glow Animated Buttons */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.btn-gradient-blue,
.btn-gradient-green,
.btn-gradient-gray {
    position: relative;
    color: white;
    font-weight: 600;
    background-size: 200% 200%;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Blue Gradient Button */
.btn-gradient-blue {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #2563eb 100%);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-gradient-blue:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #1d4ed8 100%);
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px) scale(1.02);
}

.btn-gradient-blue:active {
    transform: translateY(0) scale(0.98);
}

/* Green Gradient Button */
.btn-gradient-green {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #16a34a 100%);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-gradient-green:hover {
    background: linear-gradient(135deg, #15803d 0%, #16a34a 50%, #15803d 100%);
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.5);
    transform: translateY(-2px) scale(1.02);
}

.btn-gradient-green:active {
    transform: translateY(0) scale(0.98);
}

/* Gray Gradient Button */
.btn-gradient-gray {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #6b7280 100%);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.btn-gradient-gray:hover {
    background: linear-gradient(135deg, #4b5563 0%, #6b7280 50%, #4b5563 100%);
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.5);
    transform: translateY(-2px) scale(1.02);
}

.btn-gradient-gray:active {
    transform: translateY(0) scale(0.98);
}

/* Icon Animation on Hover */
.btn-gradient-blue:hover .btn-icon,
.search-result-item img {
    width: 48px;
    height: 68px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-price {
    font-size: 16px;
    font-weight: 700;
    color: #dc2626;
}

.search-view-more {
    display: block;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    color: #4b5563;
    border-top: 2px solid #f3f4f6;
    transition: all 0.2s;
}

.search-view-more:hover {
    background-color: #f9fafb;
    color: #1f2937;
}

.search-no-results {
    padding: 32px 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

/* Animated Detail Button - Slide Effect */
.detail-btn-animated {
    width: auto;
    min-width: 120px;
    height: 40px;
    padding: 0 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.detail-btn-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #2563eb;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.detail-btn-animated:hover::before {
    left: 0;
}

.detail-btn-animated:hover {
    min-width: 140px;
    color: white;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.detail-btn-animated i,
.detail-btn-text {
    position: relative;
    z-index: 2;
}

.detail-btn-text {
    opacity: 1;
    max-width: 100px;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    overflow: visible;
}

/* Gradient Glow Animated Buttons */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.btn-gradient-blue,
.btn-gradient-green,
.btn-gradient-gray {
    position: relative;
    color: white;
    font-weight: 600;
    background-size: 200% 200%;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Blue Gradient Button */
.btn-gradient-blue {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #2563eb 100%);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-gradient-blue:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #1d4ed8 100%);
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

.btn-gradient-blue:active {
    transform: translateY(0);
}

/* Green Gradient Button */
.btn-gradient-green {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #16a34a 100%);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-gradient-green:hover {
    background: linear-gradient(135deg, #15803d 0%, #16a34a 50%, #15803d 100%);
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.5);
    transform: translateY(-2px);
}

.btn-gradient-green:active {
    transform: translateY(0);
}

/* Gray Gradient Button */
.btn-gradient-gray {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #6b7280 100%);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.btn-gradient-gray:hover {
    background: linear-gradient(135deg, #4b5563 0%, #6b7280 50%, #4b5563 100%);
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.5);
    transform: translateY(-2px);
}

.btn-gradient-gray:active {
    transform: translateY(0);
}

/* Icon Animation on Hover */
.btn-gradient-blue:hover .btn-icon,
.btn-gradient-green:hover .btn-icon,
.btn-gradient-gray:hover .btn-icon {
    animation: iconBounce 0.6s ease infinite;
}

/* Price Range Slider */
.price-slider {
    pointer-events: all;
    z-index: 2;
}

.price-slider::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3b82f6;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3b82f6;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.price-slider:hover::-webkit-slider-thumb {
    background: #1d4ed8;
    transform: scale(1.1);
}

.search-view-more:hover {
    background-color: #f9fafb;
    color: #1f2937;
}

.search-no-results {
    padding: 32px 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

/* Animated Detail Button - Slide Effect */
.detail-btn-animated {
    width: auto;
    min-width: 120px;
    height: 40px;
    padding: 0 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.detail-btn-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #2563eb;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.detail-btn-animated:hover::before {
    left: 0;
}

.detail-btn-animated:hover {
    min-width: 140px;
    color: white;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.detail-btn-animated i,
.detail-btn-text {
    position: relative;
    z-index: 2;
}

.detail-btn-text {
    opacity: 1;
    max-width: 100px;
    transition: all 0.3s ease;

}

.btn-gradient-blue:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4), 0 4px 6px -2px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.btn-gradient-blue:active {
    transform: translateY(0);
}

.btn-gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3), 0 2px 4px -1px rgba(16, 185, 129, 0.2);
}

.btn-gradient-green:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4), 0 4px 6px -2px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.btn-gradient-green:active {
    transform: translateY(0);
}

.btn-gradient-gray {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(107, 114, 128, 0.3), 0 2px 4px -1px rgba(107, 114, 128, 0.2);
}

.btn-gradient-gray:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    box-shadow: 0 10px 15px -3px rgba(107, 114, 128, 0.4), 0 4px 6px -2px rgba(107, 114, 128, 0.3);
    transform: translateY(-2px);
}

.btn-gradient-gray:active {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #2563eb 100%);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-gradient-blue:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #1d4ed8 100%);
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

.btn-gradient-blue:active {
    transform: translateY(0);
}

/* Green Gradient Button */
.btn-gradient-green {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #16a34a 100%);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-gradient-green:hover {
    background: linear-gradient(135deg, #15803d 0%, #16a34a 50%, #15803d 100%);
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.5);
    transform: translateY(-2px);
}

.btn-gradient-green:active {
    transform: translateY(0);
}

/* Gray Gradient Button */
.btn-gradient-gray {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #6b7280 100%);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.btn-gradient-gray:hover {
    background: linear-gradient(135deg, #4b5563 0%, #6b7280 50%, #4b5563 100%);
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.5);
    transform: translateY(-2px);
}

.btn-gradient-gray:active {
    transform: translateY(0);
}

/* Icon Animation on Hover */
.btn-gradient-blue:hover .btn-icon,
.btn-gradient-green:hover .btn-icon,
.btn-gradient-gray:hover .btn-icon {
    animation: iconBounce 0.6s ease infinite;
}

/* Price Range Slider */
.price-slider {
    pointer-events: all;
    z-index: 2;
}

.price-slider::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3b82f6;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3b82f6;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.price-slider:hover::-webkit-slider-thumb {
    background: #1d4ed8;
    transform: scale(1.1);
}

.search-view-more:hover {
    background-color: #f9fafb;
    color: #1f2937;
}

.search-no-results {
    padding: 32px 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

/* Animated Detail Button - Slide Effect */
.detail-btn-animated {
    width: auto;
    min-width: 120px;
    height: 40px;
    padding: 0 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.detail-btn-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #2563eb;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.detail-btn-animated:hover::before {
    left: 0;
}

.detail-btn-animated:hover {
    min-width: 140px;
    color: white;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.detail-btn-animated i,
.detail-btn-text {
    position: relative;
    z-index: 2;
}

.detail-btn-text {
    opacity: 1;
    max-width: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3), 0 2px 4px -1px rgba(59, 130, 246, 0.2);
}

.btn-gradient-blue:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4), 0 4px 6px -2px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.btn-gradient-blue:active {
    transform: translateY(0);
}

.btn-gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3), 0 2px 4px -1px rgba(16, 185, 129, 0.2);
}

.btn-gradient-green:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4), 0 4px 6px -2px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.btn-gradient-green:active {
    transform: translateY(0);
}

.btn-gradient-gray {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(107, 114, 128, 0.3), 0 2px 4px -1px rgba(107, 114, 128, 0.2);
}

.btn-gradient-gray:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    box-shadow: 0 10px 15px -3px rgba(107, 114, 128, 0.4), 0 4px 6px -2px rgba(107, 114, 128, 0.3);
    transform: translateY(-2px);
}

.btn-gradient-gray:active {
    transform: translateY(0);
}

/* Button Icon Animation */
.btn-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-gradient-blue:hover .btn-icon,
.btn-gradient-green:hover .btn-icon,
.btn-gradient-gray:hover .btn-icon {
    transform: scale(1.1);
}

/* Simple Cart and Buy Buttons */
.btn-cart {
    background: #2563eb;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-cart:hover {
    background: #1d4ed8;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
}

.btn-cart:active {
    transform: translateY(0);
}

.btn-buy {
    background: #10b981;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background: #059669;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    transform: translateY(-1px);
}

.btn-buy:active {
    transform: translateY(0);
}