:root {
    --primary-color: #8c091f;
    --secondary-color: #d2ba5c;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}
/*body {*/
/*    overflow: scroll !important;*/
/*}*/
body {
    overflow: scroll !important;
}
/* Dropdown styles */
.dropdown-menu {
    display: none;
    position: absolute;
    background: rgba(140, 9, 31, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 15px;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
    opacity: 1;
    transform: translateY(0);
    top: 20px;
}

.dropdown-item {
    color: white;
    padding: 10px 20px;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.dropdown-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    transform: translateX(5px);
}

.dropdown-item:hover i {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

/* Modern Search bar styles */
.header-search {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.header-search .form-control {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 45px 12px 20px;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
}

.header-search .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(210, 186, 92, 0.15);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
}

.header-search .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.header-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    height: 35px;
    width: 35px;
    background: var(--secondary-color);
    border: none;
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.header-search-btn:hover {
    background: #b9a34e;
    transform: translateY(-50%) scale(1.05);
}

/* User dropdown styles */
.user-dropdown {
    position: relative;
}

.user-dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background: linear-gradient(135deg, var(--primary-color), #6b071a);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 10px;
    min-width: 200px;
    z-index: 1000;
    margin-top: 10px;
    display: none;
}

.user-dropdown:hover .user-dropdown-menu {
    display: block;
    top: 27px;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    background: linear-gradient(135deg, var(--primary-color), #6b071a);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 12px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.navbar.scrolled {
    padding: 8px 0;
    background: linear-gradient(135deg, rgba(140, 9, 31, 0.95), rgba(107, 7, 26, 0.95));
}

.nav-link {
    position: relative;
    padding: 0.5rem 0.8rem;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0px;
    bottom: 0;
    left: 50%;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-top: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

/* See All link styles */
.text-decoration-none {
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.text-decoration-none:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.text-decoration-none::after {
    content: '→';
    margin-left: 5px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.text-decoration-none:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.location-icon,
.btn-outline-light,
.btn-secondary {
    transition: all 0.3s ease;
}

.location-icon:hover,
.btn-outline-light:hover,
.btn-secondary:hover {
    transform: scale(1.1);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #6b071a;
    border-color: #6b071a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(140, 9, 31, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: #b9a34e;
    border-color: #b9a34e;
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 186, 92, 0.3);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-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-1584302179602-e4c3d3fd629d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-top: 72px;
}

.categories-swiper,
.popular-products-swiper,
.latest-products-swiper {
    padding: 30px 0;
    position: relative;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary-color);
    background: rgba(140, 9, 31, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
}

.swiper-pagination-bullet {
    background: var(--secondary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}
.category-item {
    text-align: center;
    padding: 15px 10px;
    margin-bottom: 20px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1), -5px -5px 15px rgba(255,255,255,0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Responsive styles for category items */
@media (min-width: 576px) {
    .category-item {
        padding: 20px 15px;
    }

    .category-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
}

@media (min-width: 768px) {
    .category-item {
        padding: 25px 15px;
    }

    .category-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
}

.category-item h6 {
    color: var(--dark-color);
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    font-size: 0.85rem;
}

@media (min-width: 576px) {
    .category-item h6 {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) {
    .category-item h6 {
        font-size: 1rem;
    }
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #6b071a);
    opacity: 0;
    transition: all 0.4s ease;
}

.category-item:hover {
    transform: translateY(-8px);
    box-shadow: 8px 8px 20px rgba(0,0,0,0.15), -8px -8px 20px rgba(255,255,255,0.9);
}

.category-item:hover::before {
    opacity: 1;
}

.category-item:hover .category-icon,
.category-item:hover h6 {
    color: white;
    transform: scale(1.1);
}

.product-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 25px;
    height: auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
    perspective: 1000px;
    padding: 20px;
}

.product-card .card-body {
    padding-top: 15px;
}

.product-card .card-title {
    font-size: 1rem;
}

.product-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(140, 9, 31, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(140, 9, 31, 0.3);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(140, 9, 31, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-img {
    height: 220px;
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
}

.product-card:hover .product-img {
    transform: scale(1.05) translateZ(10px);
    filter: brightness(1.05);
}

.product-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    margin: 8px 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-price {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.highlight-product {
    position: relative;
    border: 2px solid var(--secondary-color);
}

.highlight-product::after {
    content: 'Featured';
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.rent-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.buy-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #69091a, #5e000f);
}

.cta-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
}

.cta-badge {
    background: linear-gradient(135deg, var(--secondary-color), #e6d38f);
    color: var(--dark-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary-color), #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Fallback */
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(230,211,143,0.2));
    filter: blur(8px);
    z-index: -1;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-features {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    filter: drop-shadow(0 2px 4px rgba(230,211,143,0.3));
}

.feature-item span {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color), #ffd700);
    border: none;
    color: var(--dark-color);
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(230,211,143,0.3);
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 25px -10px rgba(230,211,143,0.5);
}

.btn-hover-slide {
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.2);
    padding: 15px 35px;
    border-radius: 30px;
    transition: all 0.4s ease;
    background: transparent;
}

.btn-hover-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-hover-slide:hover {
    border-color: var(--secondary-color);
    transform: translateX(5px);
}

.btn-hover-slide:hover::before {
    left: 100%;
}

.cta-image-wrapper {
    position: relative;
    padding: 1rem;
}

.cta-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.cta-image-wrapper:hover img {
    transform: scale(1.02);
}

.floating-card {
    position: absolute;
    bottom: 2rem;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--dark-color);
}

.card-text {
    font-weight: 500;
    font-size: 1.1rem;
}

.cta-shape-1, .cta-shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    z-index: 1;
}

.cta-shape-1 {
    background: var(--secondary-color);
    top: -100px;
    right: -100px;
}

.cta-shape-2 {
    background: var(--primary-color);
    bottom: -100px;
    left: -100px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 991.98px) {
    .cta-title { font-size: 2rem; }
    .cta-features { flex-direction: column; gap: 1rem; }
    .cta-image-wrapper { margin-top: 2rem; }
}

/* Footer Styles */
.footer-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4d0412 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 80px 0 50px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.footer-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.footer-content {
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-title {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    border-radius: 4px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 20px;
    transform: translateX(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(10px);
    text-shadow: 0 0 10px rgba(210, 186, 92, 0.3);
}

.footer-links a i {
    margin-right: 15px;
    font-size: 1.1rem;
    background: rgba(210, 186, 92, 0.1);
    padding: 8px;
    border-radius: 8px;
    transition: all 0.4s ease;
}

.footer-links a:hover i {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: rotate(360deg);
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.social-icon:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-8px) rotateX(10deg) rotateY(10deg);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(210, 186, 92, 0.2);
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 10px;
    align-items: center;
}

.newsletter-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 0;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.4s ease;
    flex: 1;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(210, 186, 92, 0.15);
    transform: translateY(-2px);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.newsletter-form .btn-primary {
    background: linear-gradient(45deg, var(--secondary-color), #e6d285);
    border: none;
    color: var(--dark-color);
    padding: 12px 25px;
    font-weight: 500;
    border-radius: 12px;
    width: auto;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.newsletter-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.newsletter-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(210, 186, 92, 0.3);
}

.newsletter-form .btn-primary:hover::before {
    left: 100%;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #e6d285;
    text-shadow: 0 0 10px rgba(210, 186, 92, 0.3);
}

.tenure-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.tenure-option {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.tenure-option.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.cart-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.bill-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.bill-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.bill-total {
    font-weight: bold;
    border-top: 1px solid #dee2e6;
    padding-top: 10px;
    margin-top: 10px;
}

.coupon-section {
    background-color: #f8d7da;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.coupon-code {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 4px;
    padding: 10px 15px;
    margin-top: 10px;
}

.coupon-icon {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 20px;
}

.address-form .form-control {
    margin-bottom: 15px;
}

.accommodation-type {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.accommodation-option {
    flex: 1;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.accommodation-option.active {
    background-color: #f8d7da;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
}

.bottom-nav-item {
    text-align: center;
    color: #6c757d;
    text-decoration: none;
    font-size: 12px;
}

.bottom-nav-item i {
    font-size: 20px;
    display: block;
    margin-bottom: 2px;
}

.bottom-nav-item.active {
    color: var(--primary-color);
}

.add-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-top: -20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        margin-top: 65px;
    }

    .product-img {
        height: 250px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .navbar-collapse {
        background: linear-gradient(135deg, var(--primary-color), #6b071a);
        border-radius: 0 0 10px 10px;
        padding: 10px;
        margin-top: 10px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }

    .navbar-nav .nav-item {
        margin: 5px 0;
        text-align: center;
    }

    .header-search {
        max-width: 100%;
        margin: 10px 0;
    }

    .dropdown-menu {
        position: static !important;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }

    .user-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 5px;
        box-shadow: none;
    }
}
.bg-red-lt {
    background-color: #fce4e9 !important;
}

.product-card .btn-primary {
    border-radius: 4px;
    padding: 5px 10px;
    margin: 0;
}
.product-card .discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
}
#rent-option .tenure-options .tenure-option {
    border: 0px solid #dee2e6 !important;
    border-radius: 0px !important;
    padding: 0px 0px !important;
}
.cart-container .form-label {
    margin-bottom: 0;
}
.id-proof-type {
    width: 200px !important;
}
.upload-id-section .id-proof-preview {
    padding: 0;
    border: 0;
}
.cart-container .btn-primary {
    margin: 0;
}
.bill-card .btn {
    width: 100%;
    min-width: 100%;
}
.cart-container .form-control, .cart-container .form-select {
    height: 30px;
}
.product-actions .row {
    width: 100%;
}

.cta-section .cta-buttons .btn {
    color: white !important;
}
.cta-section .cta-buttons .btn-primary {
    margin: 0;
}
.cta-section .cta-buttons .btn-outline-light:hover {
    color: #6b071a !important;
}

@media (max-width: 767px) {
    .dropdown-toggle::after {
        display: none;
    }
    .category-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .category-icon i {
        font-size: 30px;
    }
}