.cr-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-top: 55px;
}

.cr-header h1 {
  font-size: 40px;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.cr-header h1 span {
  color: #6d88ed;
}

.cr-header p {
  font-size: 18px;
  color: #555;
  margin: 0 auto 30px;
  max-width: 700px;
  position: relative;
  z-index: 2;
}


.cr-suggest-button {
  background: linear-gradient(135deg, #6d88ed, #5b74d6);
  color: #fff;
  padding: 8px 32px;
  border-radius: 9999px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cr-suggest-button:hover {
  background: linear-gradient(135deg, #5b74d6, #6d88ed);
  transform: translateY(-2px);
  color: #fff;
}

.cr-header-decor {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 395px;
  height: 100px;
  pointer-events: none;
  z-index: 1;
}

.decor-circle {
  position: absolute;
  top: 10px;
  left: 0;
  width: 25px;
  height: 25px;
  background: #7bdcb5;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.decor-star {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  animation: rotate 10s linear infinite;
}

.decor-wave {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
  width: 100px;
  height: 10px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cr-archive-wrapper {
  display: flex;
  gap: 30px;
  margin-bottom: 65px;
}

.cr-recommendations-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 0 0 70%;
}

.cr-recommendations-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Card */
.recommendation-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.recommendation-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Card Header */
.cr-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 12px;
}

.cr-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cr-user-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.cr-user-info {
  font-size: 15px;
  color: #333;
}

.cr-user-info strong {
  color: #6d88ed;
}

/* Card Content */
.cr-card-content {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  margin-top: 10px;
}

/* Product */
.cr-product-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px dashed #ddd;
  padding-top: 15px;
  margin-top: 15px;
}

.cr-product-image img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 12px;
}

.cr-product-texts {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #555;
}

.cr-product-texts p {
  margin-bottom: 0!important;
}

.cr-product-link a {
  text-decoration: none;
  margin-right: 15px;
  font-weight: 500;
  font-size: 17px;
}

.cr-product-link a:hover {
  text-decoration: underline;
}

/* load more */
.cr-load-more {
  background: linear-gradient(135deg, #6d88ed, #5b74d6);
  color: #fff;
  padding: 10px 40px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  width: max-content;
  margin: 0 auto;
}

.cr-load-more:hover {
  background: linear-gradient(135deg, #5b74d6, #6d88ed);
  transform: translateY(-2px);
}

/* Sidebar */
.cr-sidebar {
  width: 30%;
  height: fit-content;
}

.cr-sidebar .sidebar-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.cr-sidebar .cr-product-link a {
  color: #6e6d6d;
  font-weight: 500;
  margin-top: 5px;
  display: block;
  font-size: 14px;
}

.sidebar-box h2 {
  font-size: 24px;
  color: #c96e44;
  margin: 0 0 10px;
  border-bottom: 1px dashed #ebebeb;
  font-weight: 600;
}

.sidebar-box p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

.cr-spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #6d88ed;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 0.8s linear infinite;
  margin: auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Sidebar Product */
.sidebar-product {
  background: #f5f4f3;
  padding: 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  border: 1px solid #dddddd;
}

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

.sidebar-product-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
}

.sidebar-product-info strong {
  font-size: 16px;
  color: #c96e44;
}

.sidebar-product-info strong a {
  font-size: 16px;
  color: #c96e44;
}

.sidebar-product-info small {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .cr-archive-wrapper {
      flex-direction: column;
  }

  .cr-recommendations-area,
  .cr-sidebar {
      width: 100%;
  }

  .cr-sidebar {
      margin-top: 30px;
  }
}

.like-wrapper {
    display: flex;
    justify-content: space-around;
    flex-flow: row wrap;
    width: 50%;
  }
  .like-button {
    border-radius: 50%;
    color: #878787;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: grayscale(100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #f5f5f5;
    width: 40px;
    height: 40px;
}
.like-button.liked {
    filter: grayscale(0);
}
  .like-button:hover {
    border-color: currentColor;
  }
  
  .like-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    position: relative;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAyMSAxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAuMTAxIDQuNDE3UzguODk1LjIwNyA1LjExMS4yMDdjLTQuNDY1IDAtMTAuOTY3IDYuODQ2IDUuMDgyIDE3LjU5MkMyNS4yMzcgNy4wMyAxOS42NjUuMjAyIDE1LjUwMS4yMDJjLTQuMTYyIDAtNS40IDQuMjE1LTUuNCA0LjIxNXoiIGZpbGw9IiNGRjZFNkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==") no-repeat center;
    background-size: 100%;
    -webkit-animation: heartUnlike 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    animation: heartUnlike 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
  
  .liked .like-icon {
    -webkit-animation: heartPulse 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
            animation: heartPulse 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  }
  .liked .like-icon [class^=heart-animation-] {
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAyMSAxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAuMTAxIDQuNDE3UzguODk1LjIwNyA1LjExMS4yMDdjLTQuNDY1IDAtMTAuOTY3IDYuODQ2IDUuMDgyIDE3LjU5MkMyNS4yMzcgNy4wMyAxOS42NjUuMjAyIDE1LjUwMS4yMDJjLTQuMTYyIDAtNS40IDQuMjE1LTUuNCA0LjIxNXoiIGZpbGw9IiNGRjZFNkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==") no-repeat center;
    background-size: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 14px;
    opacity: 0;
  }
  .liked .like-icon [class^=heart-animation-]::before, .liked .like-icon [class^=heart-animation-]::after {
    content: "";
    background: inherit;
    background-size: 100%;
    width: inherit;
    height: inherit;
    display: inherit;
    position: relative;
    top: inherit;
    left: inherit;
    opacity: 0;
  }
  .liked .like-icon .heart-animation-1 {
    -webkit-animation: heartFloatMain-1 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
            animation: heartFloatMain-1 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  }
  .liked .like-icon .heart-animation-1::before, .liked .like-icon .heart-animation-1::after {
    width: 12px;
    height: 10px;
    visibility: hidden;
  }
  .liked .like-icon .heart-animation-1::before {
    opacity: 0.6;
    -webkit-animation: heartFloatSub-1 1s 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
            animation: heartFloatSub-1 1s 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  }
  .liked .like-icon .heart-animation-1::after {
    -webkit-animation: heartFloatSub-2 1s 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
            animation: heartFloatSub-2 1s 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    opacity: 0.75;
  }
  .liked .like-icon .heart-animation-2 {
    -webkit-animation: heartFloatMain-2 1s 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
            animation: heartFloatMain-2 1s 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  }
  .liked .like-icon .heart-animation-2::before, .liked .like-icon .heart-animation-2::after {
    width: 10px;
    height: 8px;
    visibility: hidden;
  }
  .liked .like-icon .heart-animation-2::before {
    -webkit-animation: heartFloatSub-3 1s 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
            animation: heartFloatSub-3 1s 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    opacity: 0.25;
  }
  .liked .like-icon .heart-animation-2::after {
    -webkit-animation: heartFloatSub-4 1s 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
            animation: heartFloatSub-4 1s 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    opacity: 0.4;
  }
  
  @-webkit-keyframes heartPulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
  }
  
  @keyframes heartPulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
  }
  @-webkit-keyframes heartUnlike {
    50% {
      transform: scale(0.75);
    }
  }
  @keyframes heartUnlike {
    50% {
      transform: scale(0.75);
    }
  }
  @-webkit-keyframes heartFloatMain-1 {
    0% {
      opacity: 0;
      transform: translate(0) rotate(0);
    }
    50% {
      opacity: 1;
      transform: translate(0, -25px) rotate(-20deg);
    }
  }
  @keyframes heartFloatMain-1 {
    0% {
      opacity: 0;
      transform: translate(0) rotate(0);
    }
    50% {
      opacity: 1;
      transform: translate(0, -25px) rotate(-20deg);
    }
  }
  @-webkit-keyframes heartFloatMain-2 {
    0% {
      opacity: 0;
      transform: translate(0) rotate(0) scale(0);
    }
    50% {
      opacity: 0.9;
      transform: translate(-10px, -38px) rotate(25deg) scale(1);
    }
  }
  @keyframes heartFloatMain-2 {
    0% {
      opacity: 0;
      transform: translate(0) rotate(0) scale(0);
    }
    50% {
      opacity: 0.9;
      transform: translate(-10px, -38px) rotate(25deg) scale(1);
    }
  }
  @-webkit-keyframes heartFloatSub-1 {
    0% {
      visibility: hidden;
      transform: translate(0) rotate(0);
    }
    50% {
      visibility: visible;
      transform: translate(13px, -13px) rotate(30deg);
    }
  }
  @keyframes heartFloatSub-1 {
    0% {
      visibility: hidden;
      transform: translate(0) rotate(0);
    }
    50% {
      visibility: visible;
      transform: translate(13px, -13px) rotate(30deg);
    }
  }
  @-webkit-keyframes heartFloatSub-2 {
    0% {
      visibility: hidden;
      transform: translate(0) rotate(0);
    }
    50% {
      visibility: visible;
      transform: translate(18px, -10px) rotate(55deg);
    }
  }
  @keyframes heartFloatSub-2 {
    0% {
      visibility: hidden;
      transform: translate(0) rotate(0);
    }
    50% {
      visibility: visible;
      transform: translate(18px, -10px) rotate(55deg);
    }
  }
  @-webkit-keyframes heartFloatSub-3 {
    0% {
      visibility: hidden;
      transform: translate(0) rotate(0);
    }
    50% {
      visibility: visible;
      transform: translate(-10px, -10px) rotate(-40deg);
    }
    100% {
      transform: translate(-50px, 0);
    }
  }
  @keyframes heartFloatSub-3 {
    0% {
      visibility: hidden;
      transform: translate(0) rotate(0);
    }
    50% {
      visibility: visible;
      transform: translate(-10px, -10px) rotate(-40deg);
    }
    100% {
      transform: translate(-50px, 0);
    }
  }
  @-webkit-keyframes heartFloatSub-4 {
    0% {
      visibility: hidden;
      transform: translate(0) rotate(0);
    }
    50% {
      visibility: visible;
      transform: translate(2px, -18px) rotate(-25deg);
    }
  }
  @keyframes heartFloatSub-4 {
    0% {
      visibility: hidden;
      transform: translate(0) rotate(0);
    }
    50% {
      visibility: visible;
      transform: translate(2px, -18px) rotate(-25deg);
    }
  }
  .cr-comments-area {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
  /* Comment */
  .cr-comments-area .cr-comment-list,
  .cr-comments-area .cr-subcomment-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  /* Single Comment */
  .cr-comments-area .cr-single-comment {
    background: #fff;
    box-shadow: 0 2px 8px rgb(0 0 0 / 5%);
    border-radius: 8px;
    padding: 15px;
    position: relative;
}
  /* Comment İmages */
  .cr-comments-area .cr-comment-avatar img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
  }
  /* Comment Content */
  .cr-comments-area .cr-comment-content {
    flex: 1;
  }
  .cr-comments-area .cr-comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 8px;
    color: #6d88ed;
    font-weight: 600;
  }
  .cr-comments-area .cr-comment-time {
    font-size: 12px;
    color: #999;
  }
  .cr-comments-area .cr-comment-body {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
  }
  /* Relpy Button */
  .cr-comments-area .cr-reply-button {
    background: none;
    border: none;
    color: #6d88ed;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    padding: 0;
    transition: color 0.3s ease;
  }
  
  .cr-comments-area .cr-reply-button:hover {
    color: #5b74d6;
  }
  .cr-comments-area .cr-reply-form, .cr-comments-area .cr-main-comment-form {
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
  .cr-comments-area .cr-textarea textarea {
    width: 100%;
    min-height: 80px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    font-size: 15px;
    resize: vertical;
  }
  .cr-comments-area .cr-submit button {
    align-self: flex-end;
    background: linear-gradient(135deg, #6d88ed, #5b74d6);
    color: #fff;
    padding: 8px 24px;
    border: none;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .cr-comments-area .cr-submit button:hover {
    background: linear-gradient(135deg, #5b74d6, #6d88ed);
    transform: translateY(-2px);
  }

  .cr-comments-area .cr-subcomment-list .cr-single-comment {
    width: 100%;
    flex-direction: column;
  }
  
  /* Child Comment */
  .cr-comments-area .cr-subcomment-list {
    list-style: none;
    margin: 0;
    padding-left: 30px;
    margin-top: 10px;
    border-left: 2px dashed #ddd;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  