<!DOCTYPE html>
<html lang="cs">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Obchodní podmínky -
        MaterialyNaManikuru.cz    </title>
    :root {
--primary: #10b981;
--primary-dark: #059669;
--primary-light: #ecfdf5;
--secondary: #64748b;
--dark: #0f172a;
--light: #f8fafc;
--white: #ffffff;
--shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
--radius: 4px;
--radius-sm: 4px;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

body {
background-color: var(--light);
color: var(--dark);
line-height: 1.6;
overflow-x: hidden;
}

.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 1.5rem;
}

/* Header & Nav */
header {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
position: sticky;
top: 0;
z-index: 2000;
border-bottom: 1px solid rgba(226, 232, 240, 0.8);
padding: 0.75rem 0;
}

.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 1.5rem;
font-weight: 900;
text-decoration: none;
color: var(--dark);
letter-spacing: -1.2px;
}

.logo span { color: var(--primary); }

.nav-links {
display: flex;
gap: 2rem;
list-style: none;
align-items: center;
}

.nav-links a {
text-decoration: none;
color: var(--secondary);
font-weight: 700;
font-size: 0.95rem;
transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.nav-actions {
display: flex;
gap: 1.25rem;
align-items: center;
}

.nav-icon {
position: relative;
text-decoration: none;
color: var(--dark);
font-size: 1.2rem;
transition: transform 0.2s;
display: flex;
align-items: center;
}

.badge {
position: absolute;
top: -8px;
right: -10px;
background: var(--primary);
color: white;
font-size: 0.7rem;
font-weight: 800;
padding: 2px 6px;
border-radius: 10px;
line-height: 1;
}

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 1.6rem;
cursor: pointer;
color: var(--dark);
padding: 5px;
}

/* Hero Section */
.hero {
padding: 5rem 0;
background: radial-gradient(circle at top right, var(--primary-light), transparent);
text-align: center;
}

.hero h1 {
font-size: 3.5rem;
font-weight: 900;
line-height: 1.1;
margin-bottom: 1.5rem;
letter-spacing: -2px;
}

/* Product Cards */
.products-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
margin: 3rem 0;
}

.product-card {
background: var(--white);
border-radius: var(--radius);
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(226, 232, 240, 0.8);
position: relative;
padding: 0;
}

.product-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow);
}

.product-image {
display: block;
width: 100%;
aspect-ratio: 1 / 1;
overflow: hidden;
background: #f1f5f9;
}

.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
transform: scale(1.1);
}

.product-info {
padding: 1.25rem;
}

.product-category {
font-size: 0.75rem;
text-transform: uppercase;
font-weight: 800;
color: var(--secondary);
margin-bottom: 0.5rem;
letter-spacing: 1px;
}

.product-name {
font-size: 1rem;
font-weight: 700;
margin-bottom: 0.5rem;
color: var(--dark);
display: block;
text-decoration: none;
height: 2.8em;
overflow: hidden;
}

.product-bottom {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 1rem;
gap: 0.5rem;
}

.price {
font-size: 1.1rem;
font-weight: 800;
color: var(--dark);
}

/* Buttons */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.75rem 1.5rem;
border-radius: var(--radius-sm);
font-weight: 700;
text-decoration: none;
transition: all 0.3s;
cursor: pointer;
border: none;
gap: 0.5rem;
}

.btn-primary {
background: var(--primary);
color: white;
box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4);
}

.btn-sm {
padding: 0.5rem 1rem;
font-size: 0.85rem;
border-radius: var(--radius-sm);
}

.btn-outline {
border: 2px solid var(--primary);
color: var(--primary);
background: transparent;
}

.btn-outline:hover {
background: var(--primary-light);
}

.wishlist-btn {
position: absolute;
top: 1rem;
right: 1rem;
width: 40px;
height: 40px;
background: rgba(255,255,255,0.9);
backdrop-filter: blur(4px);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
border: none;
cursor: pointer;
box-shadow: var(--shadow-sm);
transition: all 0.2s;
z-index: 10;
}

.wishlist-btn:hover {
background: white;
color: #ef4444;
}

/* Footer Section */
footer {
background: var(--dark);
color: white;
padding: 5rem 0 2rem;
margin-top: 5rem;
}

.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 3rem;
margin-bottom: 4rem;
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 2rem;
text-align: center;
font-size: 0.85rem;
color: var(--secondary);
}

/* Contact Layout Component */
.contact-layout {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 3rem;
align-items: start;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
.products-grid {
grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width: 992px) {
.nav-links {
position: fixed;
top: 60px;
left: -100%;
width: 100%;
height: auto;
background: white;
flex-direction: column;
padding: 2.5rem 1.5rem;
gap: 1.5rem;
transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 1500;
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
border-bottom: 1px solid #e2e8f0;
}

.nav-links.active {
left: 0;
}

.menu-toggle {
display: block;
}
}

@media (max-width: 768px) {
.hero h1 { font-size: 2.2rem; }
.hero { padding: 3rem 0; }

.products-grid {
grid-template-columns: repeat(2, 1fr);
gap: 0.5rem;
margin: 1rem 0;
}

.product-card {
padding: 0;
border-radius: 8px;
}

.product-info {
padding: 0.5rem;
}

.product-name {
font-size: 0.8rem;
margin-bottom: 0.2rem;
height: 2.4em;
overflow: hidden;
}

.price {
font-size: 0.9rem;
}

.product-bottom {
flex-direction: column;
align-items: flex-start;
gap: 0.4rem;
}



.product-bottom .btn {
width: 100%;
padding: 0.3rem;
font-size: 0.65rem;
border-radius: 4px;
}

.wishlist-btn {
width: 26px !important;
height: 26px !important;
font-size: 0.7rem !important;
}

.contact-layout {
grid-template-columns: 1fr;
}

.footer-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
}

@media (max-width: 480px) {
.logo { font-size: 1.25rem; }
.hero h1 { font-size: 1.8rem; }
.footer-grid { grid-template-columns: 1fr; }
}    <link rel="stylesheet" href="assets/css/cookie-consent.css">
</head>

<body>
    
<!-- Primary Meta Tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>
    MaterialyNaManikuru.cz - Profesionální materiály na manikúru</title>
<meta name="title" content="MaterialyNaManikuru.cz - Profesionální materiály na manikúru">
<meta name="description" content="Kvalitní gel laky, báze, tvrdé materiály a finišní pokrytí pro profesionální manikúru. Doprava zdarma nad 2500 Kč!">
<meta name="keywords" content="gel laky, manikúra, nail art, báze, polygely, finišní pokrytí, kočičí oko, třpytky">
<meta name="author" content="MaterialyNaManikuru.cz">
<meta name="robots" content="index, follow">
<meta name="language" content="Czech">
<meta name="revisit-after" content="7 days">

<!-- Canonical URL -->
<link rel="canonical" href="https://materialynamanikuru.cz/terms-conditions.php">

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://materialynamanikuru.cz/terms-conditions.php">
<meta property="og:title" content="MaterialyNaManikuru.cz - Profesionální materiály na manikúru">
<meta property="og:description" content="Kvalitní gel laky, báze, tvrdé materiály a finišní pokrytí pro profesionální manikúru. Doprava zdarma nad 2500 Kč!">
<meta property="og:image" content="https://materialynamanikuru.cz/assets/images/og-image.jpg">
<meta property="og:site_name" content="MaterialyNaManikuru.cz">
<meta property="og:locale" content="cs_CZ">

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://materialynamanikuru.cz/terms-conditions.php">
<meta property="twitter:title" content="MaterialyNaManikuru.cz - Profesionální materiály na manikúru">
<meta property="twitter:description" content="Kvalitní gel laky, báze, tvrdé materiály a finišní pokrytí pro profesionální manikúru. Doprava zdarma nad 2500 Kč!">
<meta property="twitter:image" content="https://materialynamanikuru.cz/assets/images/og-image.jpg">

<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">

<!-- Theme Color -->
<meta name="theme-color" content="#10b981">
<meta name="msapplication-TileColor" content="#10b981">

<!-- Structured Data (JSON-LD) for Google -->
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Store",
  "name": "MaterialyNaManikuru.cz",
  "description": "Kvalitní gel laky, báze, tvrdé materiály a finišní pokrytí pro profesionální manikúru. Doprava zdarma nad 2500 Kč!",
  "url": "https://materialynamanikuru.cz/terms-conditions.php",
  "telephone": "+420777736509",
  "email": "materialynamanikuru.cz@gmail.com",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "Na Vítězné pláni 1183/6",
    "addressLocality": "Praha 4 - Nusle",
    "addressCountry": "CZ"
  },
  "priceRange": "$$",
  "image": "https://materialynamanikuru.cz/assets/images/og-image.jpg"
}
</script>

<!-- Analytics Tracker -->
<!DOCTYPE html>
<html lang="cs">

<head>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap"
        rel="stylesheet">
    <link rel="stylesheet" href="assets/css/style.php">
    <style>
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background: white;
            min-width: 220px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            padding: 0.75rem 0;
            z-index: 1001;
            top: 100%;
            left: 0;
            border: 1px solid #f1f5f9;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-item {
            padding: 0.6rem 1.5rem;
            display: block;
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.2s;
        }

        .dropdown-item:hover {
            background: var(--primary-light);
            color: var(--primary);
        }

        .subcategory-list {
            padding-left: 1rem;
            margin-top: 0.25rem;
            display: none;
        }

        .dropdown-item:hover+.subcategory-list,
        .subcategory-list:hover {
            display: block;
        }
    </style>
</head>

<body>
    <header>
        <div class="container nav-container">
            <a href="index.php" class="logo">Materialy Na Manikuru<span>.cz</span></a>

            <ul class="nav-links" id="navLinks">
                <li><a href="index.php"
                        class="">Domů</a>
                </li>
                <li class="dropdown">
                    <a href="products.php"
                        class="">Produkty
                        ▼</a>
                    <div class="dropdown-content">
                        <a href="products.php" class="dropdown-item">Všechny produkty</a>
                                                    <a href="products.php?category=11"
                                class="dropdown-item">Báze</a>
                                                            <div style="padding: 0 1.5rem 0.5rem 2rem;">
                                                                            <a href="products.php?category=11&subcategory=14"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Barevné báze</a>
                                                                            <a href="products.php?category=11&subcategory=16"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Báze s třpytkami</a>
                                                                            <a href="products.php?category=11&subcategory=15"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Kamuflážní báze</a>
                                                                            <a href="products.php?category=11&subcategory=13"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Neonové báze</a>
                                                                            <a href="products.php?category=11&subcategory=12"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Průhledné báze</a>
                                                                    </div>
                                                                                <a href="products.php?category=2"
                                class="dropdown-item">Dekorativní kosmetika</a>
                                                                                <a href="products.php?category=10"
                                class="dropdown-item">FINIŠNÍ POKRYTÍ</a>
                                                            <div style="padding: 0 1.5rem 0.5rem 2rem;">
                                                                            <a href="products.php?category=10&subcategory=22"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Barevné závěrečné nátěry</a>
                                                                            <a href="products.php?category=10&subcategory=23"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Průhledné závěrečné nátěry</a>
                                                                            <a href="products.php?category=10&subcategory=24"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Závěrečné nátěry s třpytkami</a>
                                                                    </div>
                                                                                <a href="products.php?category=8"
                                class="dropdown-item">Formy a tipy pro prodlužování nehtů</a>
                                                                                <a href="products.php?category=9"
                                class="dropdown-item">Frézky / frézovací nástavce</a>
                                                                                <a href="products.php?category=1"
                                class="dropdown-item">Gel laky</a>
                                                            <div style="padding: 0 1.5rem 0.5rem 2rem;">
                                                                            <a href="products.php?category=1&subcategory=26"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Gel laky s třpytkami</a>
                                                                            <a href="products.php?category=1&subcategory=27"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Jednobarevné gel laky</a>
                                                                            <a href="products.php?category=1&subcategory=25"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Kočičí oko a magnetické pero</a>
                                                                            <a href="products.php?category=1&subcategory=30"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Neon gel polish</a>
                                                                    </div>
                                                                                <a href="products.php?category=7"
                                class="dropdown-item">Jednorázové produkty</a>
                                                                                <a href="products.php?category=6"
                                class="dropdown-item">Nástroje</a>
                                                                                <a href="products.php?category=5"
                                class="dropdown-item">Tekutiny</a>
                                                                                <a href="products.php?category=17"
                                class="dropdown-item">Tvrdé materiály</a>
                                                            <div style="padding: 0 1.5rem 0.5rem 2rem;">
                                                                            <a href="products.php?category=17&subcategory=29"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Builder Gel Colored</a>
                                                                            <a href="products.php?category=17&subcategory=20"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Builder gely</a>
                                                                            <a href="products.php?category=17&subcategory=28"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Builder Liquid</a>
                                                                            <a href="products.php?category=17&subcategory=21"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Gely s třpytkami a sušenými květy</a>
                                                                            <a href="products.php?category=17&subcategory=18"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Krémové gely</a>
                                                                            <a href="products.php?category=17&subcategory=19"
                                            style="display:block; font-size: 0.8rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.25rem;">Polygely</a>
                                                                    </div>
                                                                        </div>
                </li>
                <li><a href="about.php"
                        class="">O nás</a>
                </li>
                <li><a href="contact.php"
                        class="">Kontakt</a>
                </li>
            </ul>

            <div class="nav-actions">
                <button class="menu-toggle" onclick="toggleMenu()" style="margin-right: 0.5rem;">☰</button>
                <a href="wishlist.php" class="nav-icon" title="Wishlist">
                    ❤                 </a>
                <a href="cart.php" class="nav-icon" title="Košík">
                    🛒                 </a>
            </div>
        </div>
    </header>

    <script>
        function toggleMenu() {
            document.getElementById('navLinks').classList.toggle('active');
        }
    </script>
    <main class="container" style="margin-top: 3rem; margin-bottom: 4rem;">
        <h1 class="section-title">Obchodní podmínky</h1>

        <div
            style="max-width: 900px; margin: 0 auto; background: white; padding: 3rem; border-radius: 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.08);">

            <section style="margin-bottom: 3rem;">
                <h2 style="font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 1rem;">1. Základní
                    ustanovení</h2>
                <p style="color: var(--text-light); line-height: 1.8;">
                    Tyto obchodní podmínky upravují vztahy mezi prodávajícím <strong>
                        MaterialyNaManikuru.cz                    </strong>
                    a kupujícím při nákupu zboží prostřednictvím internetového obchodu.
                </p>
            </section>

            <section style="margin-bottom: 3rem;">
                <h2 style="font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 1rem;">2. Objednávka
                    a uzavření smlouvy</h2>
                <ul style="color: var(--text-light); line-height: 2; margin-left: 2rem;">
                    <li>Objednávka je návrhem kupní smlouvy</li>
                    <li>Smlouva vzniká potvrzením objednávky prodávajícím</li>
                    <li>Kupující obdrží potvrzení na email</li>
                    <li>Prodávající si vyhrazuje právo odmítnout objednávku</li>
                </ul>
            </section>

            <section style="margin-bottom: 3rem;">
                <h2 style="font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 1rem;">3. Ceny a
                    platební podmínky</h2>
                <ul style="color: var(--text-light); line-height: 2; margin-left: 2rem;">
                    <li>Ceny jsou uvedeny včetně DPH</li>
                    <li>Platba je možná bankovním převodem nebo dobírkou</li>
                    <li>K ceně zboží se připočítává poštovné</li>
                    <li>Fakturu obdržíte emailem po odeslání zboží</li>
                </ul>
            </section>

            <section style="margin-bottom: 3rem;">
                <h2 style="font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 1rem;">4. Dodací
                    podmínky</h2>
                <ul style="color: var(--text-light); line-height: 2; margin-left: 2rem;">
                    <li>Standardní dodací lhůta: 3-5 pracovních dnů</li>
                    <li>Zboží zasíláme přes Českou poštu nebo PPL</li>
                    <li>Poštovné: 99 Kč, zdarma nad 1000 Kč</li>
                    <li>O odeslání budete informováni emailem</li>
                </ul>
            </section>

            <section style="margin-bottom: 3rem;">
                <h2 style="font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 1rem;">5. Odstoupení
                    od smlouvy</h2>
                <p style="color: var(--text-light); line-height: 1.8; margin-bottom: 1rem;">
                    Kupující má právo odstoupit od smlouvy do <strong>14 dnů</strong> od převzetí zboží bez udání
                    důvodu.
                </p>
                <ul style="color: var(--text-light); line-height: 2; margin-left: 2rem;">
                    <li>Zboží musí být nepoužité a v originálním obalu</li>
                    <li>Odstoupení oznamte emailem nebo písemně</li>
                    <li>Zboží zašlete zpět na naši adresu</li>
                    <li>Peníze vrátíme do 14 dnů od obdržení zboží</li>
                </ul>
            </section>

            <section style="margin-bottom: 3rem;">
                <h2 style="font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 1rem;">6. Reklamace
                </h2>
                <p style="color: var(--text-light); line-height: 1.8; margin-bottom: 1rem;">
                    Reklamaci můžete uplatnit v záruční době 24 měsíců. Více informací v <a href="returns-policy.php"
                        style="color: var(--primary); font-weight: 600;">reklamačním řádu</a>.
                </p>
            </section>

            <section style="margin-bottom: 3rem;">
                <h2 style="font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 1rem;">7. Ochrana
                    osobních údajů</h2>
                <p style="color: var(--text-light); line-height: 1.8;">
                    Vaše osobní údaje zpracováváme v souladu s GDPR. Více v <a href="privacy-policy.php"
                        style="color: var(--primary); font-weight: 600;">zásadách ochrany osobních údajů</a>.
                </p>
            </section>

            <section>
                <h2 style="font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 1rem;">8. Závěrečná
                    ustanovení</h2>
                <p style="color: var(--text-light); line-height: 1.8;">
                    Tyto obchodní podmínky jsou platné od
                    08.03.2026.
                    Prodávající si vyhrazuje právo je změnit.
                </p>
            </section>

            <p style="color: var(--text-light); margin-top: 3rem; padding-top: 2rem; border-top: 2px solid #e2e8f0;">
                <strong>Kontakt:</strong> info@example.cz | +420 XXX XXX XXX
            </p>
        </div>
    </main>

    <footer>
    <div class="container">
        <div class="footer-grid">
            <div>
                <h3 style="margin-bottom: 1.5rem; font-weight: 800; font-size: 1.5rem;">Materialy Na
                    Manikuru<span>.cz</span></h3>
                <p style="color: var(--secondary); font-size: 0.9rem;">Váš prémiový partner pro krásné a zdravé nehty.
                    Kvalitní produkty pro profesionály i domácí použití.</p>
                <p style="color: var(--secondary); font-size: 0.8rem; margin-top: 1rem;">📍
                    Na Vítězné pláni 1183/6, Praha 4 - Nusle                </p>
            </div>
            <div>
                <h4 style="margin-bottom: 1.25rem;">Rychlé odkazy</h4>
                <ul style="list-style: none; display: flex; flex-direction: column; gap: 0.75rem;">
                    <li><a href="terms-conditions.php"
                            style="color: var(--secondary); text-decoration: none; font-size: 0.9rem;">Obchodní
                            podmínky</a></li>
                    <li><a href="privacy-policy.php"
                            style="color: var(--secondary); text-decoration: none; font-size: 0.9rem;">Ochrana
                            soukromí</a></li>
                    <li><a href="returns-policy.php"
                            style="color: var(--secondary); text-decoration: none; font-size: 0.9rem;">Reklamace a
                            vrácení</a></li>
                </ul>
            </div>
            <div>
                <h4 style="margin-bottom: 1.25rem;">Kontakt</h4>
                <p style="color: var(--secondary); font-size: 0.9rem; margin-bottom: 0.5rem;">📧 <a
                        href="mailto:materialynamanikuru.cz@gmail.com"
                        style="color: inherit; text-decoration: none;">materialynamanikuru.cz@gmail.com</a></p>
                <p style="color: var(--secondary); font-size: 0.9rem; margin-bottom: 0.5rem;">📞 <a
                        href="tel:+420777736509"
                        style="color: inherit; text-decoration: none;">+420777736509</a></p>
                <p style="color: var(--secondary); font-size: 0.9rem;">📸 <a
                        href="https://www.instagram.com/kvalitni_produkty_pro_manikuru?igsh=MTd6b2ZvdHJmbjB3Yg=="
                        target="_blank"
                        style="color: var(--primary); font-weight: 700; text-decoration: none;">Instagram</a></p>
            </div>
        </div>

        <div class="footer-bottom">
            <p>&copy; 2026 MaterialyNaManikuru.cz. Vytvořeno od <a href="https://recuvapumdev.eu"
                    target="_blank" style="color: var(--primary); font-weight: 700;">Simon Eder</a></p>
        </div>
    </div>
</footer>

<!-- Modal for Quick View -->
<div id="quickViewModal"
    style="display:none; position:fixed; inset:0; background:rgba(0,0,0,0.8); backdrop-filter:blur(8px); z-index:2000; align-items:center; justify-content:center; padding: 1rem;">
    <div class="qv-modal-card"
        style="background:white; border-radius:24px; max-width:900px; width:100%; max-height:90vh; overflow-y:auto; position:relative; display:grid; grid-template-columns: 1fr 1fr; gap:2rem; padding:2.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);">
        <button onclick="closeQuickView()"
            style="position:absolute; top:1.5rem; right:1.5rem; border:none; background:#f1f5f9; width:40px; height:40px; border-radius:50%; font-size:1.2rem; cursor:pointer; display:flex; align-items:center; justify-content:center; z-index:10;">✕</button>
        <div id="qvImageContainer"
            style="position:relative; background:#f8fafc; border-radius:16px; overflow:hidden; display:flex; align-items:center; justify-content:center; cursor: zoom-in;"
            onclick="openFullImage()">
            <img id="qvImage" src=""
                style="width:100%; height:100%; object-fit:contain; transition: transform 0.3s ease;">
            <div
                style="position:absolute; bottom:1rem; right:1rem; background:rgba(255,255,255,0.8); padding:5px 10px; border-radius:20px; font-size:0.75rem; font-weight:700; color:var(--dark); pointer-events:none;">
                🔍 Klikněte pro zvětšení</div>
        </div>
        <div style="display:flex; flex-direction:column; justify-content:center;">
            <div id="qvCategory" class="product-category" style="margin-bottom:0.5rem; opacity:0.7;"></div>
            <h2 id="qvName"
                style="font-size:2.2rem; font-weight:900; margin-bottom:1rem; letter-spacing:-1.5px; line-height:1.1; color:var(--dark);">
            </h2>
            <div id="qvPrice" class="price"
                style="font-size:1.8rem; margin-bottom:1.5rem; color:var(--primary); font-weight:800;"></div>
            <p id="qvDescription"
                style="color:var(--secondary); margin-bottom:2rem; line-height:1.6; font-size:0.95rem; white-space: pre-wrap;">
            </p>
            <div style="display:flex; gap:1rem; margin-top:auto;">
                <button id="qvAddToCart" class="btn btn-primary"
                    style="flex:1; height:55px; font-size:1.05rem; border-radius:12px;">Přidat do košíku</button>
            </div>
        </div>
    </div>
</div>

<!-- Modal for Fullscreen Image Zoom -->
<div id="imageZoomModal"
    style="display:none; position:fixed; inset:0; background:rgba(0,0,0,0.9); backdrop-filter:blur(10px); z-index:3000; align-items:center; justify-content:center; padding: 2rem; cursor: zoom-out;"
    onclick="closeFullImage()">
    <button onclick="closeFullImage()"
        style="position:absolute; top:2rem; right:2rem; border:none; background:rgba(255,255,255,0.2); color:white; width:50px; height:50px; border-radius:50%; font-size:1.5rem; cursor:pointer; display:flex; align-items:center; justify-content:center; z-index:3010; transition:0.3s;">✕</button>
    <img id="zoomImage" src=""
        style="max-width:95%; max-height:95vh; object-fit:contain; border-radius:8px; box-shadow: 0 0 40px rgba(0,0,0,0.5); cursor: default;"
        onclick="event.stopPropagation()">
</div>

<style>
    @media (max-width: 768px) {
        .qv-modal-card {
            grid-template-columns: 1fr !important;
            padding: 1.5rem !important;
            gap: 1.5rem !important;
        }

        #qvImageContainer {
            height: 350px !important;
        }

        #qvName {
            font-size: 1.6rem !important;
        }

        #imageZoomModal {
            padding: 0.5rem;
        }
    }
</style>

<script>
    function openQuickView(id) {
        fetch('get-product-details.php?id=' + id)
            .then(r => r.json())
            .then(p => {
                const img = document.getElementById('qvImage');
                img.src = p.image || 'assets/img/placeholder.jpg';
                document.getElementById('qvName').innerText = p.name;
                document.getElementById('qvCategory').innerText = p.category_name || 'Produkt';
                document.getElementById('qvPrice').innerText = new Intl.NumberFormat('cs-CZ').format(p.price) + ' Kč';
                document.getElementById('qvDescription').innerText = p.description;
                document.getElementById('qvAddToCart').onclick = () => addToCart(p.id, p.name, p.price);
                document.getElementById('quickViewModal').style.display = 'flex';
                document.body.style.overflow = 'hidden';
            });
    }
    function closeQuickView() {
        document.getElementById('quickViewModal').style.display = 'none';
        document.body.style.overflow = 'auto';
    }
    function openFullImage() {
        const src = document.getElementById('qvImage').src;
        document.getElementById('zoomImage').src = src;
        document.getElementById('imageZoomModal').style.display = 'flex';
    }
    function closeFullImage() {
        document.getElementById('imageZoomModal').style.display = 'none';
    }
    function addToCart(id, name, price) {
        const formData = new FormData();
        formData.append('product_id', id);
        formData.append('product_name', name);
        formData.append('price', price);
        formData.append('action', 'add');

        fetch('cart-handler.php', {
            method: 'POST',
            body: formData
        })
            .then(r => r.json())
            .then(data => {
                if (data.success) {
                    location.reload();
                } else {
                    alert('Chyba při přidávání do košíku');
                }
            });
    }
</script>
</body>

</html>
    <button class="back-to-top" aria-label="Back to top">↑</button>
    <script src="script.js"></script>
    <script src="cookie-consent.js"></script>
</body>

</html>