/*
   ============================================================
   CSS PRO SKRYTÍ VÝCHOZÍ SHOPTET PATIČKY (Důraznější verze)
   ============================================================
*/

/* --- Skrytí výchozí Shoptet patičky --- */
/* Cílení na přímé potomky #footer, které NEJSOU placeholder */
body #footer > div:not(#custom-footer-placeholder),
body #footer > .container:not(#custom-footer-placeholder) { /* Cílení na placeholder */
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    line-height: 0 !important;
    font-size: 0 !important;
}

/* Cílení na specifické Shoptet třídy uvnitř #footer */
body #footer .container.footer-links-icons,
body #footer .container.footer-bottom,
body #footer .footer-bottom,
body #footer .p-footer
{
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    line-height: 0 !important;
    font-size: 0 !important;
}
/* --- Konec skrytí výchozí patičky --- */


/* --- CSS Proměnné (Kreativní & Pokročilé) --- */
:root {
    --cleanwave-primary-color: #00c0c0;
    --cleanwave-secondary-color: #008080;
    --cleanwave-accent-color-light: #e0f7fa;
    --cleanwave-accent-color-medium: #b2ebf2;
    --cleanwave-accent-color-dark: #80deea;
    --cleanwave-text-color: #1a2e3a;
    --cleanwave-light-text-color: #5a7284;
    --cleanwave-link-color: var(--cleanwave-primary-color);
    --cleanwave-link-hover-color: var(--cleanwave-secondary-color);
    --cleanwave-footer-bg: #ffffff;
    --cleanwave-page-bg: #f0f8fa;
    --cleanwave-border-color-light: #e2e8f0;
    --cleanwave-shadow-color: rgba(0, 128, 128, 0.18);
    --cleanwave-shadow-light: rgba(0, 128, 128, 0.09);
    --cleanwave-glow-color: rgba(0, 192, 192, 0.35);
    --cleanwave-font-family-base: 'Lato', sans-serif;
    --cleanwave-font-family-heading: 'Poppins', sans-serif;
    --cleanwave-font-size-base: 1.6rem;
    --cleanwave-font-size-small: 1.4rem;
    --cleanwave-font-size-heading: 2.1rem;
    --cleanwave-spacing-small: 12px;
    --cleanwave-spacing-medium: 25px;
    --cleanwave-spacing-large: 50px;
    --cleanwave-spacing-xlarge: 90px;
    --shoptet-logo-size: 19px;
    --shipping-logo-height: 36px;
    --transition-speed-fast: 0.25s;
    --transition-speed-normal: 0.4s;
    --transition-speed-slow: 0.6s;
    --transition-ease-out: cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
    /* --- Nastavení výšky vln a překrytí --- */
    --wave-container-height: 150px; /* Celková výška oblasti pro vlny */
    --footer-overlap-margin: -30px; /* Jak moc se patička posune nahoru (záporná hodnota) */
    --footer-top-padding-extra: 20px; /* Extra padding nad obsahem kvůli vlnám */
    --content-bottom-padding: 60px; /* Spodní padding obsahu stránky (pro clip-path) */
    /* ------------------------------------- */
}

/* Základní styly pro body */
body {
    font-family: var(--cleanwave-font-family-base);
    color: var(--cleanwave-text-color);
    font-size: var(--cleanwave-font-size-base);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip !important; /* Důležité - zabrání scrollbaru způsobenému 100vw */
    background-color: var(--cleanwave-page-bg);
    margin: 0;
    padding: 0;
}

/* Wrapper obsahu stránky */
.page-content-wrapper {
    overflow: hidden;
    position: relative;
    z-index: 5;
    padding: 60px 0; /* Vertikální padding pro odsazení obsahu */
}

/* Hlavní kontejner obsahu stránky */
.page-content {
     background-color: #ffffff;
     position: relative;
     z-index: 5;
     border-radius: 16px;
     box-shadow: 0 8px 30px rgba(0,0,0,0.06);
     clip-path: url(#content-wave-clip);
     margin-bottom: 0 !important;
     padding: 40px; /* Vnitřní padding obsahu */
     padding-bottom: var(--content-bottom-padding) !important; /* Použití proměnné */
     max-width: 1320px;
     margin-left: auto;
     margin-right: auto;
}

/* Placeholder */
#custom-footer-placeholder {
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Styly pro vlastní patičku uvnitř placeholderu */
#custom-footer-placeholder > footer#cleanwave-custom-footer {
    font-family: var(--cleanwave-font-family-base);
    color: var(--cleanwave-text-color);
    text-rendering: optimizeLegibility;
    background: var(--cleanwave-footer-bg);
    padding-top: calc(var(--cleanwave-spacing-xlarge) + var(--footer-top-padding-extra));
    padding-bottom: var(--cleanwave-spacing-medium);
    margin-top: var(--footer-overlap-margin); /* Použití proměnné pro překrytí */
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    z-index: 10;
    width: 100vw;
    max-width: 100vw; /* Důležité pro 100vw */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 -10px 40px var(--cleanwave-shadow-color);
}

/* --- EFEKT ANIMOVANÝCH VRSTVENÝCH VLN --- */
#custom-footer-placeholder .wave-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--wave-container-height); /* Použití proměnné */
    z-index: 2;
    pointer-events: none;
}

#custom-footer-placeholder .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat-x;
    background-position: 0 bottom;
    animation: wave-flow 20s linear infinite;
    opacity: 1;
}
#custom-footer-placeholder .wave.wave1 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M 0 30 C 250 70 750 -10 1000 30 L 1000 100 L 0 100 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: 2000px 100px;
    animation-duration: 28s;
    z-index: 13;
    height: 100px;
    bottom: auto;
    top: 50px; /* Upravte podle potřeby, pokud měníte výšku kontejneru */
}
#custom-footer-placeholder .wave.wave2 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M 0 40 C 200 80 800 0 1000 40 L 1000 100 L 0 100 Z' fill='%23e0f7fa'/%3E%3C/svg%3E");
    background-size: 2200px 110px;
    animation-duration: 35s;
    animation-direction: alternate;
    z-index: 12;
    height: 110px;
    bottom: auto;
    top: 40px; /* Upravte podle potřeby */
}
#custom-footer-placeholder .wave.wave3 {
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M 0 50 C 300 90 700 10 1000 50 L 1000 100 L 0 100 Z' fill='%23b2ebf2'/%3E%3C/svg%3E");
     background-size: 1800px 120px;
     animation-duration: 40s;
     z-index: 11;
     height: 120px;
     bottom: auto;
     top: 30px; /* Upravte podle potřeby */
}
@keyframes wave-flow {
    0% { background-position-x: 0; }
    100% { background-position-x: -2000px; }
}

/* Kontejner pro obsah pätičky */
#custom-footer-placeholder .container {
    max-width: 1320px !important;
    width: 100% !important;
    padding-left: 50px !important;
    padding-right: 50px !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    position: relative;
    z-index: 15;
    display: flex !important;
    flex-direction: column !important;
    gap: var(--cleanwave-spacing-large) !important;
}

/* Horní část s odkazy */
#custom-footer-placeholder .footer-top {
    display: flex !important;
    flex-wrap: wrap;
    gap: var(--cleanwave-spacing-large) 6%;
    padding-bottom: var(--cleanwave-spacing-medium);
    width: 100%;
    justify-content: space-between;
}

/* Sloupce */
#custom-footer-placeholder .footer-column {
    flex: 1 1 20%;
    min-width: 230px;
    padding: 0 var(--cleanwave-spacing-small);
    box-sizing: border-box;
    position: relative;
    transition: transform var(--transition-speed-slow) var(--transition-ease-in-out);
}
#custom-footer-placeholder .footer-column:hover {
    transform: translateY(-8px);
}

/* Nadpisy sloupců */
#custom-footer-placeholder .footer-column h4 {
    font-family: var(--cleanwave-font-family-heading);
    font-size: var(--cleanwave-font-size-heading);
    color: var(--cleanwave-secondary-color);
    margin-bottom: var(--cleanwave-spacing-large);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    letter-spacing: 0.5px;
}
#custom-footer-placeholder .footer-column h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 0px;
    height: 3px;
    background: linear-gradient(90deg, var(--cleanwave-primary-color) 0%, var(--cleanwave-accent-color-dark) 100%);
    border-radius: 3px;
    transition: max-width var(--transition-speed-slow) var(--transition-ease-out) 0.1s;
}
 #custom-footer-placeholder .footer-column h4::after {
    content: '';
    position: absolute;
    left: -10px;
    bottom: -1px;
    width: 8px;
    height: 8px;
    background-color: var(--cleanwave-primary-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all var(--transition-speed-normal) var(--transition-ease-out);
}
#custom-footer-placeholder .footer-column:hover h4::before {
    max-width: 85px;
}
 #custom-footer-placeholder .footer-column:hover h4::after {
    left: 0;
    opacity: 1;
    transform: scale(1);
}

/* Seznamy odkazů */
#custom-footer-placeholder .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
#custom-footer-placeholder .footer-column ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Odkazy v seznamu */
#custom-footer-placeholder .footer-column ul li a {
    color: var(--cleanwave-light-text-color);
    text-decoration: none;
    font-size: var(--cleanwave-font-size-small);
    position: relative;
    transition: color var(--transition-speed-fast) var(--transition-ease-out);
    display: inline-flex;
    align-items: center;
    padding: 3px 0;
    overflow: hidden;
}

/* Ikona kvapky (Font Awesome) */
#custom-footer-placeholder .footer-column ul li a .link-icon {
    font-family: 'Font Awesome 6 Free'; /* Použít Font Awesome */
    font-weight: 900; /* Solid styl */
    font-style: normal; /* Zrušit kurzívu u <i> */
    /* content: '\f043'; <- Obsah je definován v HTML tagu <i> */
    display: inline-block;
    font-size: 0.8em;
    color: var(--cleanwave-accent-color-dark);
    margin-right: 8px;
    opacity: 0.6;
    transform: translateY(1px);
    transition: all var(--transition-speed-normal) var(--transition-ease-out);
    flex-shrink: 0;
    width: 1.2em;
    text-align: center;
}
#custom-footer-placeholder .footer-column ul li a:hover .link-icon {
    color: var(--cleanwave-primary-color);
    opacity: 1;
    transform: translateY(0) scale(1.1) rotate(-15deg);
}

/* Pozadie odkazu pri najetí */
 #custom-footer-placeholder .footer-column ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--cleanwave-accent-color-light);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-speed-normal) var(--transition-ease-out);
    z-index: -1;
    border-radius: 3px;
 }
#custom-footer-placeholder .footer-column ul li a:hover {
    color: var(--cleanwave-secondary-color);
}
 #custom-footer-placeholder .footer-column ul li a:hover::after {
     transform: scaleX(1);
 }

/* Kontakt */
#custom-footer-placeholder .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: var(--cleanwave-font-size-small);
    margin-bottom: 18px;
    color: var(--cleanwave-light-text-color);
    position: relative;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background-color var(--transition-speed-normal) var(--transition-ease-out);
}
#custom-footer-placeholder .footer-contact-item:hover {
    background-color: var(--cleanwave-accent-color-light);
}
#custom-footer-placeholder .footer-contact-item i {
    color: var(--cleanwave-primary-color);
    font-size: 1.6em;
    width: 1.8em;
    text-align: center;
    flex-shrink: 0;
    transition: transform var(--transition-speed-normal) var(--transition-ease-out);
}
#custom-footer-placeholder .footer-contact-item:hover i {
    transform: scale(1.2) rotate(-10deg);
}
 #custom-footer-placeholder .footer-contact-item a {
     color: var(--cleanwave-light-text-color);
     text-decoration: none;
     font-size: inherit;
     transition: color var(--transition-speed-fast) var(--transition-ease-out);
 }
 #custom-footer-placeholder .footer-contact-item:hover a {
     color: var(--cleanwave-secondary-color);
 }

/* Sociální ikony */
#custom-footer-placeholder .social-icons {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}
#custom-footer-placeholder .social-icons a {
    color: #fff;
    font-size: 1.8rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cleanwave-primary-color) 0%, var(--cleanwave-accent-color-dark) 100%);
    border: none;
    box-shadow: 0 4px 8px var(--cleanwave-shadow-light), inset 0 -2px 3px rgba(0,0,0,0.1);
    transition: all var(--transition-speed-normal) var(--transition-ease-out);
    position: relative;
    overflow: hidden;
}
#custom-footer-placeholder .social-icons a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity var(--transition-speed-normal) var(--transition-ease-out);
}
 #custom-footer-placeholder .social-icons a i {
     transition: transform var(--transition-speed-normal) var(--transition-ease-out);
     position: relative;
     z-index: 2;
 }
#custom-footer-placeholder .social-icons a:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 10px 20px var(--cleanwave-shadow-color), inset 0 -2px 3px rgba(0,0,0,0.1);
}
#custom-footer-placeholder .social-icons a:hover::before {
    opacity: 1;
}
 #custom-footer-placeholder .social-icons a:hover i {
     transform: scale(1.1);
 }

/* Spodní část patičky */
#custom-footer-placeholder .footer-bottom {
    border-top: 1px solid var(--cleanwave-border-color-light);
    padding-top: var(--cleanwave-spacing-medium);
    margin-top: var(--cleanwave-spacing-large);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--cleanwave-spacing-medium) var(--cleanwave-spacing-large);
    font-size: var(--cleanwave-font-size-small);
    color: var(--cleanwave-light-text-color);
    position: relative;
}
#custom-footer-placeholder .footer-bottom-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--cleanwave-spacing-large);
    flex-grow: 1;
}
#custom-footer-placeholder .footer-bottom .copyright {
    text-align: left;
    flex-shrink: 0;
}
#custom-footer-placeholder .footer-bottom .copyright strong {
    font-weight: 700;
    color: var(--cleanwave-text-color);
}
#custom-footer-placeholder .footer-bottom .current-year {
    display: inline-block;
    transition: transform var(--transition-speed-normal) var(--transition-ease-out), color var(--transition-speed-normal) var(--transition-ease-out);
}
#custom-footer-placeholder .footer-bottom .copyright:hover .current-year {
    transform: scale(1.15) rotate(-5deg);
    color: var(--cleanwave-primary-color);
}
#custom-footer-placeholder .shipping-icons {
    display: flex;
    align-items: center;
    gap: calc(var(--cleanwave-spacing-medium) + 5px);
    flex-shrink: 0;
    flex-wrap: wrap;
}
#custom-footer-placeholder .shipping-icons img {
    height: var(--shipping-logo-height);
    width: auto;
    max-width: 115px;
    object-fit: contain;
    vertical-align: middle;
    filter: grayscale(0%) contrast(100%) brightness(100%);
    opacity: 0.8;
    transform: scale(1);
    transition: all var(--transition-speed-normal) var(--transition-ease-out);
}
#custom-footer-placeholder .shipping-icons a:hover img {
    transform: scale(1.15);
    opacity: 1;
    filter: drop-shadow(0 3px 5px var(--cleanwave-shadow-light));
}
#custom-footer-placeholder .shipping-icons a {
    display: inline-block;
    line-height: 0;
    position: relative;
}
#custom-footer-placeholder .footer-bottom-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--cleanwave-spacing-medium);
    justify-content: flex-end;
    flex-shrink: 0;
}
#custom-footer-placeholder .footer-bottom #signature {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    color: var(--cleanwave-light-text-color) !important;
    transition: all var(--transition-speed-normal) var(--transition-ease-out) !important;
    font-size: calc(var(--cleanwave-font-size-small) - 0.2rem) !important;
    opacity: 0.9;
}
#custom-footer-placeholder .footer-bottom #signature:hover {
    color: var(--cleanwave-link-hover-color) !important;
    opacity: 1;
    transform: scale(1.03);
}
#custom-footer-placeholder .footer-bottom #signature img.shoptet-logo {
    display: inline-block !important;
    width: var(--shoptet-logo-size) !important;
    height: var(--shoptet-logo-size) !important;
    object-fit: contain !important;
    transition: transform var(--transition-speed-normal) var(--transition-ease-out) !important;
    vertical-align: middle !important;
    filter: grayscale(10%);
}
#custom-footer-placeholder .footer-bottom #signature:hover img.shoptet-logo {
    transform: scale(1.25) rotate(12deg) !important;
    filter: grayscale(0%);
}
#custom-footer-placeholder .footer-bottom #signature .title {
    font-weight: 400 !important;
}
#custom-footer-placeholder .creator-credit {
    font-size: calc(var(--cleanwave-font-size-small) - 0.2rem) !important;
    color: var(--cleanwave-light-text-color) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
     transition: opacity var(--transition-speed-normal) var(--transition-ease-out);
}
 #custom-footer-placeholder .creator-credit:hover {
     opacity: 1;
 }
#custom-footer-placeholder .creator-credit a {
    color: var(--cleanwave-link-color) !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    transition: color var(--transition-speed-fast) var(--transition-ease-out) !important;
    position: relative;
}
#custom-footer-placeholder .creator-credit a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    background-color: var(--cleanwave-link-hover-color);
    bottom: -3px;
    left: 0;
    transition: width var(--transition-speed-normal) var(--transition-ease-out);
    border-radius: 1px;
}
#custom-footer-placeholder .creator-credit a:hover {
    color: var(--cleanwave-link-hover-color) !important;
}
 #custom-footer-placeholder .creator-credit a:hover::after {
     width: 100%;
 }
#custom-footer-placeholder .creator-credit .email-link {
    color: var(--cleanwave-light-text-color) !important;
    text-decoration: none !important;
    font-weight: normal !important;
    transition: color var(--transition-speed-fast) var(--transition-ease-out) !important;
}
#custom-footer-placeholder .creator-credit .email-link:hover {
    color: var(--cleanwave-link-hover-color) !important;
    text-decoration: underline !important;
    text-decoration-color: var(--cleanwave-accent-darker);
    text-underline-offset: 2px;
}
#custom-footer-placeholder .creator-credit .separator {
    margin: 0 10px;
    opacity: 0.4;
    font-weight: 300;
}

/* --- Responzivita --- */
@media (max-width: 1200px) {
    #custom-footer-placeholder .container { max-width: 95% !important; padding-left: 40px !important; padding-right: 40px !important; }
}
@media (max-width: 992px) {
     #custom-footer-placeholder .wave-container { height: 120px; }
     #custom-footer-placeholder .footer-top { gap: var(--cleanwave-spacing-medium) 4%; }
     #custom-footer-placeholder .footer-column { flex-basis: calc(50% - 2%); min-width: unset; }
     @media (max-width: 850px) {
        #custom-footer-placeholder .footer-bottom { justify-content: center; gap: var(--cleanwave-spacing-medium); }
        #custom-footer-placeholder .footer-bottom-left { justify-content: center; width: 100%; margin-bottom: 0; gap: var(--cleanwave-spacing-large); }
        #custom-footer-placeholder .footer-bottom-right { justify-content: center; width: 100%; }
     }
}
@media (max-width: 768px) {
     #custom-footer-placeholder .wave-container { height: 100px; }
    #custom-footer-placeholder .container { padding-left: 30px !important; padding-right: 30px !important; gap: var(--cleanwave-spacing-medium) !important; }
    #custom-footer-placeholder .footer-top { flex-direction: column !important; align-items: center !important; gap: var(--cleanwave-spacing-large) !important; text-align: center; }
    #custom-footer-placeholder .footer-column { flex-basis: auto !important; width: 100% !important; max-width: 450px; padding: 0; }
    #custom-footer-placeholder .footer-column:hover { transform: translateY(0); }
    #custom-footer-placeholder .footer-column h4 { display: inline-block; font-size: calc(var(--cleanwave-font-size-heading) - 0.2rem); }
    #custom-footer-placeholder .footer-column h4::before,
    #custom-footer-placeholder .footer-column:hover h4::before { left: 50% !important; transform: translateX(-50%) !important; max-width: 60px; }
    #custom-footer-placeholder .footer-column h4::after,
    #custom-footer-placeholder .footer-column:hover h4::after { display: none; }
    #custom-footer-placeholder .footer-column ul { align-items: center; }
    #custom-footer-placeholder .footer-column ul li { justify-content: center; max-width: 340px; text-align: left; }
    #custom-footer-placeholder .footer-column ul li a::after { display: none; }
    #custom-footer-placeholder .footer-contact-item { justify-content: center; max-width: 340px; text-align: left; }
    #custom-footer-placeholder .footer-contact-item::before { display: none; }
    #custom-footer-placeholder .social-icons { justify-content: center !important; }
    #custom-footer-placeholder .footer-bottom { flex-direction: column !important; align-items: center !important; text-align: center !important; gap: var(--cleanwave-spacing-large) !important; margin-top: var(--cleanwave-spacing-medium); }
    #custom-footer-placeholder .footer-bottom-left { flex-direction: column; width: auto; gap: var(--cleanwave-spacing-large); }
    #custom-footer-placeholder .shipping-icons { justify-content: center; gap: var(--cleanwave-spacing-medium); }
    #custom-footer-placeholder .footer-bottom-right { width: auto; gap: var(--cleanwave-spacing-medium) !important; }
}
@media (max-width: 480px) {
    :root { --cleanwave-font-size-base: 1.5rem; --cleanwave-font-size-small: 1.35rem; --cleanwave-font-size-heading: 1.9rem; --cleanwave-spacing-medium: 20px; --cleanwave-spacing-large: 40px; --shipping-logo-height: 32px; }
    #custom-footer-placeholder .wave-container { height: 80px; }
    #custom-footer-placeholder .container { padding-left: 20px !important; padding-right: 20px !important; }
    #custom-footer-placeholder .footer-column ul li,
    #custom-footer-placeholder .footer-contact-item { max-width: 100%; justify-content: flex-start; text-align: left; }
    #custom-footer-placeholder .footer-bottom-right { flex-direction: column !important; gap: var(--cleanwave-spacing-medium) !important; }
    #custom-footer-placeholder .footer-bottom #signature,
    #custom-footer-placeholder .creator-credit { font-size: 1.25rem !important; }
    #custom-footer-placeholder .creator-credit { flex-direction: column; align-items: center; gap: 10px; }
    #custom-footer-placeholder .creator-credit .separator { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  #custom-footer-placeholder .wave { animation: none; }
  #custom-footer-placeholder .footer-column:hover,
  #custom-footer-placeholder .footer-column:hover h4::before,
  #custom-footer-placeholder .footer-column:hover h4::after,
  #custom-footer-placeholder .footer-column ul li a:hover .link-icon, /* Upraveno */
  #custom-footer-placeholder .footer-column ul li a::after,
  #custom-footer-placeholder .footer-contact-item:hover i,
  #custom-footer-placeholder .social-icons a:hover,
  #custom-footer-placeholder .social-icons a:hover i,
  #custom-footer-placeholder .social-icons a::before,
  #custom-footer-placeholder .shipping-icons a:hover img,
  #custom-footer-placeholder .shipping-icons a::after,
  #custom-footer-placeholder .footer-bottom #signature:hover,
  #custom-footer-placeholder .footer-bottom #signature:hover img.shoptet-logo,
  #custom-footer-placeholder .footer-bottom .copyright:hover .current-year,
  #custom-footer-placeholder .creator-credit a::after {
    transition: none; animation: none; transform: none !important; opacity: default; max-width: default; width: default; display: default;
  }
   #custom-footer-placeholder .footer-column h4::after { opacity: 0; }
   #custom-footer-placeholder .shipping-icons a::after { opacity: 0; }
   #custom-footer-placeholder .social-icons a::before { opacity: 0; }
   #custom-footer-placeholder .footer-column ul li a::after { width: 0; transform: scaleX(0); }
   #custom-footer-placeholder .creator-credit a::after { width: 0; }
}
