/* Custom CSS for LasteAutod - Kids Ride-on Car E-shop */

:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --accent-blue: #00a8ff;
    --accent-blue-light: #4dc3ff;
    --metallic-silver: #c0c0c0;
    --metallic-grey: #8a8a8a;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --border-dark: #404040;
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-blue: linear-gradient(135deg, #00a8ff 0%, #4dc3ff 100%);
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navigation */
.navbar,
.navbar.navbar-expand-lg,
.navbar.fixed-top,
.navbar.navbar-light,
.navbar.navbar-dark,
nav.navbar,
nav.navbar.navbar-expand-lg,
nav.navbar.fixed-top {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border-bottom: none !important;
    box-shadow: none !important;
    padding: 15px 0 !important;
    transition: all 0.3s ease !important;
}

.navbar-brand {
    transition: all 0.3s ease !important;
}

.navbar-brand:hover {
    transform: scale(1.02) !important;
}

.navbar-nav .nav-link {
    color: #333333 !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding: 15px 25px !important;
    margin: 0 8px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.navbar-nav .nav-link::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    width: 0 !important;
    height: 3px !important;
    background: #333333 !important;
    transition: all 0.3s ease !important;
    transform: translateX(-50%) !important;
    border-radius: 2px !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80% !important;
}

.navbar-nav .nav-link:hover {
    color: #333333 !important;
    background: rgba(51, 51, 51, 0.05) !important;
}

.navbar-nav .nav-link.active {
    color: #333333 !important;
    background: rgba(51, 51, 51, 0.1) !important;
    font-weight: 700 !important;
}

.navbar-toggler {
    border: 2px solid #333333 !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    transition: all 0.3s ease !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.25) !important;
}

.navbar-toggler:hover {
    background: rgba(51, 51, 51, 0.1) !important;
    border-color: #666666 !important;
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #ffffff !important;
        border-radius: 12px !important;
        margin-top: 15px !important;
        padding: 20px !important;
        border: 1px solid #e9ecef !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0 !important;
        padding: 18px 25px !important;
        border-radius: 10px !important;
        text-align: center !important;
        font-size: 1rem !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }
    
    .navbar-nav .nav-link::after {
        display: none !important;
    }
    
    .navbar-brand img {
        height: 80px !important;
    }
    
    .navbar,
    .navbar.navbar-expand-lg,
    .navbar.fixed-top,
    nav.navbar {
        padding: 10px 0 !important;
        background: #ffffff !important;
        border-bottom: 1px solid #e9ecef !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Adjust spacer for mobile */
    .navbar + div {
        height: 100px !important;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        text-align: center;
        padding: 40px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .search-container {
        margin-bottom: 2rem;
    }
    
    .hero-image-container {
        margin-top: 2rem;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Bar */
.search-container {
    max-width: 900px;
    margin: 0 auto 2rem auto;
}

.search-bar {
    display: flex;
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 12px;
}

.search-field {
    flex: 1;
    margin: 0 6px;
}

.search-field .form-select {
    border: none !important;
    background: transparent !important;
    padding: 15px 20px !important;
    font-size: 1rem !important;
    color: #333333 !important;
    cursor: pointer;
    font-weight: 500;
}

.search-field .form-select:focus {
    box-shadow: none !important;
    outline: none !important;
}

.search-button {
    background: var(--accent-blue) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-left: 8px !important;
    font-size: 1.2rem !important;
}

.search-button:hover {
    background: var(--accent-blue-light) !important;
    transform: scale(1.05) !important;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 15px 30px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

.hero-buttons .btn-primary {
    background: var(--accent-blue) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3) !important;
}

.hero-buttons .btn-primary:hover {
    background: var(--accent-blue-light) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 168, 255, 0.4) !important;
}

.hero-buttons .btn-outline-primary {
    border: 2px solid var(--accent-blue) !important;
    color: var(--accent-blue) !important;
    background: transparent !important;
}

.hero-buttons .btn-outline-primary:hover {
    background: var(--accent-blue) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* Hero Image Container */
.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.hero-car-image {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
}

.hero-car-image:hover {
    transform: scale(1.02);
}

/* Background Circles */
.hero-bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.bg-circle-1 {
    width: 300px;
    height: 300px;
    background: #bbdefb;
    top: 10%;
    right: 5%;
    z-index: 1;
}

.bg-circle-2 {
    width: 200px;
    height: 200px;
    background: #e0e0e0;
    bottom: 20%;
    left: 10%;
    z-index: 1;
}

.bg-circle-3 {
    width: 150px;
    height: 150px;
    background: #90caf9;
    top: 60%;
    right: 20%;
    z-index: 1;
}

/* Main Image Section */
.main-image-section {
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.main-image-container {
    max-width: 900px;
    margin: 0 auto;
}

.main-car-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.main-car-image:hover {
    transform: scale(1.02);
}

/* Features Section */
.features-section {
    background: #f8f9fa;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 0;
}

.feature-card {
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-blue);
}

.feature-icon {
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    color: #333333;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .search-bar {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .search-field {
        margin: 4px 0;
    }
    
    .search-button {
        width: 100% !important;
        border-radius: 15px !important;
        margin: 8px 0 0 0 !important;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Categories Section */
.categories-section {
    background: #ffffff;
    padding: 80px 0;
}

.categories-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
}

.categories-section .section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.category-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-blue);
}

.category-image {
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 1.5rem;
    text-align: center;
}

.category-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.75rem;
}

.category-content p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.category-content .btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.category-content .btn:hover {
    transform: translateY(-2px);
}

/* Mobile Categories */
@media (max-width: 991.98px) {
    .categories-section {
        padding: 60px 0;
    }
    
    .categories-section .section-header h2 {
        font-size: 2rem;
    }
    
    .category-card {
        margin-bottom: 1rem;
    }
    
    .category-image {
        height: 150px;
    }
    
    .category-content {
        padding: 1rem;
    }
    
    .category-content h4 {
        font-size: 1.1rem;
    }
}

/* Section Divider */
.section-divider {
    background: #ffffff;
    padding: 40px 0;
    position: relative;
}

.divider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    margin: 0 auto;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-blue) 50%, transparent 100%);
    border-radius: 1px;
}

.divider-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
    transition: all 0.3s ease;
}

.divider-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 168, 255, 0.4);
}

.divider-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

/* Mobile Divider */
@media (max-width: 991.98px) {
    .section-divider {
        padding: 30px 0;
    }
    
    .divider-icon {
        width: 50px;
        height: 50px;
        margin: 0 15px;
    }
    
    .divider-icon i {
        font-size: 1.2rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.testimonials-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
}

.testimonials-section .section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.1rem;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.author-avatar i {
    color: #ffffff;
    font-size: 1.2rem;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Overall Rating */
.overall-rating {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.rating-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    margin-right: 3px;
}

.rating-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Mobile Testimonials */
@media (max-width: 991.98px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
    
    .rating-stars {
        font-size: 1.2rem;
    }
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 80px 0;
}

.faq-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
}

.faq-section .section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Custom Accordion Styling */
.accordion-item {
    border: 1px solid #e9ecef !important;
    border-radius: 12px !important;
    margin-bottom: 1rem !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
}

.accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--accent-blue) !important;
}

.accordion-button {
    background: #ffffff !important;
    border: none !important;
    padding: 1.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #333333 !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.accordion-button:hover {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%) !important;
    color: #ffffff !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: var(--accent-blue) !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transition: all 0.3s ease !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-collapse {
    border-top: 1px solid #e9ecef !important;
}

.accordion-body {
    padding: 1.5rem !important;
    font-size: 1rem !important;
    color: #6c757d !important;
    line-height: 1.6 !important;
    background: #f8f9fa !important;
}

/* Mobile FAQ */
@media (max-width: 991.98px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .section-header h2 {
        font-size: 2rem;
    }
    
    .accordion-button {
        padding: 1.25rem !important;
        font-size: 1rem !important;
    }
    
    .accordion-body {
        padding: 1.25rem !important;
        font-size: 0.95rem !important;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 50px 0 20px;
}

.footer-section h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-blue-light);
    transform: translateY(-2px);
    color: #ffffff;
}

.social-link i {
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--accent-blue);
    width: 16px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #333333;
    margin-top: 30px;
    padding-top: 20px;
}

.copyright {
    color: #b0b0b0;
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-blue);
}

/* Mobile Footer */
@media (max-width: 991.98px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Renting Page Styles */
.renting-page {
    background: #ffffff;
}

/* Renting Hero Section */
.renting-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.renting-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.renting-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.renting-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #333333;
}

.feature-item i {
    color: var(--accent-blue);
    font-size: 1.1rem;
}

.renting-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Device Categories */
.device-categories {
    margin-bottom: 3rem;
}

.category-filter-container {
    display: flex !important;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    visibility: visible !important;
    opacity: 1 !important;
}

.category-filter-btn {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    background: #ffffff;
    color: #6c757d;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

.category-filter-btn:hover {
    border-color: var(--accent-blue);
    background: #f8f9ff;
    color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 255, 0.15);
}

.category-filter-btn.active {
    border-color: var(--accent-blue);
    background: var(--accent-blue);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 255, 0.3);
}

.category-filter-btn i {
    font-size: 1rem;
}

.category-filter-btn span {
    font-weight: 500;
}

/* Device Cards */
.device-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.device-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-blue);
}

.device-image {
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.device-card:hover .device-image img {
    transform: scale(1.05);
}

.device-content {
    padding: 1.5rem;
}

.device-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.75rem;
}

.device-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.device-header h4 {
    margin-bottom: 0;
    flex: 1;
}

.device-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    line-height: 1;
}

.price-unit {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

.device-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.device-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6c757d;
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.spec-item i {
    color: var(--accent-blue);
    font-size: 0.8rem;
}

.device-actions {
    display: flex;
    gap: 0.75rem;
}

.device-actions .btn {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 8px;
}

/* Selected Devices */
.selected-devices {
    min-height: 60px;
    border: 2px dashed #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    background: #f8f9fa;
}

.device-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-blue);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin: 0.25rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-remove {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    font-size: 0.8rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.btn-remove:hover {
    opacity: 1;
}

/* Rental Form */
.rental-form-section {
    background: #f8f9fa;
}

.rental-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.form-label {
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 168, 255, 0.25);
}

.form-check-input:checked {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.birthday-fields {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid #e9ecef;
}

/* Modern Price Estimate */
.price-estimate-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.price-estimate-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.price-estimate-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-estimate-content i {
    background: #007bff;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.price-info {
    flex: 1;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 4px;
}

.price-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
}

.price-note {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #dee2e6;
}

.price-note small {
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}

.price-note i {
    color: #6c757d;
    font-size: 12px;
}

/* Device Modal */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 600;
    color: #333333;
}

.modal-body {
    padding: 1.5rem;
}

.device-modal-content h4 {
    color: #333333;
    margin-bottom: 1rem;
}

.device-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.device-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #6c757d;
}

.device-features li i {
    color: var(--accent-blue);
    width: 16px;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1.5rem;
}

/* Notifications */
.alert {
    border-radius: 8px;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .renting-title {
        font-size: 2.5rem;
    }
    
    .renting-subtitle {
        font-size: 1.1rem;
    }
    
    .device-actions {
        flex-direction: column;
    }
    
    .device-specs {
        justify-content: center;
    }
    
    .rental-form-card {
        padding: 1.5rem;
    }
    
    .category-filter-container {
        gap: 0.5rem;
    }
    
    .category-filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 767.98px) {
    .renting-hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .renting-title {
        font-size: 2rem;
    }
    
    .device-content {
        padding: 1rem;
    }
    
    .device-image {
        height: 150px;
    }
    
    .rental-form-card {
        padding: 1rem;
    }
    
    .modal-dialog {
        margin: 1rem;
    }
    
    .category-filter-container {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .category-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-width: auto;
    }
    
    .category-filter-btn span {
        display: none;
    }
    
    .category-filter-btn i {
        font-size: 1.1rem;
    }
}

/* Store Page Styles */
.store-page {
    background-color: #f8f9fa;
}

/* Applied Filters Section */
.applied-filters-section {
    border-bottom: 1px solid #e9ecef;
}

.applied-filters .badge {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
}

.applied-filters .badge a:hover {
    opacity: 0.8;
}

.store-controls {
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.search-container {
    position: relative;
}

.search-container .input-group-text {
    background: white;
    border-right: none;
}

.search-container .form-control {
    border-left: none;
}

.search-container .form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}

.cart-summary {
    text-align: right;
}

.cart-btn {
    position: relative;
    padding: 10px 20px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Filters */
.filters-section {
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.filters-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label {
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.filter-buttons {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.filter-btn {
    border: 1px solid #dee2e6;
    background: white;
    color: #6c757d;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

.filter-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.advanced-filters-toggle {
    margin-left: auto;
}

.advanced-filters {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #007bff;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.product-badge.out-of-stock {
    background: #dc3545;
}

.product-badge.new {
    background: #28a745;
}

.product-badge.premium {
    background: #ffc107;
    color: #212529;
}

.product-badge.jussike-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.product-badge.jussike-badge i {
    margin-right: 4px;
}

.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.spec-item {
    background: #f8f9fa;
    color: #6c757d;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-price {
    margin-bottom: 15px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: #007bff;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    margin-left: 8px;
}

.discount {
    background: #dc3545;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 8px;
}

.out-of-stock-text {
    color: #dc3545;
    font-weight: 600;
    margin-left: 8px;
}

.product-actions {
    margin-top: auto;
    display: flex;
    gap: 8px;
}

.product-actions .btn {
    flex: 1;
    font-size: 14px;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1050;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h5 {
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #6c757d;
}

.cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f8f9fa;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h6 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.cart-item-price {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

.btn-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 5px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.cart-checkout {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

/* Product Modal */
.product-modal-content {
    padding: 20px 0;
}

.product-features {
    margin: 20px 0;
}

.product-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-price-large {
    margin: 20px 0;
}

.product-gallery img {
    transition: opacity 0.3s ease;
}

.product-gallery img:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .filters-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .advanced-filters-toggle {
        margin-left: 0;
        text-align: center;
    }
}

/* Order Page Styles */
.order-page {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Order Header */
.order-header {
    background: #fff;
    border-bottom: 1px solid #dee2e6;
}

.order-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.order-title i {
    color: var(--accent-blue);
    font-size: 2rem;
}

.order-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

/* Order Form Container */
.order-form-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Form Sections */
.form-section {
    border-bottom: 1px solid #e9ecef;
    padding: 2rem;
}

.form-section:last-child {
    border-bottom: none;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-header h3 i {
    color: var(--accent-blue);
    font-size: 1.25rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Delivery Options */
.delivery-options {
    margin-bottom: 2rem;
}

.delivery-option {
    margin-bottom: 1rem;
}

.delivery-option input[type="radio"] {
    display: none;
}

.delivery-option-label {
    display: block;
    cursor: pointer;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    background: #fff;
}

.delivery-option input[type="radio"]:checked + .delivery-option-label {
    border-color: var(--accent-blue);
    background: #f8f9ff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15);
}

.option-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.option-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.option-details {
    flex: 1;
}

.option-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0 0.25rem 0;
}

.option-details p {
    color: #6c757d;
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

.option-price {
    font-weight: 600;
    color: var(--accent-blue);
    font-size: 1rem;
}

/* Delivery Address */
.delivery-address {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.delivery-address h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Order Summary */
.order-summary-container {
    position: sticky;
    top: 2rem;
}

.order-summary {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.summary-header {
    background: var(--accent-blue);
    color: white;
    padding: 1.5rem;
}

.summary-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.summary-items {
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
    border-bottom: none;
}

.item-info h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0 0.25rem 0;
}

.item-quantity {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.item-price {
    font-weight: 600;
    color: var(--accent-blue);
    font-size: 1.1rem;
}

/* Summary Totals */
.summary-totals {
    padding: 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    border-top: 2px solid #dee2e6;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

/* Summary Actions */
.summary-actions {
    padding: 1.5rem;
}

.summary-actions .btn {
    font-weight: 600;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Order Confirmation Modal */
.confirmation-content {
    text-align: center;
}

.confirmation-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.confirmation-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: left;
}

.confirmation-details h6 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.confirmation-details p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .order-title {
        font-size: 2rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .option-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .option-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .order-summary-container {
        position: static;
        margin-top: 2rem;
    }
    
    .summary-items {
        max-height: 200px;
    }
}

@media (max-width: 576px) {
    .order-title {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .form-section {
        padding: 1rem;
    }
    
    .delivery-option-label {
        padding: 1rem;
    }
    
    .summary-actions .btn {
        font-size: 1rem;
        padding: 0.875rem;
    }
}

/* Admin Login Styles */
.admin-login-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 15px;
}

.admin-login-card .card-header {
    border-radius: 15px 15px 0 0 !important;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.admin-login-card .form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.admin-login-card .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.admin-login-card .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.admin-login-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Product Detail Page Styles */
.product-detail-section {
    background: white;
}

.product-images-container {
    position: relative;
}

.main-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-thumb {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover {
    border-color: #007bff;
    transform: scale(1.05);
}

.gallery-thumb.active {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.product-info-container {
    padding: 20px;
}

.product-title {
    color: #333;
    font-weight: 600;
    line-height: 1.2;
}

.specs-grid {
    display: grid;
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.spec-label {
    font-weight: 600;
    color: #495057;
}

.spec-value {
    color: #6c757d;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-actions {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.product-meta {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
}

.related-products-section {
    background: #f8f9fa;
}

@media (max-width: 991.98px) {
    .product-info-container {
        padding: 0;
        margin-top: 20px;
    }
    
    .main-image-wrapper img {
        height: 400px !important;
    }
    
    .gallery-thumb {
        height: 60px !important;
    }
}

/* Cart Sidebar Fixes */
.cart-sidebar .btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    padding: 0;
    width: auto;
    height: auto;
    position: relative;
}

.cart-sidebar .btn-close:hover {
    color: #dc3545;
}

.cart-sidebar .btn-close::before {
    content: "×";
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Product Card Consistency */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #007bff;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.out-of-stock {
    background: #dc3545;
}

.product-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.3;
}

.product-specs {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.spec-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #6c757d;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    margin-right: 0.4rem;
    margin-bottom: 0.3rem;
    min-width: 60px;
    text-align: center;
    line-height: 1.2;
}

.spec-item i {
    margin-right: 0.3rem;
    font-size: 0.7rem;
}

.product-price {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #007bff;
}

.out-of-stock-text {
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.product-actions .btn {
    flex: 1;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
}

/* Cart Navigation Styles */
.cart-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-count-nav {
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: -5px;
    right: -5px;
}

.cart-nav-link:hover .cart-count-nav {
    background: #c82333;
}

/* Product Detail Page Styles */
.product-detail-section {
    background: white;
}

.product-images-container {
    position: relative;
}

.main-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-thumb {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover {
    border-color: #007bff;
    transform: scale(1.05);
}

.gallery-thumb.active {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.product-info-container {
    padding: 20px;
}

.product-title {
    color: #333;
    font-weight: 600;
    line-height: 1.2;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-actions {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    display: block;
}

.product-meta {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
}

.related-products-section {
    background: #f8f9fa;
}

@media (max-width: 991.98px) {
    .product-info-container {
        padding: 0;
        margin-top: 20px;
    }
    
    .main-image-wrapper img {
        height: 400px !important;
    }
    
    .gallery-thumb {
        height: 60px !important;
    }
}

/* Product Specifications Section */
.product-specifications-section {
    margin-top: 2rem;
}

.specifications-header {
    position: relative;
    margin-bottom: 1.5rem;
}

.specifications-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 1px;
}

.specifications-grid {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.specification-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.specification-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.spec-icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.spec-icon-wrapper i {
    font-size: 1.25rem;
    font-weight: 600;
}

.spec-content {
    flex: 1;
}

.spec-label {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: #495057;
    font-weight: 600;
}

.spec-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c757d;
    line-height: 1.3;
}

/* Responsive adjustments for specifications */
@media (max-width: 768px) {
    .specifications-grid {
        padding: 1rem;
    }
    
    .specification-card {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .spec-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .spec-icon-wrapper i {
        font-size: 1rem;
    }
    
    .spec-label {
        font-size: 0.8rem;
    }
    
    .spec-value {
        font-size: 0.8rem;
    }
}

/* Filter Panel Styles */
.filter-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.filter-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.filter-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 1050;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.filter-panel.active {
    right: 0;
}

.filter-panel-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.filter-panel-header h4 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.filter-panel-header .btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    line-height: 1;
}

.filter-panel-header .btn-close:hover {
    background: #e9ecef;
    color: #333;
}

.filter-panel-header .btn-close span {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.filter-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.filter-section {
    margin-bottom: 25px;
}

.filter-section h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.filter-option:hover {
    background: #f8f9fa;
}

.filter-option input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    accent-color: #007bff;
}

.filter-option span {
    color: #495057;
    font-size: 0.9rem;
}

.filter-panel-footer {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.filter-panel-footer .btn {
    flex: 1;
}

/* Enhanced Filter Button Styles */
.advanced-filters-toggle .btn {
    transition: all 0.2s ease;
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 500;
}

.advanced-filters-toggle .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.advanced-filters-toggle .btn i {
    margin-right: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .filter-panel {
        width: 100%;
        right: -100%;
    }
    
    .filter-panel-body {
        padding: 15px;
    }
    
    .filter-panel-header {
        padding: 15px;
    }
    
    .filter-panel-footer {
        padding: 15px;
        flex-direction: column;
    }
    
    .filter-panel-footer .btn {
        width: 100%;
    }
}

/* Filter Results Counter */
.filter-results-counter {
    background: #e9ecef;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #6c757d;
    margin-left: 15px;
}

/* Active Filter Indicators */
.filter-checkbox:checked + span {
    color: #007bff;
    font-weight: 500;
}

.filter-option:has(.filter-checkbox:checked) {
    background: #e3f2fd;
    border-left: 3px solid #007bff;
}

/* Enhanced Product Detail Styles */
.product-detail-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.main-image-container {
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.main-image-container:hover {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-thumb-container {
    transition: transform 0.2s ease;
}

.gallery-thumb-container:hover {
    transform: translateY(-2px);
}

.gallery-thumb {
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.gallery-thumb:hover {
    border-color: #007bff !important;
    transform: scale(1.05);
}

.gallery-thumb.active {
    border-color: #007bff !important;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 123, 255, 0.3);
}

.quick-specs {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quick-spec-item {
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.quick-spec-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.product-price-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
}

.product-description {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
}

/* Enhanced Related Products */
.related-products-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.related-products-section .product-card {
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.related-products-section .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

/* Enhanced Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    font-weight: bold;
}

/* Responsive improvements for product detail */
@media (max-width: 768px) {
    .main-image-container img {
        height: 400px !important;
    }
    
    .gallery-thumb {
        height: 80px !important;
    }
    
    .quick-spec-item {
        margin-bottom: 1rem;
    }
    
    .product-price-section .price-display {
        flex-direction: column;
        text-align: center;
    }
    
    .product-price-section .price-display > div {
        margin-bottom: 1rem;
    }
}


