* {
    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.testimonials {
    background-color: #1a0f07;
    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);
}

#testimonials-main {
    margin-left: 52px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#testimonials-hero {
    position: relative;
    width: 100%;
    height: 52vh;
    background-image: url('Pictures/Picture06.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#testimonials-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%
    );
}

#testimonials-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;
}

#testimonials-body {
    background-color: rgba(12, 6, 2, 0.92);
    padding: 3.5rem 5rem;
    flex: 1;
}

#filter-bar {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-label {
    font-family: "CreatoDisplay", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 210, 140, 0.45);
    margin-right: 0.4rem;
}

.filter-btn {
    font-family: "Recoleta", sans-serif;
    font-size: 0.85rem;
    color: rgba(240, 210, 150, 0.6);
    background: rgba(255, 240, 210, 0.04);
    border: 1px solid rgba(220, 170, 90, 0.18);
    border-radius: 100px;
    padding: 0.4em 1.1em;
    cursor: pointer;
    letter-spacing: 0.06em;
    transition:
        color 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        transform 0.18s ease;
}

.filter-btn:hover {
    color: #FAF0DC;
    border-color: rgba(220, 170, 90, 0.45);
    background-color: rgba(200, 140, 50, 0.1);
    transform: translateY(-2px);
}

.filter-btn.active {
    color: #1a0f07;
    background-color: rgba(220, 170, 90, 0.85);
    border-color: rgba(220, 170, 90, 0.85);
}

#reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.review-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: rgba(255, 240, 210, 0.04);
    border: 1px solid rgba(220, 170, 90, 0.13);
    border-radius: 12px;
    padding: 1.4rem;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.4);
    border-color: rgba(220, 170, 90, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-photo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(220, 170, 90, 0.3);
    flex-shrink: 0;
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.reviewer-name {
    font-family: "OptimusPrinceps", sans-serif;
    font-size: 0.9rem;
    color: #FAF0DC;
    letter-spacing: 0.05em;
}

.reviewer-stars {
    font-size: 0.8rem;
    color: rgba(255, 200, 80, 0.85);
    letter-spacing: 0.05em;
}

.review-text {
    font-family: "CreatoDisplay", sans-serif;
    font-size: 0.85rem;
    color: rgba(240, 215, 180, 0.72);
    line-height: 1.75;
    letter-spacing: 0.02em;
    font-style: italic;
}

#cotm-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-image: url('Pictures/Picture07.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
}

#cotm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 5, 2, 0.72) 0%,
        rgba(10, 5, 2, 0.82) 100%
    );
}

#cotm-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 680px;
    gap: 1rem;
}

.cotm-eyebrow {
    font-family: "CreatoDisplay", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 210, 140, 0.55);
}

.cotm-divider {
    width: 40px;
    height: 1px;
    background: rgba(220, 170, 90, 0.4);
}

#cotm-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(220, 170, 90, 0.5);
    margin: 0.5rem 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.cotm-name {
    font-family: "OptimusPrinceps", sans-serif;
    font-size: 1.6rem;
    color: #FAF0DC;
    letter-spacing: 0.08em;
}

.cotm-stars {
    font-size: 1rem;
    color: rgba(255, 200, 80, 0.9);
    letter-spacing: 0.1em;
}

.cotm-reason {
    font-family: "CreatoDisplay", sans-serif;
    font-size: 0.88rem;
    color: rgba(240, 215, 180, 0.78);
    line-height: 1.85;
    letter-spacing: 0.02em;
    margin-top: 0.5rem;
}

.cotm-quote {
    font-family: "Recoleta", sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 220, 150, 0.85);
    font-style: italic;
    line-height: 1.65;
    letter-spacing: 0.03em;
    border-left: 2px solid rgba(220, 170, 90, 0.4);
    padding-left: 1.2rem;
    margin-top: 0.8rem;
    text-align: left;
}

#testimonials-footer {
    background-color: rgba(8, 4, 1, 0.95);
    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) {
    #reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #testimonials-main {
        margin-left: 52px;
    }

    #testimonials-body {
        padding: 2.5rem 2rem;
    }

    #testimonials-footer {
        padding: 2rem 2rem 1.2rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1.5rem;
    }

    #reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    #reviews-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;
}