/* -------------------------------------------------------------------------- */
/* global.css */
@keyframes pulseGlow {}

@keyframes backgroundScroll {}

:root {
    --primary-color: #ffffff;
    --secondary-color: #f0f2f5;
    --tertiary-color: #e4e6eb;
    --accent-color: #ff8e3c;
    --glow-color: transparent;
    --accent-2-color: #3a7de8;
    --glow-2-color: transparent;
    --text-color: #1c1e21;
    --text-muted: #65676b;
    --bg-dark-blue: transparent;
    --neon-cyan: transparent;
    --neon-glow: transparent;
    --light-slate: transparent;
    --font-heading: 'Russo One', sans-serif;
    --font-subheading: 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --button-clip-path: none;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0.9)), url('/assets/images/backgrounds/hero-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: static;
    overflow-x: hidden;
}

body::before {
    display: none;
}

body::after {
    display: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    color: var(--accent-2-color);
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: none;
}

a:hover {
    color: var(--accent-color);
    text-shadow: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: normal;
    text-shadow: none;
    font-weight: 400;
}

h2 {
    width: auto;
    font-size: 2.2rem;
    font-weight: 400;
    text-align: center;
    padding: 0 0 1rem 0;
    border: none;
    box-shadow: none;
    margin: 0 auto 3rem auto;
    border-bottom: 1px solid var(--tertiary-color);
}

.btn {
    font-family: var(--font-subheading);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: none;
    padding: 0.8rem 1.5rem;
}

.btn::before {
    display: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(255, 142, 60, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-primary:hover {
    color: #fff;
    background-color: #e67e22;
    border-color: #e67e22;
    box-shadow: 0 6px 16px rgba(255, 142, 60, 0.3);
    transform: translateY(-2px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-2-color);
    border-color: var(--accent-2-color);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--accent-2-color);
    color: #fff;
    box-shadow: none;
    transform: translateY(-2px);
}

.section-divider-container {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-divider {
    height: 5px;
    width: 100px;
    background: var(--accent-color);
    margin: 0;
    position: relative;
    box-shadow: none;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: none;
}

.section-divider::before {
    left: -15px;
    top: 50%;
}

.section-divider::after {
    right: -15px;
    bottom: auto;
}

/* -------------------------------------------------------------------------- */
/* /assets/css/popups.css */
#add-to-cart-popup,
#warning-popup {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    border: 1px solid var(--tertiary-color);
    color: var(--text-color);
    padding: 1.5rem;
    z-index: 3000;
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    clip-path: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateX(calc(100% + 2rem));
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease;
    pointer-events: none;
}

#add-to-cart-popup {
    border-left: 4px solid #4caf50;
}

#warning-popup {
    border-left: 4px solid var(--accent-color);
}


#add-to-cart-popup.show,
#warning-popup.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

#add-to-cart-popup i,
#warning-popup i {
    font-size: 1.8rem;
}

#add-to-cart-popup i {
    color: #4caf50;
}

#warning-popup i {
    color: var(--accent-color);
}

#add-to-cart-popup .popup-content,
#warning-popup .popup-content {
    font-size: 0.95rem;
    line-height: 1.5;
}

#add-to-cart-popup .popup-content strong,
#warning-popup .popup-content strong {
    display: block;
    font-family: var(--font-subheading);
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    letter-spacing: 0;
}

@media (max-width: 768px) {

    #add-to-cart-popup,
    #warning-popup {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        max-width: none;
        width: auto;
        border-radius: 8px;
        border-left-width: 4px;
        transform: translateY(calc(100% + 1rem));
        opacity: 1;
        text-align: left;
    }

    #add-to-cart-popup.show,
    #warning-popup.show {
        transform: translateY(0);
    }
}

/* -------------------------------------------------------------------------- */
/* /assets/css/header.css */
header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--accent-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo img {
    height: 65px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--text-muted);
    font-family: var(--font-subheading);
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    text-shadow: none;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--text-color);
    text-shadow: none;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.cart-icon {
    position: relative;
}

.cart-icon svg {
    height: 28px;
    fill: var(--text-color);
    display: block;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    font-weight: bold;
    border: none;
    box-shadow: none;
    animation: none;
}

.menu-toggle {
    display: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 992px) {
    nav ul li {
        margin-left: 1.25rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        z-index: 100;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 1rem 0;
        border-top: 1px solid var(--accent-color);
        border-bottom: 1px solid var(--accent-color);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 1rem 0;
        text-align: center;
    }

    nav {
        order: 3;
    }

    .cart-icon {
        order: 2;
    }

    .menu-toggle {
        display: block;
        margin-right: 0;
        order: 1;
    }

    .header-right {
        gap: 1rem;
    }
}

/* -------------------------------------------------------------------------- */
/* /assets/css/footer.css */
footer {
    background-color: #f8f9fa;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23dde2e7' fill-opacity='0.3' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    color: #1b1b1b;
    padding: 4rem 0 2rem 0;
    position: relative;
    overflow: hidden;
    border-top: none;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color, #007bff), transparent);
    opacity: 0.4;
}

footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 2.5rem 2rem;
    text-align: center;
}

.footer-logo,
.footer-notice,
footer .container > p:last-of-type {
    grid-column: 1 / -1;
}

.footer-links {
    justify-self: end;
    text-align: left;
}

.footer-contact {
    justify-self: start;
    text-align: left;
}

.footer-logo img {
    width: 360px;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: translateY(-5px);
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links::before,
.footer-contact::before {
    content: "Quick Links";
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(45deg, var(--accent-color, #007bff), #565e64);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}

.footer-contact::before {
    content: "Contact Us";
}

.footer-links a,
.footer-contact a {
    color: #6c757d;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.footer-links a.active {
    color: var(--accent-color, #0056b3);
    border-bottom: 1px dotted var(--accent-color);
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1.5px;
    background-color: var(--accent-color, #0056b3);
    bottom: 0;
    left: 0;
    transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact a i {
    font-size: 1rem;
    color: var(--accent-color, #007bff);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-contact a:hover i {
    transform: scale(1.15) rotate(-10deg);
}

.footer-notice {
    font-style: normal;
    font-size: 0.8rem;
    line-height: 1.5;
    max-width: 500px;
    opacity: 0.8;
}

footer .container > p:last-of-type {
    position: relative;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: none;
    width: 100%;
}

footer .container > p:last-of-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-logo,
.footer-links,
.footer-contact,
.footer-notice,
footer .container > p:last-of-type {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.footer-logo { animation-delay: 0.1s; }
.footer-links { animation-delay: 0.2s; }
.footer-contact { animation-delay: 0.3s; }
.footer-notice { animation-delay: 0.4s; }
footer .container > p:last-of-type { animation-delay: 0.5s; }

@media (max-width: 768px) {
    footer .container {
        grid-template-columns: 1fr;
    }

    .footer-links,
    .footer-contact {
        justify-self: center;
        text-align: center;
    }

    .footer-links a::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    footer .container {
        grid-template-columns: 1fr;
    }

    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
        justify-self: center;
        text-align: center;
    }
}

/* -------------------------------------------------------------------------- */
/* /assets/css/popups.css */
#cookie-popup {
    display: none;
    flex-direction: column;
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    max-width: 450px;
    background-color: var(--primary-color);
    padding: 1.5rem;
    z-index: 2000;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: start;
    text-align: start;
    justify-content: space-between;
    gap: 1rem;
    clip-path: none;
}

#cookie-popup p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 500px) {
    #cookie-popup {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        left: 1rem;
        right: 1rem;
        margin: auto;
    }

    #cookie-popup button {
        margin: auto;
        width: 100%;
    }
}

/* -------------------------------------------------------------------------- */
/* /assets/css/components.css */
.cart-item {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    margin-bottom: 1.5rem;
    gap: 1.5rem;
    padding: 1rem;
    border: 1px solid var(--tertiary-color);
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
    clip-path: none;
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background-color: transparent;
    padding: 0;
    clip-path: none;
    border-radius: 4px;
}

.cart-item-details h4 {
    font-family: var(--font-subheading);
    font-weight: bold;
}

form {
    padding: 2.5rem;
    background-color: var(--primary-color);
    border: 1px solid var(--tertiary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    clip-path: none;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-subheading);
    color: var(--text-color);
    font-weight: bold;
    text-transform: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--secondary-color);
    border: 1px solid var(--tertiary-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 142, 60, 0.25);
}

/* -------------------------------------------------------------------------- */
/* /assets/css/home.css */
section {
    padding: 4rem 0;
    position: relative;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-banner {
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(10, 10, 20, 0.6), rgba(10, 10, 20, 0.6)), url('/assets/images/backgrounds/hero-bg.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-banner h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    max-width: 800px;
    margin: auto;
    opacity: 0;
    animation: slideInUp 0.8s 0.3s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-banner p {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin: 1.5rem auto 2.5rem;
    max-width: 650px;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: slideInUp 0.8s 0.6s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-banner .btn {
    opacity: 0;
    animation: slideInUp 0.8s 0.9s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(4px);
    width: fit-content;
    margin: auto;
}

/* ------ */
@keyframes cardFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new-features-section {
    padding: 5rem 0;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.new-features-section h2 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0.5rem;
}

.new-features-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 0;
    margin-bottom: 4rem;
}

.features-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--primary-color);
    padding: 2rem;
    border: 1px solid var(--tertiary-color);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    animation: cardFadeInUp 0.6s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}

.feature-card i {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: var(--accent-2-color);
    border-radius: 50%;
    transform: translate(50%, -50%) scale(0);
    opacity: 0.1;
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover {
    border-color: var(--accent-2-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card:hover i {
    transform: scale(1.2) rotate(-15deg);
}

.feature-card:hover p {
    color: var(--text-color);
}

.feature-card:hover::before {
    transform: translate(50%, -50%) scale(2);
}

/* ------ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0;
}

.product-card {
    background: var(--primary-color);
    border: 1px solid var(--tertiary-color);
    border-radius: 8px;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    clip-path: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.product-card::after {
    display: none;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-2-color);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-card .product-image-container {
    background-color: var(--secondary-color);
    padding: 2rem 1rem;
    clip-path: none;
}

.product-card img {
    height: 120px;
    object-fit: contain;
}

.product-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card h3 {
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    flex-grow: 1;
}

.product-price {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: bold;
    font-family: var(--font-heading);
    margin: 1rem 0;
    text-shadow: none;
}

@media (max-width: 900px) {
    .features-grid-2x2 {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 600px) {
    h2 {
        font-size: 1.8rem;
        padding: 0 0 1rem 0;
    }

    .new-features-section {
        padding: 4rem 0;
        position: static;
        z-index: auto;
    }

    .hero-banner h1 {
        font-size: 2.5rem;
    }
}

/* ------ */
.new-category-section {
    padding: 4rem 0 0 0;
    border-top: 2px solid var(--accent-color);
}

.new-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.new-category-card {
    background-color: var(--primary-color);
    border: 1px solid var(--accent-2-color);
    padding: 2rem;
    text-align: left;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.new-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.card-text h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    text-transform: none;
}

.card-text p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-link {
    font-family: var(--font-subheading);
    color: var(--accent-2-color);
    font-weight: bold;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.new-category-card:hover .card-link {
    color: var(--accent-color);
    text-shadow: none;
}

/* ------ */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.cta-banner {
    padding: 4rem 0;
    margin: 2rem;
}

.cta-banner .container {
    max-width: 900px;
    margin: auto;
    position: relative;
    background-color: var(--secondary-color);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 3rem;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}

.cta-banner .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-2-color)) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    transition: all 0.4s ease;
}

.cta-banner .container:hover::before {
    transform: scale(1.03);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-text {
    flex-grow: 1;
}

.cta-text h3 {
    font-family: var(--font-heading);
    color: #1c1e21;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.cta-text p {
    color: #1c1e21;
    margin: 0;
    max-width: 450px;
}

.cta-action .btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
}



.testimonials-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--primary-color);
    padding: 2rem;
    border: 1px solid var(--tertiary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--tertiary-color);
}

.testimonial-author {
    flex-grow: 1;
}

.testimonial-card cite {
    font-family: var(--font-subheading);
    font-style: normal;
    font-weight: bold;
    color: var(--text-color);
    display: block;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-rating {
    font-size: 0.9rem;
    color: var(--accent-color);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    font-style: normal;
    margin: 0;
    color: var(--text-muted);
    padding-left: 1rem;
    border-left: 3px solid var(--accent-color);
}

/* -------------------------------------------------------------------------- */
/* /assets/css/home.css */

/* --- Newsletter Signup Section --- */
.newsletter-section {
    padding: 4rem 0;
}

.newsletter-content {
    max-width: none;
    margin: 0 auto;
    text-align: left;
    padding: 3rem;
    border: 5px solid var(--accent-color);
    background-color: var(--secondary-color);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.newsletter-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.newsletter-section h2 {
    text-align: left;
    border: none;
    padding: 0;
    margin-bottom: 0.5rem;
}

.newsletter-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin: 0;
    width: 100%;
    border: 1px solid var(--accent-2-color);
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    background: var(--primary-color);
    border: 1px solid var(--accent-2-color);
    color: var(--text-color);
    font-size: 1rem;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 142, 60, 0.25);
}

.newsletter-form .btn {
    flex-shrink: 0;
}

.newsletter-notice {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    text-align: left;
}

@media (max-width: 900px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .newsletter-section h2 {
        text-align: center;
    }

    .newsletter-notice {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
}

/* -------------------------------------------------------------------------- */
/* /assets/css/home.css */
.blog-preview-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
    border-top: 1px solid var(--tertiary-color);
}

.blog-preview-section.blog-page {
    border-top: 1px solid var(--tertiary-color);
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 2rem 20px;
    margin: 2rem auto;
    max-width: 1200px;
}

.blog-preview-section.blog-page h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    padding: 0;
    padding: 1rem 0.5rem;
    border-radius: 10px;
    background-color: var(--secondary-color);
    border: 3px solid var(--accent-color);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 2rem;
}

.blog-post-card {
    background: var(--primary-color);
    border: 1px solid var(--accent-2-color) !important;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.blog-image-container {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-image-container img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-header {
    margin-bottom: 0.75rem;
}

.blog-category {
    background-color: var(--accent-2-color);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.blog-card-content h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.blog-card-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-content h3 a:hover {
    color: var(--accent-color);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    border-top: 1px solid var(--accent-color);
    padding-top: 1rem;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.author-name {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-post-card .read-more {
    margin-left: auto;
    font-family: var(--font-subheading);
    font-weight: bold;
    color: var(--accent-2-color);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 !important;
    display: flex;
    justify-content: end;
    align-items: end;

}

.blog-post-card .read-more:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .blog-preview-section.blog-page {
        padding: 2rem 0;
    }
}

/* ------ */
@media (max-width: 992px) {

    .testimonial-grid,
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
        padding-bottom: 1rem;
        margin-bottom: 2.5rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero-banner {
        padding: 4rem 0;
    }

    .hero-banner h1 {
        font-size: 2.2rem;
    }

    .hero-banner p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .new-features-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 1rem;
    }

    .footer-links a {
        margin: 0;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cart-item img {
        margin: 0 auto;
    }

    form {
        padding: 1.5rem;
    }
}

/* -------------------------------------------------------------------------- */
/* /assets/css/products.css */
@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.products-page {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    margin: 2rem auto;
}

.product-category-section {
    padding: 2rem 0;
    animation: sectionFadeIn 0.8s ease-out;
}

.product-category-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    padding: 0;
    padding: 1rem 0.5rem;
    border-radius: 10px;
    background-color: var(--secondary-color);
    border: 3px solid var(--accent-color);
}

.featured-products {
    padding: 4rem 0;
    background-color: var(--secondary-color);
    border-top: 2px dotted var(--accent-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-grid.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: auto;
}

.product-card {
    background: var(--primary-color);
    border: 1px solid var(--tertiary-color);
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-image-link {
    display: block;
    height: 180px;
    background-color: #000;
}

.product-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image-link img {
    opacity: 0.8;
}

.product-content {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.product-title a {
    font-family: var(--font-heading);
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--accent-2-color);
}

.product-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0.75rem 0;
}

.product-author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.product-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--tertiary-color);
    padding-top: 1rem;
}

.product-stats span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.product-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;

}

.product-actions .btn {
    width: 100%;
}

/* -------------------------------------------------------------------------- */
/* /assets/css/blog.css */
.blog-section {
    padding: 4rem 0;
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-post-card {
    background: var(--primary-color);
    border: 1px solid var(--tertiary-color);
    display: flex;
    flex-direction: column;
    clip-path: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.blog-image-container {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: block;
    clip-path: none;
}

.blog-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: none;
}

.blog-post-card:hover .blog-image-container img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-category {
    background-color: var(--accent-color);
    color: #fff !important;
    font-family: var(--font-subheading);
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}

.blog-card-content h3 {
    font-family: var(--font-subheading);
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-weight: bold;
}

.blog-card-content h3 a {
    color: inherit;
    text-decoration: none;
    text-shadow: none;
    transition: color 0.3s ease;
}

.blog-card-content h3 a:hover {
    color: var(--accent-color);
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more {
    display: inline-block;
    align-self: flex-start;
    margin-top: 1.5rem;
    font-family: var(--font-subheading);
    font-weight: bold;
    color: var(--accent-2-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.read-more:hover {
    color: var(--accent-color);
    text-shadow: none;
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------------------- */
/* /assets/css/blog-post.css */
.blog-post-full {
    background-color: var(--primary-color);
}

.blog-post-header {
    text-align: center;
    padding: 4rem 0;
    background: var(--secondary-color);
    position: relative;
    border-bottom: 1px solid var(--tertiary-color);
}

.blog-post-header .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 900px;
}

.blog-post-header .blog-category {
    background-color: var(--accent-color);
    color: #fff;
    font-family: var(--font-subheading);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 4px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: none;
    margin: 0 auto 1.5rem auto;
}

.blog-post-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-color);
    text-shadow: none;
    margin-bottom: 1rem;
    animation: none;
}

.blog-post-header .blog-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.blog-post-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    margin-top: 0;
    clip-path: none;
    transition: none;
}

.blog-post-content {
    max-width: 800px;
    margin: 0rem auto;
    padding: 4rem 0;
    color: var(--text-color);
    border: none;
    background-color: transparent;
    position: relative;
}

.blog-post-content::before,
.blog-post-content::after {
    display: none;
}

.blog-post-content p.lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-style: italic;
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--tertiary-color);
    color: var(--text-color);
    text-align: left;
    box-shadow: none;
    padding-left: 0;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.blog-post-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.blog-post-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.blog-post-content ul li::before {
    content: '›';
    font-family: serif;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    transition: none;
    font-size: 1.2em;
}

.blog-post-content ul li:hover::before {
    transform: none;
}

.blog-post-content blockquote {
    border: none;
    border-left: 4px solid var(--accent-color);
    background-color: var(--secondary-color);
    padding: 2rem;
    margin: 2.5rem 0;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    clip-path: none;
    border-radius: 0 8px 8px 0;
}

.blog-post-content blockquote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: bold;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .blog-post-header {
        padding-top: 0rem;
    }

    .blog-post-header h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .blog-post-hero-image {
        height: 250px;
    }

    .blog-post-content {
        padding: 4rem 1rem;
    }

    .blog-post-content h2 {
        font-size: 1.6rem;
    }

    .blog-post-content p.lead {
        font-size: 1.1rem;
    }

    .blog-post-content blockquote {
        padding: 1.5rem;
    }
}

/* -------------------------------------------------------------------------- */
/* /assets/css/policy.css */
.policy-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--primary-color);
    padding: 3rem;
    color: var(--text-muted);
    border: 1px solid var(--tertiary-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
    text-align: left;
    border-bottom: 1px solid var(--tertiary-color);
    padding-bottom: 0.5rem;
    margin: 2rem 0 1.5rem 0;
    font-size: 1.8rem;
    box-shadow: none;
    padding-left: 0;
    width: auto;
}

.policy-content h3 {
    font-family: var(--font-subheading);
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.policy-content p,
.policy-content li {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-content ul {
    list-style: none;
    padding-left: 0;
}

.policy-content ul li {
    position: relative;
    padding-left: 1.5rem;
}

.policy-content ul li::before {
    content: '›';
    font-family: serif;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-size: 1.2em;
}

.policy-content a {
    color: var(--accent-2-color);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* -------------------------------------------------------------------------- */
/* /assets/css/terms.css */
.terms-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--primary-color);
    padding: 3rem;
    color: var(--text-muted);
    border: 1px solid var(--tertiary-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.terms-content h2 {
    text-align: left;
    border-bottom: 1px solid var(--tertiary-color);
    padding-bottom: 0.5rem;
    margin: 2rem 0 1.5rem 0;
    font-size: 1.8rem;
    box-shadow: none;
    padding-left: 0;
    width: auto;
}

.terms-content h3 {
    font-family: var(--font-subheading);
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.terms-content p,
.terms-content li {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-content ul {
    list-style: none;
    padding-left: 0;
}

.terms-content ul li {
    position: relative;
    padding-left: 1.5rem;
}

.terms-content ul li::before {
    content: '›';
    font-family: serif;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-size: 1.2em;
}

.terms-content a {
    color: var(--accent-2-color);
    text-decoration: underline;
}

.terms-content a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* -------------------------------------------------------------------------- */
/* /assets/css/cookies.css */
.cookie-policy-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.cookie-policy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--primary-color);
    padding: 3rem;
    color: var(--text-muted);
    border: 1px solid var(--tertiary-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cookie-policy-content h2 {
    text-align: left;
    border-bottom: 1px solid var(--tertiary-color);
    padding-bottom: 0.5rem;
    margin: 2rem 0 1.5rem 0;
    font-size: 1.8rem;
    box-shadow: none;
    padding-left: 0;
    width: auto;
}

.cookie-policy-content h3 {
    font-family: var(--font-subheading);
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.cookie-policy-content p,
.cookie-policy-content li {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cookie-policy-content ul {
    list-style: none;
    padding-left: 0;
}

.cookie-policy-content ul li {
    position: relative;
    padding-left: 1.5rem;
}

.cookie-policy-content ul li::before {
    content: '›';
    font-family: serif;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-size: 1.2em;
}

.cookie-policy-content a {
    color: var(--accent-2-color);
    text-decoration: underline;
}

.cookie-policy-content a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* -------------------------------------------------------------------------- */
/* /assets/css/cart.css */
.cart-section {
    padding: 4rem 0;
}

.cart-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 400;
    padding: 0;
    padding: 1rem 0.5rem;
    border-radius: 10px;
    background-color: var(--secondary-color);
    border: 3px solid var(--accent-color);
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

#cart-items-container .empty-cart-message {
    background: var(--primary-color);
    border: 2px dashed var(--tertiary-color);
    padding: 3rem 2rem;
    text-align: center;
    clip-path: none;
    border-radius: 8px;
}

#cart-items-container .empty-cart-message p {
    font-size: 1.4rem;
    color: var(--text-muted);
    line-height: 1.6;
}

#cart-items-container .empty-cart-message a {
    display: inline-block;
    font-family: var(--font-subheading);
    font-weight: bold;
    color: var(--accent-2-color);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-left: 0;
}

#cart-items-container .empty-cart-message a:hover {
    color: var(--accent-color);
    transform: none;
    text-shadow: none;
}

.cart-item {
    display: flex;
    align-items: center;
    background: var(--primary-color);
    margin-bottom: 1rem;
    gap: 1.5rem;
    padding: 1rem;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    clip-path: none;
    transition: box-shadow 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background-color: var(--secondary-color);
    padding: 0;
    clip-path: none;
    border-radius: 4px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h4 {
    font-family: var(--font-subheading);
    font-weight: bold;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.cart-item-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-item-actions span {
    display: block;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0;
}

.cart-item-quantity {
    width: auto;
    padding: 0;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.cart-item-quantity input {
    width: 40px;
    text-align: center;
    border: 1px solid var(--tertiary-color);
    background-color: var(--secondary-color);
    padding: 0.5rem;
    border-radius: 4px;
    color: var(--text-color);
}


.cart-item-quantity::-webkit-outer-spin-button,
.cart-item-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-remove-item {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    text-transform: none;
    transition: color 0.3s ease;
}

.btn-remove-item:hover {
    color: var(--accent-color);
}

.cart-summary {
    background: var(--secondary-color);
    border: 1px solid var(--accent-color);
    padding: 2rem;
    position: sticky;
    top: 120px;
    border-radius: 8px;
    clip-path: none;
}

.cart-summary h3 {
    font-family: var(--font-heading);
    text-transform: none;
    border-bottom: 1px solid var(--tertiary-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.summary-total {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-color);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--tertiary-color);
}

.summary-total span:last-child {
    color: var(--text-color);
    text-shadow: none;
}

.btn-checkout {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 1rem;
    margin-top: 2rem;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .cart-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .cart-item {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cart-item img {
        margin: 0 auto;
    }

    .cart-item-actions {
        justify-content: center;
    }

    .cart-item-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

}

/* -------------------------------------------------------------------------- */
/* /assets/css/checkout.css */
.checkout-section {
    padding: 4rem 0;
}

.checkout-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    padding: 0;
    padding: 1rem 0.5rem;
    border-radius: 10px;
    background-color: var(--secondary-color);
    border: 3px solid var(--accent-color);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.checkout-form {
    background-color: var(--primary-color);
    border: 1px solid var(--accent-color);
    padding: 2.5rem;
    border-radius: 8px;
    clip-path: none;
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h3 {
    font-family: var(--font-heading);
    text-transform: none;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--tertiary-color);
    padding-bottom: 1rem;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-subheading);
    color: var(--text-color);
    text-transform: none;
    font-size: 0.9rem;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--secondary-color);
    border: 1px solid var(--tertiary-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 142, 60, 0.25);
}

.form-group-half {
    display: flex;
    gap: 1.5rem;
}

.form-group-half>div {
    width: 50%;
}

.order-summary {
    background: var(--secondary-color);
    border: 1px solid var(--accent-color);
    padding: 2rem;
    position: sticky;
    top: 100px;
    border-radius: 8px;
}

.order-summary h3 {
    font-family: var(--font-heading);
    text-transform: none;
    border-bottom: 1px solid var(--tertiary-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.summary-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 1rem;
    background-color: var(--primary-color);
    border-radius: 4px;
}

.summary-item-details {
    flex-grow: 1;
}

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    padding-top: 1rem;
}

.summary-total {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-color);
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    border-top: 1px solid var(--tertiary-color);
}

.summary-total span:last-child {
    color: var(--text-color);
    text-shadow: none;
}

.btn-place-order {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }
}

@media (max-width: 600px) {
    .form-group-half {
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-group-half>div {
        width: 100%;
    }

    .checkout-form {
        padding: 1.5rem 20px;
    }
}

/* -------------------------------------------------------------------------- */
/* /assets/css/register.css */

/* .confirmation-section {
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background-color: var(--secondary-color);
}

.confirmation-box {
    max-width: 500px;
    width: 100%;
    background-color: var(--primary-color);
    border: 1px solid var(--tertiary-color);
    padding: 3rem;
    text-align: center;
    clip-path: none;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.confirmation-box i {
    font-size: 3.5rem;
    color: var(--accent-color);
    text-shadow: none;
    margin-bottom: 2rem;
}

.confirmation-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    border: none;
    box-shadow: none;
    padding: 0;
    width: auto;
}

.confirmation-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.confirmation-box .btn {
    min-width: 200px;
} */



.auth-section {
    padding: 4rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.6);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
}

.auth-box {
    background-color: var(--primary-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.auth-box.register {
    border: 4px solid var(--accent-color) !important;
}

.auth-box.login {
    border: 4px solid var(--accent-2-color) !important;
}

.auth-box.register form {
    border: 2px solid var(--accent-color) !important;
}

.auth-box.login form {
    border: 2px solid var(--accent-2-color) !important;
}

.auth-box h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    border-bottom: none;
}

.auth-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.auth-box .form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.auth-box label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--text-color);
}

.auth-box input {
    width: 100%;
    background: var(--secondary-color);
    border: 1px solid var(--tertiary-color);
    color: var(--text-color);
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.auth-box input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 142, 60, 0.25);
}

.auth-box .btn-block {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
}

#confirmation-container {
    grid-column: 1 / -1;
}

.auth-box i {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    .auth-grid-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}


@media (max-width: 768px) {

    .policy-content,
    .terms-content,
    .cookie-policy-content {
        padding: 1rem 25px;
    }

    .auth-box {
        padding: 1.5rem 20px;
    }
}