:root {
    --primary: #0B7285;
    --primary-light: #0e94ad;
    --primary-dark: #06505e;
    --accent: #F59E0B;
    --accent-light: #FBBF24;
    --accent-dark: #D97706;
    --light: #F3F4F6;
    --dark: #1F2937;
    --gray-light: #E5E7EB;
    --gray: #9CA3AF;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: #FFFFFF;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-primary-custom:hover {
        background-color: var(--primary-dark);
        border-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(11, 114, 133, 0.2);
    }

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-accent:hover {
        background-color: var(--accent-dark);
        border-color: var(--accent-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
    }

.btn-outline {
    background-color: var(--primary-light);
    color: white;
    border: 2px solid var(--primary);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-outline:hover {
        background-color: var(--primary-light);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(11, 114, 133, 0.2);
    }

/* Header Topbar */
.header-topbar {
    background-color: var(--primary-dark);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.social-icon a {
    color: white;
    margin-right: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

    .social-icon a:hover {
        opacity: 1;
        transform: scale(1.1);
    }

/* Navbar */
.navbar {
    background-color: var(--primary);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 1px 6px 14px 3px #0b5664;
}
    .navbar.scrolled {
        padding: 10px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 1.5rem;
}

    .navbar-brand:hover {
        color: white;
    }

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    margin: 0 5px;
    padding: 8px 15px !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .nav-link:hover, .nav-link.active {
        color: white !important;
        background-color: rgba(255, 255, 255, 0.1);
    }

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0B7285 0%, #06505e 100%);
    color: white;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3QgaWQ9InBhdHRlcm4tYmciIHdpZHRoPSI0MDAiIGhlaWdodD0iNDAwIiBmaWxsPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDIpIj48L3JlY3Q+PHBhdGggZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA4KSIgZD0iTTAgMGg1djVIMHoiPjwvcGF0aD48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IGZpbGw9InVybCgjcGF0dGVybikiIGhlaWdodD0iMTAwJSIgd2lkdGg9IjEwMCUiPjwvcmVjdD48L3N2Zz4=');
        opacity: 0.5;
    }

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3QgaWQ9InBhdHRlcm4tYmciIHdpZHRoPSI0MDAiIGhlaWdodD0iNDAwIiBmaWxsPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDIpIj48L3JlY3Q+PHBhdGggZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA4KSIgZD0iTTAgMGg1djVIMHoiPjwvcGF0aD48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IGZpbGw9InVybCgjcGF0dGVybikiIGhlaWdodD0iMTAwJSIgd2lkdGg9IjEwMCUiPjwvcmVjdD48L3N2Zz4=');
        opacity: 0.5;
    }

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Cards */
.feature-card, .product-card, .blog-card {
    padding: 30px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--gray-light);
    overflow: hidden;
    margin-bottom: 2rem;
}

    .feature-card:hover, .product-card:hover, .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-light);
    }

/* Blog */
.blog-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    margin-bottom: 1rem;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

/* Product */
.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

    .product-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

/* Forms */
.form-control {
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--gray-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 0.25rem rgba(11, 114, 133, 0.25);
    }

/* Footer Styles */
footer {
    background: var(--dark);
    color: white;
    padding-top: 80px;
    padding-bottom: 30px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--primary);
        border-radius: 1.5px;
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-links a i {
            margin-right: 10px;
            color: var(--primary);
        }

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

    .footer-contact-item i {
        margin-right: 15px;
        color: var(--primary);
        margin-top: 5px;
    }

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex: 1;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 20px;
    border-radius: 8px 0 0 8px;
    outline: none;
}

    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

.newsletter-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .newsletter-btn:hover {
        background: var(--primary-light);
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 50px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

    .footer-bottom-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .footer-bottom-links a:hover {
            color: white;
        }

/* Hero Image Animation */
.hero-image {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s ease;
}

    .hero-image:hover {
        transform: perspective(1000px) rotateY(0deg);
    }

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

    .breadcrumb-item a:hover {
        color: white;
    }

.breadcrumb-item.active {
    color: white;
}

/* Category Cards */
.category-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: white;
    
    border: 1px solid var(--gray-light);
}

    .category-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.category-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

    .category-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

.category-card:hover .category-image img {
    transform: scale(1.1);
}



.category-card:hover .category-title {
    background: var(--primary);
    color: white;
}

/* Feature Icon */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: white;
    border-radius: 16px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    transform: rotate(5deg) scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Product Status and Details */
.product-status {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.status-used {
    background-color: var(--warning);
    color: white;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.product-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.product-detail {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--gray);
}

    .product-detail i {
        margin-right: 5px;
        color: var(--primary);
    }

/* How It Works Section */
.how-it-works {
    background-color: var(--light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}



/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: var(--light);
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
    height: 100%;
}

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-light);
    }

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-info h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.rating {
    color: var(--accent);
    margin-bottom: 10px;
}

/* District Section */
.district-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

    .district-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3QgaWQ9InBhdHRlcm4tYmciIHdpZHRoPSI0MDAiIGhlaWdodD0iNDAwIiBmaWxsPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDIpIj48L3JlY3Q+PHBhdGggZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA4KSIgZD0iTTAgMGg1djVIMHoiPjwvcGF0aD48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IGZpbGw9InVybCgjcGF0dGVybikiIGhlaWdodD0iMTAwJSIgd2lkdGg9IjEwMCUiPjwvcmVjdD48L3N2Zz4=');
        opacity: 0.2;
    }

.district-title {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.district-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.district-link {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .district-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        color: white;
    }

/* Section Title with Decoration */
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        border-radius: 2px;
    }

/* Responsive Fixes */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        margin-top: 30px;
        transform: perspective(1000px) rotateY(0);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .feature-card, .category-card, .product-card, .step-card, .testimonial-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-primary-custom, .btn-accent, .btn-outline {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Product Detail Page */
.product-gallery {
    position: relative;
    margin-bottom: 30px;
}

.product-main-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border: 1px solid var(--gray-light);
}

    .product-main-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.product-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--gray-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

    .product-thumbnail img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .product-thumbnail.active {
        border-color: var(--primary);
    }

    .product-thumbnail:hover {
        border-color: var(--primary-light);
    }

.product-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.product-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 15px;
}

.status-new {
    background-color: #ffc107;
    color: white;
}

.status-used {
    background-color: var(--accent);
    color: white;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.product-info {
    margin-bottom: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.product-info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
}

    .product-info-item:last-child {
        border-bottom: none;
    }

.product-info-label {
    font-weight: 600;
    color: var(--dark);
}

.product-info-value {
    color: var(--gray);
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.seller-info {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.seller-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.seller-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.seller-avatar {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
}

.seller-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.seller-rating {
    display: flex;
    align-items: center;
}

    .seller-rating i {
        color: #FFA41C;
        margin-right: 2px;
    }

.seller-rating-text {
    margin-left: 5px;
    font-size: 0.875rem;
    color: var(--gray);
}

.seller-contact {
    display: flex;
    gap: 10px;
}

/* Tab content */
.nav-tabs .nav-link {
    color: var(--dark) !important;
    border: 1px solid transparent;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 12px 20px !important;
    font-weight: 600;
    background-color: transparent;
}

    .nav-tabs .nav-link:hover {
        background-color: rgba(11, 114, 133, 0.05);
        border-color: transparent;
    }

    .nav-tabs .nav-link.active {
        color: var(--primary) !important;
        background-color: white;
        border-color: var(--gray-light);
        border-bottom-color: transparent;
    }

.tab-content {
    background-color: white;
}

/* Similar Products Section */
.similar-products {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.similar-products-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark);
}

.product-card {
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--gray-light);
    padding: 0;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.product-image {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    overflow: hidden;
}

    .product-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: all 0.3s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-status-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    z-index: 1;
}

.product-content {
    padding: 20px;
}

.product-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
    height: 3.1em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-details {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.product-detail {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 5px;
}

    .product-detail i {
        width: 20px;
        text-align: center;
        margin-right: 5px;
        color: var(--primary);
    }

.product-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .product-gallery {
        margin-bottom: 40px;
    }

    .product-main-image {
        height: 350px;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-info-item {
        flex-direction: column;
    }

    .product-info-value {
        margin-top: 5px;
    }
}

@media (max-width: 767px) {
    .product-main-image {
        height: 300px;
    }

    .similar-products .col-md-3 {
        margin-bottom: 30px;
    }

    .seller-contact {
        flex-direction: column;
    }
}
.step-card {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
}

    .step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-light);
    }

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    color: white;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: rotate(10deg) scale(1.1);
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}