/* styles.css - Спільні стилі для всіх сторінок */


/* background */
.bg-milk {
background: linear-gradient(135deg, #fefefe 0%, #f5f5f5 100%);	
}

/* background */
/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0099de;
    --primary-dark: #1E40AF;
    --secondary: #06B6D4;
    --accent: #059669;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --red: #EF4444;
    --green: #10B981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
	padding-top: 4em;
}

/* Typography */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
 font-size: clamp(18px, 2vw, 21px);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Layout */
.container {
    max-width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0 1rem;
	width: 100%;
}

.section {
    padding: 3rem 0;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:  0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
	padding: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--bg-light);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    min-height: 44px;
    text-align: center;
}
.btn-sm {
    
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.75rem;
    min-height: 44px;
    text-align: center;
	display: block;
	
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white)!important;
}

/* PopUp*/
.contact-popup a{
text-decoration: none;
  line-height: 1.3;
  font-size: 24px;
  padding: 4px;
  display: flex;
}
.contact-popup a img {
  margin: 0.25em;
}
.contact-popup {
position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  text-align: right;
  background: #fff;
  padding: 1em;
    padding-top: 1em;

  border: #1957739c 2px solid;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
#contactList {  padding-top: 2em;}
.contact-button {
    background-color: #25a56a;
    color: white;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-list {
    margin-bottom: 10px;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.contact-list a {
    background: white;
    border-radius: 8px;
    padding: 10px 14px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: background 0.2s;
	  border: #195773 2px solid;
}
.contact-list a:hover {
    background: #f0f0f0;
}
/* PopUp*/


.btn-call {
    background: var(--accent);
    color: var(--white);
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    border-radius: 50px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    padding: 0.2rem;
	width: 60px!important;
	height: 60px!important;	
}
.btn-help {
    background: #0fb6ee;
    color: var(--white);
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    border-radius: 50px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
   padding: 0.2em;
	max-width: 60px;
	width: 60px!important;
	height: 60px!important;
}

.btn-call:hover {
    transform: scale(1.1);
}

/* Hero Sections  #0099de */
.hero {
    /*background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);*/
    color: var(--white);
padding: 2rem 0 1rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
	background: linear-gradient(90deg, #fffff0 0%, #f8f8ff 25%, #f0f8ff 50%, #f5f5f5 75%, #ffffff 100%);
}

.products-hero {
    min-height: 60vh;
}


.about-block h2{	font-size: clamp(28px, 3vw, 48px); }
.about-block p{	font-size: clamp(16px, 2vw, 24px); }
.about-block .check-list li{	font-size: clamp(16px, 2vw, 24px); color: #253A64;font-weight: 600;}
.about-block .check-list li img{	margin: 0 0.5em;}
.about-block .btn{	padding: 1em; margin-left: 3em;  text-transform: uppercase;max-width: 300px;}
.about-block a img{margin: 0.25em; }
.about-block a{ 
text-decoration: none;
  line-height: 1.3;
  font-size: 24px;
  padding: 4px;
  display: flex;
}
.about-block{
	
}
.about-shop{
	
}
.automat-hero {
    /*background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);*/
    color: var(--white);
    padding: 2rem 0 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.db{display: block;width: 100%;}
.txc{text-align: center;}
.hero-content .image-grid img{max-width:250px;border:#fff 4px solid;}
.hero-content .image-grid{
display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  background: linear-gradient(45deg, #fffef7 0%, #f6f6f6 100%);
  padding: 1.5em;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.hero-content {
    text-align: center;
}

.hero h1 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-warning {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.automat-image img{width: 100%;}
.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #E5E7EB;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image-container {
    position: relative;
    height: 450px;
   /* overflow: hidden;*/
}


.product-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-size: 4rem;
    color: white;
    background: linear-gradient(45deg, #F1F7FF, #fff);
}
.product-image img{ width: 100%;}
.photo-viewer {
    max-width: 600px;
    margin: 0 auto;
}

.main-photo img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.similar-photos-grid {
display: grid;
  grid-template-columns: repeat(auto-fill,minmax(60px,1fr));
  gap: 10px;
  margin-top: 15px;
  position: absolute;
  bottom: 0px;
  left: 6px;
  background: #ffffffb2;
  padding: 8px;
  border-radius: 12px;
  width: calc(100% - 10px);
}

.similar-photos-grid img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.similar-photos-grid img:hover {
    transform: scale(2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.bottle-5l { background: linear-gradient(45deg, var(--secondary), var(--primary)); }
.bottle-19l-pkb { background: linear-gradient(45deg, var(--primary), var(--accent)); }
.bottle-19l-poly { background: linear-gradient(45deg, var(--accent), var(--secondary)); }
.aquadevice { background: linear-gradient(45deg, var(--secondary), var(--accent)); }
.cap-small { background: linear-gradient(45deg, var(--primary), var(--secondary)); }
.cap-large { background: linear-gradient(45deg, var(--accent), var(--primary)); }
.pump-manual { background: linear-gradient(45deg, var(--secondary), var(--primary)); }
.pump-electric { background: linear-gradient(45deg, var(--primary), var(--accent)); }
.stand { background: linear-gradient(45deg, var(--accent), var(--secondary)); }

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-badge.eco {
    background: var(--green);
}

.product-badge.premium {
    background: #8B5CF6;
}

.product-badge.new {
    background: #F59E0B;
}

.product-info {
    padding: 1.5rem;
}

.product-price {
font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 1rem 0;
 /* position: absolute;
  top: 390px;
  right: 40px;*/
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.feature {
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-btn {
width: 100%;
  padding: 0.5em !important;
  max-width: 140px;
  margin: auto;
  display: block;
}

/* Features */
.features {
    background: var(--bg-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.section li {padding: 0.5em;}
.wkend {color:red!important;}
.wkendw {color:orange!important;}
/* Schedule */
.schedule h3{font-size: clamp(16px, 2vw, 18px);}
.schedule {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item.highlight {
    background: var(--bg-light);
    margin: 1rem -2rem -2rem;
    padding: 1rem 2rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    border-bottom: none;
}

.schedule-day {
    font-weight: 600;
}

.schedule-time {
    color: var(--accent);
    font-weight: 600;
}

/* Check List */
.check-list {
    margin: 2rem 0;
    color: var(--text-light);
    list-style: none;
}

.check-list li {
    margin-bottom: 0.5rem;
}

/* Automat Preview */
.automat-preview {
    text-align: center;
}

.automat-image {
width: auto;
  min-height: 300px;
  border-radius: var(--border-radius);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  padding: 1em;
}

.automat-label {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary);
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
	
}

.step img{
width: calc(100% + 20px);
  border-radius: 8px;
  margin: auto -20px;
}
.step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
	border: #0099de 2px solid;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #0099de;
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Payment Methods */
.payment-section {
    background: var(--bg-light);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.payment-method {
    display: block;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.payment-method:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.payment-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.payment-info h4 {
    margin-bottom: 0.25rem;
}

.payment-warning {
    color: var(--red);
    font-weight: 600;
    font-size: 0.9rem;
}

.payment-note {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Money Info */
.money-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.money-accepts .accepts {
    color: var(--green);
}

.money-rejects .rejects {
    color: var(--red);
}

.money-category {
    margin-bottom: 1rem;
}

.money-category h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.coins, .bills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.coin, .bill {
    background: var(--bg-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #E5E7EB;
}

.reject-list {
    list-style: none;
    margin-left: 0;
}

.reject-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #F3F4F6;
    color: var(--text-light);
}

.reject-list li:last-child {
    border-bottom: none;
}

/* Prices */
.prices-section {
    background: var(--bg-light);
}

.price-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.own-container {
    border-color: var(--green);
}

.price-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.price-list .volume{color:#222;font-weight: 600;}
.price-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.price-item.unavailable {
    opacity: 0.5;
}

.volume {
    font-weight: 600;
}

.price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.25rem;
}

.price-benefit {
    text-align: center;
    color: var(--green);
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.75rem;
    border-radius: var(--border-radius);
}

.price-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.savings-calculator {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.savings-calculator h3 {
    text-align: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.savings-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.saving-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.saving {
    color: var(--green);
    font-weight: 600;
}

/* Container Requirements */
.container-requirements {
    background: var(--bg-light);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.requirement-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.requirement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.requirement-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

.container-tips {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.tips-list {
    margin-left: 2rem;
    color: var(--text-light);
}

.tips-list li {
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-section {
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--white);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
}

.faq-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}
.faq-gallary {
	
}

/* Support */
/* Support */
.support-section {
    background: var(--primary);
    color: #222;
}

.support-content {
    text-align: center;
}

.support-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.support-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.support-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background:#fff;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
	text-align: left;
	
}

.support-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.support-method h4 {
    color: #222;
    margin-bottom: 0.25rem;
}

.support-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    display: block;
}

.support-link:hover {
    text-decoration: underline;
}

.support-method p {
  color: rgba(0, 0, 0, 0.9);
    	font-size: clamp(16px, 2vw, 24px);
    margin: 0;
}

.support-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* CTA Section */
.cta-section {
    background: var(--bg-light);
}

.cta-content {
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
	margin-top: 4em;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.footer .card  p{text-align: center;}
.footer .card  p small{display: block;text-align: center;padding: 1em 0}
.footer .card  p b{display: block;text-align: center;padding: 1em 0; color:#222;}
.footer .card  p img{display: block;margin: auto;}
.footer a {
    color: #222;
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--secondary);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item span:first-child {
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.cleaning-steps {
    list-style: none;
    color: #D1D5DB;
}

.cleaning-steps li {
    padding: 0.25rem 0;
    border-bottom: 1px solid #374151;
}

.cleaning-steps li:last-child {
    border-bottom: none;
}

.review-link {
    color: var(--secondary) !important;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white) !important;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9CA3AF;
}
.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.fullscreen-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.fullscreen-content img {
    height: 90vh;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.fullscreen-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    color: #000;
    font-size: 28px;
    font-weight: bold;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 0 10px #000;
}

.table-responsive{}
.table-responsive {
  /* Дозволяє горизонтальний скрол, якщо таблиця ширша за контейнер */
  overflow-x: auto;
  /* Додає невеликий відступ знизу, щоб скрол був видимим */
  margin-bottom: 1rem;
}

table {
  /* Забезпечує, що таблиця займає всю доступну ширину контейнера */
  width: 100%;
  /* Згортає межі для кращого вигляду */
  border-collapse: collapse;
}

th, td {
  /* Додає відступи до комірок */
  padding: 8px;
  /* Додає межі для візуального розділення */
  border: 1px solid #ddd;
  /* Вирівнювання тексту */
  text-align: left;
}

th {
  /* Стиль для заголовків таблиці */
  background-color: #f2f2f2;
  color: #333;
}

/* Опціонально: зебра-смужка для рядків */
tr:nth-child(even) {
  background-color: #f9f9f9;
}
/* head */

/* head */

.photo-block p, .sing{ text-align: center;
color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  background: #0099de;
  padding: 0.75em;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
   font-size: clamp(0.5rem, 2.5vw, 1rem);
}
.sing {color:#fff!important;}
/* Responsive */

@media (max-width: 768px) {
.sing {font-size: clamp(28px, 3vw, 48px);}	
/*instagram-button */
.instagram-button::after {content: 'vodakryvyirig';text-decoration: none;}
.instagram-button {
	text-decoration: none;
text-transform: uppercase;
  margin: auto;
  display: block;
  text-align: center;
  padding: 1em;
  display: flex;
    gap: 8px;
}	
h2{text-align: center;}
.automat-image {padding: 0em;}	
.about-block h2, .about-block p{	text-align: center; }
.about-block .btn {margin: 1em auto;padding: 0.5em;}
.product-image{display: block;}
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem 0 2rem 0;
        box-shadow: var(--shadow);
    }
.nav-menu li{padding: 0 2em ;}
.nav-menu li a{box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;}
.nav-menu .nav-link{	display: block;    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        min-height: 80vh;
        padding: 2rem 0 1rem;
    }

    .products-hero,
    .automat-hero {
        min-height: 50vh;
        padding: 1rem 0 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .btn-call {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.8rem;
        padding: 0.2rem;
		max-width: 80px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .price-comparison {
        grid-template-columns: 1fr;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .support-methods {
        grid-template-columns: 1fr;
    }

    .support-method {
        text-align: center;
        flex-direction: column;
    }

    .support-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .savings-examples {
        gap: 0.5rem;
    }

    .saving-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .container-tips {
        padding: 1.5rem;
    }

    .tips-list {
        margin-left: 1rem;
    }
}

@media (max-width: 480px) {
.fullscreen-content img{
height: auto;
  width: 100%;

}	
    .container {
        padding: 0 0.75rem;
		margin:0!important;
		max-width: 100%!important;
    }
.search-section, .results {
    padding: 1em 4px!important;
  }
    .section {
        padding: 2rem 0;
    }

    .card {
        padding: 1.5rem;
    }

    .product-info {
        padding: 1rem;
    }

    .step {
        padding: 1.5rem;
    }

    .payment-method {
        padding: 1rem;
    }

    .price-card {
        padding: 1.5rem;
    }

    .requirement-card {
        padding: 1.5rem;
    }

    .hero-warning {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    animation: fadeIn 0.6s ease forwards;
}

/* Loading States */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
.btn:focus,
.nav-link:focus,
.social-link:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Print styles */
@media print {
    .header,
    .btn-call,
    .footer {
        display: none;
    }
    
    .hero {
        background: none;
        color: var(--text-dark);
        min-height: auto;
        padding: 2rem 0;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

