body {
    font-family: 'Roboto', sans-serif;
    color: #1b1f37;
    margin: 0;
    padding: 0;
    font-size: 16px;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
}

ul, li {
    display: block;
}

.container {
    max-width: 83%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

/* Хедер */
header {
    margin-top: 20px;
}

.header-img {
    background: url('../images/cat_scratchers.png') no-repeat center top / cover;
    background-size: 75%;
    text-align: center;
    height: 800px;
}

header a {
    color: #1b1f37;
}

.logo img {
    height: 30px;
}

.center-images {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 8%;
}

.image-container {
    text-align: center;
    margin: 0 15px;
}

.image-container a {
    text-decoration: none;
    color: #333;
}

.image-container img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #fff;
    display: block;
    margin: 0 auto;
}

.image-container span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
}

.contact {
    text-align: right;
    margin-left: 5%;
}

.contact .phone {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    margin-left: auto;
    line-height: 1.5;
    text-decoration: none;
    color: #1b1f37;
    letter-spacing: 0.1em;
}

#menu__toggle {
    display: none;
}

#menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
}

#menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
}

#menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
    visibility: visible;
    right: 0;
}

.menu__btn {
    display: flex;
    align-items: center;
    position: fixed;
    top: 30px;
    right: 35px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 2;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 1.5px;
    background-color: #1b1f37;
    transition-duration: .25s;
}

.menu__btn > span::before {
    content: '';
    top: -8px;
}

.menu__btn > span::after {
    content: '';
    top: 8px;
}

.menu__box {
    display: block;
    position: fixed;
    visibility: hidden;
    text-align: center;
    top: 0;
    right: -100%;
    width: 200px;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    background-color: #f2ae00;
    box-shadow: 1px 0 6px rgba(0, 0, 0, .2);
    transition-duration: .25s;
    z-index: 1;
}

.menu__item {
    display: block;
    padding: 12px 24px;
    color: #1b1f37;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    transition-duration: .25s;
}

.menu__item:hover {
    text-decoration: #f2ae00;
}

.hero {
    text-align: center;
    padding: 50px 20px;
}

.hero h1 {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    font-size: 48px;
    margin-top: 130px;
    margin-bottom: 200px;
    line-height: 1.5em;
}

.colortext {
    color: #f2ae00;
}

.btn {
    text-align: center;
    border-radius: 10px;
    background-color: #f2ae00;
    border: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.btn:hover {
    transition: 0.7s;
    box-shadow: 0 0 0 4px #f2ae00;
}

.social-icons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    right: 20px;
}

.social-icons a {
    color: #f2ae00;
}

.social-icon img {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.social-icon img:hover {
    transform: scale(1.1);
}

/* Досягнення */
.counter-cards {
    box-sizing: border-box;
    margin-top: 130px;
}

.counter-cards .container {
    display: block;
}

.counter-cards p {
    color: #1b1f37;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.column {
    float: left;
    width: 23%;
    padding: 0 5px;
}

.row {
    margin: 0 -5px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
    border-radius: 10px;
  text-align: center;
  background-color: #fff;
  color: #1b1f37;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.card i {
    font-size: 50px;
    color: #f2ae00;
    margin-bottom: 30px;
}

.card h3 {
    margin-bottom: 20px;
}

/* Кігтеточки */
.products {
    padding: 20px 0;
    margin-top: 130px;
}

.products .container {
    display: block;
}

.products h2 {
    text-align: left;
    margin-bottom: 30px;
}

.product-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product-item {
    width: 355px;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin: 10px;
    width: calc(33.333% - 40px);
    box-sizing: border-box;
    text-align: center;
}

.product-item:hover {
    transform: scale(1.05);
}

.product-item img {
    max-width: 100%;
    height: 190px;
}

.product-item h3 {
    font-size: 20px;
    margin: 10px 0;
}

.product-item p {
    color: #828282;
}

.product-item a {
    text-decoration: none;
    color: #1b1f37;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
    color: #999;
    cursor: pointer;
}

.product-likes {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.product-likes .heart {
    stroke: black;
    stroke-width: 1px;
    fill: none;
    margin-right: 5px;
}

.product-likes .heart.liked {
    fill: red;
    stroke: red;
}

.like-count {
    margin-right: 5px;
}

.product-comments {
    display: flex;
    align-items: center;
}

.product-comments .comment {
    margin-right: 5px;
}

.comment-count {
    margin-right: 5px;
}

.card-buttons {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 10px;
    margin: 0;
}

.card-buttons .more-details {
    font-size: 16px;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    background-color: #f2ae00;
    color: #fff;
    cursor: pointer;
}

.card-buttons .more-details:hover {
    background-color: #e09c00;
    transition: background-color 0.3s;
}

.product-item:hover .card-buttons {
    display: flex;
}

.card-buttons .buy-btn {
    margin: 0;
    text-align: center;
    border-radius: 10px;
    background-color: #f2ae00;
    border: none;
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
}

.card-buttons .buy-btn:hover {
    transition: 0.7s;
    box-shadow: 0 0 0 4px #f2ae00;
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    margin: 1% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.popup-content h2 {
    margin-top: 20px;
    font-size: 24px;
    text-align: center;
}

.order-info p {
    color: 828282;
    font-weight: 200;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.product-order {
    margin-top: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product-order img {
    width: 100px;
    height: auto;
    margin-right: 20px;
}

.order-info {
    flex: 1;
}

.quantity-control {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: none;
    border: none;
    color: #1b1f37;
    cursor: pointer;
}

.quantity-btn:hover {
    background-color: #e09c00;
    transition: background-color 0.3s;
}

.order-info .price {
    font-weight: 400;
    font-size: 18px;
    margin-top: 10px;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 10px;
    font-weight: bold;
}

form input,
form select,
form textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form textarea {
    resize: vertical;
}

.submit-btn,
.back-btn {
    width: full;
    padding: 10px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-btn {
    background-color: #f2ae00;
    color: #fff;
}

.submit-btn:hover {
    background-color: #e09c00;
    transition: background-color 0.3s;
}

.back-btn {
    background-color: #ccc;
    color: #333;
}

.back-btn:hover {
    background-color: #bbb;
    transition: background-color 0.3s;
}


/* Секція Про нас */
.about {
    padding: 20px 0;
    display: flex;
    margin-top: 130px;
}

.about .container {
    display: block;
}

.about h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    flex: 1;
    margin-right: 20px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 30px;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.about-text p {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.6em;
}

.colortext {
    color: #f2ae00;
    font-weight: bold;
}

a {
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
}
​
a:hover {
  background-color: #ddd;
  color: black;
}
​
.previous {
  background-color: #f1f1f1;
  color: black;
}
​
.next {
  background-color: #04AA6D;
  color: white;
}
​
.round {
  border-radius: 50%;
}

/* Переваги */
.advantages {
    background-color: #fff;
    padding: 20px 0;
    margin-top: 130px;
}

.advantages .container {
    display: block;
}

.advantages-content {
    display: flex;
    
}

.advantages ul {
    list-style: none;
    padding: 0;

}

.text-content {
    flex: 1;
}

.text-content ul li {
    margin-bottom: 10px;
    font-family: 'Comfortaa',sans-serif;
    font-weight: 400;
    line-height: 1.5em;
}

.advantages p {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    margin-top: 40px;
}

.advantages h6 {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 300;
}

/*  .video-ellipse {
    flex: 1;
    transform: translate(50%, -50%);
    background: radial-gradient(circle at center, #f4f4f4 50%, transparent 51%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-ellipse video {
    max-width: 495.5px;
    max-height: 506.5px;
}

.play-button {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 87px;
    height: 72px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 40px solid #fff;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

.play-button::before {
content: ‘’;
display: block;
position: absolute;
width: 87px;
height: 72px;
background-color: #F2AE00;
border-radius: 50%;
left: -5px;
top: -5px;
border: 5px solid #fff;
} */

/* Відгуки */
.reviews {
    padding: 20px 0;
    margin-top: 130px;
}

.reviews .container {
    display: block;
}

.reviews h2 {
    font-size: 24px;
    text-align: left;
    margin-bottom: 30px;
}

.review-cards {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}

.review-card {
    height: 250px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 20px;
    flex: 0 0 32%;
    box-sizing: border-box;
    position: relative;
}

.review-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    color: #999;
    margin-bottom: 10px;
}

.review-text {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-style: italic;
    font-size: 18px;
    margin-bottom: 10px;
}

.review-author {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-style: italic;
    font-size: 20px;
}

.review-time {
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 12px;
}

.highlight {
    color: #f2ae00;
    cursor: pointer;
}

.arrow {
    font-size: 1em;
    margin: 0 10px;
    cursor: pointer;
    stroke: none;
    fill: black;
}

.review-controls {
    text-align: center;
    margin-top: 20px;
}

.arrow.disabled {
    stroke: black;
    cursor: not-allowed;
}

.arrow.enabled {
    stroke: #f2ae00;
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 100%;
        margin-right: 0;
    }
}

.truncated {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-height: 4.5em;
}

/* Контакти */
.feedback {
    text-align: center;
    margin-top: 130px;
}

.feedback .container {
    display: block;
}

.question {
    display: block;
}

.question h2 {
    font-size: 24px;
    color: #1b1f37;
    margin-bottom: 20px;
    text-align: left;
}

.question p {
    font-weight: 100;
    font-size: 18px;
    color: #1b1f37;
    text-align: left;
    width: 45%;
    margin-bottom: 40px;
}

.form-and-image {
    display: flex;
}

#feedbackForm {
    width: 45%;
    text-align: left;
    flex: 1;
}

.form-and-image {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: flex;
    margin-bottom: 5px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 95%;
    padding: 10px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
}

.form-group select {
    width: 95%;
    margin-bottom: 10px;
}

.btnForm {
    width: 45%;
    text-align: center;
    border-radius: 10px;
    background-color: #f2ae00;
    border: none;
    color: #fff;
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.btn:hover {
    transition: 0.7s;
    box-shadow: 0 0 0 4px #f2ae00;
}

.cats-image {
    flex: 1;
    width: 45%;
    align-items: center;
}

.cats-image img {
    max-width: 100%;
    height: auto;
    transform: scaleX(-1);
}

/* кнопка "вгору" */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border-color: #f2ae00;
    outline: none;
    background-color: #fff;
    color: #f2ae00;
    letter-spacing: 0.1em;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    font-size: 18px;
}

#myBtn:hover {
    box-shadow: 0 0 0 2px #f2ae00;
}

/* Футер */
.footer-content {
    margin-top: 130px;
    font-weight: 300;
}

.footer-content .container {
    align-items: flex-start;
}

.footer-content a {
    text-decoration: none;
    color: #1b1f37;
    letter-spacing: 0.1em;
}

.footer-content .logo {
    display: block;
}

.footer-content .logo img {
    padding-bottom: 60px;
}

.footer-links {
    display: block;
    text-align: left;
    padding-bottom: 10px;
}

.footer-links a {
    display: block;
    padding-bottom: 10px;
    letter-spacing: 0;
}

.footer-contact {
    display: block;
    text-align: left;
    padding-bottom: 10px;
}

.footer-contact p {
      font-weight: 500;
}

.footer-contact .tel {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    font-weight: 400;
}

.footer-social {
    position: absolute;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    right: 20px;
    align-items: center;
    padding-top: 20px;
}

.social-icons a {
    color: #f2ae00;
}

.social-icon img {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.social-icon img:hover {
    transform: scale(1.1);
}


.mt-0 {
    margin-top: 0;
}

/* Сторінка product-detail */
.header {
}

.product-detail {
    margin-top: 130px;
    display: block;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;   
}

.product-detail .container {
    max-width: 83%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    
}

.product-left {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

.product-image {
    width: 100%;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.thumbnail-images img {
    width: 30%;
    cursor: pointer;
    border-radius: 8px;
    transition: border 0.3s ease;
}

.thumbnail-images img:hover {
    border: 2px solid #f2ae00;
}

.product-info {
    width: 45%;
}

.product-info .price {
    color: #f2ae00;
}

.product-info h2 {
    font-size: 24px;
    margin: 0 0 10px;
}

.product-info p {
    font-size: 16px;
    color: #1b1f37;
}

.product-info ul {
    list-style: none;
    padding: 0;
}

.product-info ul li {
    margin-bottom: 5px;
}

.product-info .buy-btn {
    width: 45%;
    display: block;
    padding: 10px 20px;
    background-color: #f2ae00;
    border-radius: 10px;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
}

.product-info .buy-btn:hover {
    background-color: #e09c00;
    transition: background-color 0.3s;
}


/* Переглянуті */
.products-section {
    margin-top: 130px;
    padding: 20px;
    background-color: #fff;
    display: block;
}

.products-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1b1f37;
}

.products-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.product-card {
    width: 200%;
    height: 350px;
    margin: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.product-card a {
    text-decoration: none;
}

.product-card img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 18px;
    color: #1b1f37;
    margin-bottom: 5px;
}

.product-card p {
    font-size: 14px;
    color: #1b1f37;
}

.product-card .price {
    font-size: 16px;
    color: #f2ae00;
    margin-top: 10px;
}

.previous-next-round {
    text-align: center;
    margin-top: 10px;
    font-size: 36px;
    padding: 8px 16px;
}

.previous-next-round a {
    text-decoration: none;
    color: #1b1f37;
}
​
.previous-next-round .previous {
    background-color: #f1f1f1;
    color: #1b1f37;
}
​
.previous-next-round .next {
    background-color: #f2ae00;
    color: #1b1f37;
}
​
.previous-next-round .round {
    border-radius: 50%;
}

.footer-content {
    margin-top: 130px;
}

/* Сторінка Доставка та оплата */
.delivery-payment {
    display: block;
    padding: 40px 0;
    margin-top: 130px;
    background-color: #fff;
}

.delivery-payment .container {
    max-width: 83%;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
}

.delivery-payment h2 {
    font-size: 30px;
    margin-bottom: 60px;
    color: #1b1f37;
    text-align: center;
    font-weight: 500;
}

.delivery-section, .payment-section {
    margin-bottom: 50px;
}

.delivery-section h3, .payment-section h3 {
    font-size: 24px;
    font-weight: 400;
    color: #1b1f37;
    margin-bottom: 40px;
    margin-top: 40px;
}

.delivery-section p, .payment-section p {
    font-size: 20px;
    color: #1b1f37;
    margin-bottom: 20px;
}

.delivery-section ul, .payment-section ul {
    list-style-type: circle;
    color: #1b1f37;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 300;
}

.delivery-section ul li, .payment-section ul li {
    margin-bottom: 10px;
    font-size: 18px;
}

/* Сторінка Повернення та обмін */
.returns-exchanges {
    margin-top: 130px;
    padding: 40px 0;
    background-color: #fff;
}

.returns-exchanges .container {
    max-width: 83%;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
}

.returns-exchanges h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 60px;
    color: #1b1f37;
    font-weight: 500;
}

.returns-section h3, .exchanges-section h3 {
    font-size: 24px;
    color: #1b1f37;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 40px;
}

.returns-section p, .exchanges-section p, .contact-section p {
    font-size: 20px;
    color: #1b1f37;
    margin-bottom: 20px;
}

.returns-section ul, .exchanges-section ul {
    list-style-type: circle;
    font-family: 'Comfortaa', sans-serif;
    color: #1b1f37;
    font-weight: 300;
}

.returns-section ul li, .exchanges-section ul li {
    margin-bottom: 30px;
    font-size: 18px;
}

.contact-section {
    font-weight: 400;
    font-size: 16px;
    color: #1b1f37;
}

/* Сторінка Політика конфіденційності */
.privacy-policy {
    margin-top: 130px;
    padding: 40px 0;
    background-color: #fff;
    display: block;
}

.privacy-policy .container {
    max-width: 83%;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
}

.privacy-policy h2 {
    text-align: center;
    font-size: 30px;
    color: #1b1f37;
    font-weight: 500;
    margin-bottom: 60px;
}

.privacy-policy h3 {
    font-size: 24px;
    color: #1b1f37;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 20px;
}

.privacy-policy p {
    font-size: 20px;
    color: #1b1f37;
    margin-bottom: 30px;
    line-height: 1.6;
}

.privacy-policy ul {
    list-style-type: circle;
    color: #1b1f37;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 300;
}

.privacy-policy ul li {
    margin-bottom: 30px;
    font-size: 18px;
}