* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'CreatoDisplay';
    src: url('Fonts/creato_display/CreatoDisplay-Light.otf') format('opentype');
}

@font-face {
    font-family: 'OptimusPrinceps';
    src: url('Fonts/optimusprinceps/OptimusPrinceps.ttf') format('truetype');
}

@font-face {
    font-family: 'Recoleta';
    src: url('Fonts/recoleta/Recoleta-RegularDEMO.otf') format('opentype');
}

body.specials {
    background-color: #1a0f07;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    font-family: "CreatoDisplay", sans-serif;
    font-size: 17px;
    color: #f0e6d3;
}

.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 52px;
    background-color: rgba(15, 8, 3, 0.82);
    backdrop-filter: blur(6px);
    overflow: hidden;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.side-nav:hover {
    width: 230px;
}

.side-nav-inner {
    width: 230px;
}

.side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.side-nav li {
    width: 100%;
}

.side-nav a {
    display: block;
    color: rgba(240, 220, 180, 0.65);
    text-decoration: none;
    font-family: "CreatoDisplay", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    padding: 0.9rem 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-left: 2px solid transparent;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.side-nav a.active {
    color: #FAF0DC;
    background-color: rgba(200, 150, 80, 0.15);
    border-left: 2px solid rgba(220, 170, 90, 0.7);
}

.side-nav a:hover {
    color: #FAF0DC;
    background-color: rgba(255, 230, 170, 0.08);
}

#specials-main {
    margin-left: 52px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#specials-hero {
    position: relative;
    width: 100%;
    height: 52vh;
    background-image: url('Pictures/Picture04.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#specials-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 8, 3, 0.3) 0%,
        rgba(15, 8, 3, 0.55) 60%,
        rgba(15, 8, 3, 0.88) 100%
    );
}

#specials-hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-eyebrow {
    font-family: "Recoleta", sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.35em;
    color: rgba(255, 210, 140, 0.75);
    text-transform: uppercase;
}

.hero-title {
    font-family: "OptimusPrinceps", sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: #FAF0DC;
    letter-spacing: 0.06em;
    text-shadow: 0 3px 24px rgba(0,0,0,0.6);
}

.hero-line {
    width: 60px;
    height: 1px;
    background: rgba(255, 220, 160, 0.5);
    margin-top: 0.4rem;
}

#specials-body {
    background-color: rgba(12, 6, 2, 0.78);
    backdrop-filter: blur(8px);
    padding: 4rem 5rem;
    flex: 1;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
    max-width: 1300px;
    margin: 0 auto;
}

.special-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 240, 210, 0.04);
    border: 1px solid rgba(220, 170, 90, 0.15);
    border-radius: 10px;
    overflow: visible;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.special-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(220, 170, 90, 0.4);
    z-index: 10;
}

.special-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.special-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.special-card:hover .special-img-wrap img {
    transform: scale(1.05);
}

.special-info {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.special-name {
    font-family: "OptimusPrinceps", sans-serif;
    font-size: 0.92rem;
    color: #FAF0DC;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.special-price {
    font-family: "Recoleta", sans-serif;
    font-size: 1rem;
    color: rgba(255, 210, 140, 0.85);
    letter-spacing: 0.05em;
}

.special-hover-panel {
    position: absolute;
    top: 0;
    left: calc(100% + 12px);
    width: 220px;
    background-color: rgba(12, 6, 2, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(220, 170, 90, 0.25);
    border-radius: 10px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        max-height 0.35s ease,
        padding 0.3s ease;
}

.special-card:hover .special-hover-panel {
    opacity: 1;
    max-height: 400px;
    padding: 1.4rem;
    pointer-events: all;
}

.special-card:nth-child(3) .special-hover-panel,
.special-card:nth-child(4) .special-hover-panel {
    left: auto;
    right: calc(100% + 12px);
}

.panel-heading {
    font-family: "CreatoDisplay", sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 210, 140, 0.5);
    margin-bottom: 0.5rem;
    margin-top: 0.9rem;
}

.panel-heading:first-child {
    margin-top: 0;
}

.panel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0;
}

.panel-list li {
    font-family: "CreatoDisplay", sans-serif;
    font-size: 0.8rem;
    color: rgba(240, 220, 190, 0.75);
    letter-spacing: 0.03em;
    padding-left: 0.8rem;
    position: relative;
}

.panel-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(220, 170, 90, 0.4);
    font-size: 0.7rem;
}

.panel-note {
    font-family: "Recoleta", sans-serif;
    font-size: 0.72rem;
    color: rgba(255, 210, 140, 0.45);
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(220, 170, 90, 0.12);
    font-style: italic;
}

#specials-footer {
    background-color: rgba(8, 4, 1, 0.88);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(220, 170, 90, 0.15);
    padding: 2.5rem 5rem 1.5rem;
    flex-shrink: 0;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.8rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-logo {
    font-family: "OptimusPrinceps", sans-serif;
    font-size: 1.3rem;
    color: #FAF0DC;
    letter-spacing: 0.06em;
}

.footer-tagline {
    font-family: "Recoleta", sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 210, 140, 0.55);
    letter-spacing: 0.15em;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-heading {
    font-family: "CreatoDisplay", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 210, 140, 0.5);
    margin-bottom: 0.3rem;
}

.footer-block p {
    font-family: "CreatoDisplay", sans-serif;
    font-size: 0.85rem;
    color: rgba(240, 220, 190, 0.7);
    letter-spacing: 0.03em;
    line-height: 1.6;
}

.footer-block a {
    color: rgba(240, 220, 190, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-block a:hover {
    color: #FAF0DC;
}

.footer-copy {
    text-align: center;
    font-family: "CreatoDisplay", sans-serif;
    font-size: 0.72rem;
    color: rgba(200, 170, 120, 0.35);
    letter-spacing: 0.08em;
    border-top: 1px solid rgba(220, 170, 90, 0.1);
    padding-top: 1rem;
}

@media (max-width: 1100px) {
    .specials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .special-card:nth-child(odd) .special-hover-panel {
        left: calc(100% + 12px);
        right: auto;
    }

    .special-card:nth-child(even) .special-hover-panel {
        left: auto;
        right: calc(100% + 12px);
    }
}

@media (max-width: 768px) {
    #specials-main {
        margin-left: 52px;
    }

    #specials-body {
        padding: 2.5rem 2rem;
    }

    #specials-footer {
        padding: 2rem 2rem 1.2rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1.5rem;
    }

    .specials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .special-hover-panel {
        left: 0 !important;
        right: 0 !important;
        top: auto;
        bottom: calc(100% + 8px);
        width: 100%;
    }
}

@media (max-width: 480px) {
    .specials-grid {
        grid-template-columns: 1fr;
    }
}

body {
    cursor: url('Cursors/Eiffel.png'), auto;
}

a, button, .add-to-order-btn, .catalog-card, .tag, .filter-btn, .headernav a {
    cursor: url('Cursors/Croissant.png'), pointer;
}

a, button, .add-to-order-btn, .catalog-card, .tag, .filter-btn,
.headernav a, #cart-tab-label, .tab-label, .cart-strip-photo,
.otp-digit, #gate-send-btn, #otp-verify-btn, #otp-resend-btn,
.text-btn, .qty-btn, .remove-item-btn, #modal-close,
.filter-btn, .special-card, .review-card {
    cursor: url('Cursors/Croissant.png'), pointer;
}

input, textarea, select {
    cursor: url('Cursors/Croissant.png'), text;
}