:root {
    --primary-color: #1A0F0A;
    --secondary-color: #4A2C1C;
    --accent-color: #8B6F47;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
    background-color: #FBF8F3;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
}

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

.navbar-brand i {
    color: var(--accent-color);
    margin-right: 8px;
}

.brand-short {
    display: none;
}

@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .brand-full {
        display: none;
    }
    
    .brand-short {
        display: inline;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--primary-color) !important;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Cart Button */
.cart-btn {
    position: relative;
    border: 2px solid var(--secondary-color) !important;
    color: var(--secondary-color) !important;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s;
}

.cart-btn:focus,
.cart-btn:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(74, 44, 28, 0.25) !important;
    border-color: var(--secondary-color) !important;
}

.cart-btn:hover {
    background-color: var(--secondary-color) !important;
    color: white !important;
    border-color: var(--secondary-color) !important;
    animation: cartShake 0.5s ease-in-out;
}

@keyframes cartShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
    20%, 40%, 60%, 80% { transform: translateX(3px); }
}

@media (min-width: 992px) {
    .navbar .d-flex .cart-btn {
        display: none;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 15px;
    }
    
    .desktop-cart {
        display: none;
    }
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 15, 10, 0.7), rgba(26, 15, 10, 0.6)), 
                url('https://images.pexels.com/photos/175709/pexels-photo-175709.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: #FFFFFF;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 76px;
}

.hero-section h1 {
    color: #FFFFFF;
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 25px;
    color: #FFFFFF;
}

.btn-primary-custom {
    background-color: var(--secondary-color);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-custom:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Section Title */
.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-title:before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title.text-start {
    text-align: left;
}

.section-title.text-start:before,
.section-title.text-start:after {
    display: none;
}

/* Featured Banner */
.featured-banner {
    border-bottom: 2px solid #eee;
}

.featured-banner .text-primary {
    color: var(--secondary-color) !important;
}

.featured-banner h6 {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Search Box */
.search-box {
    position: relative;
    max-width: 600px;
    margin: 0;
}

@media (max-width: 768px) {
    .search-box {
        margin: 0 auto;
    }
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.1rem;
    pointer-events: none;
}

.search-input {
    padding: 12px 45px 12px 45px;
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.search-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(74, 44, 28, 0.1);
    outline: none;
}

.search-clear {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.search-clear:hover {
    color: var(--secondary-color);
}

/* Shop Controls */
.shop-controls .form-select {
    border: 2px solid var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 40px 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    background-color: white;
    transition: all 0.3s;
    font-size: 0.95rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B6F47' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    appearance: none;
}

.shop-controls .form-select:hover {
    border-color: var(--secondary-color);
    background-color: #FBF8F3;
    transform: translateY(-1px);
}

.shop-controls .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(74, 44, 28, 0.1);
    outline: none;
}

/* Filter Buttons */
.filter-buttons {
    margin-bottom: 30px;
    text-align: left;
}

.filter-btn {
    background: white;
    border: 2px solid var(--accent-color);
    color: var(--primary-color);
    padding: 12px 28px;
    margin: 5px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(139, 111, 71, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.filter-btn.active::before {
    width: 0;
    height: 0;
}

/* Product Cards */
.product-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background: white;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Product Card Wrapper for Smooth Collapse */
.product-wrapper {
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                margin-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 2000px;
    opacity: 1;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.product-wrapper.collapsing {
    max-height: 0 !important;
    opacity: 0 !important;
    margin-bottom: 0 !important;
    transform: scaleY(0);
    transform-origin: top;
}

.product-wrapper.expanding {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    transform: scaleY(0);
    transform-origin: top;
}

/* Force immediate animation when class is removed */
.col-lg-4.js-generated {
    animation: none;
}

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

.product-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.product-category {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1.15rem;
    margin: 8px 0;
    color: var(--primary-color);
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    min-height: 2.7em;
    line-height: 1.35;
}

.product-details {
    color: var(--primary-color);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 10px 0 0 0;
    padding: 0;
    border-top: 1px solid #E8DCC8;
    border-bottom: 1px solid #E8DCC8;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-details.expanding {
    opacity: 1;
    padding: 10px 0;
    margin: 10px 0;
}

.product-details ul {
    padding-left: 20px;
    margin: 0;
    list-style: disc;
}

.product-details li {
    margin-bottom: 8px;
    padding: 4px 0;
}

.product-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    width: fit-content;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #eee;
    flex-shrink: 0;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-add-cart {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.toggle-details-btn {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin: 10px 0;
    width: 100%;
}

.toggle-details-btn:hover {
    background: var(--accent-color);
    color: white;
}

/* Shopping Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -450px;
    top: 0;
    width: 420px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

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

.cart-header {
    padding: 20px;
    border-bottom: 2px solid var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FBF8F3;
}

.cart-header h4 {
    margin: 0;
    color: var(--primary-color);
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: transform 0.3s;
}

.cart-close:hover {
    transform: rotate(90deg);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-cart i {
    font-size: 4rem;
    margin-bottom: 20px;
}

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

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

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

.cart-item-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.qty-btn {
    background-color: #E8DCC8;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.qty-display {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 5px 10px;
    margin-left: auto;
}

.remove-btn:hover {
    color: #a71d2a;
}

.cart-footer {
    padding: 20px;
    border-top: 2px solid var(--secondary-color);
    background-color: #FBF8F3;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.total-price {
    color: var(--secondary-color);
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* About Section */
.about-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
}

.about-img:hover {
    transform: scale(1.02);
}

#about .col-lg-6:first-child {
    position: relative;
}

#about .col-lg-6:first-child:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: 10px;
    top: -20px;
    left: -20px;
    z-index: -1;
    opacity: 0.3;
}

#about h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

#about h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--accent-color);
    bottom: -10px;
    left: 0;
}

#about .lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.stats-row {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-top: 2px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
    line-height: 1;
}

.counter {
    display: inline-block;
    transition: transform 0.1s;
}

.stat-item p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-box {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: var(--accent-color);
}

.feature-box i {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.feature-box:hover i {
    animation: spinSlow 0.8s ease-in-out;
}

@keyframes spinSlow {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.feature-box h5 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--primary-color);
}

.feature-box p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Testimonials - Infinite Scroll */
.testimonials-scroll-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonials-scroll-container:before,
.testimonials-scroll-container:after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonials-scroll-container:before {
    left: 0;
    background: linear-gradient(90deg, #FBF8F3, transparent);
}

.testimonials-scroll-container:after {
    right: 0;
    background: linear-gradient(270deg, #FBF8F3, transparent);
}

.testimonials-track {
    display: flex;
    gap: 25px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card-scroll {
    flex: 0 0 400px;
    min-width: 400px;
}

.testimonial-content {
    background: white;
    border-radius: 15px;
    padding: 40px 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    border-left: 5px solid var(--accent-color);
    transition: all 0.3s;
    position: relative;
}

.testimonial-content:before {
    content: '\201C';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card-scroll:hover .testimonial-content {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-left-width: 7px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    min-height: 100px;
}

.client-rating {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.client-info h5 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.client-info .text-muted {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.contact-form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
}

.contact-form .form-control {
    border-radius: 8px;
    border: 2px solid #e8e8e8;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.contact-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(139, 111, 71, 0.1);
    outline: none;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: white;
}

.contact-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

#testimonials {
    position: relative;
    background: transparent;
}

#testimonials .container {
    position: relative;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-heading {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s;
}

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

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: calc(100vh - 76px);
        padding: 60px 20px;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .filter-buttons {
        text-align: center;
    }
    
    .section-title.text-start {
        text-align: center;
        font-size: 2rem;
    }
    
    .shop-controls {
        text-align: center !important;
    }
    
    .shop-controls .form-select {
        width: 100% !important;
    }
    
    .testimonial-card-scroll {
        flex: 0 0 320px;
        min-width: 320px;
    }
    
    .testimonial-content {
        padding: 30px 25px;
    }
    
    .testimonials-scroll-container:before,
    .testimonials-scroll-container:after {
        width: 50px;
    }
    
    .featured-banner h6 {
        font-size: 0.85rem;
    }
    
    .featured-banner small {
        font-size: 0.7rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Hide Product Initially for Filter Animation */
.product-card.hidden {
    display: none;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s;
    border-left: 4px solid var(--accent-color);
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.toast-notification i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.toast-notification span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.toast-notification.success {
    border-left-color: #28a745;
}

.toast-notification.success i {
    color: #28a745;
}

.toast-notification.error {
    border-left-color: #dc3545;
}

.toast-notification.error i {
    color: #dc3545;
}
