/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Bakliyat & Doğal Tonlar */
    --primary-color: #8B4513;
    --primary-light: #A0522D;
    --primary-dark: #654321;

    /* Secondary Colors - Sıcak Kahverengi */
    --secondary-color: #D2691E;
    --secondary-light: #F4A460;
    --secondary-dark: #CD853F;

    /* Tertiary Colors - Doğal Yeşil */
    --tertiary-color: #228B22;
    --tertiary-light: #32CD32;
    --tertiary-dark: #006400;

    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F5F5DC;
    --gray: #8B7355;
    --dark-gray: #2F1B14;
    --black: #1A0F0A;

    /* Accent Colors - Doğal Palet */
    --accent-gold: #DAA520;
    --accent-green: #228B22;
    --accent-red: #B22222;
    --accent-orange: #FF8C00;
    --accent-cream: #F5DEB3;

    /* Gradient Colors - Doğal Geçişler */
    --gradient-primary: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    --gradient-secondary: linear-gradient(135deg, #D2691E 0%, #DAA520 100%);
    --gradient-tertiary: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    --gradient-hero: linear-gradient(135deg, rgba(139, 69, 19, 0.3) 0%, rgba(210, 105, 30, 0.2) 50%, rgba(218, 165, 32, 0.1) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #F5F5DC 100%);
    --gradient-dark: linear-gradient(135deg, #2F1B14 0%, #1A0F0A 100%);

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 15px;

    /* Shadows - Doğal Tonlar */
    --shadow-light: 0 4px 15px rgba(139, 69, 19, 0.1);
    --shadow-medium: 0 8px 25px rgba(139, 69, 19, 0.15);
    --shadow-heavy: 0 15px 35px rgba(139, 69, 19, 0.2);
    --shadow-glow: 0 0 20px rgba(218, 165, 32, 0.3);
    --shadow-card: 0 10px 30px rgba(47, 27, 20, 0.1);
    --shadow-hover: 0 20px 40px rgba(210, 105, 30, 0.25);

    /* Transitions - Enhanced */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.4rem;
}

h6 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.top-bar {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.top-bar-info span {
    margin-right: 20px;
}

.top-bar-info i {
    margin-right: 5px;
    color: var(--accent-gold);
}

.top-bar-social {
    text-align: right;
}

.top-bar-social a {
    color: var(--white);
    margin-left: 15px;
    transition: var(--transition-fast);
}

.top-bar-social a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.main-nav {
    padding: 5px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--black);
}

.navbar-brand .logo {
    height: 70px;
    margin-right: 15px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
}

.brand-name {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 400;
}

.navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 10px 20px;
    transition: var(--transition-fast);
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-medium);
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

.nav-cta .btn {
    margin-left: 20px;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition-fast);
}

/* ===== BUTTON STYLES ===== */
.btn {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-fast);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: var(--white);
    background: var(--gradient-primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    border-color: transparent;
}

/* ===== HERO SLIDER SECTION ===== */
.hero-slider-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100vh;
    width: 100%;
}

.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 2;
    opacity: .1;
}

.slide-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(218, 165, 32, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-slider .hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    text-align: center;
}

/* Swiper Navigation */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Swiper Pagination */
.hero-slider .swiper-pagination {
    bottom: 30px;
}

.hero-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    margin: 0 8px;
    transition: var(--transition-fast);
}

.hero-slider .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
}

.hero-content {
    color: var(--white);
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 10px;
    box-shadow: var(--shadow-glow);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 5px;
    opacity: 0.7;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--gradient-card);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-bounce);
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-fast);
    transform-origin: left;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 53, 0.3);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-medium);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.product-card:hover .product-overlay .btn {
    transform: translateY(0);
}

.product-content {
    padding: 20px;
}

.product-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    font-size: 0.85rem;
    color: #6c757d;
    padding: 2px 0;
    position: relative;
    padding-left: 15px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background: var(--light-gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}


.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-excerpt {
    color: var(--gray);
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.blog-link:hover {
    color: var(--primary-dark);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-control::placeholder {
    color: var(--gray);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    height: 40px;
    margin-right: 10px;
}

.footer-logo h5 {
    color: var(--white);
    margin: 0;
}

.footer-description {
    color: #adb5bd;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-title {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    background: transparent;
    padding: 0;
}

.footer-contact .contact-item i {
    color: var(--accent-gold);
    margin-top: 0.2rem;
}

.footer-contact .contact-item span {
    color: #adb5bd;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 2rem;
    margin-top: 2rem;
}

.copyright {
    color: #adb5bd;
    margin: 0;
}

.footer-bottom-links {
    text-align: right;
}

.footer-bottom-links a {
    color: #adb5bd;
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* ===== BACK TO TOP BUTTON ===== */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .top-bar-info {
        text-align: center;
        margin-bottom: 10px;
    }

    .top-bar-social {
        text-align: center;
    }

    .navbar-brand .brand-text {
        display: none;
    }

    .nav-cta {
        margin-top: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        text-align: center;
        margin-top: 1rem;
    }

    .footer-bottom-links a {
        margin: 0 10px;
    }

    /* Product Filter Mobile */
    .product-filters {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .product-filter-btn {
        margin: 5px;
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    /* Floating Elements Mobile */
    .floating-element {
        font-size: 1.5rem;
    }

    .floating-element:nth-child(1) {
        top: 15%;
        left: 5%;
    }

    .floating-element:nth-child(2) {
        top: 70%;
        right: 10%;
    }

    .floating-element:nth-child(3) {
        bottom: 20%;
        left: 15%;
    }

    /* Hero Slider Mobile */
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .hero-slider .swiper-button-next::after,
    .hero-slider .swiper-button-prev::after {
        font-size: 14px;
    }

    .hero-slider .swiper-pagination {
        bottom: 20px;
    }

    .hero-slider .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 6px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .product-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* ===== ANIMATION UTILITIES ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-medium);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-medium);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-medium);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-medium);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== LOADING ANIMATION ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== NOTIFICATION STYLES ===== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-heavy);
    padding: 1rem 1.5rem;
    z-index: 9999;
    transform: translateX(400px);
    transition: var(--transition-fast);
    max-width: 350px;
    border-left: 4px solid var(--primary-color);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: var(--accent-green);
}

.notification-error {
    border-left-color: var(--accent-red);
}

.notification-warning {
    border-left-color: var(--secondary-color);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    font-size: 1.2rem;
}

.notification-success .notification-content i {
    color: var(--accent-green);
}

.notification-error .notification-content i {
    color: var(--accent-red);
}

.notification-warning .notification-content i {
    color: var(--secondary-color);
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.notification-close:hover {
    background: var(--light-gray);
    color: var(--dark-gray);
}

/* ===== SEARCH RESULTS ===== */
#searchResults {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-result-item:hover {
    background: var(--light-gray);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item h6 {
    margin: 0 0 0.25rem 0;
    color: var(--primary-color);
}

.search-result-category {
    font-size: 0.8rem;
    color: var(--gray);
}

.search-no-results {
    padding: 1rem;
    text-align: center;
    color: var(--gray);
    font-style: italic;
}

/* ===== HEADER HIDDEN STATE ===== */
.header-hidden {
    transform: translateY(-100%);
}

/* ===== FORM VALIDATION STYLES ===== */
.form-control.is-invalid {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--accent-red);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.preloader-text {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* ========================================
   PRODUCT PAGES STYLES
   ======================================== */


.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Minimal Breadcrumb */
.breadcrumb {
    background: none !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    min-height: auto;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.2;
}

.breadcrumb-item::before {
    display: none !important;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    font-size: 0.8rem;
}

.breadcrumb-item:last-child::after {
    display: none !important;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 2px 0;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 400;
}



/* Responsive Breadcrumb */
@media (max-width: 768px) {
    .breadcrumb {
        gap: 1px;
    }

    .breadcrumb-item {
        font-size: 0.7rem;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin: 0 3px;
        font-size: 0.65rem;
    }
}

/* Products Page Section */
.products-page-section,
.category-products-section {
    padding: 60px 0;
}

/* Products Sidebar */
.products-sidebar {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li.active a {
    color: var(--primary-color);
    font-weight: 600;
}

.category-list a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-color);
}

.count {
    font-size: 0.9rem;
    color: #6c757d;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
}

.category-info img {
    border-radius: 8px;
}

.category-description {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Products Header */
.products-header {
    margin-bottom: 30px;
}

.products-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.products-subtitle {
    color: #6c757d;
    margin-bottom: 0;
}

.products-sort {
    text-align: right;
}

.sort-form select {
    width: auto;
    min-width: 200px;
}

/* Product Cards - Extended styles for product pages */
.product-category {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* No Products */
.no-products {
    padding: 80px 0;
    text-align: center;
}

/* Products Pagination */
.products-pagination {
    margin-top: 40px;
    text-align: center;
}

/* Product Detail Section */
.product-detail-section {
    padding: 60px 0;
}

.product-images {
    position: sticky;
    top: 100px;
}

.main-image {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail-item.active {
    border-color: var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    padding-left: 30px;
}

.product-short-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.product-description,
.product-features,
.product-nutritional,
.product-origin,
.product-brand {
    margin-bottom: 30px;
}

.product-description h5,
.product-features h5,
.product-nutritional h5,
.product-origin h5,
.product-brand h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.description-content,
.nutritional-content {
    color: #6c757d;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #6c757d;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.product-actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Related Products Section */
.related-products-section {
    padding: 60px 0;
    background: #f8f9fa;
}


.related-product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.related-product-card .product-image {
    height: 200px;
    overflow: hidden;
}

.related-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.related-product-card .product-content {
    padding: 20px;
}

.related-product-card .product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.related-product-card .product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-product-card .product-title a:hover {
    color: var(--primary-color);
}

.related-product-card .product-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
}

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

    .products-sort {
        text-align: left;
        margin-top: 20px;
    }

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

    .product-info {
        padding-left: 0;
        margin-top: 30px;
    }

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

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }
}

/* ===== BLOG & CONTACT PAGES STYLES ===== */

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 70px 0 10px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}


/* Blog Section Styles */
.blog-section {
    background-color: #f8f9fa;
}

.blog-search {
    max-width: 500px;
    margin: 0 auto;
}

.search-form .input-group {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.search-form .form-control {
    border: none;
    padding: 15px 20px;
    font-size: 16px;
}

.search-form .btn {
    border: none;
    padding: 15px 25px;
    background: var(--primary-color);
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 3rem;
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.blog-card-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #6c757d;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

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

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

.blog-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-light);
    gap: 10px;
}

.no-content {
    text-align: center;
    padding: 80px 20px;
}

.no-content-icon {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.no-content h3 {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.no-content p {
    color: #6c757d;
    margin-bottom: 30px;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination .page-link {
    color: var(--primary-color);
    border-color: #dee2e6;
    padding: 12px 16px;
    margin: 0 2px;
    border-radius: 8px;
}

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

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

/* Blog Detail Styles */
.blog-detail-section {
    background-color: #f8f9fa;
}

.blog-detail {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.blog-detail .blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
}

.meta-item i {
    color: var(--primary-color);
}

.blog-featured-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.blog-content {
    line-height: 1.8;
    color: var(--dark-gray);
    font-size: 16px;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: var(--dark-gray);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #6c757d;
}

.blog-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.blog-share h5 {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    color: var(--white);
}

.share-btn.facebook {
    background-color: var(--primary-color);
}

.share-btn.x {
    background-color: var(--secondary-color);
}

.share-btn.linkedin {
    background-color: var(--primary-dark);
}

.share-btn.whatsapp {
    background-color: var(--tertiary-color);
}

/* Blog sayfası butonları için özel stiller */
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
}

.btn-outline-primary:hover {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Bootstrap Primary Color Override */
:root {
    --bs-primary: var(--primary-color);
    --bs-primary-rgb: 139, 69, 19;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Pagination Styles */
.pagination {
    justify-content: center;
    margin-top: 2rem;
}

.page-link {
    color: var(--primary-color);
    border-color: var(--primary-light);
    background-color: var(--white);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.page-link:hover {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

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

.page-item.disabled .page-link {
    color: var(--text-muted);
    background-color: var(--light-gray);
    border-color: var(--light-gray);
}

/* Product Search Styles */
.product-search {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
}

.product-search h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.search-form {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 25px;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--white);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-hover);
}

/* Sidebar Styles */
.sidebar {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}


/* Footer Styles */
.footer-section {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-section h5,
.footer-section h6 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: none !important;
    text-decoration: none !important;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none !important;
    transition: var(--transition-fast);
    display: block;
    padding: 0.25rem 0;
    border-bottom: none !important;
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-section .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section .contact-item i {
    width: 20px;
    margin-right: 0.75rem;
    color: var(--secondary-color);
}


/* Footer Global Styles */
.footer * {
    text-decoration: none !important;
    border-bottom: none !important;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
    text-decoration: none !important;
    border-bottom: none !important;
}

.footer a {
    text-decoration: none !important;
    border-bottom: none !important;
}

.footer .footer-title {
    text-decoration: none !important;
    border-bottom: none !important;
}

.footer .footer-links a {
    text-decoration: none !important;
    border-bottom: none !important;
}


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

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.about-hero {
    padding: 80px 0;
}

.about-hero-content .section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-hero-image img {
    box-shadow: var(--shadow-medium);
    border-radius: 15px;
}

.stats-section {
    padding: 80px 0;
}

.stat-item {
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

.mission-vision {
    padding: 80px 0;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: var(--transition-fast);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 2.5rem;
}

.card-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.card-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.values-section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.value-item {
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
    height: 100%;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.value-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-description {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

.our-story {
    padding: 80px 0;
}

.story-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    height: 100%;
}

.story-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-content p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

.story-conclusion {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.story-conclusion h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.story-conclusion .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-section {
    padding: 60px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .about-hero-content .section-title {
        font-size: 1.8rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .story-conclusion h3 {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

.blog-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


.related-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-post {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.related-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-post-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.related-post-content h5 {
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-post-content h5 a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.related-post-content h5 a:hover {
    color: var(--primary-color);
}

.related-post-date {
    font-size: 12px;
    color: #6c757d;
}

.newsletter-form .form-group {
    margin-bottom: 15px;
}

.newsletter-form .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
}

.newsletter-form .btn {
    border-radius: 8px;
    padding: 12px;
    font-weight: 500;
}

.contact-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.contact-widget .widget-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.contact-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.contact-widget .btn {
    border-color: var(--white);
    color: var(--white);
}

.contact-widget .btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Contact Section Styles */
.contact-section {
    background-color: #f8f9fa;
}

.contact-info {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info h3 {
    color: var(--dark-gray);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.contact-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-items {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--dark-gray);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-details p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-light);
}

.social-media h5 {
    color: var(--dark-gray);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 18px;
    transition: transform 0.3s ease;
}

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

.social-link.facebook {
    background-color: #3b5998;
}

.social-link.x {
    background-color: var(--secondary-color);
}

.social-link.instagram {
    background-color: #e4405f;
}

.social-link.linkedin {
    background-color: #0077b5;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    color: var(--dark-gray);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-group label {
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.required {
    color: #dc3545;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
}


.contact-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-form .form-check-input {
    margin-top: 5px;
}

.contact-form .form-check-label {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}

.contact-form .form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.alert {
    border-radius: 8px;
    border: none;
    padding: 15px 20px;
    margin-bottom: 25px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert i {
    margin-right: 8px;
}

.map-section {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-section h3 {
    color: var(--dark-gray);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive Styles for Blog & Contact */
@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }

    .search-form .input-group {
        flex-direction: column;
        border-radius: 15px;
    }

    .search-form .btn {
        border-radius: 0 0 15px 15px;
    }

    .blog-detail {
        padding: 25px;
    }

    .blog-detail .blog-meta {
        flex-direction: column;
        gap: 10px;
    }

    .blog-footer .row {
        flex-direction: column;
        gap: 20px;
    }

    .share-buttons {
        justify-content: center;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .social-links {
        justify-content: center;
    }

    .contact-form .form-group {
        margin-bottom: 20px;
    }

    .contact-form .btn-primary {
        width: 100%;
    }
}

/* ===== HOME PAGE SPECIFIC STYLES ===== */

/* Hero Section Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(218, 165, 32, 0.3);
    animation: float 8s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.2));
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    color: rgba(139, 69, 19, 0.3);
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    color: rgba(34, 139, 34, 0.3);
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    color: rgba(218, 165, 32, 0.3);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-15px) rotate(90deg) scale(1.1);
    }

    50% {
        transform: translateY(-30px) rotate(180deg) scale(1.2);
    }

    75% {
        transform: translateY(-15px) rotate(270deg) scale(1.1);
    }
}

/* Product Filter Styles */
.product-filters {
    text-align: center;
    margin-bottom: 3rem;
}

.product-filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    margin: 0 10px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    z-index: -1;
}

.product-filter-btn:hover::before,
.product-filter-btn.active::before {
    left: 0;
}

.product-filter-btn:hover,
.product-filter-btn.active {
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

/* Additional Animations */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
    animation: grain 20s linear infinite;
    z-index: 0;
}

@keyframes grain {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-100px, -100px) rotate(360deg);
    }
}

/* Glow Effect for Hero Content */
.hero-content h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}