/* ===================================
   Společné CSS pro sekci "Vše o nákupu"
   =================================== */

:root {
	--primary-color: #9c784a;
	--bg-light: #E1DEDA;
	--bg-hover: #CFCBC5;
	--text-dark: #443f3f;
	--text-muted: #6c6464;
	--border-color: #d0d0d0;
	--border-radius: 12px;
	--shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
	--success-color: #4CAF50;
	--warning-color: #ff9800;
	--info-color: #2196F3;
}

/* ===================================
   HEADER - Společný pro všechny stránky
   =================================== */

.page-header,
.gdpr-header,
.claim-header,
.return-header,
.size-header,
.terms-header,
.payment-header,
.shipping-header {
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 30px;
	background: linear-gradient(135deg, #E1DEDA 0%, #d4d0cc 100%);
	border-radius: 16px;
	border: 2px solid rgba(156, 120, 74, 0.1);
}

/* Ikony v headeru */
.header-icon {
	width: 80px;
	height: 80px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
}

.header-icon i {
	font-size: 40px;
	color: var(--primary-color);
}

.header-text {
	flex: 1;
}

.page-header h1,
.gdpr-header h1,
.claim-header h1,
.return-header h1,
.size-header h1,
.terms-header h1,
.payment-header h1,
.shipping-header h1 {
	font-size: clamp(24px, 5vw, 32px);
	margin: 0 0 8px 0;
	color: var(--text-dark);
}

.page-header .subtitle,
.gdpr-header .subtitle,
.claim-header .subtitle,
.return-header .subtitle,
.size-header .subtitle,
.terms-header .subtitle,
.payment-header .subtitle,
.shipping-header .subtitle {
	font-size: 16px;
	color: var(--text-muted);
	margin: 0;
	line-height: 1.5;
}

/* ===================================
   INFO BOXY
   =================================== */

.info-box {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 24px;
	border-radius: 12px;
	background: #e3f2fd;
	border-left: 4px solid var(--info-color);
	margin-bottom: 40px;
}

.info-box i {
	font-size: 24px;
	color: var(--info-color);
	flex-shrink: 0;
	margin-top: 2px;
}

.info-box p {
	margin: 0;
	line-height: 1.6;
	color: var(--text-dark);
}

.warning-box {
	display: flex;
	gap: 16px;
	padding: 16px 20px;
	background: rgba(255, 152, 0, 0.1);
	border-left: 4px solid var(--warning-color);
	border-radius: 12px;
	margin: 16px 0;
}

.warning-box i {
	font-size: 24px;
	color: var(--warning-color);
	flex-shrink: 0;
	margin-top: 2px;
}

.warning-box p {
	margin: 0;
}

/* ===================================
   SEKCE A NADPISY
   =================================== */

section h2,
.gdpr-section h2,
.claim-process h2,
.return-process h2,
.size-section h2,
.terms-section h2 {
	font-size: 24px;
	margin: 0 0 24px 0;
	color: var(--text-dark);
	display: flex;
	align-items: center;
	gap: 12px;
}

.section-icon {
	width: 44px;
	height: 44px;
	background: var(--bg-light);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.section-icon i {
	font-size: 20px;
	color: var(--primary-color);
}

.section-number {
	color: var(--primary-color);
	font-weight: 700;
}

/* ===================================
   GRID PRO "VŠE O NÁKUPU"
   =================================== */

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.info-card {
	background: var(--bg-light);
	border-radius: 12px;
	padding: 30px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	text-decoration: none;
	color: var(--text-dark);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	min-height: 180px;
	border: 0;
}

.info-card:hover {
	background: var(--bg-hover);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	text-decoration: none;
	border: 0;
}

.info-card .icon-wrapper {
	width: 80px;
	height: 80px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
}

.info-card .icon-wrapper i {
	font-size: 36px;
	color: var(--primary-color);
}

.info-card .title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--text-dark);
}

/* ===================================
   KONTAKTY
   =================================== */

.contacts-section {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-bottom: 50px;
}

.addresses-section {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.contact-card,
.address-card {
	background: var(--bg-light);
	border-radius: var(--border-radius);
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 20px;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	min-height: 220px;
}

.contact-card:hover,
.address-card:hover {
	background: var(--bg-hover);
	box-shadow: var(--shadow-hover);
}

/* Ikony v contact-card a address-card - větší velikost a vyšší specificita */
.contact-card .icon-wrapper,
.address-card .icon-wrapper {
	width: 90px !important;
	height: 90px !important;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
}

.contact-card .icon-wrapper i,
.address-card .icon-wrapper i {
	font-size: 44px !important;
	color: var(--primary-color);
}

.address-card.featured {
	grid-column: 1 / -1;
}

@media (min-width: 768px) {
	.address-card.featured {
		grid-column: span 2;
	}
}

@media (min-width: 1024px) {
	.addresses-section {
		grid-template-columns: 2fr 1fr 1fr;
	}
	
	.address-card.featured {
		grid-column: 1;
		grid-row: 1 / 3;
	}
}

.contact-card .content,
.address-card .content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.contact-card h3,
.address-card h3 {
	font-size: 18px;
	margin: 0 0 12px 0;
	color: var(--text-dark);
	font-weight: 600;
	text-align: center;
	width: 100%;
}

.contact-link {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: border-color 0.3s ease;
	display: inline-block;
}

.contact-link:hover {
	border-bottom-color: var(--primary-color);
}

.contact-card .main-info,
.address-card .main-info {
	font-size: 16px;
	line-height: 1.6;
	margin: 8px auto !important;
	color: var(--text-dark);
	font-weight: 600;
	text-align: center !important;
	width: 100%;
	display: block;
}

.contact-card .secondary-info,
.address-card .secondary-info {
	font-size: 14px;
	line-height: 1.5;
	margin: 8px auto !important;
	color: var(--text-muted);
	text-align: center !important;
	width: 100%;
	display: block;
}

.gps-info {
	font-size: 14px;
	margin: 12px 0;
}

.gps-info a {
	color: var(--primary-color);
	text-decoration: none;
	border-bottom: 1px dotted var(--primary-color);
}

.gps-info a:hover {
	border-bottom-style: solid;
}

.note {
	font-size: 13px;
	line-height: 1.5;
	margin-top: 16px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 8px;
	color: var(--text-muted);
	font-style: italic;
}

/* ===================================
   GDPR - TOC A OBSAH
   =================================== */

.toc-nav {
	background: var(--bg-light);
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 40px;
	position: static;
}

.toc-title {
	font-size: 20px;
	margin: 0 0 16px 0;
	color: var(--text-dark);
}

.toc-list {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: toc-counter;
}

.toc-list li {
	counter-increment: toc-counter;
	margin: 8px 0;
}

.toc-list li::before {
	content: counter(toc-counter) ".";
	display: inline-block;
	width: 28px;
	color: var(--primary-color);
	font-weight: 700;
}

.toc-list a {
	color: var(--text-dark);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.toc-list a:hover {
	color: var(--primary-color);
	border-bottom-color: var(--primary-color);
}

.gdpr-content {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-dark);
}

.gdpr-section {
	margin-bottom: 50px;
	scroll-margin-top: 60px;
}

.content-block {
	display: flex;
	gap: 16px;
	margin-bottom: 20px;
	align-items: flex-start;
}

.item-number {
	flex-shrink: 0;
	width: 50px;
	color: var(--text-muted);
	font-weight: 600;
}

.item-content {
	flex: 1;
}

.item-content ul {
	margin: 8px 0;
	padding-left: 20px;
}

.item-content li {
	margin: 6px 0;
}

.effective-date {
	background: var(--bg-light);
	border-radius: 12px;
	padding: 20px 24px;
	margin-top: 40px;
	font-style: italic;
	display: flex;
	align-items: center;
	gap: 12px;
}

.effective-date i {
	color: var(--primary-color);
	font-size: 20px;
}

/* ===================================
   KROKY (REKLAMACE, VRÁCENÍ)
   =================================== */

.claim-steps,
.return-steps {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: step-counter;
}

.claim-steps li,
.return-steps li {
	counter-increment: step-counter;
	position: relative;
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
	padding: 24px;
	background: var(--bg-light);
	border-radius: 12px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.claim-steps li:hover,
.return-steps li:hover {
	background: var(--bg-hover);
	border-color: rgba(156, 120, 74, 0.2);
}

.claim-steps li::before,
.return-steps li::before {
	content: counter(step-counter);
	position: absolute;
	top: -12px;
	left: 20px;
	width: 32px;
	height: 32px;
	background: var(--primary-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	box-shadow: 0 2px 8px rgba(156, 120, 74, 0.3);
}

.step-icon {
	width: 60px;
	height: 60px;
	background: white;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-icon i {
	font-size: 28px;
	color: var(--primary-color);
}

.step-content {
	flex: 1;
}

.step-content strong {
	display: block;
	font-size: 18px;
	margin-bottom: 8px;
	color: var(--text-dark);
}

.step-content p {
	margin: 8px 0;
	line-height: 1.6;
	color: var(--text-dark);
}

.warning-note {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 12px;
	padding: 12px;
	background: rgba(255, 152, 0, 0.1);
	border-left: 3px solid var(--warning-color);
	border-radius: 6px;
}

.warning-note i {
	color: var(--warning-color);
	font-size: 18px;
	flex-shrink: 0;
	margin-top: 2px;
}

.warning-note strong {
	display: inline;
	font-size: 14px;
	color: var(--text-dark);
}

/* ===================================
   KONTAKTNÍ MOŽNOSTI (v reklamaci/vrácení)
   =================================== */

.help-content p {
	margin: 0 0 20px 0;
	line-height: 1.6;
}

.contact-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.contact-options .contact-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	background: var(--bg-light);
	border-radius: 12px;
	text-decoration: none;
	color: var(--text-dark);
	transition: all 0.3s ease;
	border: 2px solid transparent;
	min-height: auto;
	text-align: left;
	flex-direction: row;
}

.contact-options .contact-card:hover {
	background: var(--bg-hover);
	border-color: rgba(156, 120, 74, 0.2);
	text-decoration: none;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: white;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-icon i {
	font-size: 22px;
	color: var(--primary-color);
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.contact-info strong {
	font-size: 16px;
	color: var(--text-dark);
}

.contact-info span {
	font-size: 14px;
	color: var(--text-muted);
}

/* ===================================
   VELIKOSTNÍ TABULKY
   =================================== */

.size-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.size-illustration {
	display: block;
	width: 100%;
	max-width: 230px;
	height: auto;
	margin: 0 auto;
}

.sizetable {
	margin-top: 10px;
}

.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.table-responsive table {
	min-width: 640px;
	background: #E1DEDA;
	border: 1px dotted var(--primary-color);
	width: 100%;
	border-collapse: separate;
}

.sizetable table td {
	width: 160px;
	text-align: center;
	border-top: 1px dotted var(--primary-color);
	border-right: 1px dotted var(--primary-color);
	padding: 12px 8px;
	white-space: nowrap;
}

.sizetable table tr.separator td {
	border-top: 2px solid var(--primary-color);
}

.sizetable table thead td {
	border-top: 0;
	font-weight: bold;
	color: var(--primary-color);
	background-color: #CDC9C2;
}

.sizetable table tr td:last-child {
	border-right: 0;
}

.sizetable table tr td:first-child {
	font-weight: bold;
}

.rounded {
	color: #fff;
	background-color: var(--primary-color);
	border-radius: 10px;
	padding: 0 5px;
	font-size: 0.9em;
}

.measure-guide {
	background: white;
	padding: 20px;
	border-radius: 12px;
	margin-top: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.measure-guide h4 {
	font-size: 18px;
	margin: 0 0 12px 0;
	color: var(--text-dark);
	display: flex;
	align-items: center;
	gap: 8px;
}

.measure-guide h4 i {
	color: var(--primary-color);
}

.size-guide {
	margin: 0;
	padding-left: 20px;
	font-size: 15px;
	line-height: 1.5;
}

.size-guide li {
	margin: 8px 0;
}

@media (min-width: 992px) {
	.size-content {
		flex-direction: row;
		align-items: flex-start;
	}

	.size-illustration {
		flex-shrink: 0;
		max-width: 190px;
		margin: 0;
	}

	.sizetable {
		flex: 1;
	}
}

/* ===================================
   OBCHODNÍ PODMÍNKY
   =================================== */

.quick-links {
	margin-bottom: 40px;
}

.quick-links h3 {
	font-size: 20px;
	margin: 0 0 16px 0;
	color: var(--text-dark);
	display: flex;
	align-items: center;
	gap: 8px;
}

.quick-links h3 i {
	color: var(--primary-color);
}

.quick-links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 12px;
}

.quick-link-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: var(--bg-light);
	border-radius: 12px;
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.quick-link-card:hover {
	background: var(--bg-hover);
	border-color: rgba(156, 120, 74, 0.2);
	text-decoration: none;
}

.quick-link-card i {
	font-size: 20px;
	color: var(--primary-color);
	flex-shrink: 0;
}

.terms-layout {
	display: grid;
	gap: 30px;
	margin-bottom: 40px;
}

@media (min-width: 992px) {
	.terms-layout {
		grid-template-columns: 1fr 320px;
	}
}

.terms-content {
	font-size: 16px;
	line-height: 1.7;
}

.terms-section {
	margin-bottom: 40px;
	scroll-margin-top: 60px;
}

.terms-section p {
	margin: 12px 0;
}

.terms-section ul {
	margin: 12px 0;
	padding-left: 24px;
}

.terms-section li {
	margin: 6px 0;
}

.info-card.info-row {
	background: var(--bg-light);
	border-radius: 12px;
	padding: 20px;
	margin: 16px 0;
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 16px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(156, 120, 74, 0.15);
	box-shadow: none;
	min-height: auto;
	align-items: start;
	text-align: left;
}

.info-row {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 16px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(156, 120, 74, 0.15);
}

.info-row:last-child {
	border-bottom: none;
}

.terms-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.sidebar-card {
	background: white;
	border: 2px solid var(--bg-light);
	border-radius: 12px;
	padding: 20px;
}

.sidebar-card h3 {
	font-size: 18px;
	margin: 0 0 12px 0;
	color: var(--text-dark);
	display: flex;
	align-items: center;
	gap: 8px;
}

.sidebar-card h3 i {
	color: var(--primary-color);
}

.sidebar-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
}

.download-card {
	background: #f0f9ff;
	border-color: #bae6fd;
}

.sidebar-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-card ul li {
	margin: 10px 0;
}

.sidebar-card ul a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.sidebar-card ul a:hover {
	color: var(--primary-color);
}

.sidebar-card ul a i {
	color: var(--primary-color);
	font-size: 18px;
}

/* ===================================
   PLATBY A DOPRAVA
   =================================== */

.payment-methods,
.shipping-methods {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
}

.payment-card,
.shipping-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px;
	background: var(--bg-light);
	border-radius: 12px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.payment-card:hover,
.shipping-card:hover {
	background: var(--bg-hover);
	border-color: rgba(156, 120, 74, 0.2);
}

.payment-logo,
.shipping-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
}

.payment-logo img,
.shipping-logo img {
	max-width: 120px;
	max-height: 60px;
	height: auto;
	width: auto;
}

.logo-placeholder {
	width: 80px;
	height: 80px;
	background: white;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.logo-placeholder i {
	font-size: 32px;
	color: var(--primary-color);
}

.payment-content,
.shipping-content {
	flex: 1;
}

.payment-content h3,
.shipping-content h3 {
	font-size: 20px;
	margin: 0 0 12px 0;
	color: var(--text-dark);
	font-weight: 700;
}

.payment-description,
.shipping-description {
	color: var(--text-dark);
	line-height: 1.6;
}

.payment-description p,
.shipping-description p {
	margin: 8px 0;
}

.payment-description ul,
.shipping-description ul {
	margin: 8px 0;
	padding-left: 20px;
}

.payment-description li,
.shipping-description li {
	margin: 4px 0;
}

.payment-price,
.shipping-price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.price-value {
	font-size: 26px;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1;
}

.price-note {
	font-size: 13px;
	color: var(--success-color);
	font-weight: 600;
}

@media (min-width: 768px) {
	.payment-card,
	.shipping-card {
		flex-direction: row;
		align-items: center;
		gap: 24px;
	}

	.payment-logo,
	.shipping-logo {
		flex: 0 0 140px;
		justify-content: flex-start;
	}

	.payment-content,
	.shipping-content {
		flex: 1;
	}

	.payment-price,
	.shipping-price {
		flex: 0 0 180px;
		align-items: flex-end;
		text-align: right;
	}
}

/* ===================================
   VÝBĚR ZEMĚ (doprava)
   =================================== */

.country-tabs {
	margin-bottom: 40px;
}

.country-tabs h3 {
	font-size: 20px;
	margin: 0 0 16px 0;
	color: var(--text-dark);
	display: flex;
	align-items: center;
	gap: 8px;
}

.country-tabs h3 i {
	color: var(--primary-color);
}

.tabs-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.country-tab {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: white;
	border: 2px solid var(--bg-light);
	border-radius: 12px;
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 600;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.country-tab:hover {
	background: var(--bg-light);
	border-color: rgba(156, 120, 74, 0.3);
	text-decoration: none;
}

.country-tab.active {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
}

.country-tab .flag {
	font-size: 24px;
	line-height: 1;
}

.country-tab .country-name {
	font-size: 15px;
}

/* ===================================
   RESPONSIVITA - MOBILNÍ ZAŘÍZENÍ
   =================================== */

@media (max-width: 640px) {
	.contact-card,
	.address-card {
		padding: 24px;
		min-height: auto;
	}
	
	.icon-wrapper,
	.contact-card .icon-wrapper,
	.address-card .icon-wrapper {
		width: 76px !important;
		height: 76px !important;
	}
	
	.icon-wrapper i,
	.contact-card .icon-wrapper i,
	.address-card .icon-wrapper i {
		font-size: 36px !important;
	}
	
	.contact-link {
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	/* Header */
	.page-header,
	.gdpr-header,
	.claim-header,
	.return-header,
	.size-header,
	.terms-header,
	.payment-header,
	.shipping-header {
		flex-direction: column;
		text-align: center;
		padding: 24px;
	}

	.header-icon {
		width: 64px;
		height: 64px;
	}

	.header-icon i {
		font-size: 32px;
	}

	/* Info grid */
	.info-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.info-card {
		padding: 20px 12px;
		min-height: 160px;
	}

	.info-card .icon-wrapper {
		width: 64px;
		height: 64px;
	}

	.info-card .icon-wrapper i {
		font-size: 28px;
	}

	.info-card .title {
		font-size: 14px;
	}

	/* Sekce nadpisy */
	.section-icon {
		width: 36px;
		height: 36px;
	}

	.section-icon i {
		font-size: 16px;
	}

	section h2,
	.gdpr-section h2,
	.size-section h2,
	.terms-section h2 {
		font-size: 20px;
	}

	/* GDPR obsah */
	.content-block {
		flex-direction: column;
		gap: 8px;
	}

	.item-number {
		width: auto;
	}

	/* Kroky */
	.claim-steps li,
	.return-steps li {
		flex-direction: column;
		padding: 20px;
		padding-top: 32px;
	}

	.step-icon {
		width: 50px;
		height: 50px;
		align-self: center;
	}

	.step-icon i {
		font-size: 24px;
	}

	.step-content {
		text-align: center;
	}

	/* Kontaktní možnosti */
	.contact-options {
		grid-template-columns: 1fr;
	}

	/* Velikostní tabulky */
	.size-illustration {
		max-width: 180px;
	}

	/* Obchodní podmínky */
	.quick-links-grid {
		grid-template-columns: 1fr;
	}

	.info-row {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	/* Platby a doprava */
	.payment-card,
	.shipping-card {
		padding: 20px;
	}

	.payment-logo,
	.shipping-logo {
		min-height: 50px;
	}

	.payment-logo img,
	.shipping-logo img {
		max-width: 100px;
		max-height: 50px;
	}

	.logo-placeholder {
		width: 60px;
		height: 60px;
	}

	.logo-placeholder i {
		font-size: 24px;
	}

	.payment-content h3,
	.shipping-content h3 {
		font-size: 18px;
	}

	.payment-price,
	.shipping-price {
		width: 100%;
		align-items: flex-start;
		text-align: left;
	}

	.price-value {
		font-size: 22px;
	}

	/* Země taby */
	.tabs-wrapper {
		flex-direction: column;
	}

	.country-tab {
		width: 100%;
		justify-content: center;
	}
}

@media (min-width: 768px) {
	.info-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}
}

@media (min-width: 1200px) {
	.gdpr-content,
	.terms-content {
		font-size: 17px;
	}
}

/* ===================================
   PŘÍSTUPNOST
   =================================== */

a:focus-visible,
.contact-link:focus-visible,
.gps-info a:focus-visible,
.info-card:focus-visible {
	outline: 3px solid var(--primary-color);
	outline-offset: 2px;
	border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
	*,
	.info-card,
	.contact-card,
	.address-card,
	.contact-link,
	.claim-steps li,
	.return-steps li,
	.payment-card,
	.shipping-card,
	.country-tab,
	.quick-link-card {
		transition: none !important;
	}
}

/* ===================================
   UTILITA
   =================================== */

.muted {
	color: var(--text-muted);
}