/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #0c0c0c;
  background-color: #fcfbfc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #0c0c0c;
  color: white;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #888888;
  max-width: 400px;
  z-index: 2000;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-popup h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.cookie-popup p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-popup a {
  color: #fff;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-btn {
  position: relative;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cookie-btn.accept {
  background: white;
  color: #0c0c0c;
}

.cookie-btn.refuse {
  background: white;
  color: #0c0c0c;
}

.cookie-btn::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(/wp-content/themes/tunzerimo.com/assets/images/btn-icon.png) center / contain no-repeat;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  font-family: Roboto;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;

  color: #0c0c0c;
  text-decoration: none;
}

.nav-link {
  color: #0c0c0c;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;

  transition: color 0.3s;
}

.nav-link:hover {
  color: #666;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #0c0c0c;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 60px 0;
  background: #f8f9fa;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-title {
  width: 100%;
  max-width: 800px;
  font-family: Roboto;
  font-weight: 500;
  font-style: Medium;
  font-size: 112px;
  line-height: 90%;
  letter-spacing: 0%;
  word-break: break-word;

  color: #0c0c0c;

  margin-bottom: 2px;
}

.hero-middle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 56px;
  align-items: flex-end;
  margin-bottom: 32px;
}

@media (min-width: 1200px) {
  .hero-middle {
    flex-direction: row;
  }
}

.hero-text {
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  text-align: right;
  max-width: 356px;
  width: 100%;

  color: #0c0c0c;
}

.hero-subtext {
  font-size: 14px;
  color: #888;
}

.hero-images {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
  height: 340px;
}

@media (max-width: 390px) {
  .hero-grid {
  }
}

.hero-image-1 {
  grid-column: 1 / 2;
}

.hero-image-2 {
  grid-column: 2 / 3;
}

.hero-image-3 {
  grid-column: 3 / 4;
}

.hero-image {
  overflow: hidden;
  border-radius: 10px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Category Sections */
.category-section {
  padding: 60px 0;
}

.men-section {
  background: #0c0c0c;
  color: white;
}

.women-section {
  background: #0c0c0c;
}

.children-section {
  background: #0c0c0c;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 40px;
}

.section-header h2 {
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 56px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;

  color: #ffffff;
}

.section-header p {
  max-width: 600px;
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 130.00000000000001%;
  letter-spacing: 0%;

  color: #fff;
}

.men-section .section-header p,
.women-section .section-header p,
.children-section .section-header p {
  color: For Women;
}

.catalog-btn {
  position: relative;
  background: white;
  color: #0c0c0c;
  padding: 12px 66px 12px 24px !important;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  white-space: nowrap;
}

.catalog-btn::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(/wp-content/themes/tunzerimo.com/assets/images/btn-icon.png) center / contain no-repeat;
}

.men-section .catalog-btn {
  background: white;
  color: #0c0c0c;
}

.catalog-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.category-images {
  width: 100%;
}

.category-grid {
  display: grid;
  gap: 15px;
}

.men-grid {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 540px;
}

.men-grid .category-image-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.men-grid .category-image-small-1 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.men-grid .category-image-small-2 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.women-grid {
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr 1fr;
  height: 540px;
}

.women-grid .category-image-1 {
  grid-column: 1 / 2;
}

.women-grid .category-image-2 {
  grid-column: 1 / 2;
}

.women-grid .category-image-3 {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

.children-grid {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 682px;
}

.children-grid .category-image-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.children-grid .category-image-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.children-grid .category-image-3 {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.category-image {
  overflow: hidden;
  border-radius: 10px;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 0;
  background: #f8f9fa;
}

.testimonials-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1200px) {
  .testimonials-content {
    flex-direction: row;
  }
}

.testimonials-header h2 {
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 56px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;

  margin-bottom: 40px;
  max-width: 600px;

  color: #0c0c0c;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(414px, 1fr));
  gap: 30px;
}

.testimonial {
  position: relative;
  padding: 12px;
  height: 505px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.3)
  );
  z-index: 1;
}

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

.testimonial-emily {
  background: url(/wp-content/themes/tunzerimo.com/assets/images/customer-1.jpg) center/cover no-repeat;
}

.testimonial-james {
  background: url(/wp-content/themes/tunzerimo.com/assets/images/customer-2.jpg) center/cover no-repeat;
}

.testimonial-sophie {
  background: url(/wp-content/themes/tunzerimo.com/assets/images/customer-3.jpg) center/cover no-repeat;
}

.testimonial-michael {
  background: url(/wp-content/themes/tunzerimo.com/assets/images/customer-4.jpg) center/cover no-repeat;
}

.testimonial-content {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  background-color: #fff;
  color: #0c0c0c;
  padding: 12px;
}

.testimonial-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #0c0c0c;
}

.stars {
  color: #000000;
  margin-bottom: 15px;
  font-size: 20px;
}

.testimonial-content p {
  color: #0c0c0c;
  line-height: 1.6;
  font-size: 14px;
  line-height: 110%;
}

/* Story Section */
.story {
  color: white;
}

.story-content {
  padding-block: 180px 24px;
  padding-inline: 24px;
  border-radius: 10px;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(/wp-content/themes/tunzerimo.com/assets/images/story-bg.jpg) center / cover no-repeat;
}

@media (min-width: 1200px) {
  .story-content {
    padding-block: 376px 32px;
    padding-inline: 32px;
  }
}

.story-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100% !important;
}

@media (min-width: 1200px) {
  .story-bottom {
    flex-direction: row;
  }
}

.story-image {
  overflow: hidden;
  border-radius: 15px;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.story-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.story-bottom p {
  width: 100%;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.6;
}

@media (min-width: 1200px) {
  .story-bottom {
    width: 260px;
  }
}

.story .catalog-btn {
  margin-top: 20px;
}

.story-text h2 {
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 56px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;

  color: #fff;
}

/* Blog Section */
.blog {
  padding: 60px 0;
  background: white;
}

.blog h2 {
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 56px;
  line-height: 110.00000000000001%;
  color: #0c0c0c;
  letter-spacing: 0%;

  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(276px, 1fr));
  gap: 24px;
}

.blog-post {
  position: relative;
  height: 565px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
}

.blog-post::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.3)
  );
  z-index: 1;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-post-trends {
  background: url(/wp-content/themes/tunzerimo.com/assets/images/blog-1.jpg) center/cover no-repeat;
}

.blog-post-running {
  background: url(/wp-content/themes/tunzerimo.com/assets/images/blog-2.jpg) center/cover no-repeat;
}

.blog-post-sophie {
  background: url(/wp-content/themes/tunzerimo.com/assets/images/blog-3.jpg) center/cover no-repeat;
}

.blog-post-michael {
  background: url(/wp-content/themes/tunzerimo.com/assets/images/blog-4.jpg) center/cover no-repeat;
}

.blog-content {
  position: relative;
  z-index: 2;
  padding: 12px;
  color: #0c0c0c;
  background-color: #fff;
  border-radius: 10px;
}

.blog-content h3 {
  margin-bottom: 15px;
}

.blog-content h3 {
  color: #0c0c0c;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.blog-content h3 a:hover {
  color: #0c0c0c;
}

.blog-content p {
  color: #0c0c0c;
  line-height: 1.6;
  font-size: 14px;
}

/* Footer */
.footer {
  background: #ffffff;
  color: #0c0c0c;
  padding: 40px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 4fr 1fr 1fr;
  justify-items: space-between;
  gap: 40px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-section h3 {
  font-family: Roboto;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0px;
  text-transform: capitalize;

  margin-bottom: 32px;
}

.footer-section p {
  color: #0c0c0c;
  margin-bottom: 32px;
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #0c0c0c;
  text-decoration: none;
  transition: color 0.3s;
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
}

.footer-section ul li a:hover {
  color: #858585;
}

/* Catalog Page Styles */
.catalog-hero {
  padding: 40px 0;
  background: #f8f9fa;
  text-align: center;
}

.catalog-hero h1 {
  font-family: Roboto;
  font-weight: 500;
  font-style: Medium;
  font-size: 112px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: left;

  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .catalog-hero h1 {
    font-size: 50px;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 60px 0;
}

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

.product-card {
  border-radius: 20px;

  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  padding: 12px;
  display: flex;
  align-items: flex-end;
  height: 435px;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-grid a {
  border-radius: 20px;
}

.product-grid a:nth-child(1) {
  background: url(/wp-content/themes/tunzerimo.com/assets/images/classic-oxford.jpg) center / cover no-repeat;
}

.product-grid a:nth-child(2) {
  background: url(/wp-content/themes/tunzerimo.com/assets/images/urban-runner.jpg) center / cover no-repeat;
}

.product-grid a:nth-of-type(3) {
  background: url(/wp-content/themes/tunzerimo.com/assets/images/elegant-stiletto.jpg) center / cover
    no-repeat;
}

.product-grid a:nth-of-type(4) {
  background: url(/wp-content/themes/tunzerimo.com/assets/images/cozy-winter.jpg) center / cover no-repeat;
}

.product-grid a:nth-of-type(5) {
  background: url(/wp-content/themes/tunzerimo.com/assets/images/kids-playtime.jpg) center / cover no-repeat;
}

.product-grid a:nth-of-type(6) {
  background: url(/wp-content/themes/tunzerimo.com/assets/images/casual-slip-on.jpg) center / cover no-repeat;
}

.product-info {
  width: 100%;
  padding: 12px;
  background-color: #fff;
  border-radius: 10px;
}

.product-info h3 {
  font-family: Roboto;
  font-weight: 600;
  font-size: 20px;
  line-height: 110.00000000000001%;
  letter-spacing: 5%;

  margin-bottom: 12px;
  color: #0c0c0c;
}

.product-info h3:hover {
  color: #666;
}

.product-price {
  text-align: right;
  font-family: Roboto;
  font-weight: 500;
  font-size: 32px;
  line-height: 110.00000000000001%;
  letter-spacing: 5%;

  color: #0c0c0c;
}

/* Product Detail Page Styles */
.product-detail {
  padding: 60px 0;
}

.product-detail-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-detail-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 12px;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info {
  border-radius: 10px;
  padding: 12px;
  background-color: #0c0c0c;
  color: #fff;
  height: 428px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .product-detail-info {
    height: fit-content;
  }
}

.product-detail-info h1 {
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 56px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;

  margin-bottom: 12px;
}

.product-detail-price {
  font-family: Roboto;
  font-weight: 600;
  font-size: 20px;
  line-height: 110.00000000000001%;
  letter-spacing: 5%;

  color: #fff;

  margin-bottom: 20px;
}

.product-detail-description {
  color: #fff;

  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;

  margin-bottom: 30px;
}

.product-detail-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.buy-btn {
  background: #0c0c0c;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s;
}

.buy-btn::after {
  content: "↗";
  font-size: 16px;
}

.buy-btn:hover {
  background: #555;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: 70px;
    margin-bottom: 24px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-text h2 {
    font-size: 28px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cookie-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .blog-post {
    height: 490px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 40px 0;
  }

  .category-section {
    padding: 40px 0;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .story {
    padding: 40px 0;
  }

  .story-text h2 {
    font-size: 24px;
  }

  .blog {
    padding: 40px 0;
  }

  .blog h2 {
    font-size: 28px;
  }
}

.policy {
  padding-block: 60px;
  color: #0c0c0c;
}

.policy__title {
  font-family: Roboto;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 32px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
  text-align: center;
  margin-bottom: 48px;
}

.policy__text {
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0%;
}

.policy__text p,
.policy__text h2,
.policy__text ul,
.policy__text ol {
  margin-bottom: 14px;
}

.policy__text ul {
  list-style: none;
}

@media (min-width: 1200px) {
  .policy {
    padding-block: 80px;
  }

  .policy__title {
    font-size: 36px;
  }
}
