/*
Theme Name: Basbro
Theme URI: https://www.alpraydenk.com/basbro
Author: Alper Aydenk
Author URI: https://www.alpraydenk.com
Description: Custom WooCommerce theme
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: basbro
Tags: e-commerce, woocommerce, custom-theme
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
WooCommerce required: 8.0
*/

/* Ürün galerisi lightbox stilleri */
.product-gallery .gallery-image {
    cursor: zoom-in;
    transition: opacity 0.3s ease;
}

.product-gallery .gallery-image:hover {
    opacity: 0.9;
}

/* Fancybox özelleştirmeleri */
.fancybox__container {
    --fancybox-bg: rgba(24, 24, 27, 0.95);
}

.fancybox__toolbar {
    --fg-color: #fff;
    --bg-color: rgba(24, 24, 27, 0.5);
}

/* Mobil Menü Stilleri */
.sliding-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.sliding-menu.active {
    right: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sliding-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sliding-menu-title {
    font-weight: 600;
    font-size: 18px;
}

.sliding-menu-close {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: #333;
}

.sliding-menu-nav {
    padding: 20px;
}

.sliding-menu-section-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.sliding-menu-divider {
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

.sliding-menu-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    color: #666;
}

body.menu-open {
    overflow: hidden;
}

