@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');


/* =========================================================
   1. RESET / BASE
   ========================================================= */
:root {
    --primary-color: #B87333;
    --primary-dark: #8E5428;
    --secondary-color: #6B4632;
    --accent-color: #B87333;
    --bg-light: #F7F2EA;
    --bg-color: #FFFDF8;
    --text-color: #24201D;
    --text-light: #756C65;
    --border-color: #DED5CB;

    --danger-color: #e74c3c;
    --success-color: #2ecc71;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(43, 29, 23, 0.08);
    --shadow-hover: 0 10px 25px rgba(43, 29, 23, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================================
   2. TYPOGRAPHY
   ========================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #ffff;
    transition: var(--transition);
        /* border: 2px solid var(--primary-color); */
    
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

/* =========================================================
   3. CONTAINER
   ========================================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================================
   7. BUTTONS
   ========================================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.3);
}

.btn-outline {
    background-color: #4a382d;
    color: #ffff;
    border: 2px solid var(--primary-color);
}

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

/* Page Loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =========================================================
   4. HEADER
   ========================================================= */
#main-header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
}

#main-header.is-scrolled {
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

#desktop-nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none;
}

#desktop-nav>ul>li {
    position: relative;
}

#desktop-nav a {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;
    transition: var(--transition);
}

#desktop-nav>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

#desktop-nav>ul>li>a:hover::after,
#desktop-nav>ul>li>a.active::after {
    width: 100%;
}

#desktop-nav a.active {
    color: var(--primary-color);
}

/* =========================================================
   6. HOME DROPDOWN
   ========================================================= */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-color);
    width: 200px;
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 6px 0;
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    list-style: none;
}

#desktop-nav .dropdown-menu {
    display: block;
    flex-direction: column;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 13px 18px;
    display: block;
    color: var(--text-color) !important;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color) !important;
}

.dropdown-menu li + li {
    border-top: 1px solid var(--border-color);
}

.mobile-dropdown-menu {
    display: none;
    padding: 6px 0 6px 20px;
    margin: 0;
    border-left: 2px solid var(--accent-color);
}

#page-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.mobile-dropdown-menu a {
    font-size: 18px !important;
    padding: 10px 14px !important;
    border-bottom: 1px solid var(--border-color) !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

#dark-mode-toggle,
#rtl-toggle,
#hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--secondary-color);
    transition: var(--transition);
}

#dark-mode-toggle:hover,
#rtl-toggle:hover {
    color: var(--primary-color);
}

#hamburger-menu {
    display: none;
    font-size: 24px;
}

/* Mobile Menu */
#mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 1001;
    transition: right 0.4s ease;
    padding: 80px 30px;
    overflow-y: auto;
}

#mobile-menu.active {
    right: 0;
}

#close-menu {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--secondary-color);
    cursor: pointer;
}

#mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#mobile-menu a {
    font-size: 22px;
    font-family: var(--font-heading);
    color: var(--secondary-color);
    display: block;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

#mobile-menu a.active {
    color: var(--primary-color);
}

/* =========================================================
   18. FOOTER
   ========================================================= */
#main-footer {
    background-color: #2B1D17;
    color: white;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-widget p {
    color: #cccccc;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    color: #cccccc;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999999;
}

/* =========================================================
   9. SECTIONS
   ========================================================= */
.section-padding {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================================
   8. HERO / BANNER
   ========================================================= */
.hero-section {
    padding: 120px 0;
    background: #2B1D17;
    color: white;
    text-align: center;
}

/* Shared page-banner treatment. Page-specific images may still show through. */
#main-content > section:first-of-type {
    background-color: #916552;
    color: #FFFDF8;
}

#main-content > section:first-of-type h1,
#main-content > section:first-of-type h2 {
    color: #FFFDF8;
}

#main-content > section:first-of-type p {
    color: #E8DCD1;
}

.s-b9813d52,
.s-51d574fc,
.s-c2c5e3bc,
.s-b4a1a302 {
    background-color: #2B1D17;
    color: #FFFDF8;
}

.s-c2c5e3bc,
.s-b4a1a302,
.s-30cdd5fc {
    background-color: #2B1D17;
    background-blend-mode: normal;
}

.hero-content h1 {
    color: white;
    font-size: 56px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #eeeeee;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* =========================================================
   19. UTILITIES
   ========================================================= */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-30 {
    margin-top: 30px;
}

/* =========================================================
   20. RESPONSIVE MEDIA QUERIES
   ========================================================= */
@media (max-width: 992px) {
    #desktop-nav {
        display: none;
    }

    #hamburger-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Premium FAQ accordion */
.faq-section {
    background: #F7F2EA;
}

.section-heading {
    max-width: 650px;
    margin: 0 auto 35px;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #B87333;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.section-heading h2 {
    margin-bottom: 12px;
    color: #2B1D17;
}

.section-heading p {
    color: #756C65;
}

.faq-item {
    position: relative;
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid #DED5CB;
    border-radius: 8px;
    background: #FFFDF8;
    box-shadow: 0 4px 14px rgba(43, 29, 23, 0.06);
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
    border-color: #B87333;
    box-shadow: 0 7px 18px rgba(43, 29, 23, 0.1);
    transform: translateY(-1px);
}

.faq-item.active {
    border-color: #B87333;
    background: #FFF8EF;
    box-shadow: 0 8px 20px rgba(184, 115, 51, 0.12);
}

.faq-item.active::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: #B87333;
    content: '';
}

.faq-question {
    display: flex;
    width: 100%;
    min-height: 64px;
    padding: 18px 22px 18px 24px;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
    color: #2B1D17;
    font: inherit;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}

.faq-question:focus-visible {
    outline: 3px solid rgba(184, 115, 51, 0.45);
    outline-offset: -3px;
}

.faq-icon {
    flex: 0 0 auto;
    margin-left: 18px;
    color: #B87333;
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.faq-item.active .faq-answer {
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 24px 22px;
    border-top: 1px solid #DED5CB;
}

.faq-answer p {
    margin: 16px 0 0;
    color: #756C65;
    line-height: 1.7;
}

 

.premium-detail-grid,
.premium-card-grid,
.info-card-grid,
.process-grid,
.value-grid,
.story-grid,
.tip-grid,
.faq-grid,
.related-grid {
    display: grid;
    gap: 24px;
}

.premium-detail-grid,
.premium-card-grid,
.info-card-grid,
.tip-grid,
.faq-grid,
.related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid,
.value-grid,
.story-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.premium-info-card,
.premium-value-card,
.premium-process-card,
.premium-story-card,
.tip-card,
.faq-card,
.related-card,
.scope-card {
    background: #FFFDF8;
    border: 1px solid #E9DED2;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 8px 24px rgba(43, 29, 23, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-info-card:hover,
.premium-value-card:hover,
.premium-process-card:hover,
.premium-story-card:hover,
.tip-card:hover,
.faq-card:hover,
.related-card:hover,
.scope-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(43, 29, 23, 0.1);
}

.premium-info-card .card-icon,
.premium-value-card .card-icon,
.premium-process-card .card-icon,
.tip-card .card-icon,
.faq-card .card-icon,
.related-card .card-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(184, 115, 51, 0.12);
    color: #B87333;
    font-size: 1.3rem;
}

.premium-info-card h3,
.premium-value-card h3,
.premium-process-card h3,
.premium-story-card h3,
.tip-card h3,
.related-card h3,
.scope-card h3,
.faq-card h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    color: #2B1D17;
}

.premium-info-card p,
.premium-value-card p,
.premium-process-card p,
.premium-story-card p,
.tip-card p,
.related-card p,
.scope-card p,
.faq-card p {
    margin: 0;
    color: #695F5A;
    line-height: 1.7;
}

.premium-value-card strong,
.premium-story-card strong,
.premium-process-card strong,
.scope-card strong {
    color: #2B1D17;
}

.premium-cta-band {
    position: relative;
    overflow: hidden;
    background-color: #2B1D17;
    background-image: url('../images/equipment.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFDF8;
    border-radius: 18px;
    padding: 80px 32px;
    text-align: center;
}

.premium-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 15, 12, 0.62);
    z-index: 0;
}

.premium-cta-band > * {
    position: relative;
    z-index: 1;
}

.premium-cta-band h3,
.premium-cta-band p {
    color: #FFFDF8;
}

.premium-cta-band p {
    max-width: 680px;
    margin: 0 auto 18px;
}

.check-list,
.service-list,
.value-list,
.tip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.check-list li,
.service-list li,
.value-list li,
.tip-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #524B48;
    line-height: 1.7;
}

.check-list i,
.service-list i,
.value-list i,
.tip-list i {
    margin-top: 5px;
    color: #B87333;
}

.mini-stat-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.mini-stat {
    background: rgba(184, 115, 51, 0.06);
    border: 1px solid rgba(184, 115, 51, 0.12);
    border-radius: 12px;
    padding: 18px 16px;
    text-align: center;
}

.mini-stat strong {
    display: block;
    font-size: 1.6rem;
    color: #2B1D17;
}

.mini-stat span {
    color: #695F5A;
}

.faq-accordion-list {
    display: grid;
    gap: 14px;
}

.faq-accordion-list .faq-item {
    margin-bottom: 0;
}

.s-05fed71d,
.s-8f29038f {
    padding: 0;
}

@media (max-width: 1024px) {
    .premium-detail-grid,
    .premium-card-grid,
    .info-card-grid,
    .tip-grid,
    .faq-grid,
    .related-grid,
    .process-grid,
    .value-grid,
    .story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .premium-detail-grid,
    .premium-card-grid,
    .info-card-grid,
    .tip-grid,
    .faq-grid,
    .related-grid,
    .process-grid,
    .value-grid,
    .story-grid,
    .mini-stat-strip {
        grid-template-columns: 1fr;
    }

    .premium-cta-band {
        padding: 56px 20px;
    }

    .s-fe34199b,
    .cta-premium-section {
        padding: 56px 0;
    }
}

@media (max-width: 768px) {
    .s-fe34199b,
    .cta-premium-section,
    .premium-cta-band {
        padding: 64px 0;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .s-fe34199b,
    .cta-premium-section,
    .premium-cta-band {
        padding: 72px 0;
    }
}

/* Keep banner content above the image and readability overlay. */
.hero-banner {
    position: relative;
    overflow: hidden;
    background-color: #2B1D17;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(43, 29, 23, 0.68);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-banner h1,
.hero-banner h2 {
    color: #FFFDF8;
}

.hero-banner p,
.hero-banner .s-4412b45f {
    color: #E8DCD1;
}

.hero-banner .section-eyebrow,
.hero-banner .s-109749fd,
.hero-banner .s-5ad0e2a8 {
    color: #C98A52;
}

.hero-banner .btn-primary {
    background-color: #B87333;
    border-color: #B87333;
    color: #2B1D17;
}

@media (max-width: 600px) {
    .faq-question {
        min-height: 56px;
        padding: 16px 18px 16px 20px;
    }

    .faq-answer-inner {
        padding: 0 20px 18px;
    }
}

/* =========================================================
   16. FORMS
   ========================================================= */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.error-message {
    color: var(--danger-color);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.form-group.has-error .form-control {
    border-color: var(--danger-color);
}

.form-group.has-error .error-message {
    display: block;
}

.success-message {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--success-color);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
    text-align: center;
    font-weight: 600;
}

/* Extracted Inline Styles */
.s-47e6c7e0 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--bg-light);
    text-align: center;
}

.s-2d12ed89 {
    max-width: 600px;
    padding: 40px;
}

.s-f9a21a82 {
    font-size: 120px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.s-a75377df {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
    transform: rotate(-15deg);
}

.s-7b738f9b {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.s-424a85a7 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.s-9ed51bb6 {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.s-71f20790 {
    margin-right: 8px;
}

.s-5d6d0a56 {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.s-db6bd101 {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.s-8bbeb0e4 {
    font-size: 10px;
    margin-left: 3px;
}

.s-816ec9ac {
    color: var(--secondary-color);
    font-size: 18px;
}

.s-24e1e07a {
    margin-left: 10px;
}

.s-6f07cccf {
    margin-top: 50px;
}

.s-2447f692 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s-69f8be06 {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
}

.s-a0542310 {
    font-size: 18px;
    padding: 10px 0;
}

.s-716ecfd3 {
    margin-top: 20px;
}

.s-6872edd9 {
    margin-right: 10px;
}

.s-8588e44d {
    width: 100%;
}

.s-b9813d52 {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 80px;
}

.s-45532078 {
    color: white;
    font-size: 48px;
    font-family: var(--font-heading);
}

.s-0349996f {
    color: #F7F2EA;
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

.s-6547a91d {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.s-492df0e1 {
    flex: 1;
    min-width: 300px;
}

.s-72ab2ac8 {
    font-size: 36px;
    margin-bottom: 20px;
}

.s-cac5c2de {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.8;
}

.s-c6c75129 {
    width: 100%;
    height: 430px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.s-9252f5e1 {
    font-size: 36px;
    margin-bottom: 40px;
}

.s-280aac44 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.s-3c288c35 {
    padding: 30px;
    background: var(--bg-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.s-d28be700 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.s-d7858cfa {
    margin-bottom: 15px;
}

.s-74de57f7 {
    color: var(--text-light);
}

.s-f701564a {
    background: url('https://images.unsplash.com/photo-1595341585250-9bb6a2bc4b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    color: white;
}

.s-73ebba1a {
    background: rgba(23, 17, 14, 0.85);
    padding: 80px 0;
}

.s-83ddfdd0 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.s-3dbff527 {
    color: #F7F2EA;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.s-18eaade3 {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.s-77b6280a {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.s-47a32e23 {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    flex-direction: row-reverse;
}

.s-e85e1f62 {
    list-style: none;
    padding: 0;
}

.s-b123032a {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.s-84252ab0 {
    color: var(--primary-color);
    font-size: 18px;
}

.s-870a9f9e {
    color: var(--text-light);
    margin-top: 5px;
}

.s-b59fec3f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.s-c569fe91 {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.s-c22101ff {
    color: var(--text-color);
}

.s-539b047e {
    text-align: center;
}

.s-f1dbebcc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.s-971e2f0f {
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

.s-1ed11bd1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.s-32f35ce1 {
    display: inline-block;
    margin-bottom: 20px;
}

.s-203ba6a7 {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.s-1b2c6984 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.s-35d267cc {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.s-943ddc05 {
    color: var(--text-light);
    text-decoration: none;
}

.s-d98a04bc {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

.s-30cdd5fc {
    height: 60vh;
    /* background: url('../image/heels.jpg') center/cover; */
    position: relative;
    display: flex;
    align-items: flex-end;
}

.s-f06e0d30 {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(23, 17, 14, 0.9));
}

.s-2e73aa9c {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.s-109749fd {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.s-ab5ff420 {
    color: white;
    font-size: 48px;
    margin: 15px 0 20px;
    max-width: 700px;
}

.s-4412b45f {
    display: flex;
    gap: 20px;
    color: #F5EDE4;
    font-size: 14px;
}

.s-9bc6cc67 {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.s-b0d41c33 {
    flex: 2;
    min-width: 300px;
}

.s-22a07b0e {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.s-393db9d7 {
    font-size: 28px;
    margin-bottom: 15px;
}

.s-63d3f65a {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.s-5a6aed6c {
    width: 100%;
     height: 450px;
    border-radius: 8px;
    margin: 30px 0;
}

.s-da2bac5a {
    border-left: 4px solid var(--accent-color);
    padding: 20px 30px;
    margin: 30px 0;
    background: var(--bg-light);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 20px;
    color: var(--text-color);
}

.s-4e9d0dff {
    font-size: 18px;
    line-height: 2;
    color: var(--text-light);
    padding-left: 25px;
    margin-bottom: 30px;
}

.s-23d2a1e8 {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 15px;
    align-items: center;
}

.s-4d48fddc {
    color: var(--text-light);
    font-weight: 600;
}

.s-97d62cf2 {
    color: var(--text-light);
    font-size: 20px;
}

.s-b6bb644e {
    flex: 1;
    min-width: 250px;
}

.s-43e99212 {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.s-ca234962 {
    margin-bottom: 20px;
    font-size: 20px;
}

.s-83282421 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.s-d424f5fe {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.s-1b1ed0c9 {
    font-size: 14px;
    color: var(--text-light);
}

.s-fbd5003b {
    color: var(--text-light);
    font-size: 15px;
}

.s-1f4f0a98 {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.s-81c09b0f {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
}

.s-8e05a538 {
    font-size: 13px;
    color: var(--text-light);
}

.s-352f88d7 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.s-48116bd8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.s-6dd6be3b {
    background: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.s-367cfab3 {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.s-b4439e2e {
    padding: 25px;
}

.s-e2151554 {
    font-size: 18px;
}

.s-c918814d {
    color: var(--text-color);
    text-decoration: none;
}

.s-fe34199b {
    position: relative;
    overflow: hidden;
    background-color: #2B1D17;
    background-image: url('../images/equipment.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.s-fe34199b::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 15, 12, 0.62);
    z-index: 0;
}

.s-fe34199b > .container {
    position: relative;
    z-index: 1;
}

.s-dcd3112e {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
}

.s-af3f1849 {
    color: #F7F2EA;
    max-width: 600px;
    margin: 0 auto 30px;
}

.s-2ec1e86e {
    background: var(--accent-color);
    color: white;
}

.s-99bf624d {
    border-color: white;
    color: white;
    margin-left: 15px;
}

.s-46fe3aa3 {
    color: var(--text-light);
    line-height: 1.6;
}

.s-c99fe824 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 20px;
}

.s-9f10d0d0 {
    color: white;
    font-size: 48px;
}

.s-87c59496 {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.s-5f6fe5e1 {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: url('../images/hero-bg.jpg') center/cover;
}

.s-7ef140e9 {
    flex: 1;
    min-width: 300px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.s-d04be85c {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.s-3fdcb0e0 {
    font-size: 32px;
    margin: 15px 0 20px;
}

.s-3474e9f3 {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.s-4e186f80 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.s-3c05abf1 {
    margin-right: 5px;
}

.s-52e598cf {
    width: fit-content;
}

.s-4d5df0a7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.s-54091546 {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.s-b8f3a06b {
    font-size: 20px;
    margin: 10px 0 15px;
}

.s-f3482031 {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 15px;
}

.s-cd2e8c3c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-light);
}

.s-3fe5e9a0 {
    font-size: 36px;
    margin-bottom: 30px;
}

.s-50a4f5ad {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.s-dbd9f253 {
    padding: 10px 25px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.s-95d19f45 {
    max-width: 800px;
    margin: 0 auto;
}

.s-40d071dd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-color);
}

.s-7c8fee75 {
    margin-bottom: 5px;
}

.s-08e9a9dc {
    color: var(--text-light);
    font-size: 14px;
}

.s-bef3f7e2 {
    color: var(--accent-color);
}

.s-4830d42e {
    font-size: 36px;
    margin-bottom: 15px;
}

.s-f565a4e0 {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 30px;
}

.s-c3bfdb5e {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.s-75af807a {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    outline: none;
    background: var(--bg-color);
    color: var(--text-color);
}

.s-e8f64d8f {
    border-radius: 0 4px 4px 0;
}

.s-f4030742 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--primary-color);
    text-align: center;
    color: white;
}

.s-d783f8d3 {
    display: block;
    margin-bottom: 40px;
    font-size: 32px;
    color: white;
}

.s-746b8135 {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 30px;
    display: block;
}

.s-5de9aaf1 {
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
    font-weight: 400;
}

.s-94442d54 {
    color: #F7F2EA;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.s-2fb872da {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.s-c47a30a2 {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.s-d69d883f {
    font-size: 28px;
    font-weight: 700;
}

.s-a8cf702c {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #B9AAA0;
}

.s-9bd6204e {
    color: #B9AAA0;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.s-8ea99aa0 {
    display: flex;
    max-width: 400px;
    margin: 0 auto 30px;
}

.s-f22bda8f {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px 0 0 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

.s-6e9e0f50 {
    padding: 12px 20px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 600;
}

.s-669a12ab {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 20px;
}

.s-f8ec46cf {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.s-75f8f0ce {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.s-c58d5bea {
    margin-bottom: 10px;
}

.s-be534a71 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.s-c7e44310 {
    font-size: 36px;
    margin-bottom: 10px;
}

.s-ab4873a1 {
    color: var(--text-light);
    margin-bottom: 30px;
}

.s-5f654d30 {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.s-d5e8c5f3 {
    flex: 1;
}

.s-3d5f1d95 {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.s-c30a1847 {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-color);
    color: var(--text-color);
    outline: none;
}

.s-29910d02 {
    color: var(--danger-color);
    font-size: 13px;
    display: none;
}

.s-6841118b {
    margin-bottom: 20px;
}

.s-641d075b {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-color);
    color: var(--text-color);
    outline: none;
    resize: vertical;
}

.s-d4d3f7cb {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: #d4edda;
    color: #155724;
    border-radius: 4px;
    text-align: center;
}

.s-32feca21 {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.s-f8da8d22 {
    border: 0;
    min-height: 400px;
}

.s-101cca0b {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.s-3211019e {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.s-a5d2baa1 {
    font-weight: 600;
}

.s-f00e44ae {
    color: var(--accent-color);
    font-weight: 600;
}

.s-af08a948 {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}

.s-edfbae4b {
    color: var(--danger-color);
    font-weight: 600;
}

.s-2de21f36 .accordion-header,
.s-2de21f36 button,
.s-2de21f36 > div {
    padding: 12px 20px !important; /* Reduces top and bottom height */
    min-height: unset !important;   /* Prevents fixed minimum heights */
    line-height: 1.2 !important;     /* Reduces text line spacing */
}

.s-05fed71d {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.s-fd21ef8a {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
    padding: 0;
}

.s-b8af0c08 {
    transition: transform 0.3s;
}

.s-e9fc4017 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.s-3f275112 {
    color: var(--text-light);
    padding-top: 15px;
}

.s-8f29038f {
    padding: 20px 0;
}

.s-1e6ae59d {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 32px;
}

.s-e9f6a118 {
    color: var(--text-color);
    transition: var(--transition);
}

.s-55480180 {
    color: #F7F2EA;
    max-width: 500px;
    margin: 0 auto 30px;
}

.s-cc8c0bc6 {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.s-c113e9ca {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}

.s-7d3e0f0d {
    font-size: 36px;
    color: var(--primary-color);
}

.s-76b1508b {
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.s-b087659d {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.s-7a9cfddb {
    padding: 10px 25px;
    border: 1px solid var(--border-color);
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.s-21870abf {
    padding: 10px 25px;
    border: 1px solid var(--border-color);
    background: var(--bg-color);
    color: var(--text-color);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.s-65d6158a {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.s-2bf50d07 {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.s-b0a9d5cf {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.s-57e496be {
    position: absolute;
    inset: 0;
    background: rgba(43, 29, 23, 0);
    transition: background 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.s-d9adff71 {
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
}

.gallery-item.is-hidden {
    display: none;
}

.gallery-item.is-hovered .s-57e496be {
    background: rgba(43, 29, 23, 0.7);
}

.gallery-item.is-hovered .s-d9adff71 {
    opacity: 1;
}

.gallery-item.is-hovered img {
    transform: scale(1.05);
}

.s-be7c408c {
    color: white;
    margin-bottom: 5px;
}

.s-7a3e18c7 {
    font-size: 14px;
    color: var(--accent-color);
}

.s-602fa692 {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: url('../images/shoe-before-01.jpg') center/cover;
    position: relative;
}

.s-376c771d {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    color: var(--primary-color);
    padding: 8px 20px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 1px;
}

.s-dac86b20 {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1614252339474-d071f6448a5c?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80') center/cover;
    position: relative;
}

.s-46d586dd {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 1px;
}

.s-7e39b8cf {
    text-align: center;
    margin-top: 30px;
}

.s-e8efa783 {
    color: var(--text-light);
    max-width: 600px;
    margin: 10px auto;
}

.s-eaaedc61 {
    font-size: 36px;
    margin: 15px 0 20px;
}

.s-0b6fbefe {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.s-bdf835db {
    color: var(--text-light);
    line-height: 1.7;
}

.s-42eb37af {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.s-dfb03303 {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.s-ccd3c48c {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.s-12b02b29 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 29, 23, 0.5);
}

.s-a7bd36b3 {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.s-58f277af {
    color: white;
    font-family: var(--font-heading);
    font-size: 72px;
    margin-bottom: 20px;
    font-weight: 400;
}

.s-8a3b0fb0 {
    color: #F7F2EA;
    font-size: 22px;
    max-width: 600px;
    margin: 0 auto 40px;
    font-family: var(--font-heading);
    font-style: italic;
}

.s-64ce9c9c {
    padding: 15px 40px;
}

.s-7b686a59 {
    border-color: white;
    color: white;
    padding: 15px 40px;
}

.s-255d429d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.s-c1bc8254 {
    height: 350px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.s-7ea12b10 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s-589c2b9c {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-3bc68f2e {
    color: white;
    font-size: 28px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.s-3fa5152d {
    text-align: center;
    margin-bottom: 50px;
}

.s-3022bcee {
    font-size: 42px;
}

.s-abc38da1 {
    color: var(--text-light);
    max-width: 600px;
    margin: 15px auto 0;
}

.s-48fdf348 {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.s-df7b76dd {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.s-9e02d5b3 {
    flex: 1;
    min-width: 300px;
    background: url('https://images.unsplash.com/photo-1607522370275-f14206abe5d3?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80') center/cover;
    height: 350px;
    position: relative;
}

.s-24d11b70 {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    color: var(--primary-color);
    padding: 5px 15px;
    font-weight: 700;
    border-radius: 4px;
}

.s-7c8d2993 {
    flex: 1;
    min-width: 300px;
    background: url('https://images.unsplash.com/photo-1614252339474-d071f6448a5c?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80') center/cover;
    height: 350px;
    position: relative;
}

.s-658f1fdb {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    font-weight: 700;
    border-radius: 4px;
}

.s-ef0c6970 {
    width: 100%;
    background: var(--bg-color);
    padding: 30px;
    border-top: 1px solid var(--border-color);
}

.s-95586008 {
    color: var(--text-light);
    margin-top: 10px;
}

.s-7fef3d61 {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.s-40d7f468 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.s-9a52bd26 {
    list-style: none;
    padding: 0;
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
}

.s-0f5ffa22 {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.s-46814429 {
    color: var(--accent-color);
    font-size: 24px;
    margin-top: 5px;
}

.s-591f9b63 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.s-a5f88e85 {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.s-0a496d4d {
    padding: 30px;
}

.s-186e5aa5 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.s-05873f9c {
    font-size: 42px;
    margin-bottom: 50px;
}

.s-14c2778e {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.s-20f80530 {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.s-57023998 {
    color: var(--accent-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.s-7c02f52c {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-color);
}

.s-4c966cc1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.s-3652df6f {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.s-244a7f30 {
    text-align: left;
}

.s-272b26d5 {
    margin: 0;
    font-family: var(--font-body);
}

.s-79cb86c8 {
    font-size: 12px;
    color: var(--text-light);
}

.s-22441fdb {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    font-weight: 400;
}

.s-3819eb49 {
    color: #F7F2EA;
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.s-4afd3810 {
    background: var(--accent-color);
    color: white;
    padding: 15px 40px;
}

.s-a49b7a05 {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    padding: 15px 40px;
}

.s-b04935c3 {
    display: flex;
    gap: 15px;
}

.s-9e6ae135 {
    color: var(--text-light);
    font-size: 20px;
    transition: var(--transition);
}

.s-06dddd17 {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.s-0d896629 {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.s-3c584210 {
    color: var(--accent-color);
    width: 20px;
}

.s-d4911e31 {
    color: var(--text-light);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.s-cdaa188e {
    display: flex;
}

.s-88eec98e {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    outline: none;
    width: 100%;
}

.s-b050ac54 {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.s-4aaa9ca0 {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.s-c2c5e3bc {
    position: relative;
    color: white;
    padding-top: 150px;
    padding-bottom: 120px;
}

.s-6c6ac406 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 17, 14, 0.75);
}

.s-d2319636 {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.s-bb67b144 {
    color: white;
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.s-1cc22d04 {
    color: #F5EDE4;
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.s-ecf5f5de {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.s-22a84089 {
    border-color: white;
    color: white;
}

.s-69bda0e0 {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    color: #DED5CB;
}

.s-9f06e7b0 {
    color: var(--accent-color);
    margin-right: 8px;
}

.s-8cb9c17b {
    background-color: var(--bg-light);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.s-f6039be0 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.s-ee37ca25 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.s-649d7514 {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-size: 14px;
}

.s-1b87c724 {
    flex: 1;
    border-left: 1px solid var(--border-color);
    padding-left: 20px;
}

.s-4b3b6260 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.s-186721ea {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.s-a82a58ba {
    margin-bottom: 30px;
    line-height: 1.7;
    color: var(--text-light);
}

.s-9f876c5a {
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.s-dbf786ff {
    font-size: 36px;
}

.s-d220c061 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.s-b704ed69 {
    grid-column: span 8;
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

.s-d75e4258 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(23, 17, 14, 0.9));
    color: white;
}

.s-ef92310f {
    color: white;
    margin-bottom: 10px;
}

.s-47a69f09 {
    grid-column: span 4;
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

.s-05738ec3 {
    grid-column: span 4;
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.s-01c3a621 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: white;
}

/* .s-ded1115e {
    color: var(--accent-color);
    margin-bottom: 15px;
} */

.s-4e800409 {
    color: white;
    margin-bottom: 10px;
    font-size: 20px;
}

.s-d5ffbc1d {
    font-size: 14px;
    color: #eee;
}

.s-652431d6 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(23, 17, 14, 0.9));
    color: white;
}

.s-da0bcb1f {
    color: white;
    font-size: 20px;
}

.s-cc1381c8 {
    text-align: center;
    margin-top: 40px;
}

.s-2bf05d49 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.s-0befc8f1 {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.s-7833b2ef {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 250px;
}

.s-f4458a0e {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1607522370275-f14206abe5d3?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80') center/cover;
    position: relative;
    border-right: 2px solid white;
}

.s-874d681e {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(23, 17, 14, 0.7);
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
}

.s-d3564499 {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1614252339474-d071f6448a5c?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80') center/cover;
    position: relative;
}

.s-65ffd729 {
    font-size: 20px;
    margin-bottom: 5px;
}

.s-c2bd4d06 {
    flex: 1;
    background: url('../images/sample shoe.jpg') center/cover;
    position: relative;
    border-right: 2px solid white;
}

.s-9e99016b {
    flex: 1;
    background: url('../images/premium heel.jpg') center/cover;
    position: relative;
    filter: saturate(1.5) contrast(1.1);
}

.s-79f0ace6 {
    text-align: center;
    margin-top: 20px;
}

.s-956d0cf0 {
    text-align: center;
    margin-bottom: 60px;
}

.s-6d8ef279 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.s-b1acb756 {
    width: 80px;
    height: 80px;
    background: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
    /* border: 2px solid var(--accent-color); */
}

.s-19c192c8 {
    color: var(--primary-color);
    font-size: 24px;
    margin: 0;
}

.s-1a23a742 {
    width: 80px;
    height: 80px;
    background: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
    /* border: 2px solid var(--border-color); */
}

.s-4ea6210e {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

/* Reset & Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Heading Alignment & Spacing */
.s-6a71d759 {
    color: #9b6f6f;
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center; /* Centers the main heading */
}

/* Parent Section/Hero Container */
.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center; /* Ensures subtitle text centers as well */
}

.hero-section p {
    max-width: 600px;
    margin: 0 auto 2rem auto; /* Centers the paragraph block */
}

/* Button Container (Fixes off-center & white-on-white button) */
.button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Primary Button Fix (Visible text & background) */
.btn-primary {
    background-color: #c4763b;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* Bottom 3-Column Info Section Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left; /* Keeps column content neatly aligned internally */
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr; /* Stacks columns nicely on mobile */
        text-align: center;
    }
}

.s-862f2c48 {
    color: #9b6f6f;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
}

.s-0296b900 {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.s-208fe246 {
    background-color: var(--accent-color);
    color: white;
}

.s-c9b6ef7f {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.s-d95ea4a7 {
    margin-left: 5px;
}

.s-700d612c {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.s-6a1ff245 {
    flex: 1;
    min-width: 200px;
}

.s-7e5c746e {
    color: #f37805;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.s-b47472ee {
    color: #000000;
    line-height: 1.6;
}

.s-5b9e99d2 {
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.s-e79ae1b7 {
    background-color: var(--bg-color);
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
}

.s-459d24fe {
    display: block;
    margin-bottom: 30px;
    font-size: 32px;
}

.s-1c4a92e0 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.s-9c7e6cbc {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 500;
}

.s-1a4d02e9 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 500;
}

.s-5c009fa5 {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: normal;
}

.s-9db8aedd {
    width: 100%;
    margin-bottom: 20px;
}

.s-8650d244 {
    text-align: center;
    color: var(--text-light);
}

.s-4c62d8ee {
    color: var(--primary-color);
    font-weight: 600;
}

.s-18be2eec {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.s-050d0462 {
    /* background: var(--text-color); */
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.s-51d574fc {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 80px;
}

.s-e4d5dd9e {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.s-1538765d {
    color: var(--danger-color);
    font-weight: 600;
    margin-top: 15px;
}

.s-fe3053ae {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    background: var(--bg-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.s-3afc8405 {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.s-6c1951c9 {
    background-color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
}

.s-8074f326 {
    padding: 20px;
    font-family: var(--font-heading);
    font-size: 20px;
    color: white;
}

.s-c55dd248 {
    border-bottom: 1px solid var(--border-color);
}

.s-8ca52cd8 {
    padding: 15px;
    font-weight: 600;
    color: var(--text-color);
}

.s-32acf3de {
    padding: 15px;
    color: var(--accent-color);
    font-weight: bold;
}

.s-5759d4f7 {
    padding: 15px;
    color: var(--text-light);
}

.s-4ddfbf63 {
    padding: 15px;
    color: var(--text-light);
    font-size: 14px;
}

.s-898b1527 {
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-light);
}

.s-f0fe3fd4 {
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
}

.s-58e234e1 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.s-fcdab116 {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.s-1375d67b {
    color: var(--text-light);
    margin-bottom: 15px;
}

.s-8ff27b26 {
    border-color: var(--border-color);
    margin-bottom: 15px;
}

.s-00b18a45 {
    color: var(--accent-color);
    margin-right: 10px;
}

.s-4a905439 {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.s-2791028d {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.s-88444c55 {
    width: 250px;
}

.s-14ba6229 {
    color: #F7F2EA;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.s-f73b8613 {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.s-bb680ec5 {
    margin-top: 4px;
}

.s-7727fb1e {
    color: var(--primary-color);
}

.s-fa1dbe4e {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.s-ad8ebd22 {
    padding: 40px;
}

.s-65e3276c {
    font-size: 72px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.s-d0f3c83d {
    color: var(--accent-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.s-51e0b46e {
    flex: 1;
    max-width: 400px;
    min-width: 250px;
}

.s-bf53d819 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.s-ef0b2722 {
    width: 30px;
    font-weight: 600;
}

.s-821e60d6 {
    flex: 1;
    height: 10px;
    background: var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.s-69e47ddd {
    width: 92%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 5px;
}

.s-9f874aa4 {
    width: 40px;
    text-align: right;
    color: var(--text-light);
    font-size: 14px;
}

.s-131016b4 {
    width: 6%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 5px;
}

.s-90994e7e {
    width: 2%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 5px;
}

.s-839ea7f2 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: var(--bg-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.s-73be990f {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-color);
}

.s-3e786f04 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.s-46dcee64 {
    margin: 0;
}

.s-16694a8e {
    margin-bottom: 20px;
    font-style: italic;
}

.s-3b6fff87 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.s-2c7989a3 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.s-8b0f0848 {
    height: 350px;
    background: url('../images/sneakers 2.jpg') center/cover;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.s-bb1f08d1 {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.s-7703b73e {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.s-56b361b1 {
    color: white;
    font-size: 24px;
    margin-left: 5px;
}

.s-7a92b2fc {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}

.s-2bc5abb6 {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.s-0fa71d91 {
    width: 200px;
    text-align: center;
}

.s-b4a1a302 {
    height: 50vh;
    background: url('../images/image.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.s-6fd3db88 {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(23, 17, 14, 0.9));
}

.s-5ad0e2a8 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.s-41fa22ea {
    color: white;
    font-size: 48px;
    margin-top: 15px;
}

.s-98d8397b {
    color: #F7F2EA;
    font-size: 18px;
}

.s-1516e35e {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.s-d97c97d3 {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.s-e2f34fd5 {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.s-a303787f {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

.s-8ef5175e {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
}

.s-0aa92843 {
    color: var(--success-color);
}

.s-d0d9f6e2 {
    width: 100%;
    margin-top: 20px;
}

.s-50920d98 {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.s-3b6a2807 {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.s-1b334de0 {
    color: var(--accent-color);
    font-size: 20px;
    margin-top: 3px;
}

.s-63c28253 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.s-5e80f5bd {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    font-weight: 700;
}

.s-4f284a1e {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 5px;
}

.s-57a5243f {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.s-f9ec89dd {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
}

.s-58f7599b {
    width: 100%;
    border-radius: 8px;
}

.s-f819d249 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.s-d92a65f7 {
    background: var(--bg-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.s-8da24b10 {
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    display: inline-block;
}

.s-beba1ba1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.s-1dcfed86 {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.s-2414a3b4 {
    position: absolute;
    inset: 0;
    background: rgba(43, 29, 23, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    color: white;
}

.s-c5e872b5 {
    color: #eee;
    margin-bottom: 15px;
}

.s-22c45030 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.s-a5601b25 {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.s-54ce5017 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.s-c447d473 {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}


/* Before & After Component */
.before-after-item {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--bg-light);
    margin-bottom: 30px;
}

.before-after-images {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.before-image,
.after-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 400px;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-label {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 1px;
    z-index: 2;
}

.before-image .image-label {
    background: white;
    color: var(--primary-color);
}

.after-image .image-label {
    background: var(--accent-color);
    color: white;
}

.before-after-content {
    padding: 30px;
    text-align: center;
}

.before-after-content span {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.before-after-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.before-after-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* =========================================================
   CRAFTSMANSHIP SECTION
   ========================================================= */

.craftsmanship-section {
    position: relative;
    padding: 100px 0;
    background: #f7f2ea;
    overflow: hidden;
}

.craftsmanship-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.craftsmanship-section .section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.craftsmanship-section .section-eyebrow {
    display: inline-block;
    margin-bottom: 14px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: #b87333;
}

.craftsmanship-section .section-heading h2 {
    margin: 0 0 16px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 700;

    color: #2b1d17;
}

.craftsmanship-section .section-heading p {
    max-width: 620px;
    margin: 0 auto;

    font-size: 16px;
    line-height: 1.8;

    color: #756c65;
}


/* =========================================================
   GRID
   ========================================================= */

.craftsmanship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* =========================================================
   CARD
   ========================================================= */

.craftsmanship-card {
    position: relative;

    min-height: 285px;
    padding: 32px 30px;

    background: #fffdf8;
    border: 1px solid #ded5cb;
    border-radius: 18px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background-color 0.35s ease;
}


/* Decorative line */

.craftsmanship-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: #b87333;

    transition: width 0.35s ease;
}


/* Decorative circle */

.craftsmanship-card::after {
    content: "";

    position: absolute;

    right: -55px;
    bottom: -55px;

    width: 150px;
    height: 150px;

    border: 1px solid rgba(184, 115, 51, 0.12);
    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   HOVER
   ========================================================= */

.craftsmanship-card:hover {
    transform: translateY(-8px);

    border-color: rgba(184, 115, 51, 0.45);

    box-shadow:
        0 18px 45px rgba(43, 29, 23, 0.10);
}

.craftsmanship-card:hover::before {
    width: 100%;
}


/* =========================================================
   ICON
   ========================================================= */

.craftsmanship-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 14px;

    background: #f3e7da;
    border: 1px solid #e5d5c5;

    color: #b87333;

    font-size: 22px;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.craftsmanship-card:hover .craftsmanship-icon {
    transform: translateY(-3px);

    background: #b87333;
    color: #fffdf8;
}


/* =========================================================
   NUMBER
   ========================================================= */

.craftsmanship-card .feature-number {
    position: absolute;

    top: 30px;
    right: 28px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #b87333;
    opacity: 0.8;
}


/* =========================================================
   CARD HEADING
   ========================================================= */

.craftsmanship-card h3 {
    margin: 0 0 12px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;
    line-height: 1.3;
    font-weight: 700;

    color: #2b1d17;
}


/* =========================================================
   CARD DESCRIPTION
   ========================================================= */

.craftsmanship-card p {
    margin: 0;

    max-width: 310px;

    font-size: 14px;
    line-height: 1.75;

    color: #756c65;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

    .craftsmanship-section {
        padding: 80px 0;
    }

    .craftsmanship-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .craftsmanship-section {
        padding: 70px 0;
    }

    .craftsmanship-section .container {
        padding: 0 18px;
    }

    .craftsmanship-section .section-heading {
        margin-bottom: 38px;
    }

    .craftsmanship-section .section-heading h2 {
        font-size: 36px;
    }

    .craftsmanship-section .section-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .craftsmanship-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .craftsmanship-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .craftsmanship-card h3 {
        font-size: 21px;
    }

}


 .dark-mode .craftsmanship-section {
    background: #17110e;
}

.dark-mode .craftsmanship-section .section-heading h2 {
    color: #f5ede4;
}

.dark-mode .craftsmanship-section .section-heading p {
    color: #d5c6bb;
}

.dark-mode .craftsmanship-section .section-eyebrow {
    color: #c98a52;
}


 .dark-mode .craftsmanship-card {
    background: #30221b;
    border-color: #4a382d;

    box-shadow: none;
}

.dark-mode .craftsmanship-card:hover {
    background: #3a2920;
    border-color: rgba(201, 138, 82, 0.55);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.25);
}


 .dark-mode .craftsmanship-icon {
    background: #3a2920;
    border-color: #4a382d;

    color: #c98a52;
}

.dark-mode .craftsmanship-card:hover .craftsmanship-icon {
    background: #c98a52;
    color: #17110e;
}


 .dark-mode .craftsmanship-card h3 {
    color: #f5ede4;
}

.dark-mode .craftsmanship-card p {
    color: #d5c6bb;
}

.dark-mode .craftsmanship-card .feature-number {
    color: #c98a52;
}


 .dark-mode .craftsmanship-card::after {
    border-color: rgba(201, 138, 82, 0.10);
}

body.dark-mode .s-fe34199b::before,
body.dark-mode .cta-premium-section::before,
body.dark-mode .premium-cta-band::before {
    background: rgba(10, 7, 5, 0.72);
}

body.dark-mode .cta-overlay {
    background: rgba(10, 7, 5, 0.50);
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .craftsmanship-card,
    .craftsmanship-card::before,
    .craftsmanship-icon {
        transition: none;
    }

    .craftsmanship-card:hover {
        transform: none;
    }

}
/* =========================================================
   13. GALLERY / BEFORE-AFTER
   ========================================================= */
/* Before/After Component */
.before-after-item {
    background: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}
.before-after-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.before-after-images {
    display: flex;
    width: 100%;
}
.before-image, .after-image {
    position: relative;
    width: 50%;
    overflow: hidden;
}
.before-image img, .after-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.image-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}
.after-image .image-label {
    background: var(--accent-color);
}
.before-after-content {
    padding: 25px;
}
.before-after-content span {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}
.before-after-content h3 {
    margin-bottom: 10px;
    font-size: 22px;
}
.before-after-content p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 15px;
}

/* ========================================================
   PREMIUM GALLERY PAGE STYLES
   ======================================================== */

/* General Premium Styles */
.premium-eyebrow {
    display: inline-block;
    color: var(--accent-color, #c19a6b);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.premium-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--heading-color, #2a2a2a);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.premium-description {
    font-size: 18px;
    color: var(--text-color, #555);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Dark Mode Overrides for General */
body.dark-mode .premium-heading {
    color: #f7f2ea;
}
body.dark-mode .premium-description {
    color: #ccc;
}

/* 1. Premium Gallery Hero */
.gallery-hero-section {
    position: relative;
    background: url('../images/leather\\ and\\ thread.jpg') center/cover no-repeat fixed;
    padding: 120px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 15, 12, 0.75);
    z-index: 1;
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-hero-content .premium-heading,
.gallery-hero-content .premium-description {
    color: #f7f2ea;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* 2. Before & After Gallery */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.gallery-filters .filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

body.dark-mode .gallery-filters .filter-btn {
    border-color: #444;
    color: #e0e0e0;
}
body.dark-mode .gallery-filters .filter-btn:hover,
body.dark-mode .gallery-filters .filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.premium-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.ba-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ba-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

body.dark-mode .ba-card {
    background: #1e1e1e;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.ba-images {
    display: flex;
    position: relative;
    height: 250px;
    width: 100%;
}

.ba-before, .ba-after {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.ba-before {
    border-right: 2px solid var(--accent-color);
}

.ba-before img, .ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ba-card:hover .ba-before img,
.ba-card:hover .ba-after img {
    transform: scale(1.05);
}

.ba-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    z-index: 2;
}

.ba-content {
    padding: 25px;
}

.ba-category {
    font-size: 12px;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.ba-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.ba-desc {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
}

body.dark-mode .ba-title {
    color: #f7f2ea;
}
body.dark-mode .ba-desc {
    color: #aaa;
}

/* 3. Craftsmanship Stories */
.craftsmanship-section {
    background: #F7F2EA;
}

body.dark-mode .craftsmanship-section {
    background: #111;
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.craft-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    text-align: center;
    position: relative;
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
}

.craft-card:hover {
    border-top-color: var(--accent-color);
    transform: translateY(-5px);
}

body.dark-mode .craft-card {
    background: #1e1e1e;
}

.craft-number {
    font-size: 48px;
    font-weight: 700;
    /* color: rgba(193, 154, 107, 0.2); */
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.craft-title {
    font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 700;
}

body.dark-mode .craft-title {
    color: #f7f2ea;
}

.craft-desc {
    color: var(--text-color);
    line-height: 1.6;
}
body.dark-mode .craft-desc {
    color: #aaa;
}

/* 4. Our Workshop */
.workshop-split {
    display: flex;
    align-items: center;
    gap: 50px;
}

.workshop-image-col {
    flex: 1;
}

.workshop-image-col img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.workshop-text-col {
    flex: 1;
}

.workshop-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.workshop-features li {
    font-size: 16px;
    color: var(--heading-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

body.dark-mode .workshop-features li {
    color: #e0e0e0;
}

.workshop-features li i {
    color: var(--accent-color);
    margin-right: 15px;
}

@media (max-width: 991px) {
    .workshop-split {
        flex-direction: column;
    }
}

/* 5. Specialty Repairs */
.specialty-section {
    background: #2a2a2a;
    color: white;
}

body.dark-mode .specialty-section {
    background: #151515;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.specialty-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.specialty-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    background: rgba(255,255,255,0.08);
}

.specialty-icon {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.specialty-card:hover .specialty-icon {
    color: var(--accent-color);
}

.specialty-title {
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
}

.specialty-desc {
    color: #bbb;
    font-size: 15px;
    margin-bottom: 25px;
}

.specialty-arrow {
    color: var(--accent-color);
    font-size: 14px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.specialty-card:hover .specialty-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* 6. Customer Transformations */
.testimonial-section {
    background: #fff;
}
body.dark-mode .testimonial-section {
    background: #1a1a1a;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testi-card {
    background: #F7F2EA;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

body.dark-mode .testi-card {
    background: #252525;
}

.testi-card .stars {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 20px;
}

.testi-text {
    font-size: 17px;
    font-style: italic;
    color: var(--heading-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

body.dark-mode .testi-text {
    color: #e0e0e0;
}

.testi-author {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-color);
}
body.dark-mode .testi-author {
    color: #999;
}

/* 7. Final CTA */
.cta-premium-section {
    position: relative;
    overflow: hidden;
    background-color: #2B1D17;
    background-image: url('../images/equipment.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.cta-premium-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 15, 12, 0.62);
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 15, 12, 0.48);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.text-white {
    color: #fff !important;
}

.text-light {
    color: rgba(255,255,255,0.8) !important;
}

.border-white {
    border-color: #fff !important;
}

.btn-outline.text-white:hover {
    background: #fff;
    color: var(--heading-color) !important;
}

/* Hide gallery items when filtered out */
.gallery-item.is-hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .premium-heading {
        font-size: 32px;
    }
    .hero-buttons {
        flex-direction: column;
    }
}

/* Add Border to All Buttons Across All Pages */
.btn, 
a.btn, 
button.btn, 
.theme-btn, 
.primary-btn, 
.secondary-btn, 
a[class*="btn"] {
    border: 2px solid #FFFFFF !important; /* Soft solid border */
    border-radius: 6px;                  /* Rounded corners */
    padding: 12px 28px;                  /* Proper button spacing */
    display: inline-block;
    transition: all 0.3s ease;
}

/* Button Hover Effect */
.btn:hover, 
a.btn:hover, 
button.btn:hover, 
.theme-btn:hover, 
.primary-btn:hover, 
.secondary-btn:hover, 
a[class*="btn"]:hover {
    background-color: #FFFFFF !important;
    color: #1A1A1A !important;
    border-color: #FFFFFF !important;
}

/* ========================================================
   UNIFIED COMMON BANNER STYLES
   ======================================================== */
.common-page-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    height: 450px;
}

@media (max-width: 991px) {
    .common-page-banner {
        height: 380px;
    }
}

@media (max-width: 767px) {
    .common-page-banner {
        height: 330px;
    }
}

.common-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 30, 20, 0.7);
    z-index: 1;
}

.common-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.common-banner-eyebrow {
    color: #C98A52;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.common-banner-heading {
    color: #FFFDF8;
    font-size: 48px;
    font-family: var(--font-heading);
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@media (max-width: 767px) {
    .common-banner-heading {
        font-size: 36px;
    }
}

.common-banner-subtitle {
    color: #E8DCD1;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.common-banner-breadcrumb {
    color: #E8DCD1;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.common-banner-breadcrumb a {
    color: #FFFDF8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.common-banner-breadcrumb a:hover {
    color: #C98A52;
}

.common-banner-breadcrumb i {
    font-size: 10px;
}

/* Each normal page keeps the shared banner treatment with its own image. */
.banner-home {
    background-image: url('../images/banner\ shoe\ blog.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-home-2 {
    background-image: url('../images/banner shoe blog.jpg');
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-about {
    background-image: url('../images/about banner.jpg');
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-services {
    background-image: url('../images/heels.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-service-details {
    background-image: url('../images/shop tools.jpg');
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-pricing {
    background-image: url('../images/pricing\ banner.jpg');
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-gallery {
    background-image: url('../images/gallery.jpg');
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-reviews {
    background-image: url('../images/sporta shoe.jpg');
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-blog {
    background-image: url('../images/services\ 1.jpg');
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-blog-details {
    background-image: url('../images/blog details shoe.jpg');
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-contact {
    background-image: url('../images/contact img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ========================================================
   NEW SECTION STYLES
   ======================================================== */
.premium-section-bg {
    background-color: #F8F5F0;
}
body.dark-mode .premium-section-bg {
    background-color: #1A1A1A;
}

/* Feature Cards (Index / The Craft) */
.craft-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.craft-feature-card {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}
body.dark-mode .craft-feature-card {
    background: #252525;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.craft-feature-card:hover {
    transform: translateY(-5px);
}
.craft-feature-number {
    font-size: 40px;
    font-family: var(--font-heading);
    color: #C98A52;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Process Steps (Index) */
.process-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}
.process-wrapper::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 1px;
    background: rgba(193, 154, 107, 0.3);
    z-index: 1;
}
.process-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
.process-number {
    width: 60px;
    height: 60px;
    background: #F8F5F0;
    border: 2px solid #C98A52;
    color: #C98A52;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
body.dark-mode .process-number {
    background: #1A1A1A;
}
@media (max-width: 768px) {
    .process-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .process-wrapper::before {
        display: none;
    }
}

/* Values Grid (About) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.value-card {
    padding: 30px;
    border: 1px solid rgba(193, 154, 107, 0.3);
    border-radius: 8px;
    text-align: left;
}
.value-card h4 {
    color: #C98A52;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}

/* Promise Section (About) */
.promise-section {
    background-color: #756c65;
    color: #fff;
    padding: 100px 0;
}
.promise-section .premium-heading {
    color: #fff;
}
.promise-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    display: inline-block;
}
.promise-list li {
    font-size: 18px;
    margin-bottom: 15px;
    color: #E8DCD1;
}
.promise-list li i {
    color: #C98A52;
    margin-right: 10px;
}

/* Workshop Info (Contact) */
.workshop-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.workshop-info-block {
    background: #F8F5F0;
    padding: 30px;
    border-radius: 8px;
}
body.dark-mode .workshop-info-block {
    background: #252525;
}
.workshop-info-block h4 {
    color: #C98A52;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================
   AUTH SOCIAL LOGIN / REGISTER
========================================= */

.auth-social-section {
    width: 100%;
    margin-top: 28px;
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin: 24px 0;
    color: #756c65;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    white-space: nowrap;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd5cc;
}

.auth-divider span {
    display: inline-block;
}

/* Social Buttons */
.auth-social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.auth-social-btn {
    min-height: 44px;
    padding: 11px 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border: 1px solid #a9c9c6;
    border-radius: 4px;

    background: #fffdf8;
    color: #294f4b;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.auth-social-btn i {
    font-size: 15px;
}

.auth-social-btn:hover {
    background: #294f4b;
    border-color: #294f4b;
    color: #ffffff;
    transform: translateY(-1px);
}

.auth-social-btn:focus-visible {
    outline: 2px solid #c98a52;
    outline-offset: 3px;
}

/* Bottom account text */
.auth-switch-text {
    margin: 28px 0 0;
    text-align: center;

    color: #756c65;
    font-size: 14px;
    line-height: 1.6;
}

.auth-switch-text a {
    margin-left: 6px;

    color: #e86f51;
    text-decoration: none;
    font-weight: 500;
}

.auth-switch-text a:hover {
    text-decoration: underline;
}


/* =========================================
   DARK MODE
========================================= */

body.dark-mode .auth-divider {
    color: #cfc4ba;
}

body.dark-mode .auth-divider::before,
body.dark-mode .auth-divider::after {
    background: #51453e;
}

body.dark-mode .auth-social-btn {
    background: #241b17;
    border-color: #806d60;
    color: #f4e9df;
}

body.dark-mode .auth-social-btn:hover {
    background: #c98a52;
    border-color: #c98a52;
    color: #ffffff;
}

body.dark-mode .auth-switch-text {
    color: #cfc4ba;
}

body.dark-mode .auth-switch-text a {
    color: #e98a6d;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {

    .auth-social-buttons {
        grid-template-columns: 1fr;
    }

    .auth-social-btn {
        min-height: 46px;
    }

    .auth-divider {
        font-size: 11px;
        gap: 10px;
    }

    .auth-switch-text {
        font-size: 13px;
    }
}

/* =========================================
   REMOVE GAP BETWEEN CTA AND FOOTER
   ========================================= */

/* CTA section */
.cta-section {
    margin-bottom: 0 !important;
    padding-bottom: 60px !important;
}

/* Footer */
footer,
.footer {
    margin-top: 0 !important;
}

/* Remove accidental spacing elements */
.cta-section + br,
.cta-section + br + br {
    display: none !important;
}

/* If CTA wrapper has extra bottom spacing */
.cta-section::after {
    margin: 0 !important;
    padding: 0 !important;
}

/* Prevent empty section space */
.cta-section + .footer,
.cta-section + footer {
    margin-top: 0 !important;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {
    .cta-section {
        margin-bottom: 0 !important;
        padding-bottom: 40px !important;
    }

    footer,
    .footer {
        margin-top: 0 !important;
    }
}