/* Variables */
:root {
    --primary-color: #f07703;
    --primary-dark: #d66a03;
    --secondary-color: #2c3e50;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navigation */
.navbar {
    padding: 0.5rem 1rem;
    transition: transform 0.3s ease-in-out;
}

.navbar-hidden {
    transform: translateY(-100%);
}

/* All specific display rules for toggler and collapse removed to rely entirely on Bootstrap's built-in responsive classes. */

.navbar-light .navbar-nav .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 1.5rem 1rem;
    position: relative;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

/* Cards */
.card {
    border: none;
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
}

.footer a:hover {
    color: var(--primary-color) !important;
}

.bg-darker {
    background-color: #1a1e21;
}

/* Social Links */
.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Page Header */
.page-header {
    background: var(--light-gray);
    border-bottom: 1px solid #dee2e6;
}

/* Forms */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(240, 119, 3, 0.25);
}

/* Custom Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Components */
.feature-box {
    padding: 2rem;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-card .product-description {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Newsletter Form */
.newsletter-form .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.newsletter-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Slider Styles (for Owl Carousel) */
.slider-section {
    position: relative;
    height: 600px; /* Enforce overall slider height */
    overflow: hidden; /* Hide overflowing content */
}

.slider-section .owl-carousel .item img {
    width: 100%;
    height: 600px; /* Make image fill the section height */
    object-fit: cover;
}

.slider-section .owl-carousel .item {
    position: relative;
}

.slider-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 90%; /* Adjust as needed */
    max-width: 1000px; /* Increase max-width for wider text */
    z-index: 10;
    padding: 20px; /* Add some padding */
    background-color: rgba(0, 0, 0, 0.3); /* Slightly darker background for better readability */
    border-radius: 10px;
}

.slider-caption h5 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
    line-height: 1.2;
}

.slider-caption p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
}

/* Overlay for readability */
.slider-section .owl-carousel .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Darker overlay */
    z-index: 1;
}

.slider-caption { z-index: 2; }

/* Owl Carousel Custom Navigation */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7) !important; /* Darker navigation background */
    color: white !important;
    border-radius: 50%;
    width: 50px; /* Larger buttons */
    height: 50px; /* Larger buttons */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem; /* Larger icons */
    transition: background 0.3s ease, transform 0.3s ease;
    opacity: 0.8; /* Slightly transparent */
}

.owl-nav button:hover {
    background: var(--primary-color) !important;
    transform: translateY(-50%) scale(1.1); /* Subtle hover effect */
    opacity: 1;
}

.owl-prev {
    left: 30px; /* More padding from the edge */
}

.owl-next {
    right: 30px; /* More padding from the edge */
}

.owl-dots {
    position: absolute;
    bottom: 20px; /* Position dots over the slider */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 15; /* Ensure dots are above other elements */
    display: flex; /* Use flexbox for horizontal alignment */
    justify-content: center; /* Center the dots horizontally */
    align-items: center; /* Vertically align the dots if needed */
    flex-wrap: nowrap; /* Prevent dots from wrapping to the next line */
    white-space: nowrap; /* Force content onto a single line */
}

.owl-dots button.owl-dot {
    width: 14px; /* Larger dots */
    height: 14px; /* Larger dots */
    background: rgba(255, 255, 255, 0.7); /* Slightly transparent white */
    border-radius: 50%;
    padding: 0; /* Remove default button padding */
    border: none; /* Remove default button border */
    cursor: pointer; /* Indicate it's clickable */
    margin-right: 10px; /* Explicit horizontal spacing */
    flex-shrink: 0; /* Prevent shrinking */
    flex-grow: 0; /* Prevent growing */
    display: inline-block !important; /* Force inline-block display */
    vertical-align: top !important; /* Ensure vertical alignment to prevent stacking */
}

.owl-dots button.owl-dot:last-child {
    margin-right: 0; /* Remove right margin from the last dot */
}

.owl-dots button.owl-dot span {
    display: none !important; /* Hide the span completely to prevent layout interference */
}

.owl-dots button.owl-dot.active {
    background: var(--primary-color); /* Active dot color */
    transform: scale(1.2); /* Subtle active dot effect */
}

/* Responsive adjustments for slider caption */
@media (max-width: 991.98px) {
    .slider-caption h5 {
        font-size: 3rem;
    }
    .slider-caption p {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .slider-caption h5 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .slider-caption p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        left: 15px;
        right: 15px;
    }
    .owl-dots {
        bottom: 10px;
    }
    .owl-dots button.owl-dot {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

@media (max-width: 576px) {
    .slider-caption h5 {
        font-size: 1.5rem;
    }
    .slider-caption p {
        font-size: 0.85rem;
        display: none; /* Hide description on very small screens */
    }
    .slider-caption .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .owl-nav button {
        display: none; /* Hide nav buttons on very small screens */
    }
}

/* Old Hero Section (now replaced by slider) */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

/* Quality Products and Services Section */
.quality-products-services .col-lg-6 img {
    max-height: 500px;
    object-fit: cover;
}

.quality-products-services .icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color); 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.quality-products-services .icon-circle i {
    font-size: 1.5rem;
    color: #fff !important;
}

/* Ensure proper spacing for headers and paragraphs */
.quality-products-services h2 {
    margin-bottom: 1rem;
}

.quality-products-services p.lead {
    margin-bottom: 1.5rem;
}

/* Remove old video placeholder styles */
.quality-products-services .image-container {
    position: relative; /* Ensure parent is positioned */
    display: inline-block; /* To contain floated/absolutely positioned children */
    width: 100%;
}

.quality-products-services .video-placeholder,
.quality-products-services .play-button {
    display: none; /* Hide old elements */
}

/* Ensure the parent container has relative positioning for absolute child positioning */
.quality-products-services .col-lg-6.position-relative {
    position: relative;
}

/* Hide old elements if they were not fully removed */
.quality-products-services .video-placeholder,
.quality-products-services .play-button {
    display: none; 
}

/* New Video Block Styles */
.quality-products-services .quality-video-block {
    position: absolute;
    bottom: -111px;
    right: -5px;
    width: 300px; /* Wider as per image */
    height: 180px; /* Taller as per image */
    border-radius: 15px; /* More rounded corners */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); /* Stronger shadow */
    border: 5px solid var(--primary-color); /* Blue border as in the image */
    transform: translateX(0); /* Start with no translation */
    transition: all 0.3s ease;
    background-color: #0d212b; /* Dark background color from the image */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5; /* Ensure it's above other elements */
}

.quality-products-services .quality-video-block:hover {
    /* No transform change on hover for this effect */
}

.quality-products-services .quality-video-block .play-button-large {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.quality-products-services .quality-video-block .video-thumbnail {
    width: 120px; /* Larger thumbnail */
    height: 120px; /* Larger thumbnail */
    object-fit: contain;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-color: white;
    padding: 15px; /* More padding */
}

.quality-products-services .quality-video-block .play-icon {
    font-size: 4rem; /* Larger play icon */
    color: var(--primary-color); /* Yellow play button */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 1; /* Always visible */
    transition: none; /* No transition on play icon opacity */
}

/* Chevron Arrows */
.quality-products-services .video-arrows {
    position: absolute;
    top: 20px; /* Position at the top of the video block */
    left: 20px; /* Position at the left of the video block */
    display: flex;
    gap: 5px; /* Space between chevrons */
    z-index: 3;
}

.quality-products-services .video-arrows i {
    color: var(--primary-color); /* Yellow color */
    font-size: 1.2rem; /* Size of chevrons */
    opacity: 0.8;
}

/* Responsive adjustments for the video block */
@media (max-width: 991.98px) {
    .quality-products-services .col-lg-6.position-relative {
        display: block;
        margin-bottom: 70px; /* Add space below the image on smaller screens */
    }

    .quality-products-services .quality-video-block {
        position: relative;
        bottom: auto;
        right: auto;
        transform: translateX(0);
        margin: 0 auto; /* Center the block */
        width: 280px; /* Adjust width for tablets */
        height: 160px; /* Adjust height for tablets */
    }
}

@media (max-width: 767.98px) {
    .quality-products-services .quality-video-block {
        width: 250px; /* Adjust width for mobile */
        height: 140px; /* Adjust height for mobile */
        bottom: -50px; /* Bring it closer to the image, or adjust as needed */
        right: 0px;
    }

    .quality-products-services .quality-video-block .video-arrows {
        display: none; /* Hide arrows on very small screens if they look cluttered */
    }

    .quality-products-services .quality-video-block .video-thumbnail {
        width: 100px;
        height: 100px;
    }

    .quality-products-services .quality-video-block .play-icon {
        font-size: 3rem;
    }
}

/* Offcanvas Specific Styles */
.offcanvas {
    background-color: var(--light-gray);
}

.offcanvas .offcanvas-header {
    background-color: var(--primary-color);
    color: white;
    border-bottom: 1px solid var(--primary-dark);
}

.offcanvas .offcanvas-title {
    color: white;
}

.offcanvas .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.offcanvas .navbar-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.offcanvas .navbar-nav .nav-link {
    padding: 1rem 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.2s ease;
}

.offcanvas .navbar-nav .nav-link:hover,
.offcanvas .navbar-nav .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

.offcanvas .navbar-nav .nav-link::after {
    display: none; /* Hide underline in offcanvas */
}

/* Offcanvas Social Links */
.social-links-offcanvas a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links-offcanvas a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Adjust main content when offcanvas is open - optional, but good for UX */
body.offcanvas-active {
    overflow: hidden; /* Prevent scrolling of main content */
}

/* Existing media query adjustments for nav-link padding, but now for offcanvas */
@media (max-width: 991.98px) {
    /* These styles apply to the offcanvas nav-links on smaller screens */
    .offcanvas .navbar-nav .nav-link {
        padding: 0.8rem 1rem;
    }
}

/* Nutrition Tips Section Styles */
.nutrition-tips {
    background-color: white;
    padding: 80px 0;
    text-align: center;
}

.nutrition-tips h2 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.nutrition-tips p.lead {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.nutrition-tips .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nutrition-tips .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Blog Card Styles for Nutrition Tips Slider */
.blog-posts-slider .owl-item {
    padding: 10px; /* Add some padding around each item in the slider */
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    height: 100%; /* Ensure all cards have equal height */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-img {
    position: relative;
    padding-top: 60%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.blog-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-card-body {
    padding: 1.5rem;
    flex-grow: 1; /* Allow body to take remaining space */
    text-align: left;
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-meta {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.blog-card-meta span {
    margin-right: 15px;
}

.blog-card-meta i {
    margin-right: 5px;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Owl Carousel Navigation & Dots Customization for Blog Slider */
.blog-posts-slider .owl-nav button {
    background-color: var(--primary-color) !important;
    color: white !important;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.blog-posts-slider .owl-nav button:hover {
    background-color: var(--primary-dark) !important;
    opacity: 1;
}

.blog-posts-slider .owl-prev {
    left: -20px;
}

.blog-posts-slider .owl-next {
    right: -20px;
}

.blog-posts-slider .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.blog-posts-slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6 !important;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.blog-posts-slider .owl-dots .owl-dot.active span,
.blog-posts-slider .owl-dots .owl-dot:hover span {
    background: var(--primary-color) !important;
}

/* Responsive adjustments for blog slider navigation */
@media (max-width: 767.98px) {
    .blog-posts-slider .owl-nav button {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
        opacity: 0.7;
    }

    .blog-posts-slider .owl-prev {
        left: 0px;
    }

    .blog-posts-slider .owl-next {
        right: 0px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-detail-content {
        padding: 1.5rem !important;
    }
    .blog-featured-image {
        height: 300px;
    }
}

/* New styles for Blog Detail Page Sidebar */
.sidebar {
    background-color: var(--light-gray);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.list-group-item-action {
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.list-group-item-action:hover {
    background-color: #e9ecef; /* Slightly darker than light-gray */
    transform: translateX(5px);
}

.other-news-img {
    width: 80px;
    min-width: 80px;
    height: 60px;
    overflow: hidden;
    border-radius: 5px;
}

.other-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-news-title h6 {
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.4;
}

.other-news-title a {
    text-decoration: none;
    color: inherit;
}

.other-news-title a:hover {
    color: var(--primary-color);
}

/*-----------------------------------------------------------------------------------*/
/*  14. Floating Action Buttons
/*-----------------------------------------------------------------------------------*/
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between buttons */
}

.floating-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: transform 0.2s ease-in-out;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.scroll-up-btn {
    background-color: var(--primary-color); /* Use your primary color */
    display: none; /* Hidden by default, shown by JS */
}

.whatsapp-btn {
    background-color: #25D366; /* WhatsApp green */
}

.phone-btn {
    background-color: #007bff; /* Bootstrap info blue */
}

/* Feature Section - Blog Posts Slider */
.feature-section {
    position: relative;
    padding: 20px 0;
}

.feature-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    transition: all 0.3s ease;
}

.feature-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.feature-image .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-content {
    position: relative;
    margin-top: -30px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 10px;
    z-index: 2;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-card:hover .main-image {
    transform: scale(1.05);
}

.feature-thumbnails {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.thumbnail-item.active {
    border: 3px solid var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feature-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 -10px;
    z-index: 10;
    pointer-events: none; /* Gezinme düğmeleri dışındaki alana tıklamayı engellemez */
}

.feature-slider .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    pointer-events: auto; /* Düğmelere tıklanabilir */
}

.feature-slider .owl-nav button span {
    font-size: 30px;
    line-height: 30px;
    color: var(--primary-color);
}

.feature-slider .owl-nav button:hover {
    background-color: var(--primary-color) !important;
}

.feature-slider .owl-nav button:hover span {
    color: #fff;
}

.feature-slider .owl-prev {
    margin-left: -25px;
}

.feature-slider .owl-next {
    margin-right: -25px;
}

@media (max-width: 768px) {
    .feature-image {
        height: 220px;
    }
    
    .feature-content {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
    
    .feature-slider .owl-nav {
        z-index: 100;
    }
    
    .feature-slider .owl-nav button {
        width: 40px;
        height: 40px;
        margin: 0 10px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
    }
    
    .feature-slider .owl-nav button span {
        font-size: 25px;
        line-height: 25px;
    }
    
    .feature-slider .owl-prev {
        left: 0;
        margin-left: 0;
    }
    
    .feature-slider .owl-next {
        right: 0;
        margin-right: 0;
    }
}

/* Küçük mobil cihazlar için ek düzenlemeler */
@media (max-width: 576px) {
    .feature-slider .owl-nav button {
        width: 35px;
        height: 35px;
        margin: 0 5px;
    }
    
    .feature-slider .owl-nav button span {
        font-size: 20px;
        line-height: 20px;
    }
    
    .thumbnail-item {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .thumbnail-item.active {
        transform: scale(1.05);
    }
    
    .feature-thumbnails {
        gap: 10px;
    }
} 