/* #region ROOT */

:root {
    --primary-color: #e9530d; /* RGB(233, 83, 13) - Vibrant orange/red */
    --secondary-color: #b39123; /* RGB(179, 145, 35) - Gold/amber */
    --background-color: #000000; /* RGB(0, 0, 0) - Black */

    --accent-color: #ff6a2c; /* Lighter version of primary */
    --text-color: #e0e0e0; /* Light text for dark background */
    --light-text: #a0a0a0; /* Secondary text color */
    --dark-background: #0a0a0a; /* Slightly lighter than background */
    --darker-background: #000000; /* Same as background for footer */
    --card-background: rgba(20, 20, 20, 0.7); /* Translucent card background */
    --border-color: rgba(255, 255, 255, 0.1); /* Subtle borders */
    --shadow-color: rgba(0, 0, 0, 0.3); /* Shadows */
    --input-background: rgba(255, 255, 255, 0.1); /* Form input backgrounds */
    --input-border: rgba(255, 255, 255, 0.2); /* Form input borders */
    --input-focus: rgba(233, 83, 13, 0.5); /* Focus state for inputs */

    --badge-bestseller: #b39123; /* Gold/amber for bestsellers */
    --badge-sale: #e9530d; /* Primary color for sales */
    --badge-new: #4a90e2; /* Blue for new items */

    --success-color: #4CAF50; /* Success messages and indicators */
    --warning-color: #FFC107; /* Warning messages and indicators */
    --error-color: #FF5252; /* Error messages and indicators */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}







h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

    a:hover {
        color: var(--accent-color);
    }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* #endregion */

/* #region BUTTON */

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

    .btn:disabled,
    .btn.disabled {
        opacity: 0.3;
        pointer-events: none;
    }

    .btn:hover {
        background-color: var(--accent-color);
        transform: translateY(-2px);
    }

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

    .btn-secondary:hover {
        background-color: var(--primary-color);
        color: #121212;
    }

/* #endregion */

/* #region VANILLA LOADER */

.vanilla-loader {
    display: inline-block;
    width: 100px;
}

.vanilla-loader-img-1 {
    display: unset;
    width: 25%;
    animation: flash 2s infinite ease-in-out;
    animation-delay: 0s;
}

.vanilla-loader-img-2 {
    display: unset;
    width: 25%;
    animation: flash 2s infinite ease-in-out;
    animation-delay: 0.5s;
}

.vanilla-loader-img-3 {
    display: unset;
    width: 25%;
    animation: flash 2s infinite ease-in-out;
    animation-delay: 1s;
}

@keyframes flash {

    0% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    70% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* #endregion */

/* #region FADE IN */

.fadeIn {
    animation: fadeIn 0.5s ease-in forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* #endregion */

/* #region FADE OUT */

.fadeOut {
    animation: fadeOut 0.5s ease-in forwards;
    opacity: 0;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(30px);
    }
}

/* #endregion */

/* #region GLASS CARD */

.glass-card {
    background-color: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

    .glass-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

/* #endregion */

/* #region CONTAINER, SECTION */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background-color: var(--primary-color);
        margin: 1rem auto 0;
    }

/* #endregion */

/* #region PAGINATION */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .pagination-number:hover, .pagination-number.active {
        background-color: var(--primary-color);
        color: white;
    }

.pagination-arrow {
    padding: 10px 15px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .pagination-arrow:hover:not(.disabled) {
        background-color: var(--primary-color);
        color: white;
    }

    .pagination-arrow.disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* #endregion */

