:root{--primary-color:#19692c;--secondary-color:#f8f9fa;--text-color:#333;--border-color:#e9ecef;}*{box-sizing:border-box;}html{height:100%;}body{font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;margin:0;padding:0;background-color:#f4f6f8;color:var(--text-color);display:flex;flex-direction:column;min-height:100vh;width:100%;max-width:100%;overflow-x:hidden;/* Prevent horizontal scroll */}img{max-width:100%;height:auto;}.container{max-width:1200px;width:100%;margin:0 auto;padding:15px;/* Reduced for mobile */}@media (min-width:600px){.container{padding:20px;}}header{background:white;padding:1rem 0;box-shadow:0 2px 4px rgba(0, 0, 0, 0.05);position:sticky;top:0;z-index:100;}.header-inner{display:flex;justify-content:space-between;align-items:center;padding:0 20px;}.header-left{display:flex;align-items:center;gap:20px;flex-wrap:wrap;}.logo-link{display:flex;align-items:center;text-decoration:none;color:inherit;}h1{margin:0;font-size:1.5rem;color:var(--primary-color);}.header-right{display:flex;align-items:center;gap:15px;}.header-phone{display:flex;align-items:center;text-decoration:none;color:#333;font-weight:600;font-size:1rem;gap:8px;padding:8px 12px;border-radius:20px;transition:background 0.2s;}.header-phone:hover{background:#f0f0f0;color:var(--primary-color);}.header-phone i{font-size:1.1rem;color:var(--primary-color);}@media (max-width:600px){.header-phone .phone-number{display:none;/* Mobilde sadece ikon kalsın */}.header-phone{padding:8px;}}@media (max-width:480px){.container{padding:10px;}.hero-slide{padding:10px 10px 40px 10px;}.hero-info{padding:10px;}.hero-title{font-size:1.2rem;margin-bottom:5px;}.hero-price{font-size:1.2rem;margin-bottom:10px;}}@media (max-width:767px){.hero-info{padding:15px;}.hero-title{margin-bottom:5px;}.hero-price{margin-bottom:10px;}}.cart-icon{position:relative;cursor:pointer;font-size:1.5rem;}.cart-count{position:absolute;top:-8px;right:-8px;background:red;color:white;border-radius:50%;width:20px;height:20px;font-size:12px;display:flex;justify-content:center;align-items:center;}.product-grid{display:grid;grid-template-columns:repeat(2, 1fr);/* Always 2 columns on mobile */ gap:10px;margin-top:20px;}@media (min-width:600px){.product-grid{grid-template-columns:repeat(3, 1fr);gap:20px;}}@media (min-width:992px){.product-grid{grid-template-columns:repeat(4, 1fr);}}.product-card{background:white;border-radius:8px;overflow:hidden;box-shadow:0 2px 8px rgba(0, 0, 0, 0.06);display:flex;flex-direction:column;transition:transform 0.2s;}.product-card:hover{transform:translateY(-3px);}.product-img{width:100%;aspect-ratio:1/1;object-fit:cover;background:#eee;}.product-info{padding:10px;flex:1;display:flex;flex-direction:column;}.product-title{font-weight:600;margin-bottom:5px;font-size:0.9rem;/* Smaller for mobile */ line-height:1.3;/* Limit to 2 lines */ display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;/* Standard */ -webkit-box-orient:vertical;overflow:hidden;}.product-price{color:#d63031;font-weight:bold;font-size:1rem;margin-top:auto;}.preorder-badge{background:#fff3cd;color:#856404;padding:2px 5px;border-radius:4px;font-size:0.7rem;display:inline-block;margin-bottom:5px;}.btn-add{/* WCAG AA Compliance:Darker Green */ background:#19692c;color:#ffffff;border:none;padding:8px;/* Smaller padding */ margin-top:8px;border-radius:4px;cursor:pointer;font-weight:700;font-size:0.85rem;transition:background 0.2s;}.btn-add:hover{background:#145523;}@media (min-width:600px){.product-info{padding:15px;}.product-title{font-size:1rem;}.product-price{font-size:1.1rem;}.btn-add{padding:10px;font-size:0.95rem;}}/* Modal Stilleri */ .modal{display:none;position:fixed;z-index:1000;left:0;top:0;width:100%;height:100%;background-color:rgba(0, 0, 0, 0.5);align-items:center;justify-content:center;}.modal.active{display:flex;}.modal-content{background:white;padding:20px;border-radius:8px;width:90%;max-width:500px;max-height:90vh;overflow-y:auto;position:relative;}.close-modal{position:absolute;right:15px;top:15px;width:36px;height:36px;background:white;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;color:#666;z-index:10;box-shadow:0 4px 10px rgba(0, 0, 0, 0.1);transition:all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);}.close-modal:hover{background:#ff4757;color:white;transform:rotate(90deg) scale(1.1);box-shadow:0 6px 16px rgba(255, 71, 87, 0.3);}/* Sepet Stilleri */ .cart-item{display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid #eee;padding:10px 0;gap:10px;}.cart-item>div:first-child{flex:1;/* Metin alanı kalan boşluğu doldursun */ min-width:0;/* Flexbox içinde metnin taşmasını önleyip alt satıra geçmesini sağlar */ padding-right:5px;}.cart-controls{flex-shrink:0;/* Butonlar asla küçülmesin */ white-space:nowrap;display:flex;align-items:center;}.cart-controls button{background:#eee;border:none;width:25px;height:25px;cursor:pointer;border-radius:4px;}.cart-total{font-size:1.2rem;font-weight:bold;text-align:right;margin-top:15px;border-top:2px solid #eee;padding-top:10px;}.order-form{margin-top:20px;background:#f9f9f9;padding:15px;border-radius:8px;}.form-group{margin-bottom:12px;}.form-group label{display:block;margin-bottom:5px;font-size:0.9rem;color:#555;}.form-group input, .form-group select, .form-group textarea{width:100%;padding:8px;border:1px solid #ccc;border-radius:4px;box-sizing:border-box;}.form-group textarea{resize:none;}.btn-whatsapp{width:100%;background:#25D366;color:white;border:none;padding:12px;border-radius:4px;font-size:1rem;font-weight:bold;cursor:pointer;margin-top:15px;display:flex;align-items:center;justify-content:center;gap:8px;}.btn-whatsapp:hover{background:#1da851;}/* Detay Modalı Resimleri */ .thumbnail-wrapper{display:flex;align-items:center;gap:5px;margin-bottom:15px;position:relative;}.detail-images{display:flex;overflow-x:auto;gap:10px;padding-bottom:10px;/* Scrollbar için yer (gizlense bile) */ flex:1;scroll-behavior:smooth;/* Scrollbar Gizleme */ -ms-overflow-style:none;/* IE and Edge */ scrollbar-width:none;/* Firefox */}.detail-images::-webkit-scrollbar{display:none;/* Chrome, Safari, Opera */}.detail-images img{flex:0 0 100px;/* Küçülmesini engelle */ width:100px;height:100px;object-fit:cover;border-radius:4px;cursor:pointer;border:2px solid transparent;}.thumb-nav{background:rgba(0, 0, 0, 0.1);border:none;cursor:pointer;padding:10px 5px;font-size:1.2rem;color:#555;border-radius:4px;transition:background 0.2s;height:100px;/* Resim yüksekliği ile aynı */ display:flex;align-items:center;justify-content:center;}.thumb-nav:hover{background:rgba(0, 0, 0, 0.2);color:#333;}.detail-images img.active{border-color:var(--primary-color);}.main-detail-img{width:100%;height:250px;object-fit:cover;border-radius:8px;margin-bottom:10px;}/* Fullscreen Icon & Wrapper */ .detail-img-wrapper{position:relative;display:block;}.fullscreen-icon{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);background:rgba(0, 0, 0, 0.6);color:white;width:50px;height:50px;font-size:1.2rem;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:10;opacity:0;transition:opacity 0.3s;}.detail-img-wrapper:hover .fullscreen-icon{opacity:1;}/* Fullscreen Lightbox */ /* Fullscreen Lightbox */ .lightbox-modal{display:none;position:fixed;z-index:2000;left:0;top:0;width:100%;height:100%;background-color:rgba(0, 0, 0, 0.9);align-items:center;justify-content:center;animation:fadeIn 0.3s;}.lightbox-wrapper{position:relative;max-width:90%;max-height:90%;display:flex;justify-content:center;align-items:center;}.lightbox-content{max-width:100%;max-height:90vh;border-radius:4px;box-shadow:0 0 20px rgba(0, 0, 0, 0.5);height:auto;object-fit:contain;}.close-lightbox{position:absolute;top:-18px;right:-18px;width:36px;height:36px;background:white;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;color:#666;z-index:2001;box-shadow:0 4px 10px rgba(0, 0, 0, 0.2);transition:all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);}.close-lightbox:hover{background:#ff4757;color:white;transform:rotate(90deg) scale(1.1);box-shadow:0 6px 16px rgba(255, 71, 87, 0.3);}@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}/* Hero Slider */ .hero-slider-container{width:100%;background:#fff;border-bottom:1px solid #eee;overflow:hidden;margin-bottom:20px;position:relative;/* Navigasyon için */}/* Removed Full bleed hack to ensure content stays within bounds */ .hero-slider{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;width:100%;scrollbar-width:none;/* Firefox */}.hero-slider::-webkit-scrollbar{display:none;}.hero-slide{flex:0 0 100%;width:100%;max-width:100%;scroll-snap-align:start;padding:20px 20px 65px 20px;box-sizing:border-box;display:flex;justify-content:center;}.hero-content{display:flex;flex-direction:column;align-items:center;width:100%;max-width:100%;min-width:0;/* Crucial for internal flex items */ background:white;border-radius:10px;/* overflow:hidden;Removed to prevent clipping on mobile */ box-shadow:none;}@media (min-width:768px){.hero-content{flex-direction:row;align-items:center;}}.hero-image{width:100%;height:auto;display:block;/* Ensure no inline spaces */ max-height:400px;/* Prevent it from being too tall on mobile if image is portrait */ object-fit:contain;/* Ensure the whole image is seen within the max-height */ background:#fff;/* Fill background if contained */ cursor:pointer;border-radius:10px 10px 0 0;}.hero-video-wrapper{width:100%;height:auto;aspect-ratio:16/9;background:transparent;/* border-radius removed to let inner content handle it */}.hero-video-wrapper iframe, .youtube-facade{width:100%;height:100%;}.youtube-facade{background-size:cover;background-position:center;cursor:pointer;position:relative;display:flex;align-items:center;justify-content:center;}.youtube-facade::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0, 0, 0, 0.3);z-index:2;/* Above image */}.facade-image{width:100%;height:100%;object-fit:cover;position:absolute;top:0;left:0;z-index:1;/* Basemap */}.youtube-facade:hover::before{background:rgba(0, 0, 0, 0.1);}.play-button{width:68px;height:48px;background-color:#ff0000;border-radius:12px;position:relative;z-index:2;transition:all 0.2s;display:flex;align-items:center;justify-content:center;}.play-button::after{content:'';border-style:solid;border-width:10px 0 10px 20px;border-color:transparent transparent transparent white;}.youtube-facade:hover .play-button{background-color:#cc0000;transform:scale(1.1);}/* Plyr Fix for Hero - Aggressive Override (Global) */ .hero-video-wrapper .hero-plyr, .hero-video-wrapper .plyr, .hero-video-wrapper .plyr__video-wrapper, .hero-video-wrapper .plyr__video-embed{width:100% !important;height:100% !important;min-height:100% !important;padding-bottom:0 !important;/* Disable Plyr's aspect ratio padding hack */ aspect-ratio:unset !important;}@media (min-width:768px){.hero-image, .hero-video-wrapper{width:60%;height:auto;min-height:400px;/* Ensure minimum height for video */ aspect-ratio:16/9;border-radius:10px 0 0 10px;flex-shrink:0;/* Prevent shrinking */ object-fit:cover;position:relative;/* Contain absolute children */}}@media (min-width:992px){.hero-title{font-size:1.8rem;}}@media (min-width:1200px){.hero-title{font-size:2rem;}}/* ========================================= PLYR ACRYLIC CUSTOMIZATION ========================================= */ /* Plyr Wrapper Styling (Neon Acrylic Look) */ .plyr{border-radius:20px !important;overflow:hidden !important;box-shadow:0 0 40px rgba(0, 243, 255, 0.2) !important;/* Neon Blue Glow */ border:1px solid rgba(0, 243, 255, 0.1);background:transparent !important;}/* Play Button Customization */ .plyr__control--overlaid{background:#00f3ff !important;/* Neon Cyan */ color:#000 !important;z-index:30 !important;/* Above interaction blocker (z-20) */}/* Ensure Bottom Controls are Clickable */ .plyr__controls{z-index:30 !important;/* Must be higher than the .plyr__video-wrapper::after layer (z-20) */}.plyr__control--overlaid:hover{background:#00d0db !important;transform:translate(-50%, -50%) scale(1.1) !important;/* Maintain centering */}/* Progress Bar Color */ .plyr--full-ui input[type=range]{color:#00f3ff !important;}/* Hide YouTube Branding via CSS Mask (Verified Trick from AkrilikShop) */ /* Wrapper must clip the overflow */ /* Wrapper must clip the overflow */ .plyr__video-wrapper{overflow:hidden !important;border-radius:20px !important;/* Ensure content obeys border radius */ aspect-ratio:16 / 9 !important;/* Enforce 16:9 for consistent cropping/layout */ width:100% !important;}/* INTERACTION BLOCKER (Right-Click Protection) This invisible layer sits on top of the iframe. It catches the Right-Click (Context Menu) and prevents it from reaching YouTube. Left-Click passes through or is handled by the wrapper's click event (Plyr handles this). */ .plyr__video-wrapper::after{content:'';position:absolute;top:0;left:0;width:100%;height:100%;z-index:20;/* Higher than iframe, lower than controls */ background:transparent;cursor:pointer;/* Show pointer to indicate clickable */}/* Iframe Hack:Make iframe 240% height and shift it up -70%. This pushes the top title bar and bottom logo bar completely out of the container. YouTube centers the video, so the content remains perfectly visible. */ .plyr__video-embed iframe{position:absolute;top:-70% !important;height:240% !important;width:100% !important;}/* Ensure layout compatibility */ .hero-plyr{width:100%;height:100%;}.hero-info{padding:20px;text-align:center;flex:1;display:flex;flex-direction:column;justify-content:center;align-items:center;overflow-wrap:break-word;/* Ensure text wraps */ word-break:break-word;/* Additional safety */ min-width:0;/* Flexbox text wrap fix */}@media (min-width:768px){.hero-info{text-align:left;align-items:flex-start;padding:40px;}}.hero-title{font-size:1.5rem;margin:0 0 10px 0;color:#333;cursor:pointer;}.hero-price{font-size:1.4rem;color:#19692c;font-weight:bold;margin-bottom:20px;}.hero-actions{display:flex;gap:10px;}.btn-hero-add, .btn-hero-detail{padding:10px 20px;border:none;border-radius:5px;font-size:1rem;cursor:pointer;transition:background 0.2s;}.btn-hero-add{background:#19692c;color:white;}.btn-hero-add:hover{background:#145523;}.btn-hero-detail{background:#6c757d;color:white;}.btn-hero-detail:hover{background:#5a6268;}/* Slider Navigasyon */ .slider-btn{position:absolute;top:50%;transform:translateY(-50%);background:rgba(0, 0, 0, 0.3);color:white;border:none;font-size:2rem;padding:10px 15px;cursor:pointer;z-index:10;border-radius:4px;transition:background 0.3s;}.slider-btn:hover{background:rgba(0, 0, 0, 0.6);}.slider-btn.prev{left:10px;}.slider-btn.next{right:10px;}.slider-dots{position:absolute;bottom:10px;left:50%;transform:translateX(-50%);display:flex;gap:8px;z-index:10;}.slider-dot{width:10px;height:10px;background:rgba(0, 0, 0, 0.2);border-radius:50%;cursor:pointer;transition:background 0.3s;}.slider-dot.active{background:var(--primary-color);width:12px;height:12px;}/* Mobil için butonları gizle/küçült, dotlar kalsın */ @media (max-width:768px){.slider-btn{display:none;/* Dokunmatik ekranda swipe daha doğal */}}.social-links{display:flex;justify-content:center;gap:20px;margin-bottom:20px;}.social-icon{color:#ddd;font-size:1.5rem;transition:color 0.3s, transform 0.3s;text-decoration:none;}/* Facebook ikonunu görsel olarak ortalamak için (Diğerlerini itmeden) */ .social-icon .fa-facebook-f{position:relative;left:14px;}.social-icon:hover{color:white;transform:translateY(-3px);}/* Search Bar Styles */ .header-search{flex:1;margin:0 20px;max-width:500px;}.header-search form{display:flex;width:100%;position:relative;}.header-search input{width:100%;padding:10px 15px;border:1px solid #ddd;border-radius:20px;font-size:0.95rem;background-color:#f9f9f9;transition:all 0.2s;}.header-search input:focus{background-color:#fff;border-color:var(--primary-color);outline:none;box-shadow:0 0 0 3px rgba(25, 105, 44, 0.1);}.header-search button{position:absolute;right:5px;top:50%;transform:translateY(-50%);background:none;border:none;color:#666;cursor:pointer;padding:5px 10px;}.header-search button:hover{color:var(--primary-color);}@media (max-width:768px){.header-inner{flex-wrap:wrap;gap:15px;padding-bottom:10px;}.header-left{width:100%;justify-content:center;}.header-search{order:3;/* Alt satıra al */ width:100%;margin:10px 0 0 0;/* Add top margin */ max-width:none;}.header-right{width:100%;justify-content:center;gap:20px;}}footer{margin-top:auto;background:#333;color:#ddd;padding:20px;text-align:center;font-size:0.9rem;}

.cart-icon:focus, .hero-video-facade:focus, .youtube-facade:focus { outline: 2px solid var(--primary-color); outline-offset: 2px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Harmonize Facade with Plyr */
.youtube-facade {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.2);
    border: 1px solid rgba(0, 243, 255, 0.1);
    background: transparent;
}
.play-button {
    width: 60px !important;
    height: 60px !important;
    background-color: #00f3ff !important;
    border-radius: 50% !important;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}
.play-button::after {
    border-color: transparent transparent transparent black !important;
    margin-left: 4px;
}
.youtube-facade:hover .play-button {
    background-color: #00d0db !important;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.8);
    transform: scale(1.1);
}

/* Ensure Hero Wrapper supports the Hack */
.hero-video-wrapper {
    position: relative;
    overflow: hidden !important;
    border-radius: 20px !important;
    /* Maintain Aspect Ratio */
    aspect-ratio: 16/9;
}

/* Ensure Hero Plyr Wrapper fills the container to allow percentage hacks to work */
.hero-video-wrapper .plyr,
.hero-video-wrapper .hero-plyr,
.hero-video-wrapper .plyr__video-embed {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}
