/**
* Template Name: Bootslander
* Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');

:root
{
    --primary-green: #2d5f4f;
    --light-green: #8fbc8f;
    --sage-green: #b8c5b8;
    --cream: #f5f5f0;
    --text-dark: #2c3e50;

    --primary-blue: #2d5f7f;
    --light-blue: #7fb8d4;
    --sage-blue: #b8d5e5;
    --sand: #e8dcc4;
}

body {
    font-family: 'Karla', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: white !important;
    transition: color 0.3s ease;
}

.navbar.scrolled .navbar-brand {
    color: var(--primary-green) !important;
}

.nav-link {
    color: white !important;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark) !important;
}

.navbar-icons a {
    color: white;
    transition: color 0.3s ease;
}

.navbar.scrolled .navbar-icons a {
    color: var(--text-dark);
}

.navbar .form-control {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
}

.navbar .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.navbar.scrolled .form-control {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    color: var(--text-dark);
}

.navbar.scrolled .form-control::placeholder {
    color: #999;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .navbar-toggler {
    border-color: var(--text-dark);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44, 62, 80, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.658), rgba(0, 0, 0, 0.568)), url('../img/cover.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .italic-text {
    font-style: italic;
    font-weight: 400;
}

.hero-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-shop {
    background-color: white;
    color: var(--primary-green);
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-badge {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    min-width: 160px;
    z-index: 3;
}

.badge-text {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.badge-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
}

/* Products Section */
.section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
}

/* Kitchen Section */
.kitchen-section {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(to right, rgba(45,95,79,0.9), rgba(45,95,79,0.7));
}

.kitchen-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 60px;
}

.kitchen-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.kitchen-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
}

/* Features */
.feature-card {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-subtitle {
    color: #666;
    font-size: 0.95rem;
}

/* Categories */
.category-card {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.category-card:hover {
    transform: scale(1.02);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
}

.category-label {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.category-name {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 15px;
}

.btn-explore {
    background: white;
    color: var(--text-dark);
    padding: 8px 25px;
    border-radius: 20px;
    border: none;
    width: fit-content;
}

/* Carousel Controls */
.carousel-control {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-control:hover {
    background: var(--primary-green);
    color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-badge {
        position: absolute;
        top: auto;
        bottom: 30px;
        right: 30px;
        transform: none;
    }

    .product-image {
        height: 220px;
    }

    .kitchen-content {
        padding: 30px;
    }

    .category-card {
        height: 280px;
    }

    .hero-section {
        height: 100vh;
    }

    .hero-content {
        height: 100vh;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a4d5f 0%, #2d6f8a 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--light-green), #8fbc8f, var(--light-green));
}

.footer-section {
    margin-bottom: 30px;
}

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

.footer-brand {
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 15px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
}

.footer-contact i {
    width: 20px;
    margin-right: 10px;
    color: var(--light-green);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: var(--light-green);
    transform: translateY(-3px);
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    background: var(--light-green);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--light-green);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

/* Carousel Controls */
.carousel-control {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-control:hover {
    background: var(--primary-green);
    color: white;
}



/* Product Page */
/* Small Banner */
.small-banner {
    position: relative;
    background: linear-gradient(135deg, #1a4d5f 0%, #2d6f8a 25%, #4a8fa8 50%, #2d6f8a 75%, #1a4d5f 100%);
    height: 350px;
    width: 100vw;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.small-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    animation: wave 15s ease-in-out infinite;
}

.small-banner::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(26, 77, 95, 0.3), transparent);
    transform: skewY(-2deg);
}

@keyframes wave {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-20px) translateY(-10px);
    }
}

.banner-content {
    padding-top: 50px;
    text-align: center;
    color: white;
    z-index: 2;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

/* Sidebar */
.sidebar {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 150px;
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.search-box {
    position: relative;
    /* margin-bottom: 25px; */
}

.search-box input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.filter-section {
    margin-bottom: 25px;
}

.filter-label {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.category-item {
    padding: 0px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-item:hover {
    background-color: var(--cream);
    transform: translateX(5px);
}

.category-item.active {
    background-color: var(--primary-blue);
    color: white;
}

.subcategory-list {
    padding-left: 20px;
    margin-top: 8px;
    display: none;
}

.subcategory-list.show {
    display: block;
}

.subcategory-item {
    padding: 8px 12px;
    margin-bottom: 5px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.subcategory-item:hover {
    background-color: var(--sage-blue);
    transform: translateX(3px);
}

.price-range {
    margin-top: 15px;
}

.price-input {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-input input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.btn-filter {
    width: 100%;
    background-color: var(--primary-blue);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    /* margin-top: 20px; */
    transition: all 0.3s;
}

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

/* Product Grid */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.product-count {
    font-size: 1.1rem;
    color: #666;
}

.sort-select {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    min-width: 200px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    margin-bottom: 30px;
}

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

.product-image {
    /* position: relative;
    */
     /* height: 280px; */
    background: var(--cream);
    /* display: flex; */
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* max-width: 70%;
    max-height: 70%;
    object-fit: contain; */
}

.product-badge {
    /* position: absolute; */
    /* top: 15px;
    left: 15px; */
    background: rgba(255,255,255,0.9);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-badge.new {
    background: var(--light-blue);
    color: white;
}

.product-badge.sale {
    background: #e74c3c;
    color: white;
}

.product-info {
    padding: 20px;
}

.product-colors {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
}

.color-dot:hover {
    transform: scale(1.2);
    border-color: var(--primary-blue);
}

.product-title {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    min-height: 45px;
    font-weight: 600;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.rating-stars {
    color: #f39c12;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.product-price-old {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}

.btn-cart {
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    border: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-cart:hover {
    background-color: var(--light-blue);
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    margin-top: 40px;
    justify-content: center;
}

.page-link {
    color: var(--primary-blue);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 0 5px;
    padding: 10px 15px;
}

.page-link:hover {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.page-item.active .page-link {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .sidebar {
        margin-bottom: 30px;
        position: static;
    }

    .banner-title {
        font-size: 2rem;
    }

    .product-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}
