:root {
    --clr-burgundy: #8B3A3A;
    --clr-burgundy-dark: #702e2e;
    --clr-taupe: #9C8E7B;
    --clr-blush: #F5D7D7;
    --clr-bg-light: #FAF7F2;
    --clr-white: #FFFFFF;
    --clr-gray-light: #E8E0D5;
    --clr-text-dark: #2E2A28;
    --clr-text-light: #6B625A;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    --ts-fast: 0.2s ease;
    --ts-normal: 0.3s ease;
    --ts-slow: 0.5s ease;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-dark);
    background-color: var(--clr-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.main-content,
.header,
.footer {
    width: 100%;
    overflow: hidden;
}

.text-center {
    text-align: center;
}

.text-burgundy {
    color: var(--clr-burgundy);
}

.text-taupe {
    color: var(--clr-taupe);
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-heading,
.section-heading,
.modal-heading,
.footer-heading,
.benefit-title,
.logo-schuh,
.logo-welts {
    font-family: var(--font-heading);
    color: var(--clr-text-dark);
    line-height: 1.2;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* PAGE LOADER */
.body-loading {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    background-color: var(--clr-bg-light);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity var(--ts-slow), visibility var(--ts-slow);
}

.page-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-logo {
    font-size: 2.5rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    padding-bottom: 0.2rem;
}

/* Subtle Shimmer on Logo Text */
.loader-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: loaderShimmer 2s infinite linear;
}

.loader-icon {
    font-size: 2rem;
    color: var(--clr-burgundy);
    margin-left: 0.5rem;
    display: inline-block;
    animation: bounceBag 2s infinite cubic-bezier(0.28, 0.84, 0.42, 1);
}

.loader-bar {
    width: 150px;
    height: 2px;
    background-color: var(--clr-gray-light);
    margin-top: 1.5rem;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: -50%;
    height: 100%;
    width: 50%;
    background-color: var(--clr-burgundy);
    border-radius: 2px;
    animation: loaderProgress 1.5s infinite ease-in-out;
}

@keyframes loaderShimmer {
    100% {
        left: 100%;
    }
}

@keyframes bounceBag {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes loaderProgress {
    0% {
        left: -50%;
        width: 50%;
    }

    50% {
        left: 25%;
        width: 50%;
    }

    100% {
        left: 100%;
        width: 50%;
    }
}

/* ADVERTISEMENT BAR */
.ad-top-bar {
    background-color: var(--clr-gray-light);
    text-align: center;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    color: var(--clr-text-light);
}

.ad-top-bar-text {
    margin: 0;
}

/* HEADER */
.header {
    background-color: var(--clr-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: background-color var(--ts-normal);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}

.logo-schuh {
    color: var(--clr-taupe);
}

.logo-welts {
    color: var(--clr-burgundy);
}

.logo-icon {
    font-size: 1.5rem;
    margin-left: 0.5rem;
    color: var(--clr-burgundy);
}

.desktop-nav {
    display: none;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--clr-text-dark);
    font-weight: 500;
    position: relative;
    padding-bottom: 0.2rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--clr-burgundy);
    transition: width var(--ts-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--clr-burgundy);
}

.cta-button {
    background-color: var(--clr-burgundy);
    color: var(--clr-white);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color var(--ts-normal), transform var(--ts-fast);
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--clr-burgundy-dark);
}

.header-cta {
    display: none;
}

@media (min-width: 992px) {
    .header-cta {
        display: inline-block;
    }
}

.mobile-menu-toggle {
    font-size: 1.5rem;
    color: var(--clr-text-dark);
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-white);
    z-index: 2000;
    transition: right var(--ts-normal);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .mobile-menu-overlay {
        width: 350px;
    }
}

.mobile-menu-overlay.menu-active {
    right: 0;
}

.mobile-menu-close {
    align-self: flex-end;
    font-size: 2rem;
    color: var(--clr-text-dark);
    margin-bottom: 2rem;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--clr-text-dark);
}

/* HERO SECTION */
.hero-section {
    padding: 2rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
        padding: 4rem 0;
    }

    .hero-text-content {
        flex: 1;
        padding-right: 2rem;
    }

    .hero-image-content {
        flex: 1;
    }
}

.hero-badge {
    display: inline-block;
    background-color: var(--clr-blush);
    color: var(--clr-burgundy);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .hero-heading {
        font-size: 3.5rem;
    }
}

.hero-subheading {
    font-size: 1.1rem;
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
}

.hero-price-wrapper {
    margin-bottom: 1rem;
}

.hero-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-burgundy);
    font-family: var(--font-heading);
}

.hero-offer-text {
    font-size: 0.95rem;
    background-color: var(--clr-white);
    padding: 0.75rem;
    border-left: 4px solid var(--clr-burgundy);
    margin-bottom: 1.5rem;
    border-radius: 0 4px 4px 0;
    color: var(--clr-text-dark);
}

.hero-features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 480px) {
    .hero-features-list {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.cta-large {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
}

@media (min-width: 500px) {
    .cta-large {
        width: auto;
    }
}

.hero-main-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: transform var(--ts-normal), box-shadow var(--ts-normal);
}

.hero-main-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* TRUST BADGES */
.trust-badges-section {
    background-color: var(--clr-white);
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--clr-gray-light);
    border-bottom: 1px solid var(--clr-gray-light);
}

.trust-badges-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .trust-badges-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.trust-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: var(--clr-blush);
    color: var(--clr-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.trust-text {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    line-height: 1.4;
}

/* BENEFITS SECTION */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 2.5rem;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background-color: var(--clr-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--ts-normal);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--clr-taupe);
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

/* PRODUCT DETAILS */
.product-details-section {
    background-color: var(--clr-white);
    padding: 4rem 1.5rem;
}

.product-details-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 768px) {
    .product-details-container {
        flex-direction: row;
        align-items: center;
    }

    .product-details-image-col,
    .product-details-text-col {
        flex: 1;
    }
}

.details-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.section-description {
    color: var(--clr-text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 500px) {
    .specs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--clr-gray-light);
}

.spec-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--clr-text-dark);
}

.spec-value {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

/* INSPIRATION SECTION */
.inspiration-section {
    background-color: var(--clr-bg-light);
}

.inspiration-text {
    color: var(--clr-text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.inspiration-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .inspiration-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

.inspiration-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

.inspiration-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ts-slow);
}

.inspiration-img:hover {
    transform: scale(1.05);
}

/* REVIEWS SECTION */
.reviews-section {
    background-color: var(--clr-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background-color: var(--clr-bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.review-stars {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--clr-text-dark);
}

.review-author {
    font-weight: 600;
    color: var(--clr-taupe);
}

/* FAQ SECTION */
.faq-section {
    background-color: var(--clr-bg-light);
    padding: 4rem 1.5rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--clr-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--ts-fast);
}

.faq-question:hover {
    color: var(--clr-burgundy);
}

.faq-icon {
    color: var(--clr-taupe);
    transition: transform var(--ts-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--ts-normal);
    background-color: var(--clr-white);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--clr-text-light);
}

/* FOOTER */
.footer {
    background-color: var(--clr-text-dark);
    color: var(--clr-bg-light);
    padding: 4rem 1.5rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    font-size: 1.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.footer-logo .logo-schuh {
    color: var(--clr-bg-light);
}

.footer-logo .logo-welts {
    color: var(--clr-blush);
}

.footer-owner {
    color: var(--clr-white);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.footer-slogan {
    color: #a39a95;
    font-size: 0.95rem;
}

.footer-heading {
    color: var(--clr-white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-contact-list,
.footer-legal-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    color: #a39a95;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-contact-item i {
    color: var(--clr-blush);
    margin-top: 0.2rem;
}

.footer-modal-trigger {
    color: #a39a95;
    font-size: 0.95rem;
    transition: color var(--ts-fast);
    text-align: left;
}

.footer-modal-trigger:hover {
    color: var(--clr-white);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #4a4440;
    padding-top: 2rem;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: #8c817b;
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #a39a95;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--clr-burgundy);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--ts-normal), visibility var(--ts-normal), background-color var(--ts-fast);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--clr-burgundy-dark);
}

/* COOKIE POPUP */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--clr-white);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 5000;
    transition: bottom var(--ts-normal);
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-text {
        flex: 1;
        padding-right: 2rem;
    }
}

.cookie-heading {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-desc {
    font-size: 0.9rem;
    color: var(--clr-text-light);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color var(--ts-fast);
}

.cookie-accept {
    background-color: var(--clr-burgundy);
    color: var(--clr-white);
}

.cookie-accept:hover {
    background-color: var(--clr-burgundy-dark);
}

.cookie-decline {
    background-color: var(--clr-gray-light);
    color: var(--clr-text-dark);
}

.cookie-decline:hover {
    background-color: #d8d0c5;
}

/* LEGAL MODALS */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 6000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--ts-normal), visibility var(--ts-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--clr-white);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform var(--ts-normal);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--clr-text-light);
    transition: color var(--ts-fast);
}

.modal-close:hover {
    color: var(--clr-burgundy);
}

.modal-heading {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--clr-gray-light);
}

.modal-body {
    color: var(--clr-text-dark);
    font-size: 0.95rem;
}

.modal-body p {
    margin-bottom: 1rem;
}

/* ANIMATIONS UTILITY */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}