/* ==========================================================================
   style_custom.css — Storefront visual refresh
   Loaded after style.css; overrides only, no structural changes.
   ========================================================================== */

/* ---------- Local Font Faces ---------- */
@font-face {
    font-family: 'Libre Sans Serif';
    src: url('font/libre-sans-serif-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Libre Sans Serif';
    src: url('font/libre-sans-serif-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Libre Sans Serif';
    src: url('font/libre-sans-serif-regular.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Libre Sans Serif';
    src: url('font/libre-sans-serif-bold.ttf') format('truetype');
    font-weight: bolder;
    font-style: normal;
    font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
    --color-primary: #a78063;
    --color-primary-dark: #8d6a52;
    --color-primary-light: #c4a285;
    --color-accent: #e76f51;
    --color-accent-light: #f4a261;
    --color-bg: #fafaf8;
    --color-surface: #ffffff;
    --color-text: #2b2d31;
    --color-text-secondary: #6b7280;
    --color-text-muted: #9ca3af;
    --color-border: #e5e7eb;
    --color-border-light: #f0f1f3;
    --color-success: #0da74d;
    --color-error: #dc2626;
    --color-error-bg: #fef2f2;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,.10);
    --shadow-hover: 0 8px 24px rgba(0,0,0,.12);
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --font-body: 'Libre Sans Serif', system-ui, -apple-system, sans-serif;
    --font-display: 'Libre Sans Serif', system-ui, -apple-system, sans-serif;
}

/* ---------- Global ---------- */
html {
    scroll-behavior: smooth;
}

* {
    font-family: var(--font-body);
}

p {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.1px;
}

b, strong {
    font-weight: bold;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    padding-bottom: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(167,128,99,.18);
    color: var(--color-primary-dark);
}

*:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

/* ---------- Topbar ---------- */
.topbar {
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    padding: 8px 16px;
    letter-spacing: .02em;
}

/* ---------- Header ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250,250,248,.82);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--color-primary);
    transition: box-shadow var(--transition-base);
}

header .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

header .logo img {
    height: 110px;
    width: auto;
    display: block;
}

@media screen and (max-width: 640px) {
	header .logo img {
		height: auto;
		max-width: 60%;
	}
}

header nav a {
    color: var(--color-text-secondary);
    border-radius: var(--radius-full);
    font-weight: 300;
    letter-spacing: 0.1px;
    transition: color var(--transition-fast), background var(--transition-fast);
}

header nav a:hover,
header nav a.selected {
    color: var(--color-primary);
    background: rgba(167,128,99,.07);
}

header .link-icons a,
header .link-icons .search .icon {
    transition: color var(--transition-fast), background var(--transition-fast);
}

header .link-icons a:hover,
header .link-icons .search .icon:hover {
    background: rgba(167,128,99,.07);
}

header .link-icons a span {
    background: var(--color-accent);
}

header .link-icons .search input {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
	padding-left: 10px;
}

header .link-icons .search input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(167,128,99,.15);
    outline: none;
}

/* ---------- Hero Slider ---------- */
.hero-slider {
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-slider .carousel-item {
    position: relative;
    height: 90vh;
}

.hero-slider .slide-img-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slider .slide-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Fade transition overrides */
.hero-slider.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    transform: none;
    z-index: 0;
}

.hero-slider.carousel-fade .carousel-item.active {
    opacity: 1;
    z-index: 1;
}

.hero-slider.carousel-fade .carousel-item-next,
.hero-slider.carousel-fade .carousel-item-prev {
    opacity: 0;
    z-index: 2;
}

.hero-slider.carousel-fade .carousel-item-next.carousel-item-start,
.hero-slider.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
    z-index: 2;
}

.hero-slider.carousel-fade .active.carousel-item-start,
.hero-slider.carousel-fade .active.carousel-item-end {
    opacity: 0;
    z-index: 1;
    transition: opacity 1.2s ease-in-out;
}

.hero-slider .slide-overlay {
    display: none;
}

.hero-slider .carousel-caption {
    position: absolute;
    bottom: auto;
    top: 50%;
    left: 8%;
    right: auto;
    transform: translateY(-50%);
    text-align: left;
    padding: 30px 40px;
    z-index: 2;
    background: rgba(43,45,49,.2);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    border-radius: var(--radius-lg);
    max-width: 520px;
}

.hero-slider .carousel-caption h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 48px;
    letter-spacing: -.02em;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,.40);
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero-slider .carousel-caption p {
    font-family: var(--font-body);
    color: rgba(255,255,255,.9);
    text-shadow: 0 1px 8px rgba(0,0,0,.30);
    margin-bottom: 28px;
    max-width: 540px;
}

.hero-slider .btn-slider {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-slider .btn-slider:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167,128,99,.35);
    color: #fff;
    text-decoration: none;
}

.hero-slider .carousel-indicators {
    margin-bottom: 24px;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.6);
    background: transparent;
    opacity: 1;
    margin: 0 5px;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.hero-slider .carousel-indicators button.active {
    background: #fff;
    border-color: #fff;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    background: rgba(0,0,0,.3);
    border-radius: 50%;
    opacity: 0.7;
    transition: opacity var(--transition-base), background var(--transition-fast);
}

.hero-slider .carousel-control-prev {
    left: 20px;
}

.hero-slider .carousel-control-next {
    right: 20px;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: rgba(0,0,0,.5);
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* ---------- Welcome Section ---------- */
.welcome-section {
    padding: 60px 20px;
}

.welcome-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.welcome-image {
    flex: 0 0 360px;
}

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: block;
}

.welcome-text h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.welcome-text p {
    color: var(--color-text-secondary);
    margin-bottom: 14px;
}

@media screen and (max-width: 1100px) {
    .welcome-inner {
        gap: 30px;
    }

    .welcome-image {
        flex: 0 0 280px;
    }
}

@media screen and (max-width: 640px) {
    .welcome-section {
        padding: 40px 16px;
    }

    .welcome-inner {
        flex-direction: column;
        gap: 24px;
    }

    .welcome-image {
        flex: none;
        width: 100%;
        max-width: 320px;
    }

    .welcome-text h2 {
        font-size: 28px;
    }
}

/* ---------- Products Hero ---------- */
.products-hero {
    background: linear-gradient(135deg, rgba(167,128,99,.65) 0%, rgba(141,106,82,.65) 100%), url('images/hero-shop-detail.jpg') center / cover no-repeat;
    padding: 56px 20px;
    text-align: center;
	margin-bottom:3rem;
}

.products-hero-inner {
    max-width: 680px;
    margin: 0 auto;
}

.products-hero h1 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px 0;
    letter-spacing: -.01em;
}

.products-hero p {
    color: rgba(255, 255, 255, .85);
    margin: 0;
}

@media screen and (max-width: 640px) {
    .products-hero {
        padding: 36px 16px;
    }

    .products-hero h1 {
        font-size: 26px;
    }
}

/* ---------- Section Headings ---------- */
main .recentlyadded h2,
main > .products h2 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 2px solid var(--color-border);
}

.recentlyadded-btn {
    text-align: center;
    margin-top: 24px;
}

.recentlyadded-btn .btn {
    background: var(--color-primary);
    color: #fff;
}

.recentlyadded-btn .btn:hover {
    background: var(--color-primary-dark);
}

/* ---------- Product Cards (Home) ---------- */
main .recentlyadded .products .product {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin: 12px;
    padding: 16px 16px 20px;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    text-decoration: none;
}

main .recentlyadded .products .product:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

main .recentlyadded .products .product .name {
    color: var(--color-text);
    font-weight: 500;
}

main .recentlyadded .products .product:hover .name {
    color: var(--color-primary);
    text-decoration: none;
}

main .recentlyadded .products .product .price {
    color: var(--color-primary);
    font-weight: 600;
}

main .recentlyadded .products .product .rrp {
    color: var(--color-text-muted);
}

main .recentlyadded .products .product .img {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

main .recentlyadded .products .product .img-hover-swap {
    position: relative;
}

main .recentlyadded .products .product .img-hover-swap .img-primary,
main .recentlyadded .products .product .img-hover-swap .img-secondary {
    display: block;
    width: 100%;
    height: auto;
}

main .recentlyadded .products .product .img-hover-swap .img-secondary {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

main .recentlyadded .products .product:hover .img-hover-swap .img-secondary {
    opacity: 1;
}

/* ---------- Product Cards (Products Page) ---------- */
main > .products .products-form .products-wrapper .product {
    width: calc(33.333% - 20px);
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin: 10px;
    padding: 16px 16px 20px;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    text-decoration: none;
}

main > .products .products-form .products-wrapper .product:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

main > .products .products-form .products-wrapper .product .name {
    color: var(--color-text);
    font-weight: 500;
}

main > .products .products-form .products-wrapper .product:hover .name {
    color: var(--color-primary);
    text-decoration: none;
}

main > .products .products-form .products-wrapper .product .price {
    color: var(--color-primary);
    font-weight: 600;
}

main > .products .products-form .products-wrapper .product .rrp {
    color: var(--color-text-muted);
}

main > .products .products-form .products-wrapper .product .img {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

main > .products .products-form .products-wrapper .product .img-hover-swap {
    position: relative;
}

main > .products .products-form .products-wrapper .product .img-hover-swap .img-primary,
main > .products .products-form .products-wrapper .product .img-hover-swap .img-secondary {
    display: block;
    width: 100%;
    height: auto;
}

main > .products .products-form .products-wrapper .product .img-hover-swap .img-secondary {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

main > .products .products-form .products-wrapper .product:hover .img-hover-swap .img-secondary {
    opacity: 1;
}

/* ---------- Product Filters (Top Bar) ---------- */
main > .products .products-form {
    flex-direction: column;
}

main > .products .products-form .products-filters {
    display: none;
}

main > .products .products-form .products-filter {
    border-top: none;
    padding: 0;
}

main > .products .products-form .products-filter .filter-title {
    font-weight: 600;
    color: var(--color-text);
    font-size: 14px;
    margin-bottom: 6px;
}

main > .products .products-form .products-filter .filter-title {
    cursor: default;
}

main > .products .products-form .products-filter .filter-title::after {
    display: none;
}

main > .products .products-form .products-filter.closed .filter-options {
    display: block;
}

main > .products .products-form .products-filter label {
    color: var(--color-text-secondary);
    font-size: 13px;
    height: auto;
    transition: color var(--transition-fast);
}

main > .products .products-form .products-filter label:hover {
    color: var(--color-primary);
}

main > .products .products-form .products-filter .price-range {
    padding-top: 0;
}

main > .products .products-form .products-filter .price-range input {
    width: 75px;
    font-size: 13px;
    padding: 5px 8px;
}

main > .products .products-form .products-filters .btn-filter {
    align-self: flex-end;
    margin-left: auto;
}

main > .products .products-form .products-view {
    width: 100%;
}

main > .products .products-header {
    padding-bottom: 0;
}

main > .products .products-header p {
    color: var(--color-text-muted);
}

main > .products .products-header .sortby {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    background: var(--color-surface);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

main > .products .products-header .sortby:hover,
main > .products .products-header .sortby:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(167,128,99,.1);
}

main > .products .products-header .sortby select {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    outline: none;
    padding: 2px 0;
	padding-left:6px;
}

/* ---------- Product Detail ---------- */
main > .product h1 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-text);
}

main > .product .price {
    color: var(--color-primary);
    font-weight: 600;
}

main > .product .rrp {
    color: var(--color-text-muted);
}

.tax-info {
    display: block;
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-top: 4px;
}

.product-share {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border-light);
}

.product-share .share-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

.product-share .share-links {
    display: flex;
    gap: 10px;
}

.product-share .share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.product-share .share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.product-share .share-btn svg {
    fill: #fff;
}

.product-share .share-facebook {
    background: #1877F2;
}

.product-share .share-x {
    background: #000;
}

.product-share .share-pinterest {
    background: #E60023;
}

main > .product .product-small-imgs .product-img-small {
    border-radius: var(--radius-sm);
    border-color: var(--color-border);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    overflow: hidden;
}

main > .product .product-small-imgs .product-img-small:hover {
    border-color: var(--color-primary-light);
}

main > .product .product-small-imgs .product-img-small.selected {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(167,128,99,.18);
}

main .product-details .description-title h2 {
    font-family: var(--font-display);
    border-bottom-color: var(--color-primary);
}

/* ---------- Buttons ---------- */
.btn {
    background: var(--color-primary);
    color: #fff;
    border: none;
    height: 44px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .01em;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(167,128,99,.25);
}

.btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn:disabled {
    background: #d1d5db;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

.btn.paypal {
    background: #287ddf;
}

.btn.paypal:hover {
    background: #1a6bc4;
}

.btn.stripe {
    background: #6772e5;
}

.btn.stripe:hover {
    background: #5460d4;
}

/* ---------- Forms & Inputs ---------- */
.form .form-input {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form .form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(167,128,99,.12);
    outline: none;
}

.form .form-input::placeholder {
    color: var(--color-text-muted);
}

.form .form-select {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form .form-select:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(167,128,99,.12);
}

.form .form-label {
    font-weight: 500;
    color: var(--color-text);
}

.form .form-link {
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

.form .form-link:hover {
    color: var(--color-primary-dark);
}

.link {
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

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

/* ---------- Cart ---------- */
main .cart table thead td {
    border-bottom-color: var(--color-border);
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .05em;
}

main .cart table tbody td {
    border-bottom-color: var(--color-border-light);
}

main .cart table .name {
    font-weight: 500;
    color: var(--color-text);
}

main .cart table .price {
    color: var(--color-primary);
    font-weight: 600;
}

main .cart table .options {
    color: var(--color-text-muted);
}

main .cart table .remove {
    color: var(--color-error);
    font-weight: 500;
    transition: color var(--transition-fast);
}

main .cart table .remove:hover {
    color: #b91c1c;
}

main .cart table input[type=number] {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

main .cart table input[type=number]:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(167,128,99,.12);
    outline: none;
}

main .cart .total .price {
    color: var(--color-primary);
    font-weight: 700;
}

/* ---------- Checkout ---------- */
main .checkout .shipping-details h2,
main .checkout .cart-details h2 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-text);
    border-bottom-color: var(--color-border);
}

main .checkout .cart-details {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
}

main .checkout .cart-details .total {
    border-top-color: var(--color-border);
    font-weight: 700;
}

main .checkout .cart-details .summary {
    border-top-color: var(--color-border-light);
}

main .checkout .cart-details .error {
    background: var(--color-error-bg);
    color: var(--color-error);
    border-radius: var(--radius-sm);
}

/* Payment Methods */
main .checkout .payment-methods label {
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
    cursor: pointer;
}

main .checkout .payment-methods label:hover {
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

main .checkout .payment-methods input:checked + label {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(167,128,99,.15);
}

/* Shipping methods */
main .checkout .shipping-methods label {
    transition: color var(--transition-fast);
}

main .checkout .shipping-methods input:checked + label {
    color: var(--color-primary);
    font-weight: 600;
}

/* ---------- Account Pages ---------- */
main .myaccount .menu a {
    color: var(--color-text-secondary);
    border-bottom-color: var(--color-border-light);
    font-weight: 500;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

main .myaccount .menu a:hover,
main .myaccount .menu a.selected {
    color: var(--color-primary);
    padding-left: 8px;
}

main .myaccount .myorders .order {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
}

main .myaccount .myorders .order .order-header {
    background: var(--color-bg);
    border-bottom-color: var(--color-border-light);
}

main .myaccount .login-register .login {
    border-right-color: var(--color-border-light);
}

main .myaccount .login-register h2 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-text);
}

/* ---------- Messages ---------- */
main p.error {
    color: var(--color-error);
}

main p.success {
    color: var(--color-success);
}

/* ---------- Footer ---------- */
footer {
    position: relative;
    background: var(--color-primary);
    border-top: none;
    margin-top: 80px;
    padding: 40px 0 30px;
}

footer .content-wrapper {
    text-align: center;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 28px;
    margin-bottom: 20px;
}

footer .footer-links a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-fast);
}

footer .footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

footer p {
    color: rgba(255,255,255,.55);
    margin: 0;
}

footer p a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
}

footer p a:hover {
    color: #fff;
}

/* ---------- Legal Pages ---------- */
.legal-page {
    padding: 40px 20px 60px;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.75;
}

.legal-page .page-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 32px;
    color: var(--color-text);
    margin-bottom: 32px;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 16px;
}

.legal-page h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    color: var(--color-primary);
    margin-top: 36px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-weight: 600;
    font-size: 17px;
    color: var(--color-text);
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-page p {
    color: var(--color-text-secondary);
    margin-bottom: 14px;
}

.legal-page p strong {
    color: var(--color-text);
}

.legal-page a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.legal-page a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

@media screen and (max-width: 640px) {
    .legal-page {
        padding: 24px 16px 40px;
    }

    .legal-page .page-title {
        font-size: 26px;
    }

    .legal-page h2 {
        font-size: 19px;
    }
}

/* ---------- Image Modal ---------- */
.img-modal {
    background: rgba(0,0,0,.75);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.img-modal div {
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* ---------- Scrollbar (Webkit) ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: #c4c8cc;
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: #a0a5ab;
}

/* ==========================================================================
   Responsive — Tablet (max-width: 1200px)
   ========================================================================== */
@media screen and (max-width: 1200px) {
    main .recentlyadded .products .product {
        width: calc(50% - 24px);
    }

    main > .products .products-form .products-wrapper .product {
        width: calc(50% - 20px);
    }
}

/* ==========================================================================
   Responsive — Existing breakpoint refinements (max-width: 1100px)
   ========================================================================== */
@media screen and (max-width: 1100px) {
    header {
        position: sticky;
        top: 0;
    }

    header nav {
        background: var(--color-surface);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        box-shadow: var(--shadow-lg);
    }

    header nav a:hover,
    header nav a.selected {
        background: rgba(167,128,99,.07);
        color: var(--color-primary);
    }

    .hero-slider,
    .hero-slider .carousel-item {
        height: 70vh;
    }

    .hero-slider .carousel-caption h2 {
        font-size: 36px;
    }

    main .recentlyadded .products .product {
        width: calc(50% - 24px);
    }

    main > .products .products-form .products-filters {
        gap: 14px;
        padding: 16px;
    }
}

/* ==========================================================================
   Responsive — Phone (max-width: 640px)
   ========================================================================== */
@media screen and (max-width: 640px) {
    .hero-slider,
    .hero-slider .carousel-item {
        height: 60vh;
    }

    .hero-slider .carousel-caption {
        left: 5%;
        right: 5%;
    }

    .hero-slider .carousel-caption h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .hero-slider .carousel-caption p {
        margin-bottom: 18px;
    }

    .hero-slider .btn-slider {
        padding: 10px 24px;
        font-size: 14px;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        display: none;
    }

    main .recentlyadded .products .product,
    main > .products .products-form .products-wrapper .product {
        width: calc(50% - 12px);
        margin: 6px;
        padding: 10px 10px 16px;
    }

    main .recentlyadded .products .product .img,
    main > .products .products-form .products-wrapper .product .img {
        height: auto;
    }

    main .recentlyadded .products .product .img-hover-swap,
    main > .products .products-form .products-wrapper .product .img-hover-swap {
        aspect-ratio: 1 / 1;
    }

    main .recentlyadded .products .product .img-hover-swap .img-primary,
    main > .products .products-form .products-wrapper .product .img-hover-swap .img-primary,
    main .recentlyadded .products .product .img-hover-swap .img-secondary,
    main > .products .products-form .products-wrapper .product .img-hover-swap .img-secondary {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    main .recentlyadded .products .product .img-hover-swap .img-secondary,
    main > .products .products-form .products-wrapper .product .img-hover-swap .img-secondary {
        background: var(--color-surface);
    }

    main .recentlyadded .products .product .name,
    main > .products .products-form .products-wrapper .product .name {
        font-size: 13px;
        padding: 10px 0 2px 0;
    }

    main .recentlyadded .products .product .price,
    main > .products .products-form .products-wrapper .product .price {
        font-size: 13px;
    }

    main .checkout .payment-methods label {
        width: 100%;
        margin-bottom: 8px;
    }

    main .myaccount {
        flex-direction: column;
    }

    main .myaccount .menu {
        width: 100%;
        padding-right: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--color-border-light);
        margin-bottom: 20px;
    }

    main .myaccount .menu a {
        display: inline-block;
        padding: 8px 16px;
        border-bottom: none;
        border-radius: var(--radius-full);
        background: var(--color-bg);
        margin: 4px;
        font-size: 14px;
    }

    main .myaccount .menu a:hover,
    main .myaccount .menu a.selected {
        background: rgba(167,128,99,.07);
        padding-left: 16px;
    }

    main .myaccount .login-register {
        flex-direction: column;
        width: 100%;
    }

    main .myaccount .login-register .login {
        border-right: none;
        border-bottom: 1px solid var(--color-border-light);
        padding-right: 0;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    main .myaccount .login-register .register {
        padding-left: 0;
    }

    main .cart table .rhide {
        display: none;
    }
}

/* ---------- CTA Banner ("Der Winter kann kommen!") ---------- */
.cta-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
	margin-top:4rem;
}

.cta-banner > img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.cta-banner .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.48);
}

.cta-banner .cta-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
}

.cta-banner .cta-content h2 {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.40);
}

.cta-banner .cta-content p {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 auto 30px auto;
    max-width: 750px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.30);
}

.cta-banner .btn-slider {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.cta-banner .btn-slider:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 128, 99, 0.35);
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 1100px) {
    .cta-banner > img {
        height: 400px;
    }

    .cta-banner .cta-content h2 {
        font-size: 42px;
    }
}

@media screen and (max-width: 640px) {
    .cta-banner > img {
        height: 350px;
    }

    .cta-banner .cta-content h2 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .cta-banner .cta-content p {
        margin-bottom: 20px;
    }
}

/* ---------- Contact Section ("Sie haben Fragen?") ---------- */
.contact-section {
    padding: 60px 20px;
}

.contact-section .contact-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.contact-section .contact-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.contact-section .contact-text h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 10px 0;
}

.contact-section .contact-text > p {
    color: var(--color-text-secondary);
    margin: 0 0 25px 0;
}

.contact-section .kontaktdaten h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: var(--color-text);
}

.contact-section .kontaktdaten p {
    margin: 0 0 6px 0;
}

.contact-section .kontaktdaten a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-section .kontaktdaten a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

@media screen and (max-width: 640px) {
    .contact-section {
        padding: 40px 16px;
    }

    .contact-section .contact-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .contact-section .contact-image img {
        width: 200px;
        height: 200px;
    }

    .contact-section .contact-text h2 {
        font-size: 28px;
    }
}

/* ---------- Page Hero ---------- */
.page-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 320px;
    overflow: hidden;
}

.page-hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.page-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.40);
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.30);
}

/* ---------- Feature Sections ---------- */
.content-page {
    padding: 60px 20px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.feature-section:last-child {
    margin-bottom: 0;
}

.feature-section-reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 0 0 400px;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: block;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 32px;
    color: var(--color-primary);
    margin: 0 0 12px 0;
}

.feature-text .feature-subtitle {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 12px 0;
}

.feature-text p {
    color: var(--color-text-secondary);
    margin: 0 0 14px 0;
}

.feature-text p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1100px) {
    .feature-image {
        flex: 0 0 300px;
    }

    .feature-section {
        gap: 30px;
    }
}

@media screen and (max-width: 640px) {
    .page-hero {
        height: 40vh;
        min-height: 260px;
    }

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


    .content-page {
        padding: 40px 16px 60px;
    }

    .feature-section,
    .feature-section-reverse {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 48px;
    }

    .feature-image {
        flex: none;
        width: 100%;
    }

    .feature-text h2 {
        font-size: 26px;
    }

}

/* ---------- Banner (full-width content section) ---------- */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner > img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
}

.banner-content h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.40);
}

.banner-content p {
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.30);
}

@media screen and (max-width: 1100px) {
    .banner > img {
        height: 400px;
    }

    .banner-content h2 {
        font-size: 34px;
    }
}

@media screen and (max-width: 640px) {
    .banner > img {
        height: 350px;
    }

    .banner-content h2 {
        font-size: 26px;
        margin-bottom: 14px;
    }

}

/* ---------- Presse List ---------- */
.presse-page {
    padding: 60px 20px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.presse-empty {
    text-align: center;
    color: var(--color-text-secondary);
    padding: 40px 0;
}

.presse-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.presse-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.presse-item:last-child {
    border-bottom: none;
}

.presse-image {
    flex: 0 0 200px;
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #f5f5f5;
}

.presse-image img {
    width: 100%;
    height: auto;
    display: block;
}

.presse-content {
    flex: 1;
    min-width: 0;
}

.presse-date {
    font-size: 13px;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.presse-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.presse-title a {
    color: inherit;
    text-decoration: none;
}

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

.presse-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0 0 14px 0;
}

.presse-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
}

.presse-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.presse-link:hover {
    text-decoration: underline;
}

/* ---------- Presse Detail ---------- */
.presse-detail {
    padding: 40px 20px 80px;
    max-width: 820px;
    margin: 0 auto;
}

.presse-back {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--color-text-secondary);
    text-decoration: none;
}

.presse-back:hover {
    color: var(--color-primary);
}

.presse-article-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 6px 0 24px 0;
    line-height: 1.2;
}

.presse-article-image {
    margin: 0 0 30px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #f5f5f5;
}

.presse-article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.presse-article-text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-text);
}

.presse-article-text p {
    margin: 0 0 18px 0;
}

.presse-article-text p:last-child {
    margin-bottom: 0;
}

.presse-article-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 720px) {
    .presse-item {
        flex-direction: column;
        gap: 16px;
    }

    .presse-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
    }

    .presse-article-title {
        font-size: 28px;
    }

    .presse-article-text {
        font-size: 16px;
    }
}

/* Shop landing page */
.shop-hero {
    background: #f4ede0;
    padding: 70px 24px;
    text-align: center;
}
.shop-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}
.shop-hero h1 {
    font-size: 42px;
    margin: 0 0 16px;
}
.shop-hero p {
    color: #555;
    margin: 0;
}
.shop-page {
    padding: 60px 24px 80px;
}
.shop-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.shop-category {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.shop-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.shop-category-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f4ede0;
}
.shop-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.shop-category-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.shop-category-content h2 {
    margin: 0 0 10px;
    font-size: 22px;
}
.shop-category-content p {
    margin: 0 0 18px;
    color: #555;
    flex: 1;
}
.shop-category-link {
    color: #b45309;
    font-weight: 600;
    font-size: 15px;
}

@media screen and (max-width: 900px) {
    .shop-categories {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .shop-hero h1 {
        font-size: 32px;
    }
}



.content-page li,
.description-content li{
	font-weight:300;
	color: var(--color-text-secondary);
}

