/* GLOBAL STYLES */
:root {
    --primary-color: #D4AF37;
    --primary-dark: #B8941F;
    --primary-light: #F4E4B8;
    --text-dark: #15191d;
    --text-light: #737373;
    --white: #ffffff;
    --black: #000000;
    --bg-dark: #0a0a0a;
    --bg-light: #f8f8f8;
    --max-width: 1200px;
    --header-height: 80px;
    --title-font: "Playfair Display", serif;
    --body-font: "Poppins", sans-serif;
    --accent-font: "Montserrat", sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--body-font);
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

::selection {
    background-color: var(--primary-color);
    color: var(--white);
}
img {
    display: flex;
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}

@media (min-width: 768px) {
    .section__container {
        padding: 7rem 2rem;
    }
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--title-font);
    color: var(--text-dark);
    letter-spacing: -2px;
    line-height: 1.2;
    text-transform: uppercase;
}

@media (min-width: 480px) {
    .section__title {
        font-size: 3rem;
        letter-spacing: -3px;
    }
}

@media (min-width: 768px) {
    .section__title {
        font-size: 3.5rem;
        letter-spacing: -4px;
    }
}

/* NAVIGATION BAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.nav__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .nav__container {
        padding: 1.5rem 2rem;
    }
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--accent-font);
    color: var(--primary-color);
    letter-spacing: 2px;
}

.nav__logo i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.nav__links {
    display: none;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .nav__links {
        display: flex;
    }
}

.nav__links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav__links a:hover::after {
    width: 100%;
}

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

.nav__language {
    position: relative;
}

.language__toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: var(--transition);
}

.language__toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.language__toggle i {
    font-size: 1.2rem;
}

.language__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.language__dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language__option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--white);
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.language__option:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.language__option.active {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
}

.language__option .flag {
    font-size: 1.3rem;
}

.nav__favorites,
.nav__search,
.nav__toggle {
    color: var(--white);
    font-size: 1.4rem;
    padding: 0.5rem;
    border-radius: 50%;
    position: relative;
}

.nav__favorites:hover,
.nav__search:hover,
.nav__toggle:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.favorites__count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorites__count.hidden {
    display: none;
}

.nav__toggle {
    display: block;
}

@media (min-width: 768px) {
    .nav__toggle {
        display: none;
    }
}

/* Search Container */
.search__container {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background-color: rgba(10, 10, 10, 0.98);
}

.search__container.active {
    max-height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search__wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .search__wrapper {
        padding: 1.5rem 2rem;
    }
}

.search__wrapper i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.search__wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 1.1rem;
    font-family: var(--body-font);
}

.search__wrapper input::placeholder {
    color: var(--text-light);
}

.search__close {
    color: var(--white);
    font-size: 1.5rem;
    padding: 0.5rem;
}

.search__close:hover {
    color: var(--primary-color);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.7) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero__title {
    font-family: var(--title-font);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 480px) {
    .hero__title {
        font-size: 4rem;
    }
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 5.5rem;
        gap: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 7rem;
    }
}

.hero__title-line {
    color: var(--white);
    letter-spacing: -3px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .hero__title-line {
        letter-spacing: -5px;
    }
}

.hero__title-line--gold {
    color: var(--primary-color);
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3),
        2px 2px 20px rgba(0, 0, 0, 0.8);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(212, 175, 55, 0.5),
            0 0 40px rgba(212, 175, 55, 0.3),
            2px 2px 20px rgba(0, 0, 0, 0.8);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(212, 175, 55, 0.8),
            0 0 60px rgba(212, 175, 55, 0.5),
            2px 2px 20px rgba(0, 0, 0, 0.8);
    }
}

.hero__subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    font-family: var(--accent-font);
}

@media (min-width: 480px) {
    .hero__subtitle {
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: 1.25rem;
        letter-spacing: 3px;
    }
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--black);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
}

.hero__cta i {
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

.hero__scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-family: var(--accent-font);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* STATS SECTION */
.stats__section {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 4rem 0;
}

.stats__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat__item {
    padding: 1.5rem;
}

.stat__number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--title-font);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat__number {
        font-size: 4.5rem;
    }
}

.stat__label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    font-family: var(--accent-font);
}

/* FILTER BUTTONS */
.filter__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter__btn {
    padding: 0.75rem 1.75rem;
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

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

.filter__btn.active {
    background-color: var(--primary-color);
    color: var(--black);
    border-color: var(--primary-color);
}

/* BRAND LIST STYLES */
.list__container {
    position: relative;
}

.list__container .section__title {
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: 3rem;
    text-align: center;
}

.list__grid {
    display: grid;
    gap: 1.5rem;
}

.list__card {
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 12 / 5;
    transition: var(--transition);
}

.list__card.hidden {
    display: none;
}

.list__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

@media (min-width: 480px) {
    .list__card {
        border-radius: 1.5rem;
    }
}

.list__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    display: block;
}

.list__card:hover img {
    transform: scale(1.1);
}

.favorite__btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 1.4rem;
    padding: 0.75rem;
    border-radius: 50%;
    transition: var(--transition);
}

.favorite__btn:hover {
    background-color: var(--primary-color);
    color: var(--black);
    transform: scale(1.15);
}

.favorite__btn.active {
    background-color: var(--primary-color);
    color: var(--black);
}

.favorite__btn.active i::before {
    content: "\eb51"; /* ri-heart-fill */
}

.list__brand {
    position: absolute;
    inset: 0;
    padding: 2rem;
    background-image: linear-gradient(
        to bottom right,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.8)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .list__brand {
        padding: 2.5rem;
    }
}

.list__brand h4 {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--title-font);
    color: var(--white);
    letter-spacing: 1px;
}

@media (min-width: 480px) {
    .list__brand h4 {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .list__brand h4 {
        font-size: 3rem;
    }
}

.list__brand a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--accent-font);
    letter-spacing: 1px;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50px;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .list__brand a {
        font-size: 1rem;
        padding: 0.85rem 1.75rem;
    }
}

.list__brand a span {
    text-transform: uppercase;
}

.list__brand a i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.list__brand a:hover {
    background-color: var(--primary-color);
    color: var(--black);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-gold);
}

.list__brand a:hover i {
    transform: translateX(5px);
}

/* BRAND LINE SEPARATOR STYLES */
.line__container {
    padding-block: 4rem;
    overflow: hidden;
    background-color: var(--bg-light);
}

@media (min-width: 768px) {
    .line__container {
        padding-block: 5rem;
    }
}

@media (min-width: 1024px) {
    .line__container {
        padding-block: 6rem;
    }
}

.line__wrapper {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 5rem;
    animation: scroll 45s linear infinite;
}

@media (min-width: 768px) {
    .line__wrapper {
        gap: 8rem;
    }
}

.line__wrapper img {
    height: 60px;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
}

@media (min-width: 480px) {
    .line__wrapper img {
        height: 80px;
    }
}

@media (min-width: 768px) {
    .line__wrapper img {
        height: 100px;
    }
}

.line__wrapper img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@keyframes scroll {
    to {
        transform: translateX(calc(-50% - 4rem));
    }
}
/* BRAND LINK STYLES */
.link__container .section__title {
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 4rem;
    text-align: center;
}

.link__grid {
    display: grid;
    gap: 4rem 1.5rem;
}

.link__card {
    transition: var(--transition);
    padding: 1.5rem;
    border-radius: 1rem;
}

.link__card:hover {
    background-color: var(--bg-light);
    transform: translateY(-5px);
}

.link__date {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--primary-color);
}

@media (min-width: 768px) {
    .link__date {
        margin-bottom: 2.5rem;
        padding-bottom: 1.25rem;
    }
}

.link__date span {
    padding-right: 10px;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--title-font);
    line-height: 1;
    color: var(--primary-color);
    border-right: 2px solid var(--primary-color);
}

@media (min-width: 480px) {
    .link__date span {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .link__date span {
        font-size: 3.5rem;
    }
}

.link__date div p {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: var(--accent-font);
}

@media (min-width: 768px) {
    .link__date div p {
        font-size: 1rem;
    }
}

.link__card h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: var(--title-font);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.4;
    color: var(--text-dark);
}

@media (min-width: 480px) {
    .link__card h4 {
        font-size: 1.5rem;
        letter-spacing: -1px;
    }
}

@media (min-width: 768px) {
    .link__card h4 {
        font-size: 1.65rem;
        letter-spacing: -1.5px;
    }
}

.link__card p {
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .link__card p {
        margin-bottom: 2rem;
        font-size: 1rem;
        line-height: 1.8;
    }
}

.link__card img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 6/5;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.link__card img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}
/* FOOTER STYLES */
footer {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--primary-color);
}

.footer__container {
    display: flex;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__col h4 {
    margin-bottom: 1.75rem;
    font-size: 1.1rem;
    font-family: var(--title-font);
    color: var(--white);
    letter-spacing: 2px;
}

@media (min-width: 768px) {
    .footer__col h4 {
        margin-bottom: 2rem;
        font-size: 1.25rem;
    }
}

.footer__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer__socials {
        gap: 1.25rem;
    }
}

.footer__socials a {
    padding: 10px 12px;
    font-size: 1.2rem;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .footer__socials a {
        padding: 12px 14px;
        font-size: 1.3rem;
    }
}

.footer__socials a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer__bar {
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .footer__bar {
        font-size: 0.9rem;
        padding: 1.75rem 1rem;
    }
}

.footer__bar span a {
    color: var(--primary-color);
    font-weight: 600;
}

.footer__bar span a:hover {
    text-decoration: underline;
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background-color: var(--primary-color);
    color: var(--black);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
}

/* FAVORITES MODAL */
.favorites__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.favorites__modal.active {
    opacity: 1;
    visibility: visible;
}

.favorites__modal-content {
    background-color: var(--white);
    border-radius: 1.5rem;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: var(--transition);
}

.favorites__modal.active .favorites__modal-content {
    transform: scale(1);
}

.favorites__modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.favorites__modal-header h3 {
    font-family: var(--title-font);
    font-size: 1.5rem;
    color: var(--text-dark);
}

.favorites__modal-close {
    font-size: 1.75rem;
    color: var(--text-light);
    padding: 0.5rem;
}

.favorites__modal-close:hover {
    color: var(--primary-color);
}

.favorites__modal-body {
    padding: 2rem;
    overflow-y: auto;
}

.favorites__empty {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.favorite__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: var(--bg-light);
    border-radius: 0.75rem;
    transition: var(--transition);
}

.favorite__item:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.favorite__item-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-family: var(--accent-font);
}

.favorite__item-remove {
    color: var(--text-light);
    font-size: 1.3rem;
    padding: 0.5rem;
}

.favorite__item-remove:hover {
    color: #e74c3c;
}

/* RESPONSIVE DESIGN */
/* Small devices (landscape phones, 480px and up) */
@media (min-width: 480px) {
    .list__container .section__title,
    .link__container .section__title {
        margin-bottom: 3rem;
    }
}

/* Medium devices (tablets, 600px and up) */
@media (min-width: 600px) {
    .list__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .link__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1.5rem;
    }
}

/* Large devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .list__container .section__title,
    .link__container .section__title {
        margin-bottom: 4rem;
    }
    
    .list__grid {
        gap: 2rem;
    }
}

/* Large tablets and small desktops (992px and up) */
@media (min-width: 992px) {
    .link__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem 2rem;
    }
}

/* Desktops (1024px and up) */
@media (min-width: 1024px) {
    .list__grid {
        gap: 2rem;
    }
    
    .list__brand {
        padding: 3rem;
    }
}

/* Large desktops (1200px and up) */
@media (min-width: 1200px) {
    .list__brand {
        padding: 3.5rem;
    }
}

/* Extra small devices - mobile portrait (max 374px) */
@media (max-width: 374px) {
    .section__title {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    
    .list__brand h4 {
        font-size: 1.75rem;
    }
    
    .link__card h4 {
        font-size: 1.15rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
}

/* Mobile landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .section__container {
        padding: 3rem 1rem;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .list__container .section__title,
    .link__container .section__title {
        margin-bottom: 2rem;
    }
    
    .line__container {
        padding-block: 2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero,
    .back-to-top,
    .favorites__modal,
    .filter__container {
        display: none;
    }
    
    .section__container {
        padding: 2rem 0;
    }
}