.ct-product-wrapper {
  width: 100%;
  padding: 80px 20px;
}

.ct-product-container {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* =========================
       LEFT GALLERY
    ========================== */

.ct-product-gallery {
  position: sticky;
  top: 30px;
}

.ct-product-main-image {
  width: 100%;
  height: 620px;
  background: var(--white-color);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--divider-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.ct-product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.ct-product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.ct-product-thumb {
  height: 120px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s ease;
  background: var(--white-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.ct-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ct-product-thumb:hover {
  transform: translateY(-4px);
}

.ct-product-thumb.active {
  border-color: var(--accent-color);
}

/* =========================
       RIGHT CONTENT
    ========================== */

.ct-product-content {
  padding-top: 10px;
}

.ct-product-tag {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3em;
  text-transform: capitalize;
  color: #926600;
  border: 1px solid #D1A132;
  background-color: #fff0cb;
  background-image: url('../images/icon-sparkle-brown.svg');
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 18px auto;
  border-radius: 10px;
  padding: 8px 15px 8px 40px;
  margin-bottom: 10px;
}

.ct-product-title {
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 0;
  cursor: none;
  padding-bottom: 20px;
}

.ct-product-subtitle {
  font-size: 22px;
  color: var(--accent-dark-color);
  font-family: var(--accent-font);
  margin-bottom: 24px;
  font-weight: 500;
}

.ct-product-description {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 32px;
}

.ct-product-features {
  list-style: none;
  margin-bottom: 40px;
}

.ct-product-features li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  color: var(--primary-color);
  font-weight: 500;
}

.ct-product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-light-color);
  color: var(--accent-dark-color);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* =========================
       BUTTONS
    ========================== */

.ct-product-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ct-buy-btn {
  min-width: 220px;
  text-decoration: none;
  padding: 18px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ct-buy-btn svg {
  width: 20px;
  height: 20px;
}

.ct-amazon-btn {
  background: var(--primary-color);
  color: var(--white-color);
}

.ct-amazon-btn:hover {
  background: #134219;
  transform: translateY(-3px);
}

.ct-flipkart-btn {
  background: var(--accent-color);
  color: var(--primary-color);
}

.ct-flipkart-btn:hover {
  background: #e1b64f;
  transform: translateY(-3px);
}

/* =========================
       RESPONSIVE
    ========================== */

@media(max-width:1100px) {

  .ct-product-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ct-product-gallery {
    position: relative;
    top: 0;
  }

  .ct-product-main-image {
    height: 500px;
  }
}

@media(max-width:768px) {

  .ct-product-wrapper {
    padding: 60px 15px;
  }

  .ct-product-title {
    font-size: 38px;
  }

  .ct-product-subtitle {
    font-size: 20px;
  }

  .ct-product-main-image {
    height: 380px;
    border-radius: 22px;
  }

  .ct-product-thumbnails {
    gap: 12px;
  }

  .ct-product-thumb {
    height: 85px;
    border-radius: 14px;
  }

  .ct-buy-btn {
    width: 100%;
  }
}

/* =========================
   PERFECTLY ALIGNED FEATURE LIST
========================= */

.ctpd-product-features-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

.ctpd-product-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;

  color: var(--primary-color);
  font-weight: 500;
  font-family: var(--default-font);
  line-height: 1.7;
}

.ctpd-product-feature-item::before {
  content: "✓";

  min-width: 22px;
  width: 22px;
  height: 22px;

  border-radius: 50%;
  background: var(--accent-light-color);
  color: var(--accent-dark-color);

  font-size: 12px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 3px;
  flex-shrink: 0;
}


/* ====================================
       SECTION
    ==================================== */

.ctsp-specialties-section {
  position: relative;
  overflow: hidden;

  padding: 120px 20px;

  background: linear-gradient(180deg,
      #f6efe4 0%,
      #fffaf3 100%);
}

.ctsp-container {
  max-width: 1280px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* ====================================
       FLOATING SHAPES
    ==================================== */

.ctsp-floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 1;
}

.ctsp-shape-one {
  width: 320px;
  height: 320px;
  background: rgba(209, 161, 50, 0.10);
  top: -120px;
  right: -100px;
}

.ctsp-shape-two {
  width: 280px;
  height: 280px;
  background: rgba(10, 44, 15, 0.05);
  bottom: -120px;
  left: -100px;
}

/* ====================================
       HEADER
    ==================================== */

.ctsp-heading-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.ctsp-subtitle {
 display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3em;
    text-transform: capitalize;
    color: #926600;
    border: 1px solid #D1A132;
	background-color: #fff0cb;
    background-image: url('../images/icon-sparkle-brown.svg');
	background-repeat: no-repeat;
	background-position: left 15px center;
	background-size: 18px auto;
    border-radius: 10px;
    padding: 8px 15px 8px 40px;
    margin-bottom: 10px;
}

.ctsp-subtitle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
}

.ctsp-title {
  font-size: 58px;
  line-height: 1.1;
  color: var(--primary-color);
  font-family: var(--accent-font);
  margin-bottom: 22px;
  font-weight: 600;
}

.ctsp-description {
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.9;
}

/* ====================================
       GRID
    ==================================== */

.ctsp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ====================================
       CARD
    ==================================== */

.ctsp-card {
  position: relative;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.7);

  border-radius: 30px;

  padding: 40px;

  overflow: hidden;

  transition: 0.4s ease;
}

.ctsp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.ctsp-card-overlay {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background: linear-gradient(90deg,
      var(--accent-color),
      #f3d27a);
}

/* ====================================
       CARD TOP
    ==================================== */

.ctsp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 30px;
}

.ctsp-icon-wrap {
  width: 72px;
  height: 72px;

  border-radius: 22px;

  background: var(--accent-light-color);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--accent-dark-color);

  font-size: 34px;

  transition: 0.3s ease;
}

.ctsp-card:hover .ctsp-icon-wrap {
  transform: rotate(-6deg) scale(1.05);
}

.ctsp-card-number {
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  color: rgba(10, 44, 15, 0.08);
}

/* ====================================
       CONTENT
    ==================================== */

.ctsp-card-title {
  font-size: 30px;
  line-height: 1.25;
  color: var(--primary-color);
  margin-bottom: 18px;
  font-family: var(--accent-font);
  font-weight: 600;
}

.ctsp-card-text {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 30px;
}

/* ====================================
       LIST
    ==================================== */

.ctsp-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ctsp-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  margin-bottom: 18px;

  color: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.ctsp-feature-list li::before {
  content: "✓";

  min-width: 24px;
  width: 24px;
  height: 24px;

  border-radius: 50%;

  background: var(--accent-light-color);
  color: var(--accent-dark-color);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 700;

  margin-top: 1px;
}

/* ====================================
       RESPONSIVE
    ==================================== */

@media(max-width:1100px) {

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

  .ctsp-title {
    font-size: 46px;
  }
}

@media(max-width:768px) {

  .ctsp-specialties-section {
    padding: 90px 15px;
  }

  .ctsp-title {
    font-size: 36px;
  }

  .ctsp-card {
    padding: 32px 28px;
    border-radius: 24px;
  }

  .ctsp-card-title {
    font-size: 26px;
  }

  .ctsp-card-number {
    font-size: 42px;
  }
}