/* Color Palette */
:root {
    --primary-brown: #594a42;
    --dark-forge: #554c48;
    --white: #ffffff;
    --steel-white: #e8e8e8;
    --accent-gold: #d4a373;
}

* {
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-forge);
}

/* =======================Nav bar======================= */
/* Announcement Bar */
#kf-announcement-bar {
    background-color: var(--dark-forge);
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Navigation Styles */
.kf-main-nav {
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: var(--steel-white) !important;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


#kf-main-nav #kf-header-logo {
    max-height: 55px;
}

/* Nav Links */
#kf-main-nav .navbar-nav .nav-link {
    color: #111;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 10px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
}

#kf-main-nav .navbar-nav .nav-item {
    position: relative;
}

/* Custom underline effect on hover */
#kf-main-nav .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    display: block;
    border: none;
    margin: 0;
    width: 0;
    height: 2px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-brown);
    transition: width 0.3s ease;
}

#kf-main-nav .navbar-nav .nav-link:hover::after,
#kf-main-nav .navbar-nav .nav-link.active::after {
    width: 60%;
}

#kf-main-nav .navbar-nav .nav-link:hover,
#kf-main-nav .navbar-nav .nav-link.active {
    color: var(--primary-brown);
}

#kf-main-nav .navbar-nav .nav-link i.nav-icon {
    font-size: 1.1rem;
    color: #666 !important;
    transition: color 0.3s;
}

#kf-main-nav .navbar-nav .nav-link:hover i.nav-icon,
#kf-main-nav .navbar-nav .nav-link.active i.nav-icon {
    color: var(--primary-brown) !important;
}

/* Flame Icon Exception */
#kf-main-nav .navbar-nav .nav-link i.fa-fire {
    color: #c0401d !important;
    /* Force orange fire */
}

/* Dropdown Menu Enhancements */
#kf-main-nav .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    margin-top: 0;
}

@media (min-width: 1200px) {
    #kf-main-nav .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

#kf-main-nav .dropdown-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    padding: 8px 20px;
    transition: background-color 0.2s, color 0.2s;
}

#kf-main-nav .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-brown);
}

/* Products Dropdown Dynamic Styling */
#kf-main-nav .kf-products-dropdown {
    min-width: 250px;
}

#kf-main-nav .kf-products-dropdown .kf-all-products-link {
    font-size: 0.95rem;
    color: var(--primary-brown);
}

#kf-main-nav .kf-products-dropdown .kf-category-link {
    padding: 10px 20px;
}

#kf-main-nav .kf-products-dropdown .kf-category-link:hover i {
    transform: translateX(5px);
    color: var(--primary-brown) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

#kf-main-nav .kf-products-dropdown .kf-category-link i {
    transition: all 0.3s ease;
}

/* Multi-level Dropdown */
#kf-main-nav .dropdown-menu .kf-dropdown-submenu {
    position: relative;
}

#kf-main-nav .dropdown-menu .kf-dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -10px;
    margin-left: 0;
    display: none;
}

/* Show submenu on hover for desktop */
@media (min-width: 992px) {
    #kf-main-nav .dropdown-menu .kf-dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }
}

/* Right Side Actions */
.kf-nav-icons .nav-action-icon {
    color: #111;
    font-size: 1.3rem;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s;
    display: inline-block;
}

.kf-nav-icons .nav-action-icon:hover {
    color: var(--primary-brown);
    transform: translateY(-2px);
}

.kf-contact-btn {
    transition: transform 0.2s, color 0.2s;
}

.kf-contact-btn:hover {
    color: var(--primary-brown) !important;
    transform: scale(1.05);
}

.kf-cart-badge {
    font-size: 0.6rem;
    padding: 3px 6px;
    background-color: #c0401d !important;
    /* Force orange to pop */
}

/* ======================== Hero Swiper Slider ====================== */
#kf-hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.kf-hero-swiper {
    width: 100%;
    height: 85vh;
    min-height: 500px;
}

/* Slide Container */
.kf-hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Background Image */
.kf-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 6s ease-out;
}

/* Ken Burns zoom on active slide */
.kf-slide-active .kf-hero-bg {
    transform: scale(1.08);
}

/* Dark Overlay */
.kf-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

/* Lighter overlay for bright images (banner3) */
.kf-hero-overlay--light {
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.1) 100%);
}

/* Content Positioning */
.kf-hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 650px;
    padding: 20px 0;
}

/* Tag / Eyebrow Label */
.kf-hero-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(212, 163, 115, 0.4);
    border-radius: 2px;
    background: rgba(212, 163, 115, 0.08);

    /* Animation */
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.2s;
}

.kf-slide-active .kf-hero-tag {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Title */
.kf-hero-title {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);

    /* Animation */
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: 0.4s;
}

.kf-slide-active .kf-hero-title {
    opacity: 1;
    transform: translateY(0);
}

/* Subtitle / Description */
.kf-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 520px;
    font-weight: 300;
    letter-spacing: 0.3px;

    /* Animation */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: 0.6s;
}

.kf-slide-active .kf-hero-subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* Action Buttons */
.kf-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;

    /* Animation */
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.8s;
}

.kf-slide-active .kf-hero-actions {
    opacity: 1;
    transform: translateY(0);
}

.kf-btn-hero-primary {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-brown);
    color: #ffffff;
    padding: 13px 32px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    border: 2px solid var(--primary-brown);
    text-transform: uppercase;
    transition: all 0.35s ease;
}

.kf-btn-hero-primary:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.kf-btn-hero-outline {
    font-family: 'Inter', sans-serif;
    background-color: transparent;
    color: #ffffff;
    padding: 13px 32px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    transition: all 0.35s ease;
}

.kf-btn-hero-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Navigation Arrows */
.kf-hero-nav-prev,
.kf-hero-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.kf-hero-nav-prev {
    left: 25px;
}

.kf-hero-nav-next {
    right: 25px;
}

.kf-hero-nav-prev:hover,
.kf-hero-nav-next:hover {
    background: var(--primary-brown);
    border-color: var(--primary-brown);
    transform: translateY(-50%) scale(1.05);
}

/* Pagination Bullets */
.kf-hero-pagination {
    position: absolute;
    bottom: 30px !important;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    text-align: center;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.kf-hero-pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    background: transparent;
    opacity: 0.5;
    border-radius: 0;
    padding: 8px 0;
    transition: all 0.4s ease;
    position: relative;
}

.kf-hero-pagination .swiper-pagination-bullet::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    margin-top: 6px;
}

.kf-hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.kf-hero-pagination .swiper-pagination-bullet-active::after {
    width: 50px;
    background: var(--accent-gold);
    height: 3px;
}

.kf-bullet-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.4s ease;
}

.swiper-pagination-bullet-active .kf-bullet-label {
    color: #ffffff;
}

/* ======================== Hero Responsive ====================== */
@media (max-width: 991px) {
    .kf-hero-swiper {
        height: 70vh;
    }

    .kf-hero-content {
        left: 6%;
        max-width: 520px;
    }

    .kf-hero-nav-prev,
    .kf-hero-nav-next {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .kf-hero-nav-prev {
        left: 15px;
    }

    .kf-hero-nav-next {
        right: 15px;
    }
}

@media (max-width: 767px) {
    .kf-hero-swiper {
        height: 60vh;
        min-height: 420px;
    }

    .kf-hero-content {
        left: 5%;
        right: 5%;
        max-width: none;
    }

    .kf-hero-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .kf-hero-subtitle {
        font-size: 0.85rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .kf-hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .kf-btn-hero-primary,
    .kf-btn-hero-outline {
        text-align: center;
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .kf-hero-nav-prev,
    .kf-hero-nav-next {
        display: none;
    }

    .kf-hero-pagination {
        bottom: 18px !important;
    }

    .kf-bullet-label {
        font-size: 0.55rem;
    }

    .kf-hero-pagination .swiper-pagination-bullet::after {
        width: 28px;
    }

    .kf-hero-pagination .swiper-pagination-bullet-active::after {
        width: 36px;
    }
}

@media (max-width: 480px) {
    .kf-hero-swiper {
        height: 55vh;
        min-height: 380px;
    }

    .kf-hero-tag {
        font-size: 0.65rem;
        letter-spacing: 2.5px;
        padding: 4px 12px;
    }

    .kf-hero-title {
        font-size: 1.5rem;
    }
}


/* ======================== CTA Cards Strip ====================== */
#kf-cta-strip {
    width: 100%;
    padding: 20px 0;
    background-color: #f5f0eb;
}

.kf-cta-container {
    padding-left: 30px;
    padding-right: 30px;
}

.kf-cta-card {
    display: block;
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    text-decoration: none;
}

.kf-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.kf-cta-card:hover .kf-cta-bg {
    transform: scale(1.08);
}

#kf-cta-strip .kf-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.3) 100%);
    border-radius: 8px;
    z-index: 1;
    transition: background 0.4s ease;
}

.kf-cta-card:hover .kf-cta-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.2) 100%);
}

.kf-cta-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 28px 30px;
    z-index: 2;
}

.kf-cta-title {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.kf-cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--accent-gold);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.kf-cta-btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    background: transparent;
    border: 1.5px solid var(--accent-gold);
    padding: 8px 20px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.kf-cta-card:hover .kf-cta-btn {
    background: var(--accent-gold);
    color: var(--steel-white);
    border-color: var(--accent-gold);
}

/* CTA Strip Responsive */
@media (max-width: 991px) {
    .kf-cta-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .kf-cta-card {
        height: 260px;
    }
}

@media (max-width: 767px) {
    #kf-cta-strip {
        padding: 15px 0;
    }

    .kf-cta-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .kf-cta-card {
        height: 240px;
    }

    .kf-cta-body {
        padding: 22px 24px;
    }

    .kf-cta-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    .kf-cta-card {
        height: 220px;
        margin-bottom: 4px;
    }

    .kf-cta-title {
        font-size: 1.2rem;
    }
}


/* ======================== Section Headers (Reusable) ====================== */
.kf-section-header {
    margin-bottom: 40px;
}

.kf-section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.kf-section-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-forge);
    margin-bottom: 10px;
}

.kf-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ======================== Freshly Forged Products ====================== */
#kf-freshly-forged {
    padding: 60px 0;
    background-color: #ffffff;
}

.kf-product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    background: #fff;
}

.kf-product-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Image Area */
.kf-product-img-wrap {
    position: relative;
    background: #f7f5f3;
    padding: 20px;
    text-align: center;
    overflow: hidden;
}

.kf-product-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

/* Wishlist Icon */
.kf-wishlist-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    color: #999;
    font-size: 0.85rem;
    text-decoration: none;
    z-index: 2;
    transition: all 0.25s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.kf-wishlist-icon:hover {
    color: #c0401d;
    transform: scale(1.1);
}

/* Product Badge */
.kf-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 3px;
    background: var(--primary-brown);
    color: #fff;
    z-index: 2;
}

.kf-badge-hot {
    background: #c0401d;
}

/* Product Info */
.kf-product-info {
    padding: 16px 18px 20px;
}

.kf-product-name {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-forge);
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.2s ease;
}

.kf-product-name:hover {
    color: var(--primary-brown);
}

/* Star Rating */
.kf-product-rating {
    margin-bottom: 8px;
}

.kf-product-rating i {
    font-size: 0.7rem;
    color: var(--accent-gold);
    margin-right: 1px;
}

.kf-rating-count {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: #aaa;
    margin-left: 4px;
}

/* Price */
.kf-product-price {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-forge);
}

/* Offer Pricing */
.kf-price-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kf-old-price {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

.kf-offer-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #c0401d;
    /* Highlighting the offer price in a forge red */
}

.kf-badge-discount {
    background: #c0401d;
    /* Discount badge color */
}

/* Exclusive Offers Section */
#kf-exclusive-offers {
    padding: 60px 0;
    background-color: #fcfcfc;
}

/* Add to Cart */
.kf-add-to-cart {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--dark-forge);
    background: #f7f5f3;
    border: 1px solid #e5e0db;
    padding: 10px 0;
    margin-top: 12px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.kf-add-to-cart:hover {
    background: var(--primary-brown);
    color: #fff;
    border-color: var(--primary-brown);
}

/* Products Responsive */
@media (max-width: 575px) {
    #kf-freshly-forged {
        padding: 40px 0;
    }

    .kf-section-title {
        font-size: 1.6rem;
    }

    .kf-product-img {
        height: 150px;
    }

    .kf-product-info {
        padding: 12px 14px 16px;
    }

    .kf-product-name {
        font-size: 0.82rem;
    }

    .kf-product-price {
        font-size: 0.9rem;
    }
}

/* ======================== Shop by Category ====================== */
#kf-categories {
    padding: 60px 0;
    background-color: #f7f5f3;
}

.kf-category-swiper {
    padding: 20px 10px;
    /* Space for shadow/buttons */
    position: relative;
}

.kf-category-card {
    display: block;
    text-align: center;
    background: #fff;
    border: 1px solid #e5e0db;
    border-radius: 8px;
    padding: 15px 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kf-category-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-brown);
    transform: translateY(-5px);
}

.kf-category-img-wrap {
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 4px;
}

.kf-category-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.4s ease;
}

.kf-category-card:hover .kf-category-img {
    transform: scale(1.1);
}

.kf-category-name {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-forge);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.kf-category-card:hover .kf-category-name {
    color: var(--primary-brown);
}

/* Category Swiper Buttons */
.kf-category-next,
.kf-category-prev {
    color: var(--dark-forge);
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.kf-category-next:after,
.kf-category-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.kf-category-next:hover,
.kf-category-prev:hover {
    background: var(--primary-brown);
    color: #fff;
    transform: scale(1.1);
}

.kf-category-next {
    right: 10px;
}

.kf-category-prev {
    left: 10px;
}

/* Category Responsive */
@media (max-width: 991px) {
    .kf-category-img-wrap {
        height: 150px;
    }

    .kf-category-name {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    #kf-categories {
        padding: 40px 0;
    }

    .kf-category-img-wrap {
        height: 140px;
    }

    .kf-category-next,
    .kf-category-prev {
        display: none;
        /* Hide buttons on small mobile to save space */
    }
}

/* ======================== Customer Reviews ====================== */
#kf-reviews {
    padding: 70px 0;
    background-color: #f7f5f3;
}

.kf-reviews-swiper {
    padding-bottom: 50px;
    /* Space for pagination */
}

.kf-review-card {
    background: #fff;
    border: 1px solid #e5e0db;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.kf-review-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-brown);
}

.kf-review-product-img-wrap {
    background: #fdfdfd;
    border-bottom: 1px solid #f0ece9;
    margin: -40px -30px 25px -30px;
    /* Counteract card padding to make it full width at top */
    padding: 20px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0 0;
}

.kf-review-product-img {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.kf-review-rating {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.kf-review-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--dark-forge);
    font-style: italic;
    margin-bottom: 25px;
}

.kf-review-author-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.kf-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.kf-review-author-info {
    text-align: left;
}

.kf-review-author {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin: 0 0 2px 0;
}

.kf-review-date {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Review Pagination Styling */
.kf-reviews-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--dark-forge);
    opacity: 0.2;
    transition: all 0.3s ease;
}

.kf-reviews-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-brown);
    transform: scale(1.3);
}

/* Reviews Responsive */
@media (max-width: 767px) {
    .kf-review-card {
        padding: 30px 20px;
    }

    .kf-review-text {
        font-size: 0.95rem;
    }
}

/* ======================== Custom Forging Banner ====================== */
#kf-custom-forging {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.kf-custom-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.kf-custom-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.kf-custom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 10, 8, 0.75);
    /* Dark brown-black overlay */
    z-index: 1;
}

.kf-custom-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.kf-custom-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.kf-custom-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.7;
    font-weight: 300;
}

.kf-custom-btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    background: var(--primary-brown);
    border: 2px solid var(--primary-brown);
    padding: 14px 35px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.kf-custom-btn:hover {
    background: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* Custom Forging Responsive */
@media (max-width: 767px) {
    #kf-custom-forging {
        padding: 70px 0;
    }

    .kf-custom-subtitle {
        font-size: 0.95rem;
    }

    .kf-custom-btn {
        padding: 12px 25px;
    }
}

/* ======================== Featured Blogs ====================== */
#kf-blogs {
    background-color: #fff;
}

.kf-blog-card {
    background: #fff;
    border: 1px solid #e5e0db;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kf-blog-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-brown);
}

.kf-blog-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.kf-blog-card:hover .kf-blog-img {
    transform: scale(1.08);
}

.kf-blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-brown);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 3px;
    letter-spacing: 1px;
    z-index: 2;
}

.kf-blog-content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.kf-blog-meta {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.kf-blog-title {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.kf-blog-title a {
    color: var(--dark-forge);
    text-decoration: none;
    transition: color 0.3s ease;
}

.kf-blog-title a:hover {
    color: var(--primary-brown);
}

.kf-blog-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.kf-blog-read-more {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-brown);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.kf-blog-read-more:hover {
    color: var(--accent-gold);
}

.kf-blog-read-more i {
    transition: transform 0.3s ease;
}

.kf-blog-read-more:hover i {
    transform: translateX(5px);
}

/* Blogs Responsive */
@media (max-width: 767px) {
    .kf-blog-img-wrap {
        height: 200px;
    }

    .kf-blog-content {
        padding: 25px 20px;
    }
}


/* ======================== Page Breadcrumb ====================== */
.kf-page-breadcrumb {
    padding: 60px 0;
    background-color: #f7f5f3;
    border-bottom: 1px solid #e5e0db;
    color: var(--dark-forge);
}

.kf-breadcrumb-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: var(--dark-forge);
}

.breadcrumb-item,
.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--primary-brown);
}

.breadcrumb-item.active {
    color: var(--primary-brown);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999;
    content: "/";
}


/* ======================== Most Viewed ====================== */
.kf-most-viewed {
    background-color: #fff;
}

.kf-most-viewed-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.kf-most-viewed-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    display: inline-block;
    position: relative;
}

.kf-most-viewed-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 100%;
    height: 2px;
    background-color: #f76b1c;
    /* Orange accent */
}

.kf-mini-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.kf-mini-img-wrap {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kf-mini-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.kf-mini-img-wrap:hover img {
    transform: scale(1.1);
}

.kf-mini-info {
    flex-grow: 1;
}

.kf-mini-title {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}

.kf-mini-title a {
    color: var(--dark-forge);
    text-decoration: none;
    transition: color 0.3s ease;
}

.kf-mini-title a:hover {
    color: var(--primary-brown);
}

.kf-mini-price {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 8px;
}

.kf-mini-actions {
    display: flex;
    gap: 10px;
}

.kf-mini-action {
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.kf-mini-action:hover {
    color: var(--primary-brown);
}

/* ======================== About Us Layout ====================== */
.kf-about-header .kf-about-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.kf-sidebar-nav li {
    margin-bottom: 5px;
}

.kf-sidebar-nav a {
    display: block;
    padding: 15px;
    background-color: #6b7280;
    /* Gray color similar to reference */
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s;
}

.kf-sidebar-nav a:hover,
.kf-sidebar-nav a.active {
    background-color: #4b5563;
    /* Darker gray on hover/active */
}

.kf-sidebar-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

/* Featured Blade Card */
.kf-featured-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
}

.kf-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.kf-featured-img-wrapper {
    position: relative;
    background-color: #fcfcfc;
    padding: 20px;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.kf-featured-img {
    height: 140px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.kf-featured-card:hover .kf-featured-img {
    transform: scale(1.08);
}

.kf-featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kf-featured-title {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
}

.kf-featured-price {
    font-size: 1.05rem;
    color: var(--primary-brown) !important;
    margin-bottom: 15px;
}

.kf-about-content-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

.kf-about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.kf-about-banner-box {
    background-color: #222222;
    border-left: 6px solid #f76b1c;
    /* Orange accent */
}

.kf-banner-box-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f76b1c;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.kf-banner-box-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
}

.kf-banner-box-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #a0a0a0;
}

/*================================= Footer Container Base============================= */
#kf-footer {
    background-color: #f9f9f9;
    border-top: 4px solid var(--primary-brown);
    color: #444;
}

#kf-footer .kf-footer-heading {
    color: var(--dark-forge);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

#kf-footer .kf-footer-logo {
    width: 160px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

#kf-footer .kf-footer-logo:hover {
    transform: scale(1.05);
}

#kf-footer ul li {
    margin-bottom: 12px;
}

#kf-footer ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

#kf-footer ul li a i {
    font-size: 0.7rem;
    margin-right: 10px;
    color: var(--primary-brown);
}

#kf-footer ul li a:hover {
    color: var(--primary-brown);
    transform: translateX(8px);
}

/* Social Icons */
#kf-footer .kf-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--dark-forge);
    color: white;
    border-radius: 50%;
    margin-right: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

#kf-footer .kf-social-icons a:hover {
    background: var(--primary-brown);
    transform: rotate(360deg);
}

#kf-footer .kf-newsletter-group .form-control {
    border: 1px solid #ddd;
    border-radius: 0;
}

#kf-footer .kf-newsletter-group .kf-btn-join {
    background-color: var(--dark-forge);
    color: white;
    border-radius: 0;
    font-weight: 600;
    padding: 10px 25px;
}

#kf-footer .kf-newsletter-group .kf-btn-join:hover {
    background-color: var(--primary-brown);
}

#kf-footer .kf-captcha-box {
    background-color: #fff;
    border-radius: 4px;
}

#kf-footer .kf-contact-info i {
    color: var(--primary-brown);
}

/* Blog Card Hover Styles */
.kf-blog-card {
    cursor: pointer;
}

.kf-blog-card .card-img {
    transition: transform 0.6s ease;
}

.kf-blog-card:hover .card-img {
    transform: scale(1.08);
}

.kf-blog-card .card-img-overlay {
    transition: background 0.4s ease;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%) !important;
}

.kf-blog-card:hover .card-img-overlay {}

/* Featured Blade Card */
.kf-featured-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
}

.kf-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.kf-featured-img-wrapper {
    position: relative;
    background-color: #fcfcfc;
    padding: 20px;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.kf-featured-img {
    height: 140px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.kf-featured-card:hover .kf-featured-img {
    transform: scale(1.08);
}

.kf-featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kf-featured-title {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
}

.kf-featured-price {
    font-size: 1.05rem;
    color: var(--primary-brown) !important;
    margin-bottom: 15px;
}

.kf-about-content-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

.kf-about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.kf-about-banner-box {
    background-color: #222222;
    border-left: 6px solid #f76b1c;
    /* Orange accent */
}

.kf-banner-box-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f76b1c;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.kf-banner-box-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
}

.kf-banner-box-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #a0a0a0;
}

/*================================= Footer Container Base============================= */
#kf-footer {
    background-color: #f9f9f9;
    border-top: 4px solid var(--primary-brown);
    color: #444;
}

#kf-footer .kf-footer-heading {
    color: var(--dark-forge);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
}


#kf-footer ul li {
    margin-bottom: 12px;
}

#kf-footer ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

#kf-footer ul li a i {
    font-size: 0.7rem;
    margin-right: 10px;
    color: var(--primary-brown);
}

#kf-footer ul li a:hover {
    color: var(--primary-brown);
    transform: translateX(8px);
}

/* Social Icons */
#kf-footer .kf-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--dark-forge);
    color: white;
    border-radius: 50%;
    margin-right: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

#kf-footer .kf-social-icons a:hover {
    background: var(--primary-brown);
    transform: rotate(360deg);
}

#kf-footer .kf-newsletter-group .form-control {
    border: 1px solid #ddd;
    border-radius: 0;
}

#kf-footer .kf-newsletter-group .kf-btn-join {
    background-color: var(--dark-forge);
    color: white;
    border-radius: 0;
    font-weight: 600;
    padding: 10px 25px;
}

#kf-footer .kf-newsletter-group .kf-btn-join:hover {
    background-color: var(--primary-brown);
}

#kf-footer .kf-captcha-box {
    background-color: #fff;
    border-radius: 4px;
}

#kf-footer .kf-contact-info i {
    color: var(--primary-brown);
}

/* Blog Card Hover Styles */
.kf-blog-card {
    cursor: pointer;
}

.kf-blog-card .card-img {
    transition: transform 0.6s ease;
}

.kf-blog-card:hover .card-img {
    transform: scale(1.08);
}

.kf-blog-card .card-img-overlay {
    transition: background 0.4s ease;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%) !important;
}

.kf-blog-card:hover .card-img-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.1) 100%) !important;
}

.kf-blog-card .btn {
    transition: all 0.3s ease;
}

.kf-blog-card:hover .btn {
    background-color: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

/* Horizontal Blog Swiper */
.kf-blog-horizontal-card {
    transition: all 0.4s ease;
}

.kf-blog-img-zoom {
    transition: transform 0.6s ease;
}

.kf-blog-horizontal-card:hover .kf-blog-img-zoom {
    transform: scale(1.05);
}

.kf-swiper-nav-btn {
    background-color: #1a1a1a;
    color: #fff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.kf-swiper-nav-btn:hover {
    background-color: #ff4500;
}

.kf-swiper-nav-btn::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.hover-primary:hover {
    color: #ff4500 !important;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.transition {
    transition: all 0.3s ease;
}

/* Blog Surfing Shared Classes */
.kf-about-header {
    background-color: #f1f1f1;
}

.kf-header-desc {
    max-width: 700px;
    font-size: 1.05rem;
}

.kf-blog-horizontal-img {
    height: 240px;
}

.kf-blog-meta {
    font-size: 0.85rem;
}

.kf-icon-accent {
    color: #ff4500;
}

.kf-blog-title {
    font-family: 'Cinzel', serif;
    color: #222;
}

.kf-blog-excerpt {
    line-height: 1.6;
}

.kf-page-active {
    background-color: #ff4500 !important;
    color: white !important;
    border-color: #ff4500 !important;
}

/* Blog Details Styles */
.kf-blog-quote {
    font-style: italic;
    font-size: 1.25rem;
    color: #555;
    border-left: 4px solid #ff4500 !important;
    background-color: #f9f9f9;
}

.kf-share-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f1f1f1;
    color: #444;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kf-share-icons a:hover {
    background-color: #ff4500;
    color: #fff;
    transform: translateY(-3px);
}

.kf-post-navigation .kf-nav-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    background-color: #fff;
}

.kf-post-navigation .kf-nav-link:hover {
    border-color: #ff4500 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.kf-blog-details-img-wrapper img {
    max-height: 500px;
    object-fit: cover;
}

.kf-about-text {
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}

.kf-about-content-title {
    font-family: 'Cinzel', serif;
    color: #222;
    font-weight: 700;
}

/* Product Card Styles */
.kf-product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kf-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.kf-product-img-wrapper {
    background-color: #f8f9fa;
    position: relative;
}

.kf-product-img {
    height: 250px;
    width: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.5s ease;
}

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

.kf-wishlist-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    transition: all 0.3s ease;
    z-index: 2;
}

.kf-wishlist-btn:hover {
    color: #ff4500;
    border-color: #ff4500;
}

.kf-product-action {
    transform: translateY(100%);
    transition: transform 0.3s ease;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0) 100%);
}

.kf-product-card:hover .kf-product-action {
    transform: translateY(0);
}

.kf-product-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #222;
    transition: color 0.3s ease;
}

.kf-product-card:hover .kf-product-title {
    color: #ff4500;
}

/* Grid & List View Toggle Buttons */
.kf-view-toggle .btn {
    padding: 0.375rem 0.75rem;
}

.kf-view-toggle .btn.active {
    background-color: var(--dark-forge);
    color: #fff;
    border-color: var(--dark-forge);
}

/* Grid View specific adjustments */
.view-grid .kf-list-only {
    display: none !important;
}

.view-grid .kf-product-card {
    text-align: center;
}

.view-grid .kf-add-cart-btn {
    width: 100% !important;
}

.view-grid .kf-price-wrapper p {
    font-weight: 500 !important;
}

/* List View Base Layout */
.view-list .product-col {
    flex: 0 0 auto;
    width: 100%;
}

.view-list .kf-product-card {
    border: none !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    padding-bottom: 0 !important;
    background-color: #fff;
    transition: all 0.4s ease;
}

.view-list .kf-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

/* List View Image */
.view-list .kf-product-img-wrapper {
    padding: 0;
}

.view-list .kf-product-img {
    height: 100%;
    width: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

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

.view-list .kf-grid-wishlist {
    display: none !important;
}

/* List View Content */
.view-list .kf-product-body {
    text-align: left !important;
    justify-content: center;
    padding: 1.25rem 1.5rem !important;
    /* Decrease padding */
}

.view-list .kf-product-brand {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.25rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-list .kf-product-title {
    font-size: 1.25rem;
    /* Smaller title */
    color: #111;
    margin-bottom: 0.5rem !important;
    font-weight: 700;
    line-height: 1.2;
}

.view-list .kf-product-title:hover {
    color: var(--primary-brown);
}

.view-list .kf-product-description {
    font-size: 0.9rem;
    /* Smaller text */
    color: #555;
    margin-bottom: 0.75rem !important;
    /* Tighter margin */
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.view-list .kf-product-price {
    font-size: 1.1rem;
    color: #111 !important;
    font-weight: 700 !important;
}

.view-list .kf-ex-tax {
    font-size: 0.8rem;
    color: #666;
}

/* List View Actions */
.view-list .kf-action-wrapper {
    margin-top: 1rem !important;
    /* tighter top margin */
    gap: 0.5rem !important;
    justify-content: flex-start !important;
}

.view-list .kf-qty-input {
    border-color: #ddd !important;
    height: 42px;
}

.view-list .kf-qty-input input {
    width: 45px;
    font-size: 0.9rem;
    font-weight: 600;
}

.view-list .kf-qty-input button {
    background: #f8f9fa;
    color: #666;
    border-color: #ddd !important;
}

.view-list .kf-qty-input button:hover {
    background: #e9ecef;
}

.view-list .kf-add-cart-btn {
    background-color: #111;
    color: #fff;
    border: none;
    height: 42px;
    padding: 0 1.5rem;
    font-size: 0.8rem;
    flex-grow: 0 !important;
    transition: background 0.2s;
}

.view-list .kf-add-cart-btn:hover {
    background-color: #ff4500;
    color: #fff;
}

.view-list .kf-list-wishlist-btn {
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
    border: 1px solid #ddd !important;
    color: #555;
    transition: all 0.2s;
}

.view-list .kf-list-wishlist-btn:hover {
    background-color: #ff4500 !important;
    border-color: #ff4500 !important;
    color: #fff;
}

.view-list .kf-list-wishlist-btn:hover i {
    color: #fff !important;
}

/* List View Extra Links */
.view-list .kf-extra-link {
    transition: color 0.2s;
}

.view-list .kf-extra-link:hover {
    color: var(--primary-brown) !important;
}

.view-list .kf-extra-link i.text-danger {
    color: #ff4500 !important;
}

/* ======================= Custom Forge ======================= */
/* Premium Aesthetic Styles */
.custom-forge-hero {
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), url("../images/forge-bg.jpg") center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.custom-forge-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #d4af37, #f3e5ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-forge-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #ddd;
}

.forge-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: -50px auto 80px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    z-index: 10;
    position: relative;
}

.forge-process {
    flex: 1 1 400px;
    background: #111;
    color: #fff;
    padding: 50px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.process-icon {
    background: var(--primary-brown);
    color: #111;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.process-content h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
    color: var(--primary-brown);
}

.process-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.forge-form-section {
    flex: 2 1 600px;
    background: var(--card-bg);
    padding: 50px;
}

.forge-form-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #222;
}

.form-group label {
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 20px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    outline: none;
}

.submit-btn {
    background: var(--accent-gold);
    color: #111;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: var(--primary-brown);
    color: #fff;
}

/* Message Styling */
.messages {
    margin: 20px auto;
    max-width: 800px;
}

.alert {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media(max-width: 768px) {
    .forge-container {
        margin: -30px 15px 50px;
        flex-direction: column;
    }

    .forge-process,
    .forge-form-section {
        padding: 30px;
    }
}

/* ==========================================================================
   PRODUCT DETAILS PAGE
   ========================================================================== */

/* Image Gallery */
.product-gallery-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.productMainSwiper {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.productMainSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.image-zoom-container {
    position: relative;
    overflow: hidden;
    height: 500px;
    border-radius: 10px;
    cursor: crosshair;
    background: #fff;
}

.image-zoom-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    transition: transform .15s ease-out;
    will-change: transform;
}


/* Thumbnail Swiper */
.productThumbSwiper {
    box-sizing: border-box;
    padding: 10px 0;
}

.productThumbSwiper .swiper-slide {
    width: 25%;
    height: 100px;
    opacity: 0.6;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.productThumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--accent-gold);
}

.productThumbSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Quantity Selector */
.quantity-selector {
    background-color: var(--light-bg);
}

.quantity-selector .btn {
    background: transparent;
    color: var(--text-color);
}

.quantity-selector .btn:hover {
    color: var(--accent-gold);
}

.qty-input {
    background: transparent;
    font-weight: bold;
}

.qty-input:focus {
    box-shadow: none;
    outline: none;
}

/* Actions */
.kf-add-to-cart-btn {
    background-color: var(--primary-brown);
    border: none;
    transition: background-color 0.3s ease;
}

.kf-add-to-cart-btn:hover:not(:disabled) {
    background-color: var(--accent-gold);
    color: var(--primary-brown);
}

.kf-wishlist-btn {
    border-color: #dc3545;
    color: #dc3545;
    transition: all 0.3s ease;
}

.kf-wishlist-btn:hover {
    background-color: #dc3545;
    color: #fff;
}

/* Tabs Override */
.kf-product-tabs .nav-tabs .nav-link {
    color: var(--text-color);
}

.kf-product-tabs .nav-tabs .nav-link.active {
    color: var(--primary-brown) !important;
}

.kf-product-tabs .nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-brown);
    transition: width 0.3s ease;
}

.kf-product-tabs .nav-tabs .nav-link.active::after {
    width: 100%;
}

/* Utilities */
.description-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Input Group Alignments & Newsletter Form */
.kf-newsletter-group .form-control,
.kf-newsletter-group .btn,
.kf-search-group .form-control,
.kf-search-group .btn,
.kf-password-group .form-control,
.kf-password-group .btn {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    margin: 0;
}

.kf-newsletter-group .form-control,
.kf-search-group .form-control,
.kf-password-group .form-control {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    padding-left: 15px;
    padding-right: 15px;
}

.kf-newsletter-group .btn,
.kf-search-group .btn,
.kf-password-group .btn {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    padding-left: 20px;
    padding-right: 20px;
}

.kf-cart-update-group .form-control,
.kf-cart-update-group .btn {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    margin: 0;
    padding: 0 15px;
}

.kf-cart-update-group .form-control {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.kf-cart-update-group .btn {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* Newsletter Specific Colors */
.kf-newsletter-group .form-control {
    border: 1px solid var(--primary-brown);
}
.kf-newsletter-group .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-gold);
}
.kf-btn-join {
    background-color: var(--primary-brown);
    color: var(--white);
    border: 1px solid var(--primary-brown);
    transition: all 0.3s ease;
}
.kf-btn-join:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--white);
}

/* The default Bootstrap dropdown caret is naturally hidden by the #kf-main-nav ::after rule which sets border: none and width: 0. */

/* Quantity Input Group */
.kf-quantity-group {
    width: 140px;
}
.kf-quantity-group .btn,
.kf-quantity-group .form-control {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-brown);
    margin: 0;
    box-shadow: none;
}
.kf-quantity-group .form-control {
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding: 0;
}
.kf-quantity-group .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-brown);
}
.kf-quantity-group .qty-minus {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: transparent;
    color: var(--primary-brown);
    padding: 0 15px;
}
.kf-quantity-group .qty-plus {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background-color: transparent;
    color: var(--primary-brown);
    padding: 0 15px;
}
.kf-quantity-group .btn:hover {
    background-color: var(--primary-brown);
    color: var(--white);
}