/* Base Styles */
:root {
    --primary-color: #4154f1;
    --secondary-color: #717ff5;
    --dark-color: #2a2d3b;
    --light-color: #f8f9fa;
    --accent-color: #ff6b6b;
    --text-color: #444;
    --text-light: #6c757d;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    padding-top: 80px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navbar Styles */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background-color: white !important;
}

.navbar .logo {
    height: 40px;
}

.navbar .brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.navbar .nav-link {
    font-weight: 500;
    color: var(--dark-color);
    padding: 8px 15px !important;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

.navbar .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.navbar .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section .carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
}

.hero-section .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.hero-section .carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: left;
    left: 10%;
    right: 10%;
}

.hero-section .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
}

.hero-section .carousel-indicators button.active {
    background-color: white;
}

/* Section Styling */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Product Cards */
.product-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-img-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-img-container img {
    transition: all 0.3s ease;
    height: 100%;
    object-fit: cover;
}

.product-card:hover .product-img-container img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Location Section */
.location-section {
    background-color: white;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-city {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.location-address {
    font-size: 1.1rem;
}

.store-hours li {
    font-size: 0.95rem;
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--primary-color);
    padding: 60px 0;
}

.newsletter-form .form-control {
    height: 50px;
    border: none;
    border-radius: 0;
}

.newsletter-form .btn {
    border-radius: 0;
    padding: 0 25px;
}

/* Footer Styles */
.footer {
    background-color: var(--dark-color);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer a:hover {
    color: var(--secondary-color) !important;
}

.contact-info i {
    width: 20px;
    text-align: center;
}

/* Modal Styling */
.modal-content {
    border: none;
    border-radius: 10px;
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section .carousel-item {
        height: 500px;
    }
    
    .hero-section .carousel-caption {
        bottom: 40%;
        transform: translateY(40%);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero-section .carousel-item {
        height: 400px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar .brand-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .hero-section .carousel-item {
        height: 300px;
    }
    
    .hero-section .carousel-caption {
        bottom: 30%;
        transform: translateY(30%);
    }
    
    .hero-section .display-4 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

.product-image-main {
    width: 100%;
    max-width: 400px;
    border: 1px solid #ddd;
}

.size-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-btn {
    min-width: 60px;
    text-align: center;
}

.size-btn.active {
    background-color: #212529;
    color: white;
}

.add-to-cart-btn {
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#selected-size-info {
    transition: all 0.3s ease;
}

/* Quantity Input */
.input-group {
    width: fit-content;
}

.input-group input {
    width: 50px;
    text-align: center;
}

.input-group button {
    width: 40px;
}



