    html {
      overflow-y: scroll;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
    background-color: #F3F3F3; /* Светло-бежевый */
    line-height: 1.6;
    color: #333;
    }          
	@font-face {
	font-family: "Caviar Dreams Bold"; 
	src: url('../fonts/CaviarDreams_Bold.ttf'); 
	font-style: normal; 
    font-weight: normal; 
}

@font-face {
	font-family: "Caviar Dreams"; 
	src: url('../fonts/CaviarDreams.ttf'); 
	font-style: normal; 
    font-weight: normal; 
}  

header {
    background: linear-gradient(to right, #ffcc00, #ff9900);
    padding: 20px;
    text-align: center;
}
header h1 {
    font-size: 4.5em;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Тень для улучшения читаемости */
	font-family:'Caviar Dreams';
	letter-spacing: 1px;
}

    nav {
      background-color:#FFFFFF;
      padding: 5px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
		  border-bottom: 3px solid #ff9900;
    }

    .logo img {
      height: 50px;
      width: auto;
      animation: logoSpin 1s ease forwards;
    }

    @keyframes logoSpin {
      0% { opacity: 0; transform: rotateY(90deg); }
      100% { opacity: 1; transform: rotateY(0); }
    }

    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
    }

    nav ul li {
      margin: 0 20px;
    }

    nav ul li a {
      color:#000000;
      text-decoration: none;
      font-weight: bold;
    }

    nav ul li a:hover {
      color: #ff9900;
    }

    /* Карусель */
    .carousel {
      position: relative;
      max-width: 1200px;
      margin: 20px auto;
      overflow: hidden;
    }

    .carousel-track-wrapper {
      overflow: hidden;
      height: 360px; /* Фиксированная высота трека */
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .carousel-item {
      flex: 0 0 33.33%;
      padding: 10px;
      text-align: center;
      will-change: transform;
    }

    .carousel-item img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
      border-radius: 8px;
    }

    .carousel-item p {
      margin-top: 10px;
      font-size: 1em;
      color: #333;
	  font-family:'Segoe UI';
    }

    .carousel-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: none;
      padding: 15px;
      cursor: pointer;
      font-size: 1.8em;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 100;
    }

    .carousel-button.prev {
      left: 10px;
    }

    .carousel-button.next {
      right: 10px;
    }

    .carousel-button:hover {
      background-color: rgba(0, 0, 0, 0.8);
    }

    .carousel-button:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .products {
      padding: 40px 20px 20px 20px;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .product-card {
      border: 1px solid #ddd;
	  box-shadow: 1px 1px 0px 0px rgba(0,0,0,0.15);		
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      background-color:#FFFFFF;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      will-change: transform;
    }

    .product-card:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .product-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

    .product-card h4 {
      padding: 10px;
      font-size: 1.4em;
    }

    .product-card p {
      padding: 0 10px;
      color: #888;
	font-family:'Segoe UI';
    }

    .product-card .price {
      font-weight: bold;
      color: #ff6600;
      padding: 10px;
    }

    .product-card .button-container {
      display: flex;
      justify-content: center;
      padding: 10px;
    }

    .product-card button, .product-card a {
     flex: 1;
     padding: 10px;
     margin: 0 5px;
	 font-size: 16px;
     cursor: pointer;
     text-align: center;
     text-decoration: none;
     border-radius: 4px;
    }
	.product-card a { 
	padding: 0px;	
	  }

    .product-card .add-to-cart-wb {
	display: flex;	
	align-items: center;
	border: 1px solid #7D07F6;	
    }
	  
	.product-card .add-to-cart-wb img {
width: 50px;
height: 50px;
margin: -5px 0px -5px -5px;
float:left;
    }
	  
    .product-card .add-to-cart-ozon {
	display: flex;	
	align-items: center;
	border: 1px solid #005CFF;	
    }
	  
	.product-card .add-to-cart-ozon img {
width: 50px;
height: 50px;
margin: -5px 0px -5px -5px;
float:left;
    }

    .product-card .view-details {
      background-color: #666;
      color: #fff;
      border: none;
    }
	  
footer {
  background-color: #ffcc00;
  color: #333;
  text-align: center;
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 10px;
  border-top: 3px solid #ff9900;
}

footer p {
  margin: 10px 0;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 15px 0;
}

footer .footer-links a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

footer .footer-links a:hover {
  text-decoration: underline;
}

footer .social-icons {
  margin-top: 10px;
}

footer .social-icons a {
  margin: 0 10px;
  display: inline-block;
  font-size: 1.4em;
  color: #333;
  transition: transform 0.2s ease;
}

footer .social-icons a:hover {
  transform: scale(1.2);
  color: #000;
}
			
.info-block {
  text-align: center;
  margin-top: -25px;
}
 .info-block .info-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px 0 10px;
  margin-bottom: 30px; 
}

.info-block h2 {
 font-size: 3.4em;
 margin-bottom: 15px;
 margin-top: -15px;
 color: #ff9900;
 font-family:'Caviar Dreams';
 letter-spacing: 1px;
}

.info-block p {
  font-size: 1.1em;
  color:#474747;
  line-height: 1.6;
  font-family:'Segoe UI';
}

.info-producttitle {
margin-top: 15px;
 background:#F3F3F3;
background-image: url( '../img/скачать раскраску.jpg');
background-position: left bottom;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
padding-bottom: 10px;
}

.info-product {	
	padding: 40px 20px 20px 20px;
	max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}	  
	  
.info-product button {
background: rgba(255, 255, 255, 1);	
border-radius: 8px;
margin-top: 30px;
margin-left: 50px;
margin-right: 50px;
margin-bottom: 30px;
border: 1px solid;
border-color: #BFBFBF;
}

.info-product button:hover {
	border-color:#000000;
	background: rgba(255, 255, 255, 1);
}
	  
.info-productheader {
	padding-top: -5px;
	padding-bottom: -5px;
}

.info-productheader h3 {
	font-family:'Caviar Dreams';
    color: #000000;
    font-size: 40px;
	text-align: center;
	padding: 5px 10px 0 10px;
}	
	  
.info-productbutton {
      border: 1px solid #ddd;
	box-shadow: 1px 1px 0px 0px rgba(0,0,0,0.15);
      border-radius: 8px;
      overflow: hidden;
	background: #FFFFFF;
}	  

.info-productbutton img {	
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
}
	  
.info-productbuttongood {
      border: 1px solid #ddd;
	box-shadow: 1px 1px 0px 0px rgba(0,0,0,0.15);
      border-radius: 8px;
      overflow: hidden;
	background: #FFFFFF;
}	  

.info-productbuttongood img {	
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
}
	  
.info-productbuttontext{
	margin: -10px 5px -5px 5px;
	height:120px;
	color: #000;
	font-size: 22px;
	font-family:'Segoe UI';
	display: flex;
  justify-content: left;
  align-items: center;	
	}
.info-productbuttontext a{
	letter-spacing: 0.5px;
  padding-left: 5px;
  padding-right: 5px;
	line-height: 30px;
	}
	  
.info-productbuttontextmini{
	margin: -10px 8px -5px 8px;
	height:120px;
	color: #8F8F8F;
	font-size: 16px;
	font-family:'Segoe UI';
	border-top: #ff9900 3px solid;
	letter-spacing: 0.5px;
	  display: flex;
  justify-content: left;
  align-items: center;
	}

.info-productbuttontextmini a{
color:#474747;
padding-left: 5px;
padding-right: 5px;
	line-height: 20px;
	}	 

      .containerimage {
      padding: 20px 20px 20px 20px;
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
	  margin-top: 20px;
	  display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 20px;  
        }

        .image-card {
            position: relative;
            cursor: pointer;
            overflow: hidden;
            border-radius: 4px;
            aspect-ratio: 1/1;
        }
        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .image-card:hover img {
            transform: scale(1.05);
        }
        .image-card::after {
            content: '↓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 24px;
            color: white;
            opacity: 0;
            transition: opacity 0.3s;
            text-shadow: 0 0 5px rgba(0,0,0,0.5);
        }
        .image-card:hover::after {
            opacity: 1;
        }


    @media (max-width: 935px) {
.info-productheader h3 {
	line-height: 1.2;
	padding: 15 0;
}
}
    @media (max-width: 865px) {
.info-productbuttontext{
	margin: -10px 5px -10px 5px;	
	}	
.info-productbuttontextmini{
	margin: -10px 8px -15px 8px;
	}	
.info-productbuttontextmini a{
margin-top: -15px;
}		
}

    @media (max-width: 800px) {
header h1 {
    font-size: 3.5em;
}	
    .product-card button, .product-card a {
display: none;
align-items: center;
justify-content: center;		
}
    }	 
    @media (max-width: 640px) {
header h1 {
    font-size: 3.0em;
}
.info-productheader h3 {
    font-size: 30px;
}
.info-block p {
  font-size: 1.0em;
  line-height: 1.4;
}		
    }
	  
    @media (max-width: 600px) {
      nav {
        flex-direction: column;
        text-align: center;
      }

      .logo {
        margin-bottom: 10px;
      }
		
      nav ul {
        flex-direction: column;
      }

      nav ul li {
        margin: 5px 0;
      }

      header h1 {
        font-size: 2.5em;
      }
.info-block h2 {
  font-size: 2.6em;
}
		
      .carousel-item {
        flex: 0 0 100%;
      }
    }
	  
    @media (max-width: 585px) {
.info-productbuttontext{
	margin: -15px 5px -15px 5px;	
	}	
.info-productbuttontextmini{
	margin: -15px 8px -30px 8px;
	}	
.info-productbuttontextmini a{
margin-top: -30px;
	}			
}
    @media (max-width: 575px) {
    .product-card button, .product-card a {
display:flex;
}			
}	  
    @media (max-width: 500px) {
header h1 {
    font-size: 2.2em;
}
.info-block h2 {
  font-size: 2.2em;
}		
}
    @media (max-width: 440px) {
.info-productheader h3 {
    font-size: 28px;
}			
    }	  
    @media (max-width: 400px) {
header h1 {
    font-size: 1.5em;
}
}	  
	  