/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.social-icon {
    height: 20px;
    width: auto;
    border-radius: 8px;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Navigation Styles */
.navbar-brand img {
    height: 50px;
    width: auto;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Hero Section */
.hero-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 400px; /* Set minimum height for slider */
}

.hero-slide {
    display: none;
    position: relative;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active-slide {
    display: block;
    opacity: 1;
    z-index: 1;
    animation: fadeIn 0.5s ease-in-out;
}

.hero-slide:first-child {
    display: block;
    z-index: 1;
}

.hero-slide a {
    display: block;
    width: 100%;
}

.slider-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: #000;
}

.slider-indicators {
    z-index: 2;
}

/* Card Styles */
.collection-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.collection-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-image {
    transform: scale(1.1);
}

.collection-overlay {
    background: transparent;
    backdrop-filter: none;
    z-index: 2;
}

.collection-overlay h3 {
    font-size: 1.2rem;
    text-wrap: nowrap;
    color: black;
    /*font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.7); */
}

.collection-overlay p {
    font-size: 0.9rem;
     color: black;
    /* text-shadow: 1px 1px 2px rgba(0,0,0,0.7); */
}

.brand-img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-item:hover .brand-img {
    transform: scale(1.1);
}

/* Brands Slider Styles */
.brands-slider-container {
    position: relative;
    padding: 20px 0;
}

.brands-track {
    /* Smooth continuous animation */
}

.product-card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Button Styles */
.btn-light {
    background-color: #000;
    border-color: #000;
    color: white;
}

.btn-light:hover {
    background-color: #333;
    border-color: #333;
    color: white;
}

/* Footer Styles */
.payment-icon {
    height: 20px;
    width: auto;
}

.social-icon-footer {
    height: 25px;
    width: auto;
}

footer a {
    color: #6c757d;
}

footer a:hover {
    color: #000;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .social-icon {
        height: 16px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-collapse {
        margin-top: 10px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Utility Classes */
.text-danger {
    color: #dc3545 !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.rounded {
    border-radius: 8px !important;
}