/* Tema Özel Stilleri */

/* Telefon Butonu Stilleri */
.phone-button {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white !important;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: pulse-phone 2s infinite;
}

.phone-button:hover {
    background: linear-gradient(45deg, #218838, #1ea87a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: white !important;
}

.phone-button i {
    font-size: 16px;
    animation: ring 2s infinite;
}

@keyframes pulse-phone {
    0% { box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(40, 167, 69, 0.5); }
    100% { box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3); }
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
}

/* Service Item Styles */
.service-item {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
}

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

.service-icon {
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 48px;
    color: #007bff;
    transition: color 0.3s ease;
}

.service-item:hover .service-icon i {
    color: #0056b3 !important;
}

.service-item h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact Styles */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
}

.contact-icon i {
    font-size: 20px;
    color: #007bff;
}

.contact-content h5 {
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.contact-content p {
    margin-bottom: 0;
    color: #666;
}

/* Spot Dükkanı Özel Stilleri */
.spot-badge {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.price-highlight {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

/* Header Özel Stilleri */
.header-actions .phone-button {
    margin-left: 10px;
}

/* Mobil Menü Alt Menü Stilleri */
.mobile-menu .has-children > a.menu-expand {
    position: relative;
}

.mobile-menu .dropdown {
    display: none;
    background-color: #f8f9fa;
    padding-left: 20px;
}

.mobile-menu .dropdown li a {
    padding: 10px 15px;
    border-bottom: 1px solid #e9ecef;
    color: #666;
}

.mobile-menu .dropdown li:last-child a {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .phone-button {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .service-item {
        padding: 20px 15px;
    }
    
    .service-icon i {
        font-size: 36px;
    }
}

/* Footer Özel Stilleri */
.footer-section {
    background-color: #2c3e50;
}

.footer-section .widget-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section .widget-list li a {
    color: #333333;
    transition: color 0.3s ease;
}

.footer-section .widget-list li a:hover {
    color: #c52c2c;
}

/* Animasyonlar */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


.main-menu ul li {
    padding:0 10px;
}

.widget-title {color: #c52c2c !important}

/* Ürün Açıklama Stilleri */
.product .content .description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Ürün Slider Özel Stilleri */
.product-carousel .swiper-container {
    overflow: hidden;
}

.product-carousel .swiper-slide {
    width: auto;
    flex: 0 0 25%; /* Her slide %25 genişlik - 4 ürün yan yana */
    max-width: 25%;
}

/* Responsive Ürün Slider */
@media (max-width: 1200px) {
    .product-carousel .swiper-slide {
        flex: 0 0 33.333%; /* 3 ürün yan yana */
        max-width: 33.333%;
    }
}

@media (max-width: 768px) {
    .product-carousel .swiper-slide {
        flex: 0 0 50%; /* 2 ürün yan yana */
        max-width: 50%;
    }
}

@media (max-width: 480px) {
    .product-carousel .swiper-slide {
        flex: 0 0 100%; /* 1 ürün */
        max-width: 100%;
    }
}


.product:hover .thumb .image .first-image {
    opacity: 1;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

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

.about-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.about-list-icon {
    width: 30px;
    height: 30px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--bs-primary);
}

.counter-item {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.counter-icon {
    font-size: 2.5rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.counter-item h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.counter-item p {
    margin: 0;
    color: #666;
}

/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
    display: none; /* Varsayılan olarak gizli */
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    will-change: transform;
    transform: translateZ(0);
    height: 70px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    padding: 0;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
}

.mobile-bottom-nav__item {
    flex: none;
    width: 100%;
    min-width: unset;
    max-width: unset;
    padding: 5px 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mobile-bottom-nav__item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 8px 5px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

/* Her buton için farklı renkler */
.mobile-bottom-nav__item:nth-child(1) .mobile-bottom-nav__item-content {
    color: #ff6b6b;
}

.mobile-bottom-nav__item:nth-child(2) .mobile-bottom-nav__item-content {
    color: #4ecdc4;
}

.mobile-bottom-nav__item:nth-child(3) .mobile-bottom-nav__item-content {
    color: #25d366;
}

.mobile-bottom-nav__item:nth-child(4) .mobile-bottom-nav__item-content {
    color: #da005b; /* WhatsApp yeşili */
}

.mobile-bottom-nav__item:nth-child(5) .mobile-bottom-nav__item-content {
    color: #ff7b00;
}

.mobile-bottom-nav__item-content:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.05);
}

.mobile-bottom-nav__item-content i {
    font-size: 24px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.mobile-bottom-nav__item-content span {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}

/* Hover durumunda ikon animasyonu */
.mobile-bottom-nav__item-content:hover i {
    transform: scale(1.2);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1.2); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1.2); }
}

/* Sadece mobil ekranlarda göster */
@media (max-width: 991px) {
    .mobile-bottom-nav {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
    }
    
    body {
        padding-bottom: 70px !important;
    }
}

/* Daha küçük mobil ekranlar için */
@media (max-width: 576px) {
    .mobile-bottom-nav {
        height: 75px;
    }
    
    .mobile-bottom-nav__item-content i {
        font-size: 26px;
    }
    
    .mobile-bottom-nav__item-content span {
        font-size: 14px;
    }
}

/* Desktop WhatsApp Button */
.desktop-whatsapp {
    display: none;
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 99999;
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-whatsapp i {
    font-size: 24px;
}

.desktop-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    background: #22c35e;
}

/* Sadece masaüstünde göster */
@media (min-width: 992px) {
    .desktop-whatsapp {
        display: flex;
    }
}

/* Mobilde gizle */
@media (max-width: 991px) {
    .desktop-whatsapp {
        display: none !important;
    }
}

/* Desktop Instagram Button */
.desktop-instagram {
    position: fixed;
    left: 20px;
    bottom: 90px;
    z-index: 999999;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.desktop-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    color: #fff;
}

.desktop-instagram i {
    font-size: 24px;
    margin-right: 8px;
}

.desktop-instagram span {
    font-weight: 500;
}

@media (max-width: 767px) {
    .desktop-instagram {
        display: none;
    }
}

/* Breadcrumb Area Styles */
.breadcrumb-area {
    padding: 80px 0;
    position: relative;
}



.breadcrumb-area .breadcrumb-content {
    position: relative;
    z-index: 1;
}

.breadcrumb-area .title,
.breadcrumb-area ul li,
.breadcrumb-area ul li a {
    color: #fff;
}

.breadcrumb-area ul li.active {
    color: #f5f5f5;
}

/* İç Sayfa Stilleri */
.sidebar-wrapper {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.sidebar-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    padding: 25px 30px;
    background: linear-gradient(45deg, #2196F3, #1976D2);
    color: #fff;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    width: 50px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

.sidebar-menu {
    padding: 10px 5px 11px 5px;
}

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

.sidebar-menu-list li {
    margin-bottom: 10px;
}

.sidebar-menu-list li:last-child {
    margin-bottom: 0;
}

.sidebar-menu-list li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sidebar-menu-list li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff4545, #bb0000);
    border-radius: 10px;
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
}

.sidebar-menu-list li a:hover::before,
.sidebar-menu-list li a.active::before {
    opacity: 1;
}

.sidebar-menu-list li a:hover,
.sidebar-menu-list li a.active {
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 12, 12, 0.3);
}

.sidebar-menu-list li a::after {
    content: '\f105';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.sidebar-menu-list li a:hover::after,
.sidebar-menu-list li a.active::after {
    opacity: 1;
    right: 15px;
}

@media (max-width: 991px) {
    .sidebar-wrapper {
        margin-bottom: 30px;
    }
    
    .sidebar-menu-list li a:hover {
        transform: translateX(0);
    }
}

.content-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.content-image img {
    border-radius: 10px;
    width: 100%;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item-overlay i {
    color: white;
    font-size: 24px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.img-cover-250 {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

/* LightGallery Özelleştirmeleri */
.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.85);
}

.lg-toolbar,
.lg-outer {
    z-index: 9999;
}

.lg-sub-html {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
}

.lg-sub-html h4 {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

.card {
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top img {
    border-radius: 10px 10px 0 0;
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-size: 18px;
    margin: 0;
}

.card-title a {
    color: #333;
    text-decoration: none;
}

.card-title a:hover {
    color: #007bff;
}



