:root {
--bg: #e4d5c0;
--surface: #f0e6d8;
--surface2: #faf4ec;
--accent: #8b5e3c;
--accent2: #7a4020;
--text: #3d2b1f;
--muted: #8a6b54;
--border: #cdb898;
--white: #fff;
--shadow: rgba(62,40,25,.14);
--font-serif: Georgia, 'Times New Roman', serif;
--font-sans: system-ui, -apple-system, sans-serif;
--r-sm: 6px;
--r-md: 10px;
--r-lg: 16px;
}
*,
*::before,
*::after {
box-sizing: border-box;
scrollbar-width: thin;
scrollbar-color: var(--accent) var(--surface);
}
html,
body,
header,
main,
footer,
section,
article,
div,
menu,
nav,
ul,
li,
h1,
h2,
h3,
h4,
p,
address,
table,
td,
th,
button,
input,
label {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font: inherit;
vertical-align: baseline;
}
menu,
ul,
li {
list-style: none;
}
button {
cursor: pointer;
}
html {
height: 100%;
font-size: 16px;
}
body {
min-height: 100%;
background: var(--bg);
font-family: var(--font-sans);
color: var(--text);
text-align: center;
}
main {
padding: 0;
background: var(--bg);
}
main > :not(.hero):not(.page-img) {
max-width: 1280px;
margin-left: auto;
margin-right: auto;
padding-left: 1.5rem;
padding-right: 1.5rem;
}
.hidden {
visibility: hidden;
height: 0;
overflow: hidden;
padding-top: 0;
padding-bottom: 0;
margin-top: 0;
margin-bottom: 0;
}
.off {
position: fixed;
top: 0;
left: 0;
z-index: 100;
visibility: hidden;
width: 100%;
padding: 0.8rem 1rem;
background: rgba(139, 94, 60, 0.95);
color: var(--white);
font-weight: bold;
font-size: 0.9rem;
}
/* ── Header ─────────────────────────────────── */
header {
position: sticky;
top: 0;
z-index: 50;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
padding: 1.75rem 1.5rem;
background: #7a4020;
border-bottom: 2px solid #5a2c12;
box-shadow: 0 2px 12px var(--shadow);
}
.logo-link {
grid-column: 2;
display: flex;
align-items: center;
gap: 0.6rem;
flex-shrink: 0;
text-decoration: none;
}
header img {
height: 80px;
width: auto;
}
.logo-brand {
font-family: var(--font-serif);
font-size: 2rem;
font-weight: 700;
color: #fff;
letter-spacing: 0.02em;
}
/* ── Nav ─────────────────────────────────────── */
nav {
position: relative;
grid-column: 3;
justify-self: end;
}
nav > div {
display: flex;
align-items: center;
gap: 0.25rem;
}
nav a {
padding: 0.45rem 0.9rem;
border-radius: var(--r-sm);
font-size: 0.95rem;
font-weight: 600;
color: rgba(255,255,255,0.82);
text-decoration: none;
white-space: nowrap;
transition: color 0.2s, background 0.2s;
}
nav a.active {
color: #fff;
background: rgba(255,255,255,0.18);
}
@media (max-width: 768px) {
nav {
z-index: 10;
}
nav > div {
position: absolute;
right: 0;
top: calc(100% + 0.5rem);
display: block;
min-width: 180px;
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--r-md);
box-shadow: 0 8px 24px var(--shadow);
transform: scaleY(0);
transform-origin: top right;
transition: transform 0.25s ease;
overflow: hidden;
}
nav.open > div {
transform: scaleY(1);
}
nav > div > a {
display: block;
padding: 0.8rem 1.2rem;
border-bottom: 1px solid var(--border);
text-align: left;
border-radius: 0;
}
nav > div > a:last-child {
border-bottom: none;
}
nav::before {
content: url('/img/menu-open.png');
display: block;
padding: 0.4rem;
cursor: pointer;
filter: brightness(0) invert(1);
}
nav.open::before {
content: url('/img/menu-close.png');
}
}
/* ── Footer ─────────────────────────────────── */
footer {
padding: 3rem 1.5rem 2rem;
background: #7a4020;
border-top: 2px solid #5a2c12;
}
.footer-logo {
height: 72px;
width: auto;
margin-bottom: 1.5rem;
display: block;
margin-left: auto;
margin-right: auto;
}
.footer-slogan {
font-size: 0.85rem;
color: var(--muted);
max-width: 400px;
margin: 0 auto 1.5rem;
line-height: 1.5;
}
footer menu {
display: flex;
justify-content: center;
gap: 0.5rem;
margin-bottom: 1.5rem;
}
footer menu a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 38px;
height: 38px;
border-radius: 50%;
background: var(--surface2);
border: 1px solid var(--border);
transition: background 0.2s, border-color 0.2s;
}
footer menu a img {
width: 20px;
height: 20px;
filter: brightness(0) sepia(1) saturate(1.5) hue-rotate(10deg) brightness(0.55);
}
.footer-contact {
display: flex;
justify-content: center;
gap: 1rem;
margin: 0 auto 2.5rem;
max-width: 760px;
padding: 1.75rem 1rem;
border-top: 1px solid rgba(255,255,255,0.12);
border-bottom: 1px solid rgba(255,255,255,0.12);
}
.fc-col {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.4rem;
color: rgba(255,255,255,0.88);
font-size: 0.88rem;
text-decoration: none;
line-height: 1.5;
}
.fc-col:first-child {
max-width: 300px;
}
.fc-col + .fc-col {
border-left: 1px solid rgba(255,255,255,0.12);
padding-left: 1rem;
}
.fc-header {
display: flex;
justify-content: center;
align-items: center;
gap: 0.55rem;
}
.fc-col b {
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
color: rgba(255,255,255,0.7);
}
.fc-col span {
color: rgba(255,255,255,0.85);
font-size: 0.88rem;
text-align: center;
}
.fc-icon {
display: flex;
align-items: center;
justify-content: center;
width: 1.8rem;
height: 1.8rem;
background: rgba(255,255,255,0.12);
border-radius: 50%;
flex-shrink: 0;
}
.fc-icon img {
width: 1rem;
height: 1rem;
filter: brightness(0) invert(1);
}
@media (max-width: 600px) {
.footer-contact {
flex-direction: column;
gap: 1.1rem;
}
.fc-col + .fc-col {
border-left: none;
border-top: 1px solid rgba(255,255,255,0.12);
padding-left: 0;
padding-top: 1.1rem;
}
}
.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.25rem 1rem;
margin-bottom: 1.5rem;
}
.footer-links a,
.footer-links a:visited {
font-size: 0.82rem;
color: rgba(255,255,255,0.7);
text-decoration: none;
transition: color 0.2s;
}
.footer-copy {
font-size: 0.78rem;
color: rgba(255,255,255,0.45);
}
/* ── Hero sections (shared) ─────────────────── */
.hero {
position: relative;
overflow: hidden;
}
.hero img {
display: block;
width: 100%;
min-height: 360px;
max-height: 640px;
object-fit: cover;
object-position: center top;
}
.hero div {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: linear-gradient(to bottom, rgba(30,18,8,.20) 0%, rgba(30,18,8,.60) 100%);
padding: 2rem 1.5rem;
}
.hero p {
font-family: var(--font-serif);
font-size: clamp(1.1rem, 3.5vw, 1.8rem);
font-weight: bold;
line-height: 1.5;
color: var(--white);
text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.hero a {
display: inline-block;
margin-top: 1.25rem;
padding: 0.7rem 2rem;
background: var(--accent);
border-radius: var(--r-sm);
font-size: 0.95rem;
font-weight: 700;
color: var(--white);
text-decoration: none;
letter-spacing: 0.03em;
transition: background 0.2s;
}
/* ── Page hero image (page-image partial) ───── */
.page-img {
position: relative;
overflow: hidden;
max-height: 320px;
}
.page-img img {
display: block;
width: 100%;
max-height: 320px;
object-fit: cover;
}
/* ── Article wrapper ─────────────────────────── */
article {
padding: 2rem 0 1.5rem;
text-align: left;
}
article > img {
width: 100%;
margin-block: 1rem;
border-radius: var(--r-lg);
}
article > h2 {
font-family: var(--font-serif);
font-size: clamp(1.4rem, 4vw, 2rem);
font-weight: bold;
line-height: 1.3;
color: var(--text);
margin-bottom: 1rem;
}
article > h3 {
font-family: var(--font-serif);
font-size: 1.2rem;
font-weight: bold;
line-height: 1.5;
color: var(--accent2);
padding-top: 1.5rem;
padding-bottom: 0.4rem;
border-bottom: 1px solid var(--border);
margin-bottom: 0.75rem;
}
article > h4 {
font-family: var(--font-serif);
font-size: 1.05rem;
color: var(--muted);
text-align: center;
margin-bottom: -0.5rem;
font-style: italic;
}
article > p {
font-size: 1rem;
line-height: 1.75;
color: var(--text);
padding-block: 0.35rem;
opacity: 0.9;
}
article > ul {
padding-left: 1.5rem;
}
article > ul > li {
padding-block: 0.4rem;
list-style: square;
font-size: 1rem;
line-height: 1.6;
color: var(--text);
opacity: 0.9;
}
article a,
article a:visited {
color: var(--accent2);
}
/* ── Contact address block ───────────────────── */
address {
display: flex;
flex-direction: column;
gap: 0.25rem;
margin-top: 1.5rem;
padding: 1.5rem 1.2rem;
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--r-lg);
text-align: left;
}
address > h3 {
margin-bottom: 0.75rem;
font-family: var(--font-serif);
font-size: clamp(0.85rem, 4vw, 1.1rem);
font-weight: bold;
color: var(--text);
white-space: nowrap;
}
address > div,
address > a {
display: flex;
gap: 0.75rem;
padding: 0.4rem;
color: var(--muted);
text-decoration: none;
transition: color 0.2s;
}
address > div {
align-items: flex-start;
}
address > a {
align-items: center;
width: fit-content;
}
address img {
width: 1.8rem;
filter: brightness(0) sepia(1) saturate(2) hue-rotate(10deg) brightness(0.5);
flex-shrink: 0;
}
address p {
font-size: 0.92rem;
line-height: 1.5;
}
/* ── Site haritası ───────────────────────────── */
article > h3 ~ ul {
padding-left: 0;
}
article > h3 ~ ul li {
list-style: none;
padding-block: 0.3rem;
}
article > h3 ~ ul li a,
article > h3 ~ ul li a:visited {
color: var(--muted);
text-decoration: none;
font-size: 0.95rem;
transition: color 0.2s;
}
/* ── Product section accordion ──────────────────── */
.prd-section {
margin: 1.5rem 0 0;
}
.prd-section > summary {
list-style: none;
cursor: pointer;
display: flex;
align-items: center;
padding: 1rem 1.25rem;
background: #fff;
border-bottom: 2px solid #5a2c12;
border-radius: var(--r-md) var(--r-md) 0 0;
font-family: var(--font-serif);
font-size: 1.15rem;
font-weight: bold;
color: var(--text);
user-select: none;
width: 100%;
box-sizing: border-box;
}
.prd-section > summary::-webkit-details-marker {
display: none;
}
.prd-section > summary::before {
content: '+';
margin-right: 0.75rem;
width: 1.75rem;
height: 1.75rem;
line-height: 1.75rem;
text-align: center;
font-size: 1.25rem;
font-weight: 700;
color: var(--accent);
background: var(--bg);
border: 1.5px solid var(--border);
border-radius: 50%;
flex-shrink: 0;
}
.prd-section[open] > summary::before {
content: '−';
background: var(--accent);
color: #fff;
border-color: var(--accent);
}
/* ── Product grid (all-products page) ──────────── */
ul.prd {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.25rem;
margin: 0;
padding: 1.25rem;
background: var(--muted);
border-radius: 0 0 var(--r-md) var(--r-md);
}
ul.prd li {
display: flex;
flex-direction: column;
overflow: hidden;
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--r-lg);
box-shadow: 0 2px 12px rgba(0,0,0,.3);
text-align: center;
transition: border-color 0.2s, box-shadow 0.2s;
}
ul.prd a {
display: block;
color: inherit;
text-decoration: none;
}
ul.prd a img {
display: block;
width: 100%;
aspect-ratio: 4/3;
object-fit: contain;
background: var(--white);
padding: 0.5rem;
}
ul.prd h3 {
margin: 0.75rem 1rem 0.3rem;
font-family: var(--font-serif);
font-size: 1rem;
font-weight: bold;
color: var(--text);
line-height: 1.3;
}
ul.prd b {
display: block;
margin: 0.2rem 1rem 1rem;
font-size: 1.1rem;
font-weight: 700;
color: var(--accent2);
}
ul.prd p {
flex: 1;
margin: 0.2rem 1rem 0.75rem;
font-size: 0.85rem;
line-height: 1.4;
color: var(--muted);
}
ul.prd button {
display: flex;
align-items: center;
justify-content: center;
width: fit-content;
min-height: 38px;
margin: auto auto 1rem;
padding: 0.5rem 1.5rem;
background: var(--accent);
border-radius: var(--r-sm);
font-size: 0.95rem;
font-weight: 700;
color: var(--white);
transition: background 0.2s;
}
/* ── Product detail page ────────────────────── */
.pdt {
max-width: 680px;
margin: 2rem auto;
padding: 2rem;
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--r-lg);
box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.pdt > img {
display: block;
width: 100%;
max-width: 480px;
margin: 0 auto 1.5rem;
border-radius: var(--r-md);
}
.pdt > h1 {
margin: 0 0 0.5rem;
font-family: var(--font-serif);
font-size: clamp(1.2rem, 4vw, 1.6rem);
font-weight: bold;
color: var(--text);
}
.pdt > b {
display: flex;
align-items: center;
justify-content: center;
gap: 0.4rem;
margin: 0 0 0.75rem;
font-size: 1.35rem;
font-weight: 700;
color: var(--accent2);
}
.pdt > b i {
font-size: 0.8rem;
font-style: normal;
color: var(--muted);
}
.pdt > button {
display: flex;
align-items: center;
justify-content: center;
margin: 0.5rem auto 0;
padding: 0.75rem 2rem;
min-height: 44px;
min-width: 160px;
background: var(--accent);
border-radius: var(--r-sm);
font-size: 1rem;
font-weight: 700;
color: var(--white);
transition: background 0.2s;
}
/* ── Tabs ────────────────────────────────────── */
.tabs {
margin-top: 1.75rem;
text-align: left;
}
.tabs input[type="radio"] {
display: none;
}
.tab-nav {
display: flex;
border-bottom: 2px solid var(--border);
}
.tab-nav label {
flex: 1;
padding: 0.7rem 1rem;
font-size: 0.9rem;
font-weight: 700;
cursor: pointer;
color: var(--muted);
border-bottom: 2px solid transparent;
margin-bottom: -2px;
transition: color 0.2s, border-color 0.2s;
}
#tab-desc:checked ~ .tab-nav label[for="tab-desc"],
#tab-specs:checked ~ .tab-nav label[for="tab-specs"] {
color: var(--accent2);
border-bottom-color: var(--accent);
}
.tab-desc,
.tab-specs {
display: none;
padding: 1rem;
background: var(--surface2);
border: 1px solid var(--border);
border-top: none;
border-radius: 0 0 var(--r-md) var(--r-md);
}
#tab-desc:checked ~ .tab-desc {
display: block;
}
#tab-specs:checked ~ .tab-specs {
display: block;
}
.tab-desc p {
padding-block: 0.4rem;
font-size: 0.95rem;
line-height: 1.7;
color: var(--text);
opacity: 0.9;
}
.tab-specs table {
width: 100%;
border-collapse: collapse;
}
.tab-specs th,
.tab-specs td {
padding: 0.6rem 0.75rem;
font-size: 0.9rem;
text-align: left;
}
.tab-specs th {
width: 50%;
color: var(--muted);
font-weight: 700;
}
.tab-specs td {
color: var(--text);
}
@media (max-width: 600px) {
ul.prd {
grid-template-columns: repeat(2, 1fr);
padding: 0.75rem;
gap: 0.75rem;
}
.pdt {
padding: 1.25rem;
}
.pdt > h1 {
font-size: clamp(0.9rem, 5vw, 1.4rem);
}
}
/* ── Basket hidden state ─────────────────────── */
#basket .hidden {
display: none !important;
}
/* ── Floating basket badge ───────────────────── */
#basket-badge {
position: fixed;
right: 1.25rem;
bottom: 1.5rem;
z-index: 1000;
text-decoration: none;
background: var(--accent);
border-radius: 50%;
width: 72px;
height: 72px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 6px 20px rgba(139, 94, 60, .4);
transition: transform 0.2s, box-shadow 0.2s;
border: 3px solid var(--surface2);
}
#basket-badge:active {
transform: scale(0.95);
}
#basket-badge img {
width: 36px;
height: 36px;
border: none;
border-radius: 0;
filter: brightness(0) invert(1);
}
#basket-badge span {
position: absolute;
top: -6px;
right: -6px;
background: #fff;
color: var(--text);
font-size: 0.9rem;
font-weight: 700;
border-radius: 50%;
min-width: 26px;
height: 26px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 6px rgba(0, 0, 0, .4);
border: 2px solid var(--surface);
}
/* ── Qty control (inline) ────────────────────── */
.qty-ctrl,
ul.prd button.qty-ctrl,
.pdt>button.qty-ctrl {
display: flex;
align-items: center;
justify-content: center;
gap: 0.4rem;
background: transparent;
border: none;
border-radius: 0;
padding: 0;
}
.pdt>button.qty-ctrl {
padding: 0.5rem 1.5rem;
background: var(--surface2);
border: 1.5px solid var(--border);
border-radius: var(--r-sm);
}
.qty-ctrl img {
width: 26px;
height: 26px;
flex-shrink: 0;
filter: brightness(0) sepia(1) saturate(2) hue-rotate(10deg) brightness(0.5);
cursor: pointer;
padding: 4px;
border-radius: 50%;
border: 1.5px solid var(--border);
}
.qty-ctrl span {
font-weight: 700;
min-width: 1.5rem;
text-align: center;
font-size: 0.85rem;
color: var(--text);
white-space: nowrap;
background: var(--surface2);
padding: 0.25rem 0.45rem;
border-radius: 4px;
}
/* ── Basket panel ────────────────────────────── */
#basket {
position: relative;
background: var(--bg);
padding: 0 1.5rem 4rem;
margin-top: 3rem;
border-top: 2px solid var(--border);
}
#basket>div {
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
#basket .empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 5rem 1rem 1rem;
max-width: 600px;
margin: 0 auto;
text-align: center;
}
#basket .empty img {
width: 56px;
height: 56px;
opacity: 0.3;
filter: brightness(0) sepia(1) saturate(1.5) hue-rotate(10deg) brightness(0.6);
border: none;
border-radius: 0;
}
#basket .empty p {
margin-top: 0.75rem;
font-size: 0.95rem;
color: var(--muted);
line-height: 1.6;
}
#basket .empty a {
color: var(--accent2);
font-weight: 600;
text-decoration: underline;
text-underline-offset: 0.2rem;
}
#basket h5 {
font-size: 1rem;
color: var(--muted);
text-align: center;
line-height: 1.7;
font-weight: normal;
margin-bottom: 1rem;
padding-top: 0.4rem;
}
#basket .wrap {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--r-lg);
padding: 1.25rem 1.5rem;
box-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}
#basket .wrap>button {
display: flex;
align-items: center;
gap: 0.5rem;
width: 100%;
background: transparent;
border: none;
padding: 0.4rem 0 0.7rem;
cursor: pointer;
font-size: 0.9rem;
}
#basket .wrap>button::before,
#basket .wrap>button::after {
content: '';
flex: 1;
height: 1px;
background: var(--border);
}
#basket .wrap>button b {
font-weight: 700;
color: var(--text);
white-space: nowrap;
}
#basket .wrap>button i {
font-style: normal;
color: var(--muted);
white-space: nowrap;
}
#basket .wrap>button em {
display: inline-block;
width: 7px;
height: 7px;
border-right: 2px solid var(--muted);
border-bottom: 2px solid var(--muted);
transform: rotate(45deg);
transition: transform 0.3s ease, margin 0.3s ease;
margin-top: -3px;
flex-shrink: 0;
font-style: normal;
}
#basket .wrap>button.open em {
transform: rotate(-135deg);
margin-top: 3px;
}
#basket .wrap>div {
overflow: hidden;
padding-top: 0.5rem;
}
#basket .items>div {
position: relative;
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.85rem;
padding-right: 0;
}
#basket .items>div:last-of-type {
border-bottom: none;
}
#basket .items>div>img:nth-child(2) {
width: 72px;
height: 72px;
object-fit: cover;
border-radius: var(--r-sm);
}
#basket .items>div>b {
flex: 1;
font-weight: 600;
font-size: 1rem;
color: var(--text);
}
#basket .items>div>span {
font-weight: 700;
min-width: 5.5rem;
text-align: right;
color: var(--accent2);
font-size: 1.1rem;
}
#basket .del {
position: relative;
top: auto;
left: auto;
transform: none;
margin-right: 0.4rem;
z-index: 1;
width: 22px;
height: 22px;
cursor: pointer;
padding: 3px;
border-radius: 50%;
filter: brightness(0) sepia(1) saturate(10) hue-rotate(320deg) brightness(0.6);
}
#basket .del:active {
background: var(--accent2);
}
#basket .items>div .qty-ctrl {
padding: 0.25rem 0.5rem;
gap: 0.3rem;
}
#basket .items>div .qty-ctrl img {
width: 20px;
height: 20px;
}
#basket .totals {
padding: 1rem 0;
}
#basket .totals>div {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.3rem 0;
font-size: 0.95rem;
color: var(--text);
}
#basket .totals b {
font-weight: 600;
}
#basket .totals>small {
display: block;
font-size: 0.8rem;
font-weight: 600;
color: var(--accent2);
text-align: center;
background: rgba(139, 94, 60, .1);
padding: 0.45rem 0.75rem;
margin: 0.5rem 0;
border-radius: var(--r-sm);
border: 1px solid var(--border);
}
#basket .totals .total {
font-weight: 700;
font-size: 1.2rem;
border-top: 2px solid var(--border);
margin-top: 0.75rem;
padding-top: 0.75rem;
color: var(--accent2);
}
#basket .wa {
display: block;
max-width: 340px;
margin: 1.25rem auto;
padding: 0.9rem 2rem;
background: #25D366;
color: var(--white);
border: none;
border-radius: var(--r-md);
font-size: 1rem;
font-weight: 700;
cursor: pointer;
text-align: center;
transition: background 0.2s, transform 0.15s;
letter-spacing: 0.02em;
}
#basket .wa:active {
transform: scale(0.98);
}
#basket .wrap>div>h6 {
font-size: 0.82rem;
font-weight: normal;
color: var(--muted);
text-align: center;
padding: 0.75rem 0;
line-height: 1.6;
}
@media (max-width: 600px) {
#basket h5 {
font-size: 0.85rem;
}
#basket .items>div {
gap: 0.5rem;
}
#basket .items>div>img:nth-child(2) {
width: 48px;
height: 48px;
}
#basket .items>div>b {
flex: 1;
font-size: 0.85rem;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
#basket .items>div .qty-ctrl {
flex-shrink: 0;
padding: 0.25rem 0.4rem;
gap: 0.25rem;
}
#basket .items>div .qty-ctrl img {
width: 20px;
height: 20px;
}
#basket .items>div>span {
min-width: 4.5rem;
text-align: right;
flex-shrink: 0;
font-size: 0.9rem;
}
#basket .del {
width: 20px;
height: 20px;
}
#basket-badge {
width: 62px;
height: 62px;
right: 8px;
bottom: 1rem;
}
#basket-badge img {
width: 30px;
height: 30px;
}
}