:root {
    --primary-color: #C00A27;
    --secondary-color: #f8f1e5;
    --accent-color: #333333;
    --dark-color: #333333;
    --light-color: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.navbar {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1556911220-bff31c812dba?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    margin-bottom: 50px;
}

.product-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.product-img-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-body {
    padding: 20px;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #6d4622;
    border-color: #6d4622;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.gallery-thumbnails {
    display: flex;
    margin-top: 10px;
}

.thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
}

.thumbnail:hover, .thumbnail.active {
    border-color: var(--accent-color);
}

.filter-section {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 50px 0 20px;
    margin-top: 50px;
}

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

.footer a:hover {
    color: var(--light-color);
    text-decoration: none;
}

.social-icons a {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-right: 15px;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.modal-gallery-img {
    width: 100%;
    border-radius: 5px;
}

.modal-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
}

.modal-thumbnail:hover, .modal-thumbnail.active {
    border-color: var(--accent-color);
}

        /* Shopping Cart Styles */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1050;
    transition: right 0.3s ease;
    overflow-y: auto;
}

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

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
}

.cart-overlay.show {
    display: block;
}

.cart-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
}

.remove-item {
    color: #999;
    cursor: pointer;
    font-size: 1.2rem;
    margin-left: 10px;
}

.remove-item:hover {
    color: #ff0000;
}

.cart-summary {
    padding: 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-total {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-color);
}

@media (max-width: 576px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-sidebar.open {
        right: 0;
    }
}

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

.shopping--cart .toggleCartButton {
 display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
    background-color: #C00A27;
    border-radius: 20px;
    text-decoration: none;
    padding: 13px 20px;
}
.shopping--cart:hover {
    color: var(--primary-color);
}

.shopping--cart .toggleCartButton .exempt {
    font-size: 16px !important;
    font-weight: 600 !important;
}

.shopping--cart .toggleCartButton .cart-count {
   text-align: center;
   font-weight: 600;
}

footer a {
    color: #ffffff !important;
    text-decoration: none;
}

footer .social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

footer .social a {
    color: #ffffff !important;
    transition: color 0.3s ease;
}
footer .social a:hover {
    color: var(--primary-color) !important;
}