/* --- Global Styles  --- */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@400;500;700&display=swap');

:root {
    --cherry-red: #FF4655;
    --cherry-red-darker: #c93440;
    --background-dark: #0F1923;
    --surface-dark: #1A242D;
    --text-light: #ECE8E1;
    --text-muted: #7E8C9A;
    --border-color: rgba(255, 70, 85, 0.4);
    --border-color-hover: rgba(255, 70, 85, 0.8);
    --white-pure: #FFFFFF;
}

@keyframes animate-grid {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -50px -50px;
    }
}

@keyframes animate-dust {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-2000px);
    }
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-dark);
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 70, 85, 0.05),
            rgba(255, 70, 85, 0.05) 1px,
            transparent 1px,
            transparent 40px);
    color: var(--text-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    animation: animate-grid 2s linear infinite;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
    background-size: 500px 500px;
    z-index: -2;
    animation: animate-dust 90s linear infinite;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-light);
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.container {
    width: 90%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.hero-section-pro {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
}


.hero-section-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.085;
    z-index: -1;
}

.hero-background-elements .bg-shape-1,
.hero-background-elements .bg-shape-2 {
    position: absolute;
    background-color: var(--cherry-red);
    opacity: 0.05;
    z-index: -1;
}

.hero-background-elements .bg-shape-1 {
    width: 40vw;
    height: 40vw;
    top: -15%;
    right: -15%;
    clip-path: polygon(0 0, 100% 20%, 80% 100%, 20% 80%);
}

.hero-background-elements .bg-shape-2 {
    width: 30vw;
    height: 30vw;
    bottom: -15%;
    left: -10%;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.hero-content-pro {
    max-width: 800px;
    margin: 0 auto;
}

.hero-headline {
    font-family: 'Anton', sans-serif;
    font-size: 4.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-headline span {
    display: block;
    font-size: 4rem;
}

.hero-subheadline {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}


.hero-update-notice {
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: 'Roboto', sans-serif;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 3.5rem;
    }

    .hero-headline span {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-section-pro {
        min-height: 50vh;
        padding: 4rem 0;
    }

    .hero-headline {
        font-size: 2.8rem;
    }

    .hero-headline span {
        font-size: 2.3rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }
}

.section-surface {
    background-color: var(--surface-dark);
    padding: 6rem 0;
    margin: 0 20px;
    border: 1px solid var(--border-color);
}

.section-decorated {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background-color: transparent;
}

.section-decorated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 150px;
    height: 150px;
    border-left: 5px solid var(--cherry-red);
    border-top: 5px solid var(--cherry-red);
    opacity: 0.6;
}

.section-decorated::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 150px;
    height: 150px;
    border-right: 5px solid var(--cherry-red);
    border-bottom: 5px solid var(--cherry-red);
    opacity: 0.6;
}

.section-glowing {
    padding: 6rem 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 70, 85, 0.08), transparent 70%);
    border: 1px solid transparent;
    transition: border 0.3s ease;
}

.gradient-text-primary {
    background: linear-gradient(90deg, var(--cherry-red), #ff7a85);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 70, 85, 0.5));
}

.gradient-text-secondary {
    background: linear-gradient(90deg, var(--text-muted), var(--white-pure));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.gradient-text-muted {
    background: linear-gradient(90deg, var(--text-muted), var(--text-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    opacity: 0.8;
}

.gradient-text-main {
    background: linear-gradient(90deg, var(--cherry-red), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 70, 85, 0.5));
}

.btn {
    display: inline-block;
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    padding: 12px 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    transform: skew(-10deg);
}

.btn .btn-text {
    display: inline-block;
    transform: skew(10deg);
}

.btn-primary {
    background-color: var(--cherry-red);
    color: var(--white-pure);
    border-color: var(--cherry-red);
}

.btn-primary:hover {
    background-color: var(--cherry-red-darker);
    border-color: var(--cherry-red-darker);
    transform: skew(-10deg) scale(1.05);
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--background-dark);
    transform: skew(-10deg) scale(1.05);
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: var(--border-color);
    transform: translateY(-50%);
}

.section-header h2::before {
    left: 100%;
    margin-left: 1.5rem;
}

.section-header h2::after {
    right: 100%;
    margin-right: 1.5rem;
}


@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h2::before,
    h2::after {
        display: none;
    }

    .section-surface,
    .section-decorated,
    .section-glowing {
        padding: 4rem 0;
    }

    .btn {
        padding: 10px 25px;
        font-size: 1.1rem;
    }

    body::before {
        animation-duration: 90s;
    }

    body::after {
        animation-duration: 40s;
    }


    .section-decorated::before {
        left: 100px;
    }

    .section-decorated::after {
        right: 100px;
    }
}


@media (max-width: 1200px) {
    .section-decorated::before {
        left: 20px;
    }

    .section-decorated::after {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .section-decorated::before {
        display: none;
    }

    .section-decorated::after {
        display: none;
    }
}

/* --- Header Styles --- */
header {
    background-color: var(--surface-dark);
    border-bottom: 2px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

#nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

#nav-menu li a {
    font-family: 'Anton', sans-serif;
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
}

#nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--cherry-red);
    transition: width 0.3s ease;
}

#nav-menu li a:hover,
#nav-menu li a.active {
    color: var(--cherry-red);
}

#nav-menu li a:hover::after,
#nav-menu li a.active::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.cart-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.cart-icon:hover {
    color: var(--cherry-red);
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background-color: var(--cherry-red);
    color: var(--white-pure);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid var(--surface-dark);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    #nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: -30px;
        width: 100vw;
        background-color: var(--surface-dark);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        border-top: 2px solid var(--border-color);
        border-bottom: 2px solid var(--border-color);
    }

    #nav-menu.active {
        display: flex;
    }

    #nav-menu li {
        width: 100%;
        text-align: center;
    }

    #nav-menu li a {
        display: block;
        padding: 1rem 0;
    }

    #nav-menu li a::after {
        display: none;
    }
}

/* --- Footer Section --- */
footer {
    background-color: var(--secondary-color);
    padding: 4rem 1.5rem;
    border-top: 1px solid var(--tertiary-color);
    color: var(--text-muted);
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-logo {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-links {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact a i {
    margin-right: 0.5rem;
    color: var(--accent-2-color);
}

.footer-notice,
footer .container p:last-of-type {
    font-size: 0.9rem;
    line-height: 1.6;
    grid-column: 1 / -1;
    text-align: center;
    border-top: 1px solid var(--cherry-red-darker);
    padding-top: 2rem;
    margin-top: 2rem;
}

footer .container p:last-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: -1rem;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .footer-logo {
        grid-column: auto;
        text-align: left;
    }

    .footer-notice,
    footer .container p:last-of-type {
        text-align: center;
    }
}

@media (max-width: 768px) {
    footer .container {
        text-align: center;
    }
}

/* --- Product Card Styling --- */
.all-products {
    margin: 2rem 20px;
}

.featured-products {
    margin: 3rem 0;
}

.featured-products.section-decorated {
    padding: 3rem 0;
}

.all-products h2,
.featured-products h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px var(--cherry-red);
    text-align: center;
}

.product-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-image-container {
    width: 160px;
    flex-shrink: 0;
    background-color: var(--background-dark);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-family: 'Roboto', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

.product-price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.product-price {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: var(--cherry-red);
}

@media (max-width: 576px) {
    .product-image-container {
        width: 100%;
    }

    .product-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .product-price-action {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- New Cart Item Styling --- */
.cart-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: auto;
    border-radius: 4px;
    object-fit: contain;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--text-muted);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-quantity {
    width: 60px;
    padding: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    background-color: var(--background-dark);
    color: var(--text-light);
    border-radius: 4px;
}

.btn-remove-item {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-remove-item:hover {
    color: var(--cherry-red);
}

/* --- Popup Notification Styling --- */
#cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background-color: var(--background-dark);
    border-top: 2px solid var(--border-color);
    z-index: 1500;
}

#cookie-popup p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    max-width: 600px;
}

#cookie-popup button#accept-cookies {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    #cookie-popup {
        flex-direction: column;
        text-align: center;
    }
}

#add-to-cart-popup,
#warning-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 150%);
    visibility: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--surface-dark);
    color: var(--text-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    z-index: 2000;
    min-width: 320px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        visibility 0.4s ease-in-out;
}

#add-to-cart-popup.show,
#warning-popup.show {
    transform: translate(-50%, 0);
    visibility: visible;
}

#add-to-cart-popup i,
#warning-popup i {
    font-size: 1.8rem;
}

#add-to-cart-popup .fa-check-circle {
    color: #28a745;
}

#warning-popup .fa-exclamation-triangle {
    color: var(--cherry-red);
}

.popup-content {
    font-size: 1rem;
    line-height: 1.5;
}

.popup-content strong {
    font-weight: 700;
    color: var(--white-pure);
}

#popup-product-name {
    font-weight: 500;
    color: var(--white-pure);
    font-style: italic;
}

/* --- Hero section --- */
.hero-section-pro {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-section-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/assets/images/backgrounds/hero-bg.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    opacity: 0.085;
    z-index: -1;
}

.hero-background-elements .bg-shape-1,
.hero-background-elements .bg-shape-2 {
    position: absolute;
    background-color: var(--cherry-red);
    opacity: 0.05;
    z-index: -1;
}

.hero-background-elements .bg-shape-1 {
    width: 40vw;
    height: 40vw;
    top: -15%;
    right: -15%;
    clip-path: polygon(0 0, 100% 20%, 80% 100%, 20% 80%);
}

.hero-background-elements .bg-shape-2 {
    width: 30vw;
    height: 30vw;
    bottom: -15%;
    left: -10%;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.hero-content-pro {
    max-width: 800px;
    margin: 0 auto;
}

.hero-headline {
    font-family: 'Anton', sans-serif;
    font-size: 4.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-subheadline {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

@media (max-width: 768px) {
    .hero-section-pro {
        padding: 6rem 0;
    }

    .hero-headline {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section-pro {
        padding: 4rem 1rem;
    }

    .hero-headline {
        font-size: 2.8rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }
}

/* --- How It Works Section --- */
.how-it-works-section {
    border-top: 2px solid var(--cherry-red-darker);
    border-bottom: 2px solid var(--cherry-red-darker);
}

.how-it-works-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-it-works-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0.5rem auto 0 auto;
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card {
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    flex-basis: 320px;
    flex-grow: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.step-card i {
    font-size: 3rem;
    color: var(--cherry-red);
    margin-bottom: 1.5rem;
    display: block;
}

.step-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .how-it-works-section .section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .step-card {
        padding: 2rem 1.5rem;
    }

    .step-card i {
        font-size: 2.5rem;
    }

    .step-card h3 {
        font-size: 1.5rem;
    }
}

/* --- Featured Items Section --- */
.featured-items-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.featured-items-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0.5rem auto 0 auto;
}

.item-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.item-card {
    position: relative;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.item-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s ease;
}

.item-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 25, 35, 0.95) 10%, rgba(15, 25, 35, 0.6) 50%, transparent 100%);
    z-index: 2;
    transition: background 0.3s ease;
}

.item-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(15, 25, 35, 1) 20%, transparent 100%);
}

.card-content {
    position: relative;
    z-index: 3;
    padding: 1.5rem;
    color: var(--text-light);
    width: 100%;
    transition: transform 0.3s ease;
}

.item-card:hover .card-content {
    transform: translateY(-5px);
}

.card-content h3 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.explore-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--cherry-red);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 576px) {
    .item-card {
        height: 400px;
    }

    .card-content {
        padding: 1.25rem;
    }

    .card-content h3 {
        font-size: 1.75rem;
    }
}

/* --- CTA Banner Section --- */
.cta-banner {
    padding: 5rem 2rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    background: url('https://images.alphacoders.com/133/1330080.jpeg') center center/cover no-repeat;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px var(--cherry-red);
}

.cta-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
}

.cta-action .btn {
    min-width: 200px;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 6rem 0;
    }

    .cta-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cta-text h2 {
        font-size: 3rem;
    }
}

/* --- Testimonials Section --- */
.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--background-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color);
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: var(--cherry-red);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--border-color);
    padding-left: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 576px) {
    .testimonials-section .section-header {
        margin-bottom: 3rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        padding-left: 1rem;
    }
}

/* --- Newsletter Section --- */
.newsletter-section {
    padding: 4rem 0;
}

.newsletter-panel {
    max-width: 900px;
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    margin: auto;
}

.newsletter-text {
    flex: 1 1 auto;
}

.newsletter-text i {
    font-size: 3rem;
    color: var(--cherry-red);
    margin-bottom: 1rem;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-text .newsletter-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.newsletter-form-wrapper {
    flex: 1 1 auto;
    width: 100%;
    max-width: 450px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 0.75rem;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    min-width: 150px;
    border: 2px solid var(--border-color);
    background-color: var(--background-dark);
    padding: 14px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    border-radius: 4px 0 0 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--cherry-red);
    box-shadow: 0 0 15px rgba(255, 70, 85, 0.3);
}

.newsletter-form .btn {
    border-radius: 0 4px 4px 0;
    transform: skew(0);
}

.newsletter-form .btn .btn-text {
    transform: skew(0);
}

.newsletter-form .btn:hover {
    transform: scale(1.05);
}

.newsletter-notice {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

@media (min-width: 992px) {
    .newsletter-panel {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 3rem 1rem;
    }

    .newsletter-panel {
        padding: 2rem 1.5rem;
    }

    .newsletter-text h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form input[type="email"] {
        border-radius: 4px;
        text-align: center;
    }

    .newsletter-form .btn {
        border-radius: 4px;
        width: 100%;
    }
}

/* --- Blog Preview Section --- */
.blog-page-main {
    margin: 2rem 0;
}

.blog-preview-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2rem;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post-card {
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.blog-image-container {
    height: 220px;
    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.1);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-header {
    margin-bottom: 1rem;
}

.blog-category {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    background-color: var(--cherry-red);
    color: var(--white-pure);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.blog-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-card-content h3 a {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.blog-card-content h3 a:hover {
    color: var(--cherry-red);
}

.blog-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.blog-card-footer {
    margin-top: 1.5rem;
}

.read-more {
    font-family: 'Anton', sans-serif;
    text-decoration: none;
    color: var(--cherry-red);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: letter-spacing 0.3s ease;
}

.read-more:hover {
    letter-spacing: 2px;
}

.read-more i {
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 576px) {

    .blog-preview-grid {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }


    .blog-preview-section .section-header {
        font-size: 1.75rem;
        margin-bottom: 3rem;
    }

    .blog-image-container {
        height: 200px;
    }

    .blog-card-content {
        padding: 1.25rem;
    }

    .blog-card-content h3 {
        font-size: 1.3rem;
    }
}

/* --- Blog Post Page Styling --- */
.blog-post {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.blog-post-header h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-family: 'Roboto', sans-serif;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.meta-category {
    color: var(--cherry-red);
    font-weight: 700;
}

.featured-image {
    margin-bottom: 3rem;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.featured-image figcaption {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.75rem;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.blog-post-content h2 {
    font-size: 2.25rem;
    margin: 3rem 0 1.5rem 0;
    border-left: 4px solid var(--cherry-red);
    padding-left: 1rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--surface-dark);
    border-left: 4px solid var(--cherry-red);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-light);
}

.blog-post-content ul {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.blog-post-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-post-content ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--cherry-red);
    font-size: 0.8rem;
}

@media (max-width: 576px) {
    .blog-post-header h1 {
        font-size: 2.5rem;
    }

    .blog-post-content h2 {
        font-size: 1.75rem;
    }

    .post-meta {
        flex-direction: column;
    }
}

/* --- Auth Section Styling --- */
.auth-section {
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 80vh;
}

.auth-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    width: 100%;
    max-width: 900px;
}

.auth-box {
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
}

.auth-box h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.auth-box p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.auth-box form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input {
    border: 2px solid var(--border-color);
    background-color: var(--background-dark);
    padding: 12px 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: var(--cherry-red);
    box-shadow: 0 0 15px rgba(255, 70, 85, 0.3);
}

.btn-block {
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
}

#confirmation-container {
    grid-column: 1 / -1;
    text-align: center;
}

#confirmation-container i {
    font-size: 4rem;
    color: var(--cherry-red);
    margin-bottom: 1.5rem;
}

#confirmation-container .btn {
    margin-top: 1rem;
}


@media (max-width: 820px) {
    .auth-grid-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .auth-box {
        padding: 2rem 1.5rem;
    }
}

/* --- Cart Page Styling --- */
.cart-section {
    padding: 4rem 0;
}

.cart-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: flex-start;
}

#cart-items-container {
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
}

.empty-cart-message {
    font-size: 1.25rem;
    padding: 4rem 1rem;
    text-align: center;
    color: var(--text-muted);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: auto;
    border-radius: 4px;
    object-fit: contain;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

.cart-item-price {
    color: var(--text-muted);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-quantity {
    width: 60px;
    padding: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    background-color: var(--background-dark);
    color: var(--text-light);
    border-radius: 4px;
    outline: none;
}

.btn-remove-item {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.btn-remove-item:hover {
    color: var(--cherry-red);
    transform: scale(1.1);
}

.cart-summary {
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    position: sticky;
    top: 110px;
}

.cart-summary h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
}

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.summary-total {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 1rem;
}

.btn-checkout {
    width: 100%;
    margin-top: 1rem;
}

.btn-checkout.disabled {
    background-color: var(--text-muted);
    border-color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.5;
    transform: skew(-10deg) scale(1);
    box-shadow: none;
}

@media (max-width: 992px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 576px) {
    .cart-section {
        padding: 3rem 0;
    }

    .cart-section h2 {
        font-size: 2.25rem;
    }

    #cart-items-container {
        padding: 0.5rem;
    }

    .cart-item {
        gap: 0.75rem;
        padding: 1rem 0.5rem;
    }

    .cart-item-image {
        width: 80px;
    }

    .cart-item-title {
        font-size: 1rem;
    }

    .cart-summary {
        padding: 1.5rem;
    }
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* --- Checkout Page Styling --- */
.checkout-section {
    padding: 4rem 0;
}

.checkout-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: flex-start;
}

.checkout-form {
    width: 100%;
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section:last-of-type {
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input {
    border: 2px solid var(--border-color);
    background-color: var(--background-dark);
    padding: 12px 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: var(--cherry-red);
    box-shadow: 0 0 15px rgba(255, 70, 85, 0.3);
}

.form-group-half {
    display: flex;
    gap: 1.5rem;
}

.form-group-half>div {
    flex: 1;
}

.order-summary {
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    position: sticky;
    top: 110px;
}

.order-summary h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
}

#summary-items-container {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.summary-item span:first-child {
    color: var(--text-light);
    padding-right: 1rem;
}

.summary-item span:last-child {
    color: var(--text-muted);
}

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.summary-total {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 1rem;
}

.btn-place-order {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .checkout-grid {
        display: flex;
        flex-direction: column-reverse;
    }

    .order-summary {
        position: static;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .checkout-section {
        padding: 3rem 1rem;
    }

    .checkout-section h2 {
        font-size: 2.25rem;
    }

    .checkout-form {
        padding: 1.5rem;
    }

    .form-group-half {
        flex-direction: column;
        gap: 0;
    }

    .form-group-half>div:not(:last-child) {
        margin-bottom: 1.5rem;
    }
}

/* --- Terms Page Styling --- */
/* --- Privacy Page Styling --- */
/* --- Cookies Page Styling --- */
.policy-section,
.terms-section,
.cookie-policy-section {
    padding: 4rem 1rem;
}

.policy-content,
.terms-content,
.cookie-policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem;
}

.policy-content h2,
.policy-content h3,
.policy-content h4,
.terms-content h2,
.terms-content h3,
.terms-content h4,
.cookie-policy-content h2,
.cookie-policy-content h3,
.cookie-policy-content h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal;
    color: var(--text-light);
    line-height: 1.4;
    text-shadow: none;
}

.policy-content h2,
.terms-content h2,
.cookie-policy-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.policy-content h3,
.terms-content h3,
.cookie-policy-content h3 {
    font-size: 1.5rem;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-content h4,
.terms-content h4,
.cookie-policy-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 2rem 0 1rem 0;
}

.policy-content p,
.terms-content p,
.cookie-policy-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.policy-content p strong,
.terms-content p strong,
.cookie-policy-content p strong {
    color: var(--text-light);
    font-weight: 500;
}

.policy-content ul,
.terms-content ul,
.cookie-policy-content ul {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.policy-content ul li,
.terms-content ul li,
.cookie-policy-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.policy-content ul li::before,
.terms-content ul li::before,
.cookie-policy-content ul li::before {
    content: '■';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--cherry-red);
    font-size: 0.8rem;
}

.policy-content ul li strong,
.terms-content ul li strong,
.cookie-policy-content ul li strong {
    color: var(--text-light);
}

.policy-content a,
.terms-content a,
.cookie-policy-content a {
    color: var(--cherry-red);
    text-decoration: none;
    font-weight: 500;
    transition: text-decoration 0.3s ease;
}

.policy-content a:hover,
.terms-content a:hover,
.cookie-policy-content a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {

    .policy-section,
    .terms-section,
    .cookie-policy-section {
        padding: 3rem 0.5rem;
    }

    .policy-content,
    .terms-content,
    .cookie-policy-content {
        padding: 2rem 1.5rem;
    }

    .policy-content h2,
    .terms-content h2,
    .cookie-policy-content h2 {
        font-size: 2rem;
    }

    .policy-content h3,
    .terms-content h3,
    .cookie-policy-content h3 {
        font-size: 1.25rem;
    }
}