/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e67e22;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar {
    background: white;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.company-name {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.navbar-brand:hover .company-name {
    color: #2c3e50;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1600210492493-0946911123ea?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background: white;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    height: 250px;
    object-fit: cover;
}

.product-card .card-body {
    padding: 1.5rem;
}

.price {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: bold;
}

.wholesale-badge {
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: inline-block;
}

/* Product Detail Page */
.product-detail {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 30px;
    margin: 30px 0;
}

.product-images {
    margin-bottom: 30px;
    position: relative;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
    border: 2px solid transparent;
}

.thumbnail:hover, .thumbnail.active {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.product-info h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-description {
    margin: 30px 0;
    line-height: 1.6;
}

.product-meta {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.product-meta p {
    margin-bottom: 10px;
}

.product-meta i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: #d35400;
    border-color: #d35400;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: white;
}

.feature-box {
    text-align: center;
    padding: 30px;
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: #2c3e50;
    padding: 60px 0 0;
    color: #fff;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #e67e22;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #e67e22;
}

.footer-contact p {
    margin-bottom: 15px;
    color: #fff;
}

.footer-contact i {
    margin-right: 10px;
    color: #e67e22;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #e67e22;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #d35400;
}

.footer-bottom {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.footer-bottom-links {
    text-align: right;
}

.footer-bottom-links a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #e67e22;
}

/* Image Gallery Navigation */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.gallery-nav button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: background-color 0.3s;
}

.gallery-nav button:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .main-image {
        height: 300px;
    }
    
    .thumbnail {
        width: 80px;
        height: 80px;
    }
    
    .product-detail {
        padding: 15px;
    }
}

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    padding: 12px 0;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.top-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    margin-right: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.top-link:hover {
    color: #fff;
    transform: translateY(-1px);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.top-link i {
    font-size: 1rem;
    color: #e67e22;
    transition: all 0.3s ease;
}

.top-link:hover i {
    transform: scale(1.1);
}

.social-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    margin-left: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.social-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.social-link i {
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

.navbar-scrolled {
    background: white;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-scrolled .navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover i {
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #e67e22;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.btn-primary {
    background: #e67e22;
    border-color: #e67e22;
    border-radius: 25px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link.btn-primary:hover {
    background: #d35400;
    border-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.navbar-nav .nav-link.btn-primary i {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top {
        text-align: center;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        margin-top: 15px;
        text-align: center !important;
    }

    .footer-bottom-links a {
        margin: 0 10px;
    }
} 