:root {
    --primary-color: #A45C40;
    --secondary-color: #FFFFFF;
    --accent-color: #eec783;
    --light-color: #E4B7A0;
    --dark-color: #693621;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    background-color: #f8f9fa;
    position: relative;
}

.top-header {
    background-color: var(--primary-color);
    padding: 8px 0;
}

.top-header a {
    color: var(--light-color);
    font-size: 14px;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s;
}

.top-header a:hover {
    color: var(--secondary-color);
}

.main-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    transition: padding 0.3s ease;
}

.main-header.shrink {
    padding: 0px 0;
}

.main-header.shrink .navbar-brand img {
    max-height: 40px;
}

.navbar {
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-height: 60px;
    transition: max-height 0.3s ease;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
    transition: padding 0.3s ease, font-size 0.3s ease;
}

.main-header.shrink .nav-link {
    padding: 4px 8px;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--accent-color);
}

.carousel-item {
    height: 500px;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.category-title {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: inline-block;
}

.product-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 25px;
    height: 100%;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
    height: 200px;
    object-fit: cover;
}

.product-card .card-body {
    padding: 20px;
}

.product-card .card-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.footer-logo {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-logo img {
    max-height: 50px;
}

.footer-logo-img {
    display: block;
    transition: opacity 0.3s ease;
}

.footer-logo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/logo-new.png') no-repeat center center;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.footer-logo:hover::after {
    opacity: 1;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    margin-top: 30px;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    color: white;
    transition: background-color 0.3s;
}

/* .social-icons a:hover {
    background-color: var(--accent-color);
} */

.social-icons a.facebook:hover {
    background-color: #3b5998;
    /* Facebook Blue */
}

.social-icons a.twitter:hover {
    background-color: #1da1f2;
    /* Twitter Blue */
}

.social-icons a.instagram:hover {
    background-color: #e1306c;
    /* Instagram Pink */
}

.social-icons a.pinterest:hover {
    background-color: #bd081c;
    /* Pinterest Red */
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

/* Improved product grid styling */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.product-item {
    padding: 0 12px;
    margin-bottom: 24px;
    width: 100%;
}

@media (min-width: 576px) {
    .product-item {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .product-item {
        width: 33.333%;
    }
}

@media (min-width: 992px) {
    .product-item {
        width: 25%;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 50px;
    }
}

.category-container {
    margin-bottom: 50px;
}

.see-all-link {
    display: inline-block;
    margin-left: 15px;
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    vertical-align: middle;
}

.see-all-link:hover {
    text-decoration: underline;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* SEO Content Section */
.seo-content {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.seo-content h2 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.seo-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

/* Desktop CTA Floating Card */
.desktop-cta-card {
    position: fixed;
    top: 200px;
    right: 20px;
    width: 280px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 999;
    display: none;
}

@media (min-width: 992px) {
    .desktop-cta-card {
        display: block;
    }
}

.desktop-cta-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.desktop-cta-card p {
    margin-bottom: 15px;
    font-size: 14px;
}

.desktop-cta-card .btn {
    width: 100%;
}

.close-cta {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #999;
}

/* Mobile WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 60px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: none;
}

@media (max-width: 991px) {
    .whatsapp-button {
        display: flex;
    }
}

.whatsapp-button i {
    font-size: 30px;
    color: white;
}

/* Contact Form Modal */
.modal-header {
    background-color: var(--primary-color);
    color: white;
}

.modal-title {
    font-weight: 600;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.designer-credit {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.designer-credit a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.designer-credit a:hover {
    color: var(--accent-color);
}