* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    min-height: 100vh;
}
 
.navbar a{
    text-decoration: none;
    color:#ff0000;
}

.navbar {
    
    
    background-color: #fff;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;   
    height: 80px;
    position: relative;
    cursor: pointer;
    margin-left: 50px;
}

.logo img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 100%;
    width: 100%;
}

/* Logo Hover Text Effect - DISABLED */
.logo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff0000;
    font-size: 1.2rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 200px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    /* transition: opacity 0.3s ease; - DISABLED */
}

/* DISABLED - Logo hover effects
.logo:hover img {
    opacity: 0;
}

.logo:hover .logo-text {
    opacity: 1;
    visibility: visible;
}
*/

.logo h1 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
}

.logo-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    margin-left: 20px;
}

.logo-nav a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-nav a:hover {
    transform: scale(1.05);
}

.logo-nav h1 {
    color: #ff0000; /* Fallback for older browsers */
    background: linear-gradient(45deg, #ff0000, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(255, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

/* Navbar Styles */
.nav-links a {
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-links a:hover {
    background-color: #ff0000;
    color: white;
}

.category-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.2rem;
    padding: 1rem;
    margin: 1.5rem auto;
    max-width: 1200px;
}

.category-button {
    background-color: transparent;
    color: #333333;
    border: none;
    padding: 100px 8px 12px 8px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    position: relative;
}

.category-button::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 90px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    z-index: 1;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.category-kokorec::before {
    background-image: url('images/bk_kokorecy.jpeg');
}

.category-kofte::before {
    background-image: url('images/BK PORSİYON KÖFTE.jpg');
}

.category-baklava::before {
    background-image: url('images/baklava_1.jpg');
}

.category-tavuk::before {
    background-image: url('images/Tavukdürüm.jpg');
}

.category-sucuk::before {
    background-image: url('images/bgsucuk.jpeg');
}

.category-cigkofte::before {
    background-image: url('images/bk_bgcigkofte.jpeg');
}

.category-icecek::before {
    background-image: url('images/icecekler.jpg');
}

.category-yan::before {
    background-image: url('images/yan_bg.jpeg');
}

.category-button:hover,
.category-button.active {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    transform: translateY(-3px);
    border-radius: 15px;
}

.category-button:hover::before,
.category-button.active::before {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Category icon artık background olarak kullanılıyor */

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ff0000;
    margin: 2px 0;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.menu-container {
    max-width: 1200px;
    margin: 70px auto 0;
    padding: 1rem;
}

@media screen and (max-width: 480px) {
    .menu-container {
        padding: 1rem 0.5rem;
        margin: 60px auto 0;
    }
}

.menu-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ff0000;
    margin: 1rem 0;
    font-weight: bold;
    text-transform: uppercase;
}

.menu-section {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-section h3 {
    color: #ff0000;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-icon {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #ff0000;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
    gap: 1rem;
}

.menu-item:hover {
    background-color: #f9f9f9;
}

.item-image {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #ddd;
    flex-shrink: 0;
}

.item-info {
    flex: 1;
    padding-right: 1rem;
    padding-left: 1rem;
}

.item-info h4 {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.price {
    color: #ff0000;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 80px;
    text-align: right;
}

.style-tag {
    font-size: 0.9rem;
    color: #000000;
    
}

footer {
    background-color: #ff0000;  
    color: #fff;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}
.footer-contact-info
{
    background-color: #ff0000;  
    color: #fff;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.contact-info h3 {
    margin-bottom: 0.8rem;
    color:#fff;
    font-size: 1.3rem;
}

.contact-info p {
    padding-top: 0.5rem;
    text-align: center;
    margin: 0.3rem 0;
    color: #000;
    font-size: 1rem;
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
        position: fixed;
        height: 70px;
    }

    .logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 60px;
    }

    .logo img {
        height: 60px;
        width: auto;
    }

    /* Mobil logo hover text optimizasyonu */
    .logo-text {
        font-size: 1rem;
        font-weight: 600;
        min-width: 180px;
    }

    .logo-nav {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 60px;
        margin-left: 10px;
    }

    .logo-nav h1 {
        font-size: 1.6rem;
        color: #ff0000; /* Fallback for older browsers */
        background: linear-gradient(45deg, #ff0000, #cc0000);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0;
        text-shadow: 0 1px 2px rgba(255, 0, 0, 0.3);
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        right: 1rem;
    }

    .category-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .category-button {
        padding: 85px 6px 10px 6px;
        font-size: 0.9rem;
        min-height: 130px;
    }

    .category-button::before {
        top: 6px;
        width: 65px;
        height: 80px;
        border-radius: 10px;
    }

    .section-icon {
        width: 35px;
        height: 35px;
    }

    .item-image {
        width: 60px;
        height: 60px;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ff0000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1rem 0;
        z-index: 999;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links a {
        color: white !important;
        font-size: 1.4rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 0;
    }

    .nav-links a:hover {
        background-color: rgba(255,255,255,0.1);
        color: white !important;
    }

    .menu-title {
        font-size: 2rem;
    }

    .menu-section h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .item-info h4 {
        font-size: 0.95rem;
    }

    .price {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 0.5rem;
        height: 60px;
    }

    .logo {
        height: 50px;
    }

    .logo img {
        max-height: 60px;
        width: auto;
    }

    /* Küçük mobil logo hover text optimizasyonu */
    .logo-text {
        font-size: 0.9rem;
        font-weight: 600;
        min-width: 160px;
    }

    .logo-nav {
        height: 50px;
        margin-left: 8px;
    }

    .logo-nav h1 {
        font-size: 1.3rem;
        color: #ff0000; /* Fallback for older browsers */
        background: linear-gradient(45deg, #ff0000, #cc0000);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin: 0;
        text-shadow: 0 1px 2px rgba(255, 0, 0, 0.3);
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .category-buttons {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .category-button {
        padding: 70px 4px 8px 4px;
        font-size: 0.8rem;
        min-height: 110px;
    }

    .category-button::before {
        top: 5px;
        width: 52px;
        height: 65px;
        border-radius: 8px;
    }

    .section-icon {
        width: 30px;
        height: 30px;
    }

    .item-image {
        width: 65px;
        height: 65px;
    }

    .menu-title {
        font-size: 1.8rem;
    }

    .menu-section {
        padding: 1rem 0.5rem;
        background-color: transparent;
        box-shadow: none;
    }

    .menu-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .menu-items {
        gap: 0.8rem;
    }

    .menu-item {
        padding: 1.2rem;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 1rem;
        border: none;
        transition: transform 0.3s ease;
        width: 100%;
        min-height: 100px;
    }

    .menu-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .menu-item .item-image {
        width: 80px;
        height: 80px;
        border-radius: 8px;
        flex-shrink: 0;
        object-fit: cover;
    }

    .item-info {
        padding: 0;
        text-align: left;
        flex: 1;
        min-width: 0;
    }

    .item-info h4 {
        font-size: 0.6rem;
        color: #333;
        margin-bottom: 0.5rem;
        font-weight: 500;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .price {
        font-size: 1.2rem;
        font-weight: bold;
        color: #ff0000;
        margin-left: auto;
        flex-shrink: 0;
        white-space: nowrap;
        min-width: 70px;
        text-align: right;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }
}


/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('kokorec_new.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background-color: #ff0000;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Popular Items Section */
.popular-items {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.popular-items h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 3rem;
}

.popular-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.popular-item-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.popular-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.popular-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-item-card h3 {
    font-size: 1.3rem;
    margin: 1rem;
    color: #333;
}

.popular-item-card p {
    color: #666;
    margin: 0 1rem;
    line-height: 1.6;
}

.popular-item-card .price {
    display: block;
    color: #ff0000;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem;
}

/* About Section */
.about {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 2rem;
}

.about p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 3rem;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff0000;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    color: #ff0000;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .features {
        padding: 2rem 1rem;
    }

    .popular-items {
        padding: 2rem 1rem;
    }

    .about {
        padding: 2rem 1rem;
    }

    .contact {
        padding: 2rem 1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .menu-item{
        height: 100px;
        
    }
    div.item-image{
        height: max-content;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .popular-item-card {
        margin: 0 1rem;
    }

    .popular-items-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .popular-item-image {
        height: 150px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }
} 

/* Image Zoom Styles */
.image-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
}

.zoomed-image {
    position: fixed;
    z-index: 10000;
    width: 400px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    border-radius: 15px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    cursor: pointer;
    object-fit: cover;
}

.zoomed-image.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.zoom-caption {
    position: fixed;
    z-index: 10001;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
}

.zoom-caption.active {
    opacity: 1;
}

/* Menu item image hover effect */
.menu-item .item-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-item .item-image:hover {
    transform: scale(1.05);
}

/* Mobile responsive for zoom */
@media screen and (max-width: 768px) {
    .zoomed-image {
        width: 350px;
        height: 280px;
    }
    
    .zoom-caption {
        font-size: 1rem;
        padding: 8px 15px;
        bottom: 15%;
    }
}

@media screen and (max-width: 480px) {
    .zoomed-image {
        width: 300px;
        height: 240px;
    }
    
    .zoom-caption {
        font-size: 0.9rem;
        padding: 6px 12px;
        bottom: 10%;
    }
} 



/* Float Action Butonları */
.quick-access {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: none;
    padding: 0;
    margin: 0;
}

.quick-access-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.quick-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.quick-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.quick-btn:active {
    transform: scale(0.95);
}

.quick-btn i {
    font-size: 1.5rem;
    color: white;
    z-index: 1;
}

.quick-btn span {
    display: none;
}

.location-btn {
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.location-btn:hover {
    background: linear-gradient(135deg, #42a5f5, #1565c0);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.phone-btn {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #ef5350, #c62828);
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.4);
}

/* Pulse animasyonu */
@keyframes pulse-blue {
    0% {
        box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
    }
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(244, 67, 54, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
    }
}

.location-btn:focus {
    outline: none;
    animation: pulse-blue 1s infinite;
}

.phone-btn:focus {
    outline: none;
    animation: pulse-red 1s infinite;
}

/* Tooltip */
.quick-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
}

.quick-btn::after {
    content: '';
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid rgba(0, 0, 0, 0.8);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quick-btn:hover::before,
.quick-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
    .quick-access {
        bottom: 15px;
        right: 15px;
    }
    
    .quick-access-container {
        gap: 12px;
    }
    
    .quick-btn {
        width: 55px;
        height: 55px;
    }
    
    .quick-btn i {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .quick-access {
        bottom: 10px;
        right: 10px;
    }
    
    .quick-access-container {
        gap: 10px;
    }
    
    .quick-btn {
        width: 50px;
        height: 50px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }
    
    .quick-btn i {
        font-size: 1.2rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 150px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #cc0000;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .scroll-to-top {
        bottom: 140px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .scroll-to-top {
        bottom: 120px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
} 