/* Custom Theme - Dark Purple (#301934) inspired by ogbongeh.com */

/* Main Background and Colors */
body {
    background-color: #301934;
    color: #333;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.page-wrapper {
    background-color: #fff;
    box-shadow: none;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
    width: 100vw;
}

/* Header Styling */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
}

.header-top {
    background-color: #301934;
    color: #fff;
    padding: 0.5rem 0;
    width: 100%;
    max-width: 100%;
}

.header-top a {
    color: #fff;
}

.header-top a:hover,
.header-top a:focus {
    color: #f8f8f8;
    text-decoration: underline;
}

.header-top .container:after,
.header-top .container-fluid:after {
    background-color: transparent;
}

.header-middle {
    border-bottom: none;
    padding: 1.5rem 0;
}

/* Logo Area */
.logo {
    margin: 0;
}

/* Navigation */
.menu > li > a {
    color: #333;
    font-weight: 500;
    padding: 1.2rem 1.5rem;
}

.menu > li:hover > a,
.menu > li.show > a,
.menu > li.active > a {
    color: #301934;
}

.menu > li > a::before {
    background-color: #301934;
}

.header-bottom {
    background-color: #fff;
}

.header-bottom .menu > li > a {
    color: #333;
}

.header-bottom .menu > li:hover > a,
.header-bottom .menu > li.show > a,
.header-bottom .menu > li.active > a {
    color: #301934;
}

/* Dropdown Menus */
.header-dropdown > a, 
.header-dropdown > span {
    color: #fff;
}

.header-dropdown:hover > a, 
.header-dropdown:hover > span {
    color: #f8f8f8;
}

/* Search */
.header-search .header-search-wrapper {
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: hidden;
}

.header-search-extended .btn {
    background-color: #301934;
    color: #fff;
    border-radius: 0 30px 30px 0;
    min-width: 40px;
}

.header-search-extended .btn:hover,
.header-search-extended .btn:focus {
    background-color: #22122a;
}

.header-search-extended .form-control {
    height: 44px;
    padding: 0.6rem 1rem;
}

/* Cart and User Icons */
.wishlist-link, 
.cart-dropdown .dropdown-toggle,
.account-dropdown .dropdown-toggle {
    color: #333;
}

.wishlist-link:hover, 
.cart-dropdown .dropdown-toggle:hover,
.account-dropdown .dropdown-toggle:hover {
    color: #301934;
}

.wishlist-count, 
.cart-count {
    background-color: #301934;
}

/* Main Content Areas */
.main {
    background-color: #fff;
    padding-top: 0;
}

/* Slider Modifications */
.intro-slider-container {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.intro-slider {
    width: 100%;
    max-width: 100%;
}

.intro-slide {
    width: 100%;
    max-width: 100%;
    background-position: center;
    background-size: cover;
}

.intro-slide .intro-content {
    padding: 3rem;
    background-color: rgba(48, 25, 52, 0.7);
    border-radius: 5px;
    max-width: 500px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    text-align: center;
}

.intro-content.container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.intro-subtitle {
    color: #f8f8f8;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.intro-title {
    color: #fff;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.intro-text {
    color: #fff;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.btn-primary.btn-outline {
    color: #fff;
    border-color: #fff;
    background-color: transparent;
}

.btn-primary.btn-outline:hover,
.btn-primary.btn-outline:focus {
    background-color: #fff;
    color: #301934;
}

/* Product Tabs */
.title {
    font-weight: 600;
    font-size: 2.2rem;
    margin-bottom: 2.4rem;
    text-align: center;
}

.title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #301934;
    margin: 1rem auto 0;
}

.nav.nav-pills {
    justify-content: center;
    margin-bottom: 3rem;
}

.nav.nav-pills .nav-link {
    color: #333;
    font-weight: 500;
    font-size: 1.4rem;
    padding: 0.5rem 2rem;
    border: none;
    background-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav.nav-pills .nav-link.active,
.nav.nav-pills .nav-link:hover,
.nav.nav-pills .nav-link:focus {
    color: #301934;
    background-color: transparent;
}

.nav.nav-pills .nav-link.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #301934;
    margin-top: 0.5rem;
}

/* Product Cards */
.product {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 2rem;
    border-radius: 5px;
    overflow: hidden;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-media {
    position: relative;
    overflow: hidden;
}

.product-media::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-body {
    padding: 1.5rem;
    text-align: center;
}

.product-cat {
    color: #777;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-title a {
    color: #333;
}

.product-title a:hover,
.product-title a:focus {
    color: #301934;
}

.product-price {
    color: #301934;
    font-weight: 600;
    font-size: 1.6rem;
}

.product-action {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
}

.product:hover .product-action {
    transform: translateY(0);
}

.product-action .btn-product {
    background-color: #301934;
    color: #fff;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 400;
}

.product-action .btn-product:hover,
.product-action .btn-product:focus {
    background-color: #22122a;
}

/* Footer Styling - Colorful Version */
.footer {
    background: linear-gradient(135deg, #301934 0%, #5d3c6f 100%);
    color: #fff;
    padding-top: 3rem;
}

.footer-middle {
    border-top: none;
    padding: 2rem 0;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
}

.widget-title {
    color: #fff;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #ff9966, #ff5e62);
}

.widget-list li {
    margin-bottom: 0.8rem;
}

.widget-list a {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.3s;
    padding-left: 15px;
}

.widget-list a:before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #ff9966;
    font-size: 1.2rem;
}

.widget-list a:hover,
.widget-list a:focus {
    color: #fff;
    text-decoration: none;
    transform: translateX(5px);
}

.widget-about p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.widget-call {
    background: linear-gradient(135deg, #ff5e62 0%, #ff9966 100%);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.widget-call i {
    color: #fff;
    font-size: 2.4rem;
    margin-right: 0.8rem;
}

.widget-call a {
    color: #fff;
    font-weight: 600;
    font-size: 1.6rem;
    display: block;
    margin-top: 0.5rem;
}

.widget-call a:hover {
    text-decoration: underline;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 1.3rem;
}

.footer-payments {
    margin-bottom: 0;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Social icons for footer */
.social-icons {
    display: flex;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9966 0%, #ff5e62 100%);
    color: #fff;
    font-size: 1.6rem;
    margin-right: 1rem;
    transition: all 0.3s;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Newsletter form in footer */
.newsletter-form {
    position: relative;
    margin-top: 1.5rem;
}

.newsletter-form .form-control {
    height: 46px;
    padding-left: 1.5rem;
    padding-right: 6rem;
    border-radius: 23px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    position: absolute;
    right: 3px;
    top: 3px;
    height: 40px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff5e62 0%, #ff9966 100%);
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.2rem;
}

.newsletter-form .btn:hover {
    background: linear-gradient(135deg, #ff9966 0%, #ff5e62 100%);
}

/* Category Circles - Jumia Style */
.category-circles-container {
    padding: 2rem 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.category-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s;
    text-decoration: none;
    margin-bottom: 1rem;
}

.category-circle:hover {
    transform: translateY(-5px);
}

.category-circle-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-circle-image i {
    font-size: 2.5rem;
    color: #301934;
}

.category-circle-title {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-circle:hover .category-circle-title {
    color: #301934;
}

/* Category Products Section */
.category-products-section {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #301934;
    margin-bottom: 0;
}

.category-header .btn-link {
    color: #301934;
    font-weight: 500;
    text-decoration: none;
}

.category-header .btn-link:hover,
.category-header .btn-link:focus {
    color: #22122a;
    text-decoration: underline;
}

/* Product Card Styling for Category Sections */
.category-products-section .product {
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-products-section .product-media {
    position: relative;
    margin-bottom: 1rem;
}

.category-products-section .product-image {
    height: 180px;
    object-fit: contain;
    background-color: #f9f9f9;
}

.category-products-section .product-body {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.category-products-section .product-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    flex: 1;
}

.category-products-section .product-title a {
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.category-products-section .product-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #301934;
}

.category-products-section .new-price {
    color: #301934;
}

.category-products-section .old-price {
    color: #999;
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

.category-products-section .product-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #301934;
    color: #fff;
    font-size: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    z-index: 1;
}

.category-products-section .product-action {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(48, 25, 52, 0.85);
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    transform: translateY(100%);
}

.category-products-section .product:hover .product-action {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-products-section .btn-product {
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 3px;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.category-products-section .btn-product:hover,
.category-products-section .btn-product:focus {
    background-color: #fff;
    color: #301934;
}

/* Category Navigation Tabs */
.category-nav-container {
    margin-bottom: 3rem;
    border-bottom: 1px solid #ebebeb;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.category-nav-container::-webkit-scrollbar {
    height: 5px;
}

.category-nav-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.category-nav-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.category-nav-container::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.category-nav {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 0;
}

.category-nav .nav-item {
    margin-right: 1rem;
}

.category-nav .nav-link {
    color: #777;
    font-weight: 500;
    font-size: 1.4rem;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s;
    white-space: nowrap;
}

.category-nav .nav-link:hover,
.category-nav .nav-link:focus,
.category-nav .nav-link.active {
    color: #fff;
    background-color: #301934;
}

.category-nav .nav-link.active::after {
    display: none;
}

/* Tab Content Styling */
.tab-content {
    margin-top: 2rem;
}

.tab-pane {
    transition: opacity 0.3s ease;
}

.tab-pane.fade {
    opacity: 0;
}

.tab-pane.fade.show {
    opacity: 1;
}

/* Responsive Adjustments for Category Navigation */
@media (max-width: 991px) {
    .category-nav .nav-link {
        font-size: 1.3rem;
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 767px) {
    .category-nav .nav-link {
        font-size: 1.2rem;
        padding: 0.4rem 1rem;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-header .btn-link {
        margin-top: 0.5rem;
    }
}

@media (max-width: 575px) {
    .category-nav-container {
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .category-circle-image {
        width: 60px;
        height: 60px;
    }
    
    .category-circle-title {
        font-size: 1rem;
    }
    
    .category-products-section .product-image {
        height: 150px;
    }
}

@media (max-width: 575px) {
    .category-circle-image {
        width: 50px;
        height: 50px;
    }
    
    .category-circle-image i {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.6rem;
    }
    
    .category-products-section .product-image {
        height: 120px;
    }
}

/* Widget Lists */
.widget-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.widget-list li {
    margin-bottom: 1rem;
}

.widget-list li a {
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s;
}

.widget-list li a::before {
    content: '\f105';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 1.2rem;
}

/* Newsletter */
.footer-newsletter {
    padding: 3rem 0;
    background-color: #22122a;
    margin-bottom: 4rem;
}

.footer-newsletter .form-control {
    background-color: #fff;
    border-color: #fff;
    color: #333;
    height: 46px;
    padding: 0.6rem 1.5rem;
    border-radius: 30px 0 0 30px;
}

.footer-newsletter .btn {
    background-color: #301934;
    color: #fff;
    border-radius: 0 30px 30px 0;
    padding: 0.6rem 1.5rem;
    min-width: 120px;
    font-weight: 500;
}

.footer-newsletter .btn:hover,
.footer-newsletter .btn:focus {
    background-color: #22122a;
}

/* Social Icons */
.social-icons {
    margin-top: 2rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #fff;
    color: #301934;
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1.6rem;
    transition: all 0.3s;
}

.social-icon:hover,
.social-icon:focus {
    background-color: #f8f8f8;
    color: #22122a;
}

/* Buttons */
.btn-primary {
    background-color: #301934;
    border-color: #301934;
    color: #fff;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-weight: 500;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #22122a;
    border-color: #22122a;
    color: #fff;
}

.btn-outline-primary {
    border-color: #301934;
    color: #301934;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-weight: 500;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: #301934;
    color: #fff;
}

/* Mobile Menu */
.mobile-menu-container {
    background-color: #301934;
}

.mobile-menu-close {
    color: #fff;
}

.mobile-menu li a {
    color: #f8f8f8;
}

.mobile-menu li.open > a,
.mobile-menu li.active > a {
    color: #fff;
}

/* Breadcrumbs */
.breadcrumb-nav {
    background-color: #f8f8f8;
    padding: 1.5rem 0;
}

.breadcrumb {
    justify-content: center;
}

/* Category Pages */
.sidebar-filter-clear {
    color: #301934;
}

.filter-items li a:hover,
.filter-items li a:focus {
    color: #301934;
}

/* Pagination */
.page-item.active .page-link {
    background-color: #301934;
    border-color: #301934;
}

.page-link {
    color: #301934;
}

.page-link:hover,
.page-link:focus {
    color: #22122a;
}

/* Custom Classes */
.text-primary {
    color: #301934 !important;
}

.bg-primary {
    background-color: #301934 !important;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #301934 0%, #4a2b4f 100%);
    padding: 6rem 0;
    color: #fff;
}

.testimonials .title {
    color: #fff;
}

.testimonials .title::after {
    background-color: #fff;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 3rem 2rem;
    margin: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    border: 3px solid #fff;
    object-fit: cover;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    font-size: 1.6rem;
    display: block;
}

.testimonial cite span {
    display: block;
    font-weight: 400;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.owl-testimonials .owl-dots .owl-dot span {
    background-color: rgba(255, 255, 255, 0.4);
}

.owl-testimonials .owl-dots .owl-dot.active span {
    background-color: #fff;
}

/* Featured Products Section */
.featured-products-section {
    background: linear-gradient(135deg, #301934 0%, #4a2b4f 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.featured-products-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.featured-products-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.featured-products-section .container {
    position: relative;
    z-index: 2;
}

.featured-products-section .title {
    color: #fff;
    margin-bottom: 4rem;
    position: relative;
}

.featured-products-section .title::after {
    background-color: #fff;
}

.featured-products-section .product {
    margin-bottom: 3rem;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
}

.featured-products-section .product:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.featured-products-section .product-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.featured-products-section .product-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #301934;
}

.featured-products-section .product-action {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.35s ease;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(48, 25, 52, 0.9);
    padding: 1.5rem 0;
    z-index: 10;
}

.featured-products-section .product:hover .product-action {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.featured-products-section .btn-product {
    color: #301934;
    background-color: #fff;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.featured-products-section .btn-product:hover,
.featured-products-section .btn-product:focus {
    background-color: #f8f8f8;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.featured-products-section .product-media {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 100%;
    overflow: hidden;
}

.featured-products-section .product-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(48, 25, 52, 0) 50%, rgba(48, 25, 52, 0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.featured-products-section .product:hover .product-media::before {
    opacity: 1;
}

.featured-products-section .product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.featured-products-section .product:hover .product-image {
    transform: scale(1.1);
}

.featured-products-section .product-body {
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 2;
}

.featured-products-section .product-cat {
    color: #777;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.featured-products-section .product-cat a {
    color: #777;
}

.featured-products-section .product-cat a:hover,
.featured-products-section .product-cat a:focus {
    color: #301934;
}

.featured-products-section .old-price {
    color: #777;
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.featured-products-section .product-label {
    background-color: #301934;
    color: #fff;
    border-radius: 50%;
    font-weight: 400;
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 15px;
    left: 15px;
}

.featured-products-section .row {
    position: relative;
}

.featured-products-section .row::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media screen and (max-width: 991px) {
    .featured-products-section {
        padding: 4rem 0;
    }
}

@media screen and (max-width: 767px) {
    .featured-products-section {
        padding: 3rem 0;
    }
    
    .featured-products-section .product-body {
        padding: 1.5rem 1rem;
    }
}

/* Additional Footer Styling */
.footer {
    margin-top: 0;
    background: linear-gradient(135deg, #301934 0%, #22122a 100%);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
}

.footer .widget-about p {
    margin-bottom: 2rem;
    max-width: 260px;
}

.footer .widget-call {
    position: relative;
    font-size: 1.3rem;
    padding-left: 45px;
    margin-top: 2.5rem;
    margin-bottom: 0;
}

.footer .widget-call i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    color: #fff;
}

.footer .widget-call a {
    color: #fff;
    font-weight: 600;
    font-size: 1.4rem;
    display: block;
}

.footer .widget-list li a {
    position: relative;
    padding-left: 0;
    transition: all 0.3s;
}

.footer .widget-list li a::before {
    content: '';
    display: none;
}

.footer .widget-list li a:hover,
.footer .widget-list li a:focus {
    padding-left: 10px;
}

/* Responsive Adjustments */
@media screen and (max-width: 991px) {
    .testimonials {
        padding: 4rem 0;
    }
    
    .featured-products-section {
        padding: 4rem 0;
    }
    
    .header-search {
        background-color: #fff;
    }
    
    .intro-slide .intro-content {
        max-width: 80%;
    }
    
    .intro-title {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 767px) {
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonial {
        padding: 2rem 1.5rem;
    }
    
    .featured-products-section {
        padding: 3rem 0;
    }
    
    .featured-products-section .product-body {
        padding: 1.5rem 1rem;
    }
    
    .intro-slider-container, 
    .intro-slide {
        height: 400px;
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .footer {
        padding-top: 3rem;
    }
    
    .footer-middle {
        padding-bottom: 2rem;
    }
    
    .footer .widget-title {
        margin-top: 1.5rem;
    }
}
