/* General Styling */
body {
    font-family: "Titillium Web", sans-serif; 
    margin: 0;
    padding: 20px;
    background-color: rgb(244, 230, 230);
}

/* Header */
  .bestsellers-hero {
  background: linear-gradient(135deg, #2c1a0e 0%, #5c2d0e 50%, #922b21 100%);
  padding: 20px;
  padding-top: 40px;
  padding-bottom: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;   
  margin-top: 38px;
  margin-bottom: 23px;
}

/* glow effect */
.bestsellers-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(192, 57, 43, 0.2) 0%, transparent 50%);
}

/* badge */
.hero-badge {
  display: inline-block;
  background: #d4a017;
  color: #2c1a0e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-top: 45px;
  margin-bottom: 5px;
  position: relative;
}

/* heading */
.bestsellers-hero h1 {
  font-family: "Titillium Web", sans-serif; 
  font-size: 52px;
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
  margin-top: 5px;
  position: relative;
}

.bestsellers-hero h1 span {
  color: #d4a017;
}

/* description */
.bestsellers-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
/* Reviews Section  */
.reviews {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 27px;
    padding: 24px 28px;
    max-width: 1200px;
    margin: 0 auto;
   
}

/* Review Cards */
.review-card {
    background: #fff;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.09);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Card image */
.card-img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}

/* Card body */
.card-body {
    padding: 8px 10px 10px;
}

.card-body p {
    font-size: 20px;
    color: #555;
    line-height: 1.35;
    margin: 0 0 8px 0;
}

/* Customer info */
.customer-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.customer-info h4 {
    margin: 0 0 1px 0;
    font-size: 11px;
    color: #B77466;
}

.customer-info .stars {
    font-size: 10px;
}

/* Customer image */
.customer-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1.5px solid #f0d0c0;
}

/* Hover */
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.add-review {
    background: #fff3e0;
    padding: 30px;
    text-align: center;
    
}

.review-container {
    width: 500px;
    background: white;
    padding: 25px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 0 10px gray;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 8px;
    margin: 8px 0 15px 0;
    border-radius: 5px;
    border: 1px solid gray;
    box-sizing: border-box;
}

textarea {
    height: 80px;
}

button {
    width: 50%;
    padding: 10px;
    display: block;
    margin: 0 auto;
    background: #922b21;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #4b5320;
}

.add-review select {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.add-review button {
    background-color: rgb(113, 18, 18);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.add-review button:hover {
    background-color: #4c531c;
}

/* Footer */
.footer {
    background: rgba(30, 5, 5, 0.97);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 10px 0;
    margin-top: 0;
}

/* Container */
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 14px;
    padding: 0 24px;
    align-items: start;
}

/* Sections */
.footer-section h3 {
    margin-bottom: 8px;
}

.footer-section p {
    font-size: 14px;
    color: #ccc;
    margin: 5px 0;
}

/* About Section */
.about-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Logo */
.logo-box img {
    width: 120px;
}

/* Description */
.desc-box {
    max-width: 400px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    font-size: 16px;
}

/* Tagline */
.tagline-2 {
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
    color: #ddd;
    font-weight: 600;
}

/* Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 6px 0;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
}

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

/* Contact */
.contact-link {
    display: block;
    color: #ccc;
    margin: 4px 0;
    text-decoration: none;
}

.contact-link:hover {
    color: white;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    border-top: 1px solid #333;
    font-size: 13px;
}

.social-icons {
    margin-top: 10px;
    padding-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: right;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.1);
}