/* Inlined dependencies to avoid render-blocking CSS chains */
:root {
    --background-primary: #d1d4bc; /* Main background color */
    --background-primary-transparent: rgba(209, 212, 188, 0.60); /* Transparent primary background */
    --background-secondary: #ffffff; /* Secondary background color */
    --accent-primary: #7A805A; /* Primary accent color */
    --text-primary: #7A805A; /* Primary text color */
    --text-secondary: #ffffff; /* Secondary text color */
    --text-muted: #333; /* Muted text color */
    --text-highlight: #222; /* Highlighted text color */
    --background-muted: #f9f9f9; /* Muted background color */
    --shadow-default: rgba(0, 0, 0, 0.2); /* Default shadow */
    --shadow-strong: rgba(0, 0, 0, 0.3); /* Strong shadow */
    --shadow-light: rgba(0, 0, 0, 0.15); /* Light shadow */
    --overlay-dark: rgba(0, 0, 0, 0.98); /* Dark overlay */
    --shadow-accent-light: rgba(230, 57, 70, 0.06); /* Light accent shadow */
}


/* Reset some basic elements for cross-browser consistency */
html, body, div, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set default font and background color */
body {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background:
        radial-gradient(circle at 12% -10%, rgba(181, 109, 64, 0.2), transparent 30%),
        radial-gradient(circle at 100% 0%, rgba(61, 107, 92, 0.16), transparent 34%),
        linear-gradient(180deg, #f8f1e3 0%, var(--background-primary) 55%, #eaddc7 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.item-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 0 0.4rem;
}

.item {
    margin: 0;
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    border: 1px solid rgba(47, 36, 30, 0.16);
    background: rgba(255, 250, 241, 0.72);
    box-shadow: 0 16px 28px rgba(47, 36, 30, 0.08);
    padding: 0.7rem;
    box-sizing: border-box;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(47, 36, 30, 0.12);
}

.item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: opacity 0.24s ease;
    border-radius: 0;
    margin: 0;
    user-select: none;
    pointer-events: none;
}

.item-image[data-load-bound='1']:not(.is-loaded) {
    opacity: 0;
}

.item-image.is-loaded {
    opacity: 1;
}

.image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
    background: #e8ddcc;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.35s ease;
}

.carousel-slide {
    position: relative;
    min-width: 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(140deg, #e8ddcc 0%, #f0e7d8 50%, #e3d4bd 100%);
}

.carousel-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(255, 255, 255, 0) 32%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 68%);
    transform: translateX(-100%);
    animation: none;
    opacity: 0;
    transition: opacity 0.24s ease;
    z-index: 1;
}

.carousel-slide.is-loading-managed::before {
    animation: image-shimmer 1.25s linear infinite;
    opacity: 1;
}

.carousel-slide.is-loaded::before {
    opacity: 0;
    pointer-events: none;
}

.item-title {
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    text-align: center;
    margin-top: 0.68rem;
    line-height: 1.05;
}

.item-description {
    text-align: center;
    margin: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

.item-section .item-description {
    display: none;
}

.item-price {
    text-align: center;
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0.25rem 0 0;
    font-weight: 700;
}

.item-section > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.in-cart-overlay {
    position: absolute;
    object-fit: cover;
    border-radius: 12px;
    opacity: 0.88;
    pointer-events: none;
    display: none;
    z-index: 2;
}

.image-wrap > .in-cart-overlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.buy-now-btn {
    display: flex;
    width: 100%;
    height: 40px;
    background: var(--accent-primary);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 248, 238, 0.35);
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    margin: 0.55rem auto 0;
    align-items: center;
    justify-content: center;
    padding: 0 0.72rem;
    font-size: 0.9rem;
    max-width: none;
}



.buy-now-btn:hover { opacity: 0.94; }
.buy-now-btn:active { transform: translateY(1px); }

.stock-badge {
    position: absolute;
    right: 8px;
    top: 8px;
    background: rgba(24, 16, 12, 0.78);
    color: #f8efe6;
    font-size: 10px;
    padding: 4px 7px;
    border-radius: 999px;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: inline-flex;
    gap: 0.35rem;
    z-index: 3;
    padding: 0.23rem 0.38rem;
    border-radius: 999px;
    background: rgba(19, 13, 9, 0.42);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.35);
    padding: 0;
    cursor: pointer;
}

.carousel-dot.is-active {
    background: #fff;
}

#checkout-button {
    position: fixed;
    top: 92px;
    right: 10px;
    padding: 10px 15px;
    background-color: var(--accent-primary);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 248, 238, 0.38);
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.95rem;
    z-index: 10000;
    box-shadow: 0 12px 24px rgba(43, 25, 12, 0.22);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#checkout-button:hover {
    opacity: 0.95;
    transform: scale(1.02);
}

#checkout-button:active {
    transform: scale(0.95);
}

@media (max-width: 900px) {
    .item-section {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
        padding: 0;
    }

    .item-section > :only-child {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .item {
        width: 100%;
        max-width: none;
        padding: 0.58rem;
    }

    .image-wrap {
        width: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 10px;
    }

    .item-title {
        margin-top: 0.58rem;
        font-size: 1.2rem;
    }

    .item-description {
        max-width: 100%;
        margin-top: 8px;
    }

    .item-price {
        margin-top: 4px;
        font-size: 0.86rem;
    }

    .buy-now-btn {
        height: 37px;
        font-size: 0.83rem;
        margin-top: 0.48rem;
    }

    #checkout-button {
        top: auto;
        top: 90px;
        right: 12px;
        font-size: 0.88rem;
        padding: 9px 13px;
    }

    .carousel-dot {
        width: 7px;
        height: 7px;
    }
}

.item-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(19, 13, 9, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 20000;
}

.item-modal {
    width: min(760px, 100%);
    max-height: 94dvh;
    background: #fbf4e8;
    border-radius: 16px;
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.32);
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0.85rem;
}

.item-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.item-modal-close {
    position: sticky;
    top: 0;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(47, 36, 30, 0.2);
    border-radius: 999px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 38px;
    height: 38px;
    font-weight: 800;
    z-index: 4;
}

.item-modal-carousel {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: #e8ddcb;
}

.item-modal-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.35s ease;
}

.item-modal-slide {
    position: relative;
    min-width: 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(140deg, #e8ddcc 0%, #f0e7d8 50%, #e3d4bd 100%);
}

.item-modal-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(255, 255, 255, 0) 32%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 68%);
    transform: translateX(-100%);
    animation: none;
    opacity: 0;
    transition: opacity 0.24s ease;
    z-index: 1;
}

.item-modal-slide.is-loading-managed::before {
    animation: image-shimmer 1.25s linear infinite;
    opacity: 1;
}

.item-modal-slide.is-loaded::before {
    opacity: 0;
    pointer-events: none;
}

.item-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: opacity 0.24s ease;
}

.item-modal-image[data-load-bound='1']:not(.is-loaded) {
    opacity: 0;
}

.item-modal-image.is-loaded {
    opacity: 1;
}

.item-modal-dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: inline-flex;
    gap: 0.35rem;
    padding: 0.23rem 0.38rem;
    border-radius: 999px;
    background: rgba(18, 12, 8, 0.45);
}

.item-modal-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.4);
    padding: 0;
    cursor: pointer;
}

.item-modal-dot.is-active {
    background: #fff;
}

.item-modal-title {
    font-size: clamp(1.9rem, 6vw, 2.6rem);
    font-weight: 700;
    margin: 0;
    line-height: 0.95;
}

.item-modal-description {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    white-space: pre-wrap;
}

.item-modal-price {
    margin: 0;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--text-primary);
}

.item-modal-button {
    margin: 0.2rem 0 0;
    width: 100%;
    max-width: none;
    justify-content: center;
}

body.item-modal-open {
    overflow: hidden;
}

@keyframes image-shimmer {
    100% {
        transform: translateX(100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .carousel-slide::before,
    .item-modal-slide::before {
        animation: none;
    }

    .item-image,
    .item-modal-image {
        transition: none;
    }
}

@media (max-width: 900px) {
    .item-modal-backdrop {
        align-items: stretch;
    }

    .item-modal {
        width: 100%;
        max-height: none;
        min-height: 100dvh;
        border-radius: 0;
        padding: 0.7rem;
    }

    .item-modal-header {
        position: sticky;
        top: 0;
        z-index: 5;
        padding-top: 0.2rem;
        background: #fbf4e8;
    }

    .item-modal-carousel {
        border-radius: 12px;
        min-height: 300px;
    }

    .item-modal-dot {
        width: 7px;
        height: 7px;
    }

    .item-modal-description {
        padding-bottom: 1.1rem;
    }
}

/* Dedicated About section styling */
.about-section {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.about-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
}

.about-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 16px;
}

.about-photo {
	width: 320px;
	max-width: 90vw;
	aspect-ratio: 1 / 1;
	border-radius: 18px;
	overflow: hidden;
}

.about-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.about-name {
	font-size: 26px;
	font-weight: 800;
	margin: 8px 0 4px 0;
}

.about-description {
	margin: 2px 0;
	font-size: 17px;
	line-height: 1.7;
	text-align: center;
}

/* Standalone about-page sections - no dependency on .content-section */
.about-hero-section {
    padding: 40px 18px 50px;
    text-align: center;
}

.about-profile-section {
    padding: 15px 18px 40px;
    text-align: center;
}

.about-hero-section h1 {
	font-size: clamp(45px, 9vw, 74px);
	margin: 4px 0 15px;
	line-height: 0.92;
}

.about-page-intro {
	max-width: 820px;
	font-size: 17px;
	line-height: 1.75;
	margin: 0 auto;
	color: var(--text-muted);
}

.transparent-photo-frame {
	background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
	border: 1px solid rgba(47, 36, 30, 0.1);
	box-shadow: 0 12px 26px rgba(47, 36, 30, 0.12);
}

.transparent-profile-image {
	object-fit: contain;
	padding: 8px;
}

.about-page-actions {
	margin-top: 7px;
}

.about-gallery-strip {
	padding-top: 22px;
}

.about-photo-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 22px;
	width: min(980px, 100%);
	margin-left: auto;
	margin-right: auto;
}

.about-photo-slot {
	border-radius: 14px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(47, 36, 30, 0.12);
	min-height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: rgba(47, 36, 30, 0.55);
}

.about-photo-slot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.about-photo-slot.placeholder {
	border-style: dashed;
	background: rgba(255, 250, 241, 0.7);
}

@media (max-width: 768px) {
	.about-card {
		padding: 0 20px;
	}

	.about-photo {
		width: 260px;
		max-width: 80vw;
	}

	.about-hero-section {
		padding: 24px 16px 40px;
	}

	.about-profile-section {
		padding: 6px 16px 26px;
	}

	.about-photo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.about-photo-grid {
		grid-template-columns: 1fr;
	}
}

header {
    background:
        radial-gradient(circle at 10% 50%, rgba(181, 109, 64, 0.15), transparent 55%),
        radial-gradient(circle at 90% 50%, rgba(61, 107, 92, 0.11), transparent 50%),
        linear-gradient(135deg, #f8f1e3 0%, #e5e7d0 50%, #eaddc7 100%);
    color: var(--text-primary);
    padding: 0.2rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 82px;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(47, 36, 30, 0.12);
}

.logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
}

.logo-icon {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1;
}

.logo-icon-img {
    height: 72px;
    width: auto;
}

.logo-subtext {
    font-size: 30px;
    color: var(--accent-primary);
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.main-nav li {
    margin-left: 0;
}

.main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 700;
    padding: 0.44rem 0.85rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: rgba(255, 250, 241, 0.68);
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
    background-color: #fff;
    border-color: rgba(181, 109, 64, 0.45);
}

.menu-toggle {
    display: none;
}

.menu-icon,
.menu-close-button {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 82px);
    min-height: calc(100svh - 82px);
    position: relative;
    background-image:
        linear-gradient(180deg, rgba(28, 20, 13, 0.434), rgba(28, 20, 13, 0)),
        url('../images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    background-color: var(--background-primary);
    padding: 2rem 1rem;
}

.content-section {
    padding: 5.2rem 1.15rem;
    text-align: center;
    min-height: 38vh;
    min-height: 38svh;
}

.content-section h2 {
    font-size: clamp(2.35rem, 7vw, 4.1rem);
    margin-bottom: 1.2rem;
    font-weight: 700;
    line-height: 0.98;
}

.content-section p {
    max-width: 820px;
    font-size: 1.03rem;
    line-height: 1.75;
    margin: 0 auto;
    color: var(--text-muted);
}

.standout-text {
    color: var(--accent-primary);
}

.cta-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;

    background-color: rgba(255, 250, 241, 0.86);
    color: var(--text-primary);
    border: 1px solid rgba(47, 36, 30, 0.16);

    padding: 0.85rem 1.6rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    cursor: pointer;

    box-shadow: 0 12px 22px var(--shadow-light);
    transition: all 0.3s ease;
}

.cta-button .icon-email,
.icon-calendar {
    width: 23px;
    height: 23px;
    fill: var(--text-primary);
    transition: fill 0.3s ease;
    vertical-align: middle;
    margin-bottom: 3px;
}

.text {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.cta-button:hover,
.cta-button:focus {
    background-color: var(--accent-primary);
    color: var(--text-secondary);
    box-shadow: 0 16px 26px var(--shadow-default);
    transform: translateY(-1px);
}

.cta-button:hover .icon-email,
.cta-button:hover .icon-calendar {
    fill: var(--text-secondary);
}

.cta-button:hover .text {
    color: var(--text-secondary);
}

.down-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.72rem 1.2rem;
    background-color: var(--accent-primary);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 248, 238, 0.7);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.94rem;
    transition: all 0.3s ease;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
    text-align: center;
    white-space: nowrap;
}

.scroll-down-button:hover {
    background-color: #fff;
    color: var(--accent-primary);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
    header {
        padding: 0 0.85rem;
    }

    .logo-icon-img {
        height: 52px;
    }

    .logo-subtext {
        font-size: 23px;
    }

    .menu-icon {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 31px;
        height: 25px;
    }

    .menu-icon span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--text-primary);
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
    }

    .menu-toggle:checked ~ .menu-icon {
        display: none;
    }

    .menu-close-button {
        display: none;
        position: fixed;
        top: 12px;
        right: 12px;
        width: 46px;
        height: 46px;
        line-height: 46px;
        text-align: center;
        background-color: var(--accent-primary);
        color: #fff;
        font-size: 1.2rem;
        font-weight: 700;
        border-radius: 12px;
        cursor: pointer;
        z-index: 1005;
    }

    .menu-toggle:checked ~ .menu-close-button {
        display: block;
    }

    .main-nav ul {
        display: none;
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100dvh;
        background-color: var(--background-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        gap: 0.6rem;
    }

    .main-nav li {
        margin: 0;
        width: min(84vw, 320px);
        text-align: center;
    }

    .main-nav a {
        display: block;
        width: 100%;
        font-size: 1.12rem;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.08);
        padding: 0.85rem 0.9rem;
    }

    .menu-toggle:checked ~ ul {
        display: flex;
    }

    .hero {
        min-height: calc(100vh - 82px);
        min-height: calc(100svh - 82px);
        justify-content: flex-start;
        padding-top: 3.2rem;
    }

    .content-section {
        padding: 4rem 1rem;
    }

    .content-section h2 {
        margin-bottom: 1rem;
    }

    .down-buttons {
        bottom: 200px;
    }

    .scroll-down-button {
        font-size: 0.9rem;
        padding: 0.66rem 1rem;
    }

    .cta-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
    }

    .cta-button {
        width: 100%;
    }
}

.center-email-button {
    justify-content: center;
}

.about-preview-section {
    padding-top: 2.2rem;
}

.about-preview-card {
    width: min(940px, 100%);
    margin: 0 auto;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(255, 246, 231, 0.88));
    border: 1px solid rgba(47, 36, 30, 0.12);
    border-radius: 24px;
    padding: clamp(1.2rem, 3.2vw, 2.2rem);
    box-shadow: 0 16px 34px rgba(47, 36, 30, 0.08);
}

.about-preview-kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem !important;
    font-weight: 800;
    color: rgba(47, 36, 30, 0.7) !important;
    margin-bottom: 0.55rem !important;
}

.shop-footer {
    padding: 1rem 1rem 1.9rem;
    display: flex;
    justify-content: center;
}



/* --- Just About Tech attribution in Terms section --- */
.jat-attribution {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
    cursor: pointer;
}
.jat-icon {
    width: 36px;
    height: auto;
    display: block;
}
.jat-text {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .jat-icon { width: 28px; }
}