

    .sf-compare-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      padding: 60px 10%;
      align-items: center;
    }
    .sf-left-box, .sf-right-box {
      text-align: center;
    }
    .sf-left-box h2 {
      font-size: 28px;
      margin-bottom: 10px;
      color: #222;
    }
    .sf-left-box p {
      font-size: 16px;
      color: #666;
      margin-bottom: 40px;
    }
    .sf-items-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      justify-items: center;
    }
    .sf-item {
      text-align: center;
    }
    .sf-item img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #ddd;
    }
    .sf-item p {
      margin-top: 10px;
      font-size: 14px;
      color: #222;
    }
    .sf-right-box h2 {
      font-size: 28px;
      color: #b30000;
      margin-bottom: 10px;
    }
    .sf-right-box p {
      font-size: 16px;
      color: #666;
      margin-bottom: 20px;
    }
    .sf-right-box img {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #ccc;
    }
    .sf-right-box h3 {
      margin-top: 20px;
      font-size: 18px;
      font-weight: bold;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .sf-compare-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
      }
    }
.premium-products {
    background: #fdfdfd;
}
.premium-subtitle {
    color: #b37400;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.premium-title {
    font-size: 2rem;
    color: #222;
}

/* Card */
.premium-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Image & Overlay */
.premium-thumb {
    overflow: hidden;
}
.premium-img {
    transition: transform 0.5s ease;
}
.premium-card:hover .premium-img {
    transform: scale(1.08);
}
.premium-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    transition: opacity 0.4s ease;
    flex-direction: column;
    gap: 10px;
}
.premium-card:hover .premium-overlay {
    opacity: 1;
}

/* Buttons */
.premium-btn {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    color: #fff;
}
.premium-card:hover .premium-btn {
    opacity: 1;
    transform: translateY(0);
}
.btn-buy {
    background: #b02427;
}
.btn-buy:hover {
    background: #b02409;
}
.btn-details {
    background: #007bff;
}
.btn-details:hover {
    background: #0069d9;
}

/* Price */
.premium-price {
    font-size: 16px;
}
.price-current {
    color: #28a745;
}
.price-old {
    color: #888;
}
