@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Great+Vibes&family=Inter:wght@300;400;500&display=swap');

:root {
    --primary-color: #C89B62;
    /* Elegant gold/copper from image */
    --bg-color: #0b0b0b;
    /* Very dark nearly black background */
    --card-bg: #141414;
    /* Slightly lighter black for cards */
    --text-main: #f5f5f5;
    /* Off-white text */
    --text-muted: #999999;
    /* Gray text for descriptions */
    --border-color: #2a2a2a;
    /* Subtle borders */
    --font-heading: 'Cinzel', serif;
    /* Elegant serif for titles */
    --font-script: 'Great Vibes', cursive;
    /* Cursive for subtitles */
    --font-body: 'Inter', sans-serif;
    /* Clean body text */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.6);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.9);
    --border-radius: 8px;
    /* Sharper corners look more premium */
    --transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    -webkit-tap-highlight-color: transparent; /* Remove the blue overlay on tap for the whole site */
}

/* View transition logic */
.view {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.view.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Home Hero Section */
.hero {
    height: 45vh;
    min-height: 420px;
    background-color: #050505;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.5rem 3rem 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, #0b0b0b 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
}

/* About View Styling */
.hero-about {
    height: 30vh;
    min-height: 280px;
}

.corner-back {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.corner-back:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateX(-5px);
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    color: var(--text-main);
}

.about-content {
    text-align: center;
}

.about-main-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #ffffff;
}

.about-divider {
    width: 60px;
    height: 1px;
    background-color: var(--primary-color);
    margin: 0 auto 2.5rem auto;
}

.about-content h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.about-premium-decoration {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.decoration-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.gold-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .about-main-title {
        font-size: 1.6rem;
    }
    .about-container {
        padding: 3rem 1.2rem;
    }
    .corner-back {
        top: 15px;
        left: 15px;
        width: 38px;
        height: 38px;
    }
    .hero-content {
        padding-top: 6rem;
    }
}

/* Legal View Styling */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem 6rem 1.5rem;
    color: var(--text-main);
}

.legal-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.legal-content h1 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2rem;
    margin: 2rem 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legal-content h1:first-of-type {
    margin-top: 0;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 2rem 0 1rem 0;
    color: #ffffff;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

.legal-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.last-update {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.6;
    margin-bottom: 2rem;
}

.legal-separator {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    margin: 4rem 0;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
    }
    .legal-content h1 {
        font-size: 1.6rem;
    }
}

/* Typography matching the image */
/* Logo Styling (Text-based) */
.brand-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.brand-logo-container {
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.brand-logo {
    max-width: 550px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

@media (max-width: 768px) {
    .brand-logo {
        max-width: 320px;
    }
}

.brand-divider {
    width: 300px;
    height: 1px;
    background-color: #ffffff;
    margin: 0.5rem auto 1rem auto;
    opacity: 0.7;
}

.brand-subtitle {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-info {
    margin-top: 1rem;
    display: flex;
    gap: 35px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.lang-switcher-fixed {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.lang-flag-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: var(--transition);
    opacity: 0.5;
    filter: grayscale(0.8);
}

.lang-flag-btn img {
    width: 28px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.lang-flag-btn.active {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.15);
}

.lang-flag-btn:hover:not(.active) {
    opacity: 0.8;
    filter: grayscale(0.3);
}

@media (max-width: 768px) {
    .lang-switcher-fixed {
        top: 15px;
        right: 15px;
        padding: 6px;
        gap: 10px;
    }
    .lang-flag-btn img {
        width: 24px;
    }
}

.hero-info a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-main {
    color: #ffffff;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    min-width: 220px;
    padding: 14px 28px !important;
    font-weight: 500;
}

.btn-main:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(200, 155, 98, 0.3);
}

.btn-secondary {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 220px;
    padding: 14px 24px !important;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Specific mobile adjustment for buttons */
@media (max-width: 480px) {
    .hero {
        height: auto;
        padding: 4rem 1rem;
    }
    .hero-info {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }
    .hero-info a {
        width: 90%;
        max-width: 320px;
        min-width: auto;
    }
    .lang-switcher {
        margin-bottom: 10px;
    }
    .brand-logo {
        max-width: 300px;
    }
}

/* Categories Carousel */
.categories-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem 1.5rem;
    overflow: hidden;
    user-select: none; /* Prevent text/image selection while swiping */
    -webkit-user-drag: none;
}

/* Quality Notice */
.quality-notice {
    text-align: center;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(200, 155, 98, 0.2);
    border-radius: var(--border-radius);
    background: rgba(200, 155, 98, 0.03);
    position: relative;
    overflow: hidden;
}

.quality-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.quality-notice p {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.quality-notice strong {
    color: var(--primary-color);
    font-weight: 600;
}

.category-grid {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -10px;
}

.category-card {
    position: absolute;
    width: 280px;
    height: 380px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, z-index 0s 0.3s;
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    will-change: transform, opacity;
    /* Attiva accelerazione hardware */
    backface-visibility: hidden;
    /* Riduce glitch grafici iOS/Mac */
    -webkit-tap-highlight-color: transparent;
}

.category-card.active {
    transform: translate3d(0, 0, 0) scale(1.1);
    z-index: 3;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease, z-index 0s;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(200, 155, 98, 0.5);
    opacity: 1;
}

.category-card.prev {
    transform: translate3d(-160px, 0, -50px) scale(0.85);
    z-index: 2;
    opacity: 0.4;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, z-index 0s;
}

.category-card.next {
    transform: translate3d(160px, 0, -50px) scale(0.85);
    z-index: 2;
    opacity: 0.4;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, z-index 0s;
}

.category-card.hidden-left {
    transform: translate3d(-320px, 0, -100px) scale(0.7);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, z-index 0s;
}

.category-card.hidden-right {
    transform: translate3d(320px, 0, -100px) scale(0.7);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, z-index 0s;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: transform 0.6s ease;
    will-change: transform;
}

.category-card.active img {
    opacity: 0.7;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.category-title-wrapper {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.category-title {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
    overflow-wrap: break-word;
    word-break: normal;
    padding-right: 10px;
    text-align: left;
}

.category-icon {
    color: var(--primary-color);
    background: transparent;
    border: 1px solid rgba(200, 155, 98, 0.4);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    transition: var(--transition);
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

.category-card.active:hover .category-icon {
    background: var(--primary-color);
    color: #000;
    transform: translateX(5px);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: -10px;
    padding-bottom: 20px;
    position: relative;
    z-index: 10;
}

.carousel-dot {
    width: 40px;
    height: 3px;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 12px rgba(200, 155, 98, 0.6);
}

/* Products View Header */
.category-header {
    background-color: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

.btn-back {
    background: transparent;
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-main);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-right: 20px;
}

.btn-back:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateX(-4px);
}

#category-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    flex-grow: 1;
}

/* Products List */
.products-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    padding-bottom: 5rem;
}

.product-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.product-img-container {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-content {
    flex-grow: 1;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: 0.3s ease;
}

.product-item:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 155, 98, 0.3);
    box-shadow: var(--shadow-md);
}

.product-item:hover::before {
    opacity: 1;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 0.5rem;
}

.product-name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--text-main);
    letter-spacing: 1px;
}

.product-price {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    font-weight: 300;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.allergen-tag-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    color: var(--text-main);
}

.allergen-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 2px 8px 2px 4px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 6px;
    transition: var(--transition);
}

.allergen-tag:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.allergen-icon-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #fff;
    flex-shrink: 0;
}

/* Fallback for general tags */
.tag {
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag.allergens {
    border-color: rgba(200, 155, 98, 0.4);
    color: #dfb987;
}

/* Responsive fixes for product items */
@media (max-width: 480px) {
    .category-header {
        padding: 1rem;
    }
    #category-title {
        font-size: 1.4rem;
    }
    .btn-back {
        width: 38px;
        height: 38px;
        margin-right: 12px;
    }

    .product-item {
        flex-direction: row;
        gap: 0.8rem;
        padding: 0.8rem;
    }

    .product-img-container {
        width: 70px;
        height: 70px;
    }

    .product-name, .product-price {
        font-size: 1rem;
    }
    .product-desc {
        font-size: 0.8rem;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--border-color);
    background-color: #050505;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    line-height: 1.8;
}

.footer p {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.coperto-info {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem !important;
    text-align: center;
}

.footer-divider {
    width: 40px;
    height: 1px;
    background: var(--border-color);
    margin: 0 auto 1.5rem auto;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.footer a:hover {
    color: #ffffff;
    border-bottom-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-subtitle {
        display: none;
    }

    .category-grid {
        height: 420px;
    }

    .category-card {
        width: 230px;
        height: 330px;
    }

    .category-card.prev {
        transform: translate3d(-100px, 0, -50px) scale(0.8);
    }

    .category-card.next {
        transform: translate3d(100px, 0, -50px) scale(0.8);
    }
}

@media (max-width: 480px) {
    .brand-subtitle {
        display: none;
    }

    .category-grid {
        height: 380px;
    }

    .category-card {
        width: 200px;
        height: 290px;
    }

    .category-card.prev {
        transform: translate3d(-80px, 0, -50px) scale(0.75);
    }

    .category-card.next {
        transform: translate3d(80px, 0, -50px) scale(0.75);
    }

    .category-title {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .category-icon {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }

    .quality-notice {
        padding: 1rem;
        margin: 1rem 0.5rem 2rem 0.5rem;
    }
    
    .quality-notice p {
        font-size: 0.9rem;
    }
}

/* Specific optimization for very small screens */
@media (max-width: 380px) {
    .brand-subtitle {
        display: none;
    }

    .category-grid {
        height: 320px;
    }

    .category-card {
        width: 170px;
        height: 240px;
    }

    .category-card.prev {
        transform: translate3d(-85px, 0, -50px) scale(0.85);
    }

    .category-card.next {
        transform: translate3d(85px, 0, -50px) scale(0.85);
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .category-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Fixed Social Links */
.social-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-fixed a {
    color: var(--text-muted);
    background: rgba(20, 20, 20, 0.8);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.social-fixed a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(200, 155, 98, 0.2);
}

@media (max-width: 768px) {
    .social-fixed {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .social-fixed a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}