:root {
    --primary-color: #2E7D32; /* Green */
    --secondary-color: #4CAF50; /* Light Green */
    --accent-color: #FFD700; /* Gold */
    --bg-color: #f9f9f9;
    --text-color: #333;
    --light-text: #fff;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 8px 0;
    font-size: 0.8rem;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1001;
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-social-icons {
    display: flex;
    gap: 15px;
}

.top-social-icons a {
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s;
}

.top-social-icons a:hover {
    color: var(--accent-color);
}

/* Custom Header Styling */
.custom-header {
    background-color: #fff;
    position: relative;
    z-index: 1002; /* Increased to be above top-bar (1001) so icons pop over */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 100px;
}

/* Logo Styling */
.logo-container {
    position: relative;
    z-index: 102;
}

.logo-circle {
    display: block;
    width: 160px;
    height: 160px;
    background-color: #fff; /* White background */
    border-radius: 50%;
    position: absolute;
    top: -30px;
    left: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 4px solid #fff;
    overflow: hidden; /* Ensure image stays inside circle */
    transition: background-color 0.3s; /* Smooth transition */
}

/* Ensure background stays white on hover, focus, and active states */
.logo-circle:hover,
.logo-circle:focus,
.logo-circle:active,
.logo-circle:visited {
    background-color: #fff;
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.5); /* Glowing effect */
    transform: scale(1.05); /* Slight zoom */
}

.logo-inner-text {
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    height: 90%;
    border: 2px dashed rgba(255,255,255,0.5);
    border-radius: 50%;
}

.l-top { font-size: 1.5rem; color: #fff; }
.l-mid { font-size: 1rem; font-weight: 700; margin-top: 5px; }
.l-sub { font-size: 0.8rem; font-weight: 400; }
.l-bot { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-style: italic; margin-top: 2px; }

/* Navigation */
.nav-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 200px;
    gap: 30px;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.main-menu > li {
    position: relative;
}

/* Pistachio Hover Effect */
.main-menu > li::before {
    content: '';
    position: absolute;
    top: -30px; /* Initial position */
    left: 50%;
    transform: translateX(-50%) scale(0) rotate(0deg);
    width: 45px; /* Slightly larger for realistic image */
    height: 45px;
    background-image: var(--menu-hover-icon, url('https://pngimg.com/uploads/pistachio/pistachio_PNG29.png'));
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    z-index: 10;
}

.main-menu > li:hover::before {
    top: -55px; /* Moved slightly down from -65px */
    transform: translateX(-50%) scale(1.2) rotate(360deg); /* Slightly larger */
    opacity: 1;
    z-index: 1005; /* Ensure above everything */
}

.main-menu a {
    text-decoration: none;
    color: #5D4037;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.main-menu a:hover {
    color: var(--accent-color);
}

.has-dropdown { position: relative; }
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    list-style: none;
    display: none;
    padding: 10px 0;
    z-index: 1000;
}
.has-dropdown:hover .sub-menu { display: block; }
.sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #eee;
}

/* Dealership Button */
.btn-dealership {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 5px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.btn-dealership:hover {
    background-color: var(--accent-color);
    color: #fff !important;
}

.btn-dealership i {
    font-size: 1.1rem;
}

/* Header Icons (Member & Cart) */
.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
    border-left: 1px solid #eee;
    padding-left: 20px;
}

.h-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: all 0.3s;
}

.h-icon i {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.h-icon:hover {
    color: var(--accent-color);
}

.cart-icon-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #d32f2f;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wave SVG */
.header-wave-svg {
    position: absolute;
    bottom: -90px; /* Moved down even further */
    left: 0;
    width: 100%;
    height: 100px; /* Increased height again */
    z-index: 101;
    pointer-events: none;
}
.header-wave-svg svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: #fff;
}
.header-wave-svg path {
    /* Wave shifted to align dip with logo at approx 100px */
    d: path("M0,0 Q100,60 200,0 Q350,0 500,50 T800,50 T1440,0 V-10 H0 Z");
}

/* Main Slider */
.main-slider {
    margin-top: -40px;
    width: 100%;
    height: 650px; /* Reduced height as requested */
    position: relative;
    z-index: 90;
    background-color: #333;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute; /* Stack slides on top of each other */
    top: 0;
    left: 0;
    opacity: 0; /* Hidden by default */
    transition: opacity 1.5s ease-in-out; /* Smooth fade effect (1.5s) */
    z-index: 1;
}

.slide.active {
    opacity: 1; /* Show active slide */
    z-index: 2;
}

.slide-content {
    position: absolute;
    left: 50%;
    top: 60%; /* Adjusted to be visually centered considering the header overlap */
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 800px;
    width: 90%;
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

.slide-content h1 span {
    display: block;
}

.slide-top-icon {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 10px;
    display: inline-block;
}

/* Features Bar */
.features-bar {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    font-weight: 700;
    color: #333;
}

.feature-text p {
    font-size: 0.8rem;
    color: #888;
}

/* Mosaic Banners */
.mosaic-banners {
    padding: 60px 0; /* More padding */
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 600px; /* Increased height for desktop */
    overflow: hidden;
}

.banner-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-item:hover img {
    transform: scale(1.05);
}

/* Nut Banner */
.nut-banner .overlay-text-bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    pointer-events: none;
    text-align: left;
}

.nut-banner h2 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    background: none;
    padding: 0;
    margin-bottom: 20px;
}

.nut-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    z-index: 1;
}

.nut-banner .btn-corner {
    z-index: 3;
}

/* Banner Column */
.banner-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.banner-small {
    flex: 1;
    position: relative;
}

/* Coffee Banner */
.coffee-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(230, 126, 34, 0.95) 0%, rgba(230, 126, 34, 0.6) 100%);
    z-index: 1;
}

.overlay-coffee {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 30px;
    color: #fff;
}

.coffee-border-left {
    width: 4px;
    height: 60px;
    background-color: #fff;
    margin-right: 20px;
    flex-shrink: 0;
}

.coffee-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.coffee-content p {
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.9;
    font-style: italic;
}

.coffee-icon-circle {
    margin-left: auto;
    width: 70px;
    height: 70px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(255,255,255,0.1);
}

/* Chocolate Banner */
.choco-banner .overlay-right-text {
    position: absolute;
    top: 40%;
    right: 30px;
    transform: translateY(-50%);
    text-align: right;
    z-index: 2;
}

.choco-banner h3 {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    line-height: 1.3;
}

/* Button Refinement */
.btn-corner {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 3;
    transition: background 0.3s;
    border-top-left-radius: 0;
}

.btn-corner:hover {
    background-color: var(--secondary-color);
}

.full-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.fa-coffee-bean:before { content: "\f0f4"; }

/* Copper Promo Section */
.copper-promo {
    position: relative;
    padding: 60px 0;
    background-color: #f5f1e8; /* Light beige bg */
    margin: 50px 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.copper-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.copper-container {
    max-width: 1100px;
    width: 90%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copper-text-content {
    flex: 1;
    position: relative;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin-right: 50px;
}

/* Corner Borders */
.corner-border {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: #5D4037;
    border-style: solid;
}

.cb-tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.cb-tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.cb-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.cb-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.copper-icon-top {
    font-size: 3rem;
    color: #5D4037;
    margin-bottom: 20px;
}

.copper-text-content h2 {
    font-size: 1.8rem;
    color: #5D4037;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.copper-text-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-copper-brown {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    transition: background 0.3s;
}

.btn-copper-brown:hover {
    background-color: var(--secondary-color);
}

.copper-image-content {
    flex: 0 0 400px; /* Fixed width for image container */
    height: 400px;
    position: relative;
}

.copper-image-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

@media (max-width: 900px) {
    .copper-container {
        flex-direction: column;
        text-align: center;
    }
    
    .copper-text-content {
        margin-right: 0;
        margin-bottom: 40px;
        padding: 20px;
    }
    
    .copper-image-content {
        flex: auto;
        width: 100%;
        height: auto;
        max-width: 300px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin: 60px 0 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.section-header p {
    color: #777;
    font-size: 1.1rem;
}

/* Featured Products (Restored) */
.featured-products {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.product-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card-modern {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pcm-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.pcm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card-modern:hover .pcm-image img {
    transform: scale(1.1);
}

.pcm-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: bottom 0.3s;
    padding-bottom: 15px;
}

.product-card-modern:hover .pcm-actions {
    bottom: 0;
}

.btn-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer; /* Ensure pointer for buttons */
}

.btn-icon:hover {
    background: var(--primary-color);
    color: white;
}

.pcm-info {
    padding: 20px;
    text-align: center;
}

.pcm-cat {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.pcm-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pcm-price {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* News and Comments (Restored) */
.news-comments-section {
    padding: 60px 0;
    background-color: #fff;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nc-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.guest-book {
    position: relative;
    height: 450px;
    border-radius: 5px;
    overflow: hidden;
}

.guest-book img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.guest-book-link {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

.guest-book .caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    color: white;
}

.ziyaret {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.zi2 {
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: block;
    line-height: 1.4;
    opacity: 0.9;
}

.btnRed {
    background-color: var(--primary-color);
    padding: 10px 20px;
    font-size: 0.9rem;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 5px;
}

.news-feed {
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: 2rem;
    color: #5d4037;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.news-img {
    width: 100%;
    height: 180px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 15px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    min-height: 40px;
}

.news-content h5 {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 15px;
    font-weight: normal;
    line-height: 1.5;
    flex: 1;
}

.btn-news {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    width: 100%;
    transition: background 0.3s;
}

.btn-news:hover {
    background-color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-col p {
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .header-inner { height: auto; flex-direction: column; padding-bottom: 20px; }
    .nav-wrapper { padding-left: 0; margin-top: 60px; width: 100%; justify-content: center; }
    .main-menu { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .logo-circle { left: 50%; transform: translateX(-50%); top: -10px; }
    .slide-content { right: 5%; left: 5%; text-align: center; }
}

@media (max-width: 900px) {
    .mosaic-grid {
        /* Keep side-by-side layout (1fr 1fr) */
        height: auto; /* Let content dictate height */
        min-height: 300px;
        gap: 10px;
    }
    .banner-large {
        height: 300px; /* Fixed height for visual balance */
    }
    .banner-small {
        height: 145px; /* Half of large minus gap approx */
        flex: none;
    }
    .banner-column {
        height: 300px;
    }
    
    .nut-banner h2 { font-size: 1.2rem; margin-bottom: 10px; }
    .coffee-content h3 { font-size: 1rem; }
    .coffee-content p { display: none; }
    
    .nc-grid {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .guest-book {
        height: 300px;
    }
    
    .header-icons {
        margin-left: 0;
        margin-top: 20px;
        border-left: none;
        width: 100%;
        justify-content: center;
    }
}

/* Flying Cart Animation */
.flying-img {
    position: absolute;
    z-index: 9999;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.8s ease-in-out;
    opacity: 0.8;
}

/* FontAwesome Fixes */
.fa, .fas, .far, .fal, .fab, .fa-solid, .fa-regular, .fa-brands {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-solid, .fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

.fa-regular, .far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400;
}

.fa-brands, .fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

/* Custom Icons */
.fa-coffee-bean:before {
    content: "\f0f4"; /* mug-hot code used as coffee bean fallback if needed, or use specific code */
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

/* --- Mobile Menu Styles --- */
.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
    transition: transform 0.3s;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

/* --- Mobile Responsive Fixes --- */
@media (max-width: 768px) {
    /* Header & Logo */
    .header-inner {
        height: 80px;
        padding: 0 15px;
        position: relative;
    }
    
    .logo-container {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 103;
        width: auto;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
        position: relative;
        top: 0;
        left: 0;
        transform: none; /* Remove previous transform since container handles it */
        border-width: 3px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }
    
    .l-top { font-size: 1.2rem; }
    .l-mid { font-size: 0.7rem; margin-top: 2px; }
    .l-sub { font-size: 0.6rem; }
    .l-bot { font-size: 0.8rem; }
    
    /* Top Bar Text */
    .top-bar {
        padding: 8px 10px;
        font-size: 0.75rem;
        line-height: 1.2;
        font-weight: 600;
    }
    
    /* Toggle Button Position - LEFT - White */
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        left: 15px;
        top: 25px;
        right: auto;
        font-size: 1.8rem; /* Slightly larger like image */
        color: #fff; /* White icon on Green bg */
        padding: 5px;
        z-index: 1004; /* Above logo container if needed */
    }
    
    /* Move Cart & User Icons to Top Right in Mobile Menu - White with Text */
    .header-icons {
        position: absolute;
        top: 20px;
        right: 15px;
        margin: 0;
        gap: 15px;
        width: auto;
        justify-content: flex-end;
        border: none;
        padding: 0;
        z-index: 1004;
    }
    
    .h-icon {
        color: #fff; /* White icons */
        font-size: 0.9rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .h-icon i {
        font-size: 1.4rem;
        margin-bottom: 2px;
    }
    
    /* Show Text on Mobile (Üye Ol / Sepetim) */
    .h-text {
        display: block !important;
        font-size: 0.65rem;
        font-weight: 500;
        text-transform: capitalize;
    }
    
    .cart-badge {
        background-color: #d32f2f; /* Red like desktop */
        color: #fff;
        top: -5px;
        right: -5px;
        border: none;
    }
    
    /* Wave SVG visibility */
    .header-wave-svg {
        bottom: -50px; /* Moved down further */
        height: 50px;
        z-index: 95;
        left: 20px; /* Shift right */
        width: 110%; /* Ensure coverage */
    }

    /* Adjust menu start position */
    .nav-wrapper {
        padding-top: 100px; /* Space for logo */
    }

    /* Slider */
    .main-slider {
        height: 500px; /* Good height for mobile */
        margin-top: 0;
    }
    
    /* Center Slide Content */
    .slide-content {
        width: 90%;
        max-width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0 15px;
        text-align: center;
    }
    
    .slide-content h1 {
        font-size: 2.2rem; /* Reduced from 4rem */
        line-height: 1.2;
        margin-bottom: 15px;
        white-space: normal; /* Ensure text wraps */
        word-wrap: break-word;
    }
    
    .slide-content p {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
        display: block !important;
    }
    
    .slide-top-icon img {
        width: 50px !important;
    }

    /* Features Bar */
    .features-bar {
        gap: 20px;
        padding: 30px 10px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        width: 45%;
    }

    /* Copper Section */
    .copper-container {
        flex-direction: column;
        text-align: center;
    }
    
    .copper-text-content {
        margin-right: 0;
        padding: 20px;
    }
    
    .copper-image-content {
        height: 300px;
        flex: none;
    }

    /* Product Grid */
    .product-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card-modern {
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .pcm-image {
        height: 180px;
    }
    
    .pcm-title {
        font-size: 0.9rem;
    }
    
    .pcm-price {
        font-size: 1rem;
    }
    
    /* News & Footer */
    .nc-grid, .news-grid, .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .guest-book {
        height: 250px;
    }
}

/* Phones only: Stack banners */
@media (max-width: 576px) {
    .mosaic-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .banner-large, .banner-small {
        height: 300px;
    }
    
    .nut-banner h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-grid-modern {
        grid-template-columns: 1fr; /* 1 col on very small screens */
    }
    
    .logo-circle {
        width: 90px;
        height: 90px;
    }
    
    .mosaic-grid {
        height: 280px; /* Even smaller for phones */
    }
}

/* --- New Mobile Menu Styles (Sandwich Left) --- */
@media (max-width: 768px) {
    /* Make Header Green on Mobile */
    .custom-header {
        background-color: var(--primary-color);
        box-shadow: none;
    }

    /* Sidebar Menu */
    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -280px; /* Start hidden */
        width: 280px;
        height: 100vh;
        background-color: var(--primary-color); /* Green background */
        z-index: 1005;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 110px; /* Space for logo + top bar */
        padding-left: 0;
        padding-right: 0;
        margin-top: 0;
        transition: left 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
        overflow-y: auto;
    }

    .nav-wrapper.active {
        left: 0; /* Slide in */
    }

    /* Vertical List */
    .main-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        align-items: flex-start;
    }

    .main-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        position: relative;
    }

    .main-menu a {
        display: block;
        padding: 15px 25px;
        font-size: 1rem;
        color: #fff; /* White text */
        text-decoration: none;
    }

    .main-menu a:hover {
        background-color: rgba(255,255,255,0.1);
        color: var(--accent-color);
    }
    
    .main-menu > li:hover::before {
        display: none; /* Disable pistachio hover on mobile */
    }

    /* Dropdown in Sidebar */
    .sub-menu {
        position: static;
        box-shadow: none;
        background-color: #f9f9f9;
        display: none;
        width: 100%;
        padding-left: 20px;
    }
    
    .has-dropdown:hover .sub-menu {
        display: block;
    }
}

/* Top Bar Layout */
.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-social-icons {
    display: flex;
    align-items: center;
}

.top-social-icons a {
    color: #fff;
    margin-left: 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
    opacity: 0.9;
}

.top-social-icons a:hover {
    color: var(--accent-color);
    opacity: 1;
}

/* Mobile Top Bar */
@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 5px;
    }
    
    .top-social-icons {
        margin-top: 2px;
    }
    
    .top-social-icons a {
        margin: 0 8px;
    }
}