/* === GLOBAL & ROOT VARIABLES === */
:root {
    --pGrey: rgb(114, 114, 114);
    --darkGrey: rgb(75, 75, 75);
    --darkestGrey: rgb(20, 20, 20);
    --lightGrey: rgb(177, 177, 177);
    --pFont: "Raleway", sans-serif;
    --primary-color: #000;
    --secondary-color: #6c757d;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --success-color: #198754;
    --danger-color: #c0392b;
}

/* === BASE & RESET STYLES === */
html {
    font-size: 62.5%;
    box-sizing: border-box;
    scroll-behavior: smooth !important;
}

body {
    font-family: var(--pFont);
    font-size: 1.6rem;
    margin: 0;
    background-color: var(--darkestGrey); /* Default for home page */
    background-image: url(/imgs/BG.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    scrollbar-width: none;
}

    body::-webkit-scrollbar {
        display: none;
    }

*,
:after,
:before {
    box-sizing: inherit;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Styles for all pages except the home page */
body.internal-page {
    background-image: none !important;
    background-color: var(--background-light) !important;
    color: var(--darkestGrey);
}

/* === REUSABLE COMPONENTS === */

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--background-white);
}

    .btn--primary:hover {
        background-color: #333;
    }

.btn--danger {
    background-color: var(--danger-color);
    color: var(--background-white);
}

    .btn--danger:hover {
        background-color: #a93226;
    }

/* --- Forms --- */
.form-group {
    margin-bottom: 2rem;
}

    .form-group label {
        display: block;
        margin-bottom: .8rem;
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--secondary-color);
    }

.form-control {
    width: 100%;
    padding: 1.2rem;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: var(--darkestGrey);
    font-size: 1.6rem;
}

/* Auth form specific styles */
.auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.auth-form {
    width: 100%;
    max-width: 450px;
    background-color: var(--background-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .auth-form h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
        color: var(--darkestGrey);
        text-transform: uppercase;
    }

    .auth-form .text-danger {
        color: var(--danger-color);
    }

    .auth-form a {
        color: var(--primary-color);
    }

/* --- Tables --- */
.styled-table {
    width: 100%;
    background-color: var(--background-white);
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .styled-table th, .styled-table td {
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    .styled-table th {
        background-color: #f2f2f2;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 1.2rem;
    }

    .styled-table tbody tr:hover {
        background-color: #f9f9f9;
    }

/* === LAYOUT: HEADER === */
header {
    position: fixed;
    width: 100%;
    height: 6rem;
    z-index: 1000;
    background: linear-gradient(274deg, #a2a2a2 30%, #fff 100%);
    display: flex;
    justify-content: center;
}

.internal-page header {
    background: var(--background-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    width: 100%;
    max-width: 1300px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.header-logo .tittle {
    cursor: pointer;
    font-size: 3.5rem;
    background-color: #000;
    background-image: linear-gradient(-75deg, transparent 0, transparent 5%, rgba(255, 255, 255, 0.5) 5%, rgba(255, 255, 255, 0.5) 10%, transparent 10%, transparent 100%);
    background-size: 200% 100%;
    animation: reflection 10s ease-in-out infinite;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.internal-page .header-logo .tittle {
    background-color: #333; /* Dark text for light background */
}

.header-logo .tittle span {
    font-weight: 400;
}

.nav-main nav ul {
    display: flex;
    gap: 3rem;
}

.nav-main a {
    color: var(--darkGrey);
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: 700;
    transition: color 0.3s;
}

    .nav-main a:hover {
        color: var(--primary-color);
    }

.header-auth {
    display: flex;
    align-items: center;
    gap: 2rem;
}

    .header-auth .auth-link {
        color: var(--darkGrey);
        font-weight: 700;
        font-size: 1.5rem;
        transition: color 0.3s;
    }

        .header-auth .auth-link:hover {
            color: var(--primary-color);
        }

    .header-auth .register-btn {
        background-color: var(--darkGrey);
        color: white;
        padding: 8px 15px;
        border-radius: 5px;
    }

        .header-auth .register-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }

.cart-icon-link {
    position: relative;
    font-size: 1.8rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background-color: var(--danger-color);
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
}

@keyframes reflection {
    20%, 100% {
        background-position: -120% 0;
    }
}

/* === LAYOUT: FOOTER & ABOUT US === */
.aboutUsTop-cont {
    background-color: #141414;
    padding: 2.5rem 0;
}

.aboutUsTop-text-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.aboutUsTop-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--lightGrey);
}

    .aboutUsTop-item .icon {
        font-size: 3rem;
        color: var(--pGrey);
    }

    .aboutUsTop-item .text h2 {
        font-size: 1.5rem;
        text-transform: uppercase;
    }

/* ... (Keep other footer styles if necessary, but simplify them) ... */

/* === PAGE SPECIFIC STYLES === */

/* --- Home Page: Hero Section --- */
.hero-parallax {
    margin-top: 6rem;
    width: 100%;
    height: 91vh;
    position: absolute;
    overflow: hidden;
}

.snk {
    width: 100%;
    height: 100%;
    background: url(/imgs/parallax/snk.webp) center/cover;
    position: absolute;
}

.snkbg {
    width: 100%;
    height: 100%;
    background: url(/imgs/parallax/snkbg.webp) center/cover;
}

.hero-cont {
    width: 100%;
    height: 97vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heroText {
    color: #cfcfcf;
    user-select: none;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 4rem;
    border-radius: 15px;
    max-width: 600px;
}

    .heroText h2 {
        font-size: 3rem;
        text-transform: uppercase;
    }

    .heroText p {
        font-size: 1.8rem;
        margin: 2rem 0;
    }

    .heroText .cta {
        font-size: 1.8rem;
        padding: 1rem 2.5rem;
        border: 2px solid #fff;
        border-radius: 30px;
        color: #fff;
        transition: all 0.3s;
    }

        .heroText .cta:hover {
            background-color: #fff;
            color: #000;
        }
/* (Simplified hero text animation if needed) */

/* --- Product List Page --- */
.page-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10rem 2rem 4rem; /* Add padding-top to account for fixed header */
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .page-header h1 {
        font-size: 4rem;
        color: var(--darkestGrey);
        text-transform: uppercase;
    }

.filters-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
}

.search-box input {
    min-width: 300px;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.category-filter {
    display: flex;
    gap: 1rem;
}

    .category-filter a {
        padding: 0.8rem 1.5rem;
        color: var(--darkGrey);
        border-radius: 20px;
        background-color: #f1f1f1;
        font-weight: 600;
    }

        .category-filter a.active, .category-filter a:hover {
            background-color: var(--primary-color);
            color: var(--background-white);
        }

/* --- Product Card --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
}

.product-card {
    background-color: var(--background-white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    }

.product-card__image-container {
    width: 100%;
    padding-top: 100%;
    position: relative;
}

.product-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card__info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.product-card__category {
    font-size: 1.2rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-card__name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

    .product-card__name a {
        color: var(--darkestGrey);
    }

.product-card__footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.product-card__price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-card .btn {
    padding: 1rem 2rem;
    font-size: 1.4rem;
}

/* --- Notifications (AJAX Cart) --- */
#notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 2000;
}

.notification {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    width: 300px;
}

    .notification.success {
        background-color: var(--success-color);
    }

    .notification.error {
        background-color: var(--danger-color);
    }

/* --- Cart Page --- */
.cart-total {
    text-align: right;
    font-size: 2rem;
    margin-top: 2rem;
}

.cart-checkout-btn {
    text-align: right;
    margin-top: 2rem;
}

.quantity-control {
    display: flex;
    align-items: center;
}

.quantity-btn {
    background: #eee;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 1.8rem;
}

.quantity-display {
    padding: 0 15px;
    font-weight: 700;
}

/* --- Checkout Page --- */
.checkout-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--background-white);
    padding: 3rem;
    border-radius: 8px;
}

    .checkout-container h2 {
        text-align: center;
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .checkout-container hr {
        margin: 2rem 0;
        border-color: #eee;
    }

    .checkout-container .btn {
        width: 100%;
    }

/* === RESPONSIVE STYLES === */
@media screen and (max-width: 850px) {
    .nav-main {
        display: none;
    }
    /* Simplified for this example, can be replaced with hamburger menu logic */
    .menu-btn {
        display: block;
        font-size: 2.5rem;
        cursor: pointer;
    }

    .filters-container {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box input {
        min-width: 100%;
    }
}
/* === ENHANCED FOOTER & FEATURES BAR === */
.features-bar {
    background-color: #1f1f1f;
    padding: 2rem 0;
    color: var(--lightGrey);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
}

    .feature-item i {
        font-size: 2.5rem;
        color: var(--pGrey);
    }

.site-footer {
    background-color: #141414;
    color: var(--lightGrey);
    padding: 4rem 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #333;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

    .footer-section h4 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        color: #fff;
    }

    .footer-section p, .footer-section li {
        margin-bottom: 1rem;
        color: var(--pGrey);
    }

    .footer-section a {
        color: var(--pGrey);
        transition: color 0.3s;
    }

        .footer-section a:hover {
            color: #fff;
        }

.social-icons {
    display: flex;
    gap: 1.5rem;
}

    .social-icons a {
        font-size: 2.4rem;
        color: var(--pGrey);
    }

        .social-icons a:hover {
            color: #fff;
        }

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    font-size: 1.3rem;
    color: var(--pGrey);
}

/* === RESPONSIVE: MOBILE MENU LOGIC === */
@media screen and (max-width: 850px) {
    .nav-container {
        padding: 0 2rem;
    }

    .menu-btn {
        display: block;
        font-size: 2.5rem;
        cursor: pointer;
        color: var(--darkGrey);
        z-index: 1001; /* Above the menu */
    }

    .internal-page .menu-btn {
        color: var(--darkGrey);
    }

    .nav-main {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background-color: rgba(20, 20, 20, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }

        .nav-main.active {
            transform: translateX(0);
        }

        .nav-main .nav-links {
            flex-direction: column;
            text-align: center;
            gap: 4rem;
        }

            .nav-main .nav-links a {
                color: #fff;
                font-size: 2rem;
            }

    .header-auth {
        /* Hide text links on mobile, keep cart icon */
        gap: 0;
    }

        .header-auth .auth-link:not(.cart-icon-link), .header-auth .register-btn {
            display: none;
        }
}
/* === PRODUCT DETAILS PAGE === */

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background-color: var(--background-white);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 5rem;
}

.details-image-container img {
    width: 100%;
    border-radius: 8px;
}

.details-info {
    display: flex;
    flex-direction: column;
}

.details-category {
    font-size: 1.4rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.details-name {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.details-description {
    font-size: 1.6rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.details-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.details-cart-form {
    margin-top: auto; /* Push form to the bottom */
}

.btn--full-width {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
}

/* --- REVIEWS SECTION --- */

.reviews-section {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 3rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 1.5rem;
}

.review-form-container {
    background-color: var(--background-white);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

    .review-form-container h4 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    font-size: 2.5rem;
}

    .star-rating input {
        display: none;
    }

    .star-rating label {
        color: #ddd;
        cursor: pointer;
        transition: color 0.2s;
    }

    .star-rating input:checked ~ label,
    .star-rating:not(:checked) > label:hover,
    .star-rating:not(:checked) > label:hover ~ label {
        color: #ffdd44;
    }

.login-prompt {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.reviews-list {
    margin-top: 3rem;
}

.review-item {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #eee;
}

    .review-item:hover {
        border-left-color: var(--primary-color);
    }

.review-rating {
    color: #ffdd44;
    margin-bottom: 1rem;
}

.review-comment {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.review-meta {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

/* --- RESPONSIVE FOR DETAILS PAGE --- */
@media screen and (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }

    .details-name {
        font-size: 2.8rem;
    }
}
/* === CART, CHECKOUT & CONFIRMATION PAGES === */

/* --- Cart Page --- */
.cart-product-info {
    display: flex;
    align-items: center;
}

.cart-product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1.5rem;
}

.cart-product-name {
    font-weight: 600;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: fit-content;
}

.quantity-btn {
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--pGrey);
}

.quantity-display {
    padding: 0 10px;
    font-weight: 700;
    font-size: 1.6rem;
}

.cart-item-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-remove {
    background: transparent;
    border: none;
    color: var(--danger-color);
    font-size: 2.2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0 10px;
}

.cart-summary {
    margin-top: 3rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cart-total {
    font-size: 2.2rem;
    font-weight: 600;
}

.empty-cart-message {
    text-align: center;
    padding: 5rem 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
}

    .empty-cart-message p {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

/* --- Checkout Page --- */
.checkout-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--background-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.checkout-summary-table {
    box-shadow: none;
    margin-bottom: 2rem;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    font-size: 2rem;
    font-weight: 700;
    padding: 2rem 0;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
}

.checkout-form {
    margin-top: 3rem;
}

/* --- Confirmation Page --- */
.confirmation-box {
    text-align: center;
    max-width: 600px;
    margin: 3rem auto;
    padding: 4rem;
    background-color: var(--background-white);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.confirmation-icon {
    font-size: 6rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.confirmation-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.confirmation-message {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.confirmation-order-id {
    margin-bottom: 3rem;
    font-size: 1.6rem;
}

/* --- Responsive for Cart Table --- */
@media (max-width: 768px) {
    .cart-table thead {
        display: none; /* Hide table head */
    }

    .cart-table, .cart-table tbody, .cart-table tr, .cart-table td {
        display: block;
        width: 100%;
    }

        .cart-table tr {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #eee;
        }

        .cart-table td {
            text-align: right;
            padding-left: 50%;
            position: relative;
            border-bottom: none;
        }

            .cart-table td::before {
                content: attr(data-label);
                position: absolute;
                left: 15px;
                width: 45%;
                padding-right: 10px;
                font-weight: bold;
                text-align: left;
            }

            .cart-table td:first-child {
                text-align: left;
                padding-left: 0;
            }

                .cart-table td:first-child::before {
                    display: none;
                }
    /* Add data-label attributes in your cshtml if you want this advanced responsiveness */
    /* Or simplify by just letting items wrap */
    .cart-summary {
        justify-content: center;
        flex-direction: column;
    }
}
/* === ADMIN PANEL STYLES === */

.admin-dashboard .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background-color: var(--background-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

    .stat-card h4 {
        font-size: 1.6rem;
        color: var(--secondary-color);
        margin-bottom: 0.5rem;
        text-transform: uppercase;
    }

    .stat-card p {
        font-size: 2.8rem;
        font-weight: 700;
    }

    .stat-card i {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 4rem;
        color: rgba(0,0,0,0.07);
    }

.admin-nav {
    margin-bottom: 3rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.chart-container {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

    .chart-container h3 {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 2rem;
    }

.admin-form-container {
    max-width: 800px;
    margin: auto;
    background-color: var(--background-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.btn-link {
    color: var(--darkGrey);
    text-decoration: underline;
    margin-left: 1.5rem;
}

.delete-confirmation .confirmation-icon {
    color: var(--danger-color);
}

.confirmation-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
/* === HOMEPAGE SPECIFIC STYLES (RESTORED) === */

/* Ensure the body of the home page has the dark background */
body.home-page {
    background-image: url(/imgs/BG.webp);
    background-color: var(--darkestGrey);
}

/* --- Hero Parallax Section --- */
.hero-parallax {
    margin-top: 6rem;
    width: 100%;
    height: 91vh;
    background-color: #000;
    display: block;
    position: absolute;
    overflow: hidden;
}

.snk {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/imgs/parallax/snk.webp);
    background-size: cover;
    background-position: center;
    position: absolute;
}

.snkbg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/imgs/parallax/snkbg.webp);
    background-size: cover;
    background-position: center;
}

.hero-cont {
    width: 100%;
    height: 97vh;
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
}

.hero {
    width: 100%;
    height: 100%;
}

/* --- Hero Text & Animations --- */
.heroText-cont {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: rgba(0, 0, 0, 0.25);
}

.heroText {
    height: 100%;
    width: 100%;
    color: #cfcfcf;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.hText-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    width: 55%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 10px; /* Simplified border-radius */
    align-items: center;
}

.tbs-cont {
    width: 33vh;
    height: 100%;
    white-space: nowrap;
    display: flex;
    justify-content: center;
}

.scrollText-cont {
    width: 100%;
    height: 2.5rem;
    display: grid;
    position: relative;
    overflow: hidden;
}

.scrollText {
    display: grid;
}

    .scrollText span {
        display: block;
        height: 100%;
        animation: scrollText 12s infinite;
    }

.heroText-cont h2 {
    text-transform: uppercase;
}

.scrollText h2 {
    color: #fff;
}

.hText-p {
    padding: 1.5rem 2rem;
}

.hText-main {
    padding: 0.3rem 2rem;
}

.cta {
    transform: scale(1.2);
    font-size: 1.7rem;
    padding: 0.5rem 1rem;
    border: 1px solid #fff;
    border-radius: 19px;
    color: #a5a5a5;
    transition: all 0.5s;
    cursor: pointer;
}

    .cta:hover {
        transform: scale(1.15);
        color: #fff;
        background-color: rgba(255, 255, 255, 0.2);
    }

/* --- Notice Bar --- */
.noticeBar {
    width: 100%;
    height: 3rem;
    background-color: #000;
    display: flex;
    justify-content: space-evenly;
    overflow-x: hidden;
    align-items: center;
    white-space: nowrap;
    text-align: center;
    z-index: 2;
}

    .noticeBar h2 {
        position: relative;
        text-transform: uppercase;
        color: #fff;
        padding: 0.2rem;
        cursor: default;
        animation: textFlash 10s ease-in-out infinite;
        font-size: 80%;
        opacity: 0;
        margin: 0 2px;
    }

#tx0 {
    animation-delay: 0s;
}

#tx1 {
    animation-delay: 2s;
}

#tx2 {
    animation-delay: 3s;
}

#tx3 {
    animation-delay: 2s;
}

#tx4 {
    animation-delay: 0s;
}

/* --- Keyframe Animations for Homepage --- */
@keyframes scrollText {
    0% {
        transform: translateY(0);
    }

    4% {
        transform: translateY(-112%);
    }

    7%, 15% {
        transform: translateY(-100%);
    }

    19% {
        transform: translateY(-212%);
    }

    22%, 30% {
        transform: translateY(-200%);
    }

    34% {
        transform: translateY(-312%);
    }

    37%, 45% {
        transform: translateY(-300%);
    }

    49% {
        transform: translateY(-412%);
    }

    52%, 100% {
        transform: translateY(-400%);
    }
    /* Simplified loop */
}

@keyframes textFlash {
    0%, 100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}
/* === ULTIMATE HOMEPAGE ENHANCEMENT === */

/* --- Transparent Glassmorphism Header for Homepage --- */
header.home-header {
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

    header.home-header.scrolled {
        background-color: rgba(20, 20, 20, 0.85); /* Dark background on scroll */
        border-bottom-color: transparent;
    }

/* Make header links white on homepage */
.home-page header .nav-main a,
.home-page header .auth-link,
.home-page header .menu-btn {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.home-page header .register-btn {
    background-color: #fff;
    color: #000;
}

    .home-page header .register-btn:hover {
        background-color: #eee;
    }

/* --- New Hero Section Design --- */



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

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

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.scroll-text-wrapper {
    height: clamp(3.5rem, 8vw, 6.5rem);
    overflow: hidden;
    width: 450px; /* EDITED: This is the fix for the animation glitch */
    /* Adjust 450px if needed to fit the longest word */
}
.scroll-text {
    animation: heroScrollText 8s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}

    .scroll-text span {
        display: block;
        color: #ffdd44; /* Highlight color */
    }

@keyframes heroScrollText {
    0%, 20% {
        transform: translateY(0%);
    }

    25%, 45% {
        transform: translateY(-25%);
    }

    50%, 70% {
        transform: translateY(-50%);
    }

    75%, 95% {
        transform: translateY(-75%);
    }

    100% {
        transform: translateY(-100%);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    max-width: 600px;
    margin: 2rem auto 3rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 1.5s 0.5s ease-out forwards;
}

.hero-cta {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    transform: scale(0.8);
    opacity: 0;
    /* EDITED: We are adding two animations */
    /* 1. popIn: happens once at the start */
    /* 2. pulseGlow: starts after 2.5s and loops forever */
    animation: popIn 0.8s ease-out 1.5s forwards, pulseGlow 2.5s ease-in-out infinite 2.5s;
    transition: all 0.3s ease;
}

/* --- Featured Products Section --- */
.featured-products-section {
    background-color: #141414;
    padding: 6rem 0;
    position: relative;
}

.section-title-dark {
    font-size: 3.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

/* Use the same product grid but on a dark background, cards will pop */
.featured-products-section .product-card {
    background-color: #222; /* Darker card for dark background */
    border: 1px solid #333;
}

.featured-products-section .product-card__category {
    color: var(--pGrey);
}

.featured-products-section .product-card__name a {
    color: #fff;
}

/* --- Restore Parallax Divs --- */
.hero-parallax, .snk, .snkbg {
    display: block; /* Ensure they are visible */
}

/* Cleanup old hero styles to avoid conflict */
.hero-cont, .heroText, .hText-cont {
    display: none; /* Hide all old hero elements */
}
/* === FINAL & ACCURATE HOMEPAGE STYLING (V3) === */

/* --- Base Header Structure --- */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px; /* Wider container for a premium feel */
    margin: 0 auto;
    padding: 0 2rem;
    height: 70px; /* Slightly taller header */
}

.header-logo .tittle {
    font-size: 2.8rem;
    font-weight: 800;
}

    .header-logo .tittle span {
        font-weight: 600;
    }

.nav-and-auth {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-main .nav-links {
    display: flex;
    gap: 2rem;
}

.nav-main a, .header-auth a {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.3rem;
}

/* --- 1. Homepage Header (Glass Effect) --- */
header.home-header {
    background: rgba(17, 17, 17, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    header.home-header.scrolled {
        background-color: rgba(10, 10, 10, 0.85);
    }

.home-page header .tittle,
.home-page header .nav-main a,
.home-page header .auth-link {
    color: #fff;
}

/* --- 2. Internal Pages Header (Solid) --- */
header.internal-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.internal-page header .tittle,
.internal-page header .nav-main a,
.internal-page header .auth-link {
    color: #000;
}

.internal-page header .register-btn {
    background: #000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
}

    .internal-page header .register-btn:hover {
        background: #333;
    }

/* --- 3. Hero Section (Pixel Perfect) --- */


.hero-title {
    font-size: 6rem; /* Large, impactful font */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

    .hero-title .highlight {
        color: #ffdd44; /* The yellow color from the image */
    }

.hero-subtitle {
    font-size: 1.8rem;
    max-width: 550px;
    margin: 1.5rem auto 2.5rem;
    line-height: 1.6;
    color: #ccc;
}

/* Ensure parallax is active */
.hero-parallax {
    display: block;
}
/* === THE GREAT HOMEPAGE REDESIGN (V4) === */

/* --- 1. The Solid, Animated Header --- */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease;
    /* Animation: Slide in from top on page load */
    transform: translateY(-100%);
    animation: slideDown 1s ease-out 0.5s forwards;
}

@keyframes slideDown {
    to {
        transform: translateY(0);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 70px;
}

.header-logo {
    flex-shrink: 0;
}

    .header-logo .tittle {
        font-size: 2.8rem;
        font-weight: 800;
    }

        .header-logo .tittle span {
            font-weight: 600;
        }

.nav-main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

    .nav-links a {
        position: relative;
        padding: 5px 0;
    }

        .nav-links a::after { /* Cool underline animation */
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--highlight-color, #fff);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
        }

        .nav-links a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

.header-auth {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.auth-link {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.3rem;
}

/* Homepage Header Style */
header.home-header {
    background-color: #111; /* Solid dark color */
    border-bottom: 1px solid #333;
}

.home-page header .tittle,
.home-page header .nav-main a,
.home-page header .auth-link {
    color: #fff;
}

.home-page header .register-btn {
    background-color: #fff;
    color: #000;
    padding: 8px 15px;
    border-radius: 5px;
}

/* Internal Pages Header Style */
header.internal-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.internal-page header .tittle,
.internal-page header .nav-main a,
.internal-page header .auth-link {
    color: #000;
}

.internal-page header .nav-links a::after {
    background-color: #000;
}

.internal-page header .register-btn {
    background: #000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
}

/* --- 2. The Cinematic, Animated Hero Section --- */

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Animation */
    transform: translateY(50px);
    opacity: 0;
    animation: slideInUp 1s ease-out 1s forwards;
}

    .hero-title .highlight {
        color: #ffdd44;
    }

.hero-subtitle {
    font-size: 1.8rem;
    max-width: 550px;
    margin: 1.5rem auto 2.5rem;
    line-height: 1.6;
    color: #ccc;
    /* Animation */
    transform: translateY(50px);
    opacity: 0;
    animation: slideInUp 1s ease-out 1.2s forwards;
}

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

@keyframes popIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- 3. Restored Footer --- */
.site-footer {
    background-color: #141414;
    color: var(--lightGrey);
    padding: 4rem 2rem;
    border-top: 1px solid #333;
}
/* ... (Add the full footer CSS from the previous response if it was deleted) ... */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

    .footer-section h4 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        color: #fff;
    }

    .footer-section p, .footer-section li {
        margin-bottom: 1rem;
        color: #888;
        font-size: 1.4rem;
    }

    .footer-section a {
        color: #888;
        transition: color 0.3s;
    }

        .footer-section a:hover {
            color: #fff;
        }

.social-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid #333;
    font-size: 1.3rem;
    color: #888;
}
/* Find this existing class */
.featured-products-section {
    background-color: #141414;
    padding: 6rem 0;
    position: relative;
    /* <-- THIS IS THE FIX. Adjust 8rem if you want more or less space */
}
/* === ANIMATED MARQUEE SEPARATOR BAR === */

.scrolling-text-bar {
    background-color: #000; /* Solid black background */
    color: #fff;
    padding: 1.5rem 0;
    white-space: nowrap; /* Prevents text from wrapping */
    overflow: hidden; /* Hides the text that is outside the container */
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.marquee-content {
    display: flex; /* Aligns the two text blocks side-by-side */
    /* The animation magic happens here */
    animation: scroll-left 30s linear infinite;
}

.marquee-text {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
}

    .marquee-text span {
        margin: 0 2rem; /* Spacing between phrases */
    }

    .marquee-text i {
        color: #ffdd44; /* Use the same highlight yellow color */
        font-size: 1.2rem;
    }

/* === DYNAMIC FADING TEXT SEPARATOR BAR === */
/* === FINAL MOVING BAR - CORRECTLY POSITIONED === */

/* 1. THE FIX FOR THE GRAY SPACE */
/* === FINAL PULSING SEPARATOR BAR (THE CORRECT ONE) === */

/* First, ensure the hero-container can act as an anchor */
/* Find this rule */
.hero-container {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    /* EDITED: This is the definitive fix for positioning */
    align-items: flex-start; /* Step 1: Align to the top */
    padding-top: 25vh; /* Step 2: Push it down by 25% of the screen height */
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-left: 2rem;
    padding-right: 2rem;
    overflow: hidden;
}

/* EDITED: We no longer need the transform on hero-content */
.hero-content {
    animation: fadeIn 1.5s ease-out forwards;
   
}
.pulsing-separator-bar {
    /* Positioning it at the very bottom of the hero */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Styling */
    background-color: #000;
    padding: 2rem 0;
    border-top: 1px solid #333;
    /* This makes the 5 phrases spread out */
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Good practice for small screens */
    gap: 2rem;
}

    .pulsing-separator-bar span {
        color: #fff;
        font-size: 1.3rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        /* Apply the animation we created earlier */
        animation: fadeInGlowOut 6s ease-in-out infinite;
    }

        /* THE MAGIC: Staggered animation delays for each of the 5 phrases */
        .pulsing-separator-bar span:nth-child(1) {
            animation-delay: 0s;
        }

        .pulsing-separator-bar span:nth-child(2) {
            animation-delay: 1.2s;
        }

        .pulsing-separator-bar span:nth-child(3) {
            animation-delay: 2.4s;
        }

        .pulsing-separator-bar span:nth-child(4) {
            animation-delay: 3.6s;
        }

        .pulsing-separator-bar span:nth-child(5) {
            animation-delay: 4.8s;
        }

/* The Keyframes that make the text appear, glow, and disappear */
/* (If this is already in your file from the footer, you don't need to add it again) */
/* === THE NEW COLORFUL GLOWING ANIMATION === */
@keyframes fadeInGlowOut {
    /* Starts invisible */
    0%, 100% {
        opacity: 0;
        color: #fff; /* Reset color when invisible */
        text-shadow: none;
    }
    /* 1. Fades in with a white color */
    25% {
        opacity: 1;
        color: #fff;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    }
    /* 2. Transitions to the main highlight color */
    50% {
        opacity: 1;
        color: #ffdd44; /* THE TEXT BECOMES YELLOW */
        text-shadow: 0 0 15px rgba(255, 221, 68, 0.8); /* Strong yellow glow */
    }
    /* 3. Transitions to the secondary highlight color */
    75% {
        opacity: 1;
        color: #00aaff; /* THE TEXT BECOMES BLUE */
        text-shadow: 0 0 15px rgba(0, 170, 255, 0.8); /* Strong blue glow */
    }
    /* === FINAL OVERRIDE CODE FOR HEADER, COLOR, & SMOOTH SCROLL === */
    /* This code is written with high specificity to override old styles without needing to delete them. */
    /* === FINAL OVERRIDE CODE FOR HEADER, COLOR, & SMOOTH SCROLL === */
    /* This code is written with high specificity to override old styles without needing to delete them. */
    /* 1. THE SMOOTH SCROLL ANIMATION */
    /* === FINAL ULTIMATE OVERRIDE CODE (V2) === */
    /* This code uses !important to force application over any old styles. */
    /* 1. THE SMOOTH SCROLL ANIMATION */
    /* === FINAL & DEFINITIVE FIX FOR HEADER LAYOUT & LOGO COLOR === */
    /* This code uses a robust centering method and will override all previous styles. */
    /* --- 1. SMOOTH SCROLL (To be safe) --- */
    html {
        scroll-behavior: smooth !important;
    }
    /* --- 2. HEADER LAYOUT (THE ABSOLUTE CENTERING METHOD) --- */
    /* First, make the header container a positioning anchor */
    header .nav-container {
        position: relative !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    /* Second, pull the navigation out of the flow and center it perfectly */
    header .nav-main {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    /* --- 3. LOGO COLOR FIX (This part is crucial) --- */
    /* First, we MUST cancel the old animation that prevents normal coloring */
    header .tittle {
        background: none !important;
        -webkit-text-fill-color: initial !important; /* This lets the 'color' property work again */
        animation: none !important;
    }
    /* Now, we apply the correct colors based on the page */
    body.home-page header .tittle {
        color: #ffffff !important; /* "Sole" becomes white */
    }

    body.home-page header .tittle span {
        color: #888888 !important; /* "Verse" becomes grey */
    }

    body.internal-page header .tittle {
        color: #000000 !important; /* "Sole" becomes black */
    }

    body.internal-page header .tittle span {
        color: #777777 !important; /* "Verse" becomes grey */
    }
    /* === RESTORED HERO TEXT ANIMATION === */
    /* This makes the main title a flex container */
    .hero-title {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem; /* Space between "Step Into" and the animated word */
    }
    /* This is the container for the scrolling words */
  
    /* The animation itself */
    .scroll-text {
        animation: heroScrollText 10s cubic-bezier(0.7, 0, 0.3, 1) infinite;
    }

    .scroll-text span {
        display: block;
        /* The animation will change the color */
    }
    /* The keyframes for scrolling and color changing */
    @keyframes heroScrollText {
        0%

{
    transform: translateY(0%);
    color: #ffdd44;
}
/* Style */
20% {
    transform: translateY(0%);
    color: #ffdd44;
}

25% {
    transform: translateY(-25%);
    color: #00aaff;
}
/* Comfort */
45% {
    transform: translateY(-25%);
    color: #00aaff;
}

50% {
    transform: translateY(-50%);
    color: #ff5555;
}
/* Greatness */
70% {
    transform: translateY(-50%);
    color: #ff5555;
}

75% {
    transform: translateY(-75%);
    color: #ffffff;
}
/* Future */
95% {
    transform: translateY(-75%);
    color: #ffffff;
}

100% {
    transform: translateY(-100%);
    color: #ffdd44;
}
/* Back to Style */
}
/* === NEW TYPEWRITER ANIMATION STYLES === */

.hero-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

/* This span will hold the animated word */
.dynamic-word {
    /* This creates the blinking cursor effect */
    border-right: 4px solid rgba(255, 255, 255, 0.75);
    animation: blinkCursor 0.7s steps(40, start) infinite;
    white-space: nowrap; /* Prevents text from wrapping during animation */
    min-width: 1ch; /* Ensures the cursor is visible even when empty */
}

/* The blinking cursor animation */

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

    to {
        opacity: 1;
        /* EDITED: This will move the content up at the end of the animation */
        transform: translateY(-8vh);
    }
}
/* The keyframes for the new button animation */
@keyframes pulseGlow {
    0% {
        transform: scale(1.0);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }

    50% {
        transform: scale(1.05); /* Slightly bigger */
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.5), /* Brighter glow */
        0 0 35px rgba(255, 221, 68, 0.3); /* Hint of yellow glow */
    }

    100% {
        transform: scale(1.0);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
}
/* === ADMIN PANEL LINK & BUTTON CONSISTENCY FIX === */

/* Style for secondary buttons like "Back to Dashboard" */


/* Spacing for Edit | Delete links */
.action-links a {
    margin: 0 5px;
}

/* Spacing for form buttons like Save / Back to List */
.form-actions {
 === FINAL FIX FOR ADMIN PANEL BUTTONS & LINKS === */

/* Style for secondary buttons like "Back to Dashboard" */
.btn--secondary {
    background-color: #e9ecef;
    color: #495057;
    padding: 8px 15px;
    font-size: 1.4rem;
    text-decoration: none; /* Ensure no underline */
}

    .btn--secondary:hover {
        background-color: #dee2e6;
        color: #495057;
    }

/* Style for action links like "Edit" and "Back to List" */
.btn-link {
    font-weight: 600;
    text-decoration: none !important; /* Force remove underline */
    color: #0d6efd; /* A standard blue color for links */
    margin: 0 5px; /* Add some space */
}

    .btn-link:hover {
        text-decoration: underline !important;
    }

/* Special color for "Delete" link */
.btn-link--danger {
    color: var(--danger-color) !important; /* Use the red color we defined */
}

/* Spacing for form buttons like Save / Back to List */
.form-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}
/* === FINAL FIX FOR ADMIN PANEL LINKS === */

/* 1. Style for action links like "Edit" */
.action-links a.btn-link {
    font-weight: 600;
    text-decoration: none;
    color: #0d6efd; /* A standard, bright blue for links */
    margin: 0 8px; /* Adds spacing between Edit and Delete */
}

    .action-links a.btn-link:hover {
        text-decoration: underline;
    }

/* 2. Style for the "Delete" link */
.action-links a.btn-link--danger {
    color: var(--danger-color); /* The red color */
}

/* 3. Style for navigation links like "Back to Dashboard" */
.admin-nav a {
    text-decoration: none;
    font-weight: 600;
    color: #495057; /* A professional dark grey */
    border: 1px solid #dee2e6;
    padding: 8px 15px;
    border-radius: 5px;
    background-color: #f8f9fa;
    transition: all 0.2s ease;
}

    .admin-nav a:hover {
        background-color: #e9ecef;
    }

/* 4. Style for "Back to List" link in forms */
.form-actions a.btn-link {
    text-decoration: none;
    font-weight: 600;
    color: #6c757d; /* A secondary grey color */
}

    .form-actions a.btn-link:hover {
        text-decoration: underline;
    }