/*
Theme Name: Create.fit
Author: Kolada Works
Description: A custom WordPress theme
Version: 1.1
Text Domain: create-ft
*/

/* ── Reset ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ── Container ── */
.container {
    width: 100%;
    max-width: 1822px;
    margin-left: auto;
    margin-right: auto;
}

.components-page {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 48px 48px 0;
}

.components-page .full-width {
    margin-left: -48px;
    margin-right: -48px;
}


/* ── Spacing System ── */
:root {
    --space-xs:  14px;
    --space-sm:  24px;
    --space-md:  32px;
    --space-lg:  48px;
    --space-xl:  80px;
    --space-2xl: 98px;
}

/* Static utilities — padding */
.p-xs  { padding: var(--space-xs); }
.p-sm  { padding: var(--space-sm); }
.p-md  { padding: var(--space-md); }
.p-lg  { padding: var(--space-lg); }
.p-xl  { padding: var(--space-xl); }
.p-2xl { padding: var(--space-2xl); }

.px-xs  { padding-left: var(--space-xs);  padding-right: var(--space-xs); }
.px-sm  { padding-left: var(--space-sm);  padding-right: var(--space-sm); }
.px-md  { padding-left: var(--space-md);  padding-right: var(--space-md); }
.px-lg  { padding-left: var(--space-lg);  padding-right: var(--space-lg); }
.px-xl  { padding-left: var(--space-xl);  padding-right: var(--space-xl); }
.px-2xl { padding-left: var(--space-2xl); padding-right: var(--space-2xl); }

.py-xs  { padding-top: var(--space-xs);  padding-bottom: var(--space-xs); }
.py-sm  { padding-top: var(--space-sm);  padding-bottom: var(--space-sm); }
.py-md  { padding-top: var(--space-md);  padding-bottom: var(--space-md); }
.py-lg  { padding-top: var(--space-lg);  padding-bottom: var(--space-lg); }
.py-xl  { padding-top: var(--space-xl);  padding-bottom: var(--space-xl); }
.py-2xl { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }

.pt-xs  { padding-top: var(--space-xs); }
.pt-sm  { padding-top: var(--space-sm); }
.pt-md  { padding-top: var(--space-md); }
.pt-lg  { padding-top: var(--space-lg); }
.pt-xl  { padding-top: var(--space-xl); }
.pt-2xl { padding-top: var(--space-2xl); }

.pr-xs  { padding-right: var(--space-xs); }
.pr-sm  { padding-right: var(--space-sm); }
.pr-md  { padding-right: var(--space-md); }
.pr-lg  { padding-right: var(--space-lg); }
.pr-xl  { padding-right: var(--space-xl); }
.pr-2xl { padding-right: var(--space-2xl); }

.pb-xs  { padding-bottom: var(--space-xs); }
.pb-sm  { padding-bottom: var(--space-sm); }
.pb-md  { padding-bottom: var(--space-md); }
.pb-lg  { padding-bottom: var(--space-lg); }
.pb-xl  { padding-bottom: var(--space-xl); }
.pb-2xl { padding-bottom: var(--space-2xl); }

.pl-xs  { padding-left: var(--space-xs); }
.pl-sm  { padding-left: var(--space-sm); }
.pl-md  { padding-left: var(--space-md); }
.pl-lg  { padding-left: var(--space-lg); }
.pl-xl  { padding-left: var(--space-xl); }
.pl-2xl { padding-left: var(--space-2xl); }

/* Responsive block shortcuts — desktop-first: lg → md → sm */
.block-p  { padding: var(--space-lg); }
.block-px { padding-left: var(--space-lg);  padding-right: var(--space-lg); }
.block-py { padding-top: var(--space-lg);   padding-bottom: var(--space-lg); }

@media (max-width: 1200px) {
    .block-p  { padding: var(--space-md); }
    .block-px { padding-left: var(--space-md);  padding-right: var(--space-md); }
    .block-py { padding-top: var(--space-md);   padding-bottom: var(--space-md); }
}

@media (max-width: 768px) {
    .block-p  { padding: var(--space-sm); }
    .block-px { padding-left: var(--space-sm);  padding-right: var(--space-sm); }
    .block-py { padding-top: var(--space-sm);   padding-bottom: var(--space-sm); }
}

/* ── Header ── */
/* ── Site Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Secondary Nav */
.site-header__secondary {
    padding-top: 10px;
    padding-bottom: 10px;
}

.site-header__secondary .container {
    display: flex;
    justify-content: flex-end;
}

.site-header__secondary-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header__secondary-menu li a {
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #191919;
    text-decoration: none;
    transition: color 0.2s;
}

.site-header__secondary-menu li a:hover {
    color: #555;
}

.site-header__primary {
    padding-top: 12px;
    padding-bottom: 24px;
}

.site-header__primary-inner {
    display: flex;
    align-items: center;
    background: #191919;
    border-radius: 20px;
    height: 82px;
    padding: 0 32px;
}

/* Logo */
.site-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 60px;
}

.site-header__logo-img {
    display: block;
    width: 268px;
    height: auto;
}

/* Nav Menu */
.site-header__nav {
    flex: 1;
    min-width: 0;
}

.site-header__nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header__nav-menu > li {
    position: relative;
}

.site-header__nav-menu > li > a {
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 28px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    white-space: nowrap;
}

.site-header__nav-menu > li > a:hover {
    color: #d5fb7b;
}

/* Dropdown arrow for items with children */
.site-header__nav-menu > .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.2s;
}

/* Sub-menu (dropdown) */
.site-header__nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -16px;
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    padding: 12px 0;
    list-style: none;
    margin: 0;
    z-index: 100;
}

.site-header__nav-menu > .menu-item-has-children:hover > .sub-menu {
    display: block;
}

.site-header__nav-menu > .menu-item-has-children:hover > a::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.site-header__nav-menu .sub-menu li a {
    display: block;
    padding: 10px 24px;
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #191919;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.site-header__nav-menu .sub-menu li a:hover {
    background: #f5f5f5;
    color: #191919;
}

/* CTA Button */
.site-header__cta {
    margin-left: auto;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Burger */
.site-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 8px;
}

.site-header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Flyout */
.site-header__flyout {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.5);
}

.site-header__flyout--open {
    display: block;
}

.site-header__flyout-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 90vw;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.site-header__flyout-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.site-header__flyout-top .site-header__logo-img {
    width: 180px;
}

.site-header__flyout-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

/* Flyout Primary Menu */
.site-header__flyout-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header__flyout-menu > li {
    border-bottom: 1px solid #e8e8e8;
}

.site-header__flyout-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #191919;
    text-transform: uppercase;
    text-decoration: none;
}

.site-header__flyout-menu > .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #191919;
    border-bottom: 2px solid #191919;
    transform: rotate(45deg);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.site-header__flyout-menu > .menu-item-has-children.is-open > a::after {
    transform: rotate(-135deg);
}

.site-header__flyout-menu .sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 12px 16px;
}

.site-header__flyout-menu > .menu-item-has-children.is-open > .sub-menu {
    display: block;
}

.site-header__flyout-menu .sub-menu li a {
    display: block;
    padding: 10px 0;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
}

.site-header__flyout-menu .sub-menu li a:hover {
    color: #191919;
}

/* Flyout Secondary Menu */
.site-header__flyout-secondary {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
}

.site-header__flyout-secondary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header__flyout-secondary-menu li a {
    display: block;
    padding: 10px 0;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
}

.site-header__flyout-secondary-menu li a:hover {
    color: #191919;
}

/* Flyout CTA */
.site-header__flyout-cta {
    margin-top: auto;
    padding-top: 24px;
}

/* ── Header Responsive ── */
@media (max-width: 1200px) {
    .site-header__nav-menu {
        gap: 24px;
    }

    .site-header__logo {
        margin-right: 32px;
    }
}

@media (max-width: 1024px) {
    .site-header__secondary {
        display: none !important;
    }

    .site-header__nav {
        display: none !important;
    }

    .site-header__cta {
        display: none !important;
    }

    .site-header__burger {
        display: flex !important;
    }

    .site-header.block-px {
        padding-left: 0;
        padding-right: 0;
    }

    .site-header__primary-inner {
        height: 60px;
        padding: 0 20px;
        border-radius: 0;
    }

    .site-header__logo-img {
        width: 180px;
    }

    .site-header__primary {
        padding-top: 0;
        padding-bottom: 0;
    }
}

/* ── Main content ── */
.page-content {
    max-width: 720px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.page-content-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.page-content-body {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
}

.page-content-body p {
    margin-bottom: 1rem;
}

/* ── Footer ── */
.site-footer {
    border-top: 1px solid #e0e0e0;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
}

.footer-company {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a:hover {
    color: #000;
}

/* ── Header actions ── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.account-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #111;
    transition: border-color 0.2s;
}

.account-toggle:hover {
    border-color: #111;
}

/* ── Cart ── */
.cart-wrapper {
    position: relative;
}

.cart-toggle {
    background: none;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 4px;
    color: #111;
    transition: border-color 0.2s;
}

.cart-toggle:hover {
    border-color: #111;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #111;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 300px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 100;
    padding: 1rem;
}

.cart-panel.is-open {
    display: block;
}

.cart-panel-heading {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.cart-empty {
    font-size: 0.85rem;
    color: #999;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.85rem;
}

.cart-item-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-item-price {
    font-weight: 600;
    white-space: nowrap;
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: #999;
    padding: 0 0.25rem;
    line-height: 1;
}

.cart-item-remove:hover {
    color: #111;
}

.cart-panel-total {
    font-size: 0.9rem;
    font-weight: 700;
    text-align: right;
    padding-top: 0.75rem;
}

.cart-email {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s;
}

.cart-email:focus {
    border-color: #111;
}

.cart-email--error {
    border-color: #c00;
}

.cart-checkout {
    width: 100%;
    padding: 0.6rem;
    margin-top: 0.75rem;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.cart-checkout:hover {
    background: #333;
}

.cart-checkout:disabled {
    background: #999;
    cursor: default;
}

/* ── Courses ── */
.course-single {
    max-width: 720px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.course-single-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.course-single-price {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.course-single-body {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.course-single-body p {
    margin-bottom: 1rem;
}

.add-to-cart {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.add-to-cart:hover {
    background: #333;
}

.add-to-cart:disabled {
    background: #999;
    cursor: default;
}

.course-grid {
    max-width: 1080px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.course-grid-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.course-grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.course-card {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.course-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.course-card-title a:hover {
    text-decoration: underline;
}

.course-card-price {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
}

.course-card .add-to-cart {
    margin-top: auto;
    text-align: center;
}

.course-no-results {
    color: #666;
}

/* ── Checkout ── */
.checkout {
    max-width: 1080px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Step indicator */
.checkout__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.checkout__step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: default;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

.checkout__step.is-active {
    color: #111;
    font-weight: 700;
}

.checkout__step.is-completed {
    color: #111;
    cursor: pointer;
}

.checkout__step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.checkout__step.is-active .checkout__step-num {
    background: #111;
    color: #fff;
    border-color: #111;
}

.checkout__step.is-completed .checkout__step-num {
    background: #fff;
    color: #111;
    border-color: #111;
}

.checkout__step-divider {
    width: 40px;
    height: 2px;
    background: #e0e0e0;
    flex-shrink: 0;
}

/* Layout */
.checkout__layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

/* Panels */
.checkout__panel {
    display: none;
}

.checkout__panel.is-active {
    display: block;
}

.checkout__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.checkout__subtitle {
    font-size: 1rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
}

/* Form fields */
.checkout__field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
}

@media (max-width: 600px) {
    .checkout__field-row {
        grid-template-columns: 1fr;
    }
}

.checkout__field {
    margin-bottom: 1rem;
}

.checkout__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: #333;
}

.checkout__input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    color: #111;
}

.checkout__input:focus {
    border-color: #111;
}

.checkout__input--error {
    border-color: #c00;
}

.checkout__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

.checkout__textarea {
    resize: vertical;
    min-height: 80px;
}

/* Actions */
.checkout__actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* Buttons */
.checkout__btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    border: none;
    text-align: center;
    text-decoration: none;
}

.checkout__btn--primary {
    background: #111;
    color: #fff;
}

.checkout__btn--primary:hover {
    background: #333;
}

.checkout__btn--primary:disabled {
    background: #999;
    cursor: default;
}

.checkout__btn--secondary {
    background: #fff;
    color: #111;
    border: 1px solid #e0e0e0;
}

.checkout__btn--secondary:hover {
    border-color: #111;
}

/* Payment element */
.checkout__payment-element {
    min-height: 200px;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fafafa;
}

.checkout__payment-message {
    color: #c00;
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

/* Review */
.checkout__review-dl {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.checkout__review-dl dt {
    color: #666;
    font-weight: 500;
}

.checkout__review-dl dd {
    color: #111;
}

.checkout__review-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.checkout__review-total {
    text-align: right;
    padding-top: 0.75rem;
    font-size: 1rem;
}

/* Sidebar */
.checkout__sidebar {
    position: sticky;
    top: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 1.25rem;
}

.checkout__sidebar-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

.checkout__sidebar-item {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.85rem;
}

.checkout__sidebar-item-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout__sidebar-item-price {
    font-weight: 600;
    white-space: nowrap;
}

.checkout__sidebar-total {
    border-top: 1px solid #e0e0e0;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    text-align: right;
    font-size: 0.95rem;
}

.checkout__sidebar-empty {
    color: #999;
    font-size: 0.85rem;
}

/* Empty state */
.checkout__empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.checkout__empty p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Cart checkout link styled as button */
a.cart-checkout {
    display: block;
    width: 100%;
    padding: 0.6rem;
    margin-top: 0.75rem;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    text-decoration: none;
}

a.cart-checkout:hover {
    background: #333;
}

/* Checkout responsive */
@media (max-width: 768px) {
    .checkout__layout {
        grid-template-columns: 1fr;
    }

    .checkout__sidebar {
        position: static;
        order: -1;
    }

    .checkout__steps {
        gap: 0;
    }

    .checkout__step-label {
        display: none;
    }

    .checkout__step-divider {
        width: 24px;
    }
}


/* ── New Footer ── */
.site-footer-new {
    background: #191919;
    border-radius: 20px 20px 0 0;
    font-family: 'Archivo', sans-serif;
    overflow: hidden;
    margin-top: 48px;
}

.site-footer-new__content {
    padding: 52px 45px 40px;
}

.site-footer-new__top {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.site-footer-new__logo-img {
    width: 100%;
    max-width: 1822px;
    max-height: 250px;
    object-fit: contain;
}

.site-footer-new__tagline {
    text-align: right;
    margin-top: 24px;
}

.site-footer-new__tagline-text {
    font-size: 39px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.site-footer-new__tagline-accent {
    background: #d5fb7b;
    color: #000;
    padding: 4px 16px;
    border-radius: 34px;
}

.site-footer-new__columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.site-footer-new__col-title {
    font-size: 23px;
    font-weight: 600;
    color: #d5fb7b;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.site-footer-new__col-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer-new__col-list li {
    margin-bottom: 8px;
}

.site-footer-new__col-list a {
    font-size: 17px;
    font-weight: 600;
    color: #d6d6d6;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer-new__col-list a:hover {
    color: #fff;
}

.site-footer-new__contact-group {
    margin-bottom: 20px;
}

.site-footer-new__contact-label {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 4px;
}

.site-footer-new__contact-detail {
    font-size: 17px;
    font-weight: 400;
    color: #d6d6d6;
    margin: 0 0 4px;
    line-height: 1.4;
}

.site-footer-new__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #707070;
    padding-top: 24px;
}

.site-footer-new__legal {
    font-size: 17px;
    font-weight: 600;
    color: #d6d6d6;
    text-transform: uppercase;
    margin: 0;
}

.site-footer-new__legal a {
    color: #d6d6d6;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer-new__legal a:hover {
    color: #fff;
}

.site-footer-new__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer-new__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.site-footer-new__social a:hover {
    opacity: 0.7;
}

@media (max-width: 1200px) {
    .site-footer-new__columns {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer-new__tagline-text {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .site-footer-new {
        border-radius: 12px 12px 0 0;
    }

    .site-footer-new__content {
        padding: 32px 24px;
    }

    .site-footer-new__columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer-new__bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .site-footer-new__legal {
        font-size: 14px;
    }

    .site-footer-new__tagline-text {
        font-size: 22px;
    }
}

