/* ==========================
   CUTIKRAFTS COLOR SYSTEM
========================== */
:root {
  --ck-primary: #1f6f8b;
  --ck-primary-dark: #155a70;
  --ck-primary-soft: #e7f3f7;

  --ck-bg-page: #ffffff;
  --ck-bg-card: #f1f7fa;

  --ck-text-heading: #0f172a;
  --ck-text-body: #334155;
  --ck-text-muted: #64748b;
}

body {
  background: var(--ck-bg-page);
  color: var(--ck-text-body);
}

/* ==========================
   HERO
========================== */
.ck-single-hero {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  filter: saturate(0.9) contrast(0.95);
}


.ck-hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
}

.ck-single-hero h1 {
  font-size: 40px;
  font-weight: 600;
  margin-top: 8px;
}

.ck-product-breadcrumb {
  font-size: 14px;
  opacity: .9;
}

/* ==========================
   PRODUCT SECTION
========================== */
.ck-single-product {
  padding: 90px 0;
  margin-top: -80px;
  position: relative;
  z-index: 5;
}

/* MAIN PRODUCT CARD */
.ck-product-card-lg {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;

  background: linear-gradient(
    180deg,
    var(--ck-bg-card),
    #eef6f9
  );

  padding: 60px;
  border-radius: 32px;

  box-shadow: 0 30px 80px rgba(31,111,139,.18);
}

/* IMAGE BOX */
.ck-product-img-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  text-align: center;

  box-shadow: 0 18px 45px rgba(31,111,139,.22);
}

.ck-product-img-wrap img {
  max-width: 100%;
  height: auto;
}

/* CONTENT */
.ck-product-type {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;

  color: var(--ck-primary);
  background: var(--ck-primary-soft);

  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.ck-product-info h2 {
  font-size: 34px;
  font-weight: 600;
  color: var(--ck-text-heading);
  margin-bottom: 8px;
}

.ck-variant {
  font-size: 15px;
  color: var(--ck-text-muted);
  margin-bottom: 20px;
}

.ck-product-info h4 {
  margin-top: 26px;
  font-size: 17px;
  font-weight: 600;
}

.ck-product-info ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.ck-product-info ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

.ck-product-info ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--ck-primary);
  font-weight: 700;
}

/* BUTTON */
.ck-btn-primary {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;

  background: var(--ck-primary);
  color: #ffffff;

  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: .3s;
}

.ck-btn-primary:hover {
  background: var(--ck-primary-dark);
  transform: translateY(-2px);
}

/* ==========================
   RELATED PRODUCTS
========================== */
.ck-related-products {
  padding: 90px 0;
  background: #ffffff;
}

.ck-related-products h3 {
  font-size: 28px;
  color: var(--ck-text-heading);
}

.ck-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 30px;
  margin-top: 30px;
}

.ck-related-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(31,111,139,.15);
  transition: .3s;
}

.ck-related-card:hover {
  transform: translateY(-6px);
}

.ck-related-card img {
  max-height: 180px;
  object-fit: contain;
}

.ck-related-card h4 {
  margin-top: 14px;
  font-size: 16px;
  color: var(--ck-text-heading);
}
/* MAIN PRODUCT CARD HOVER */
.ck-product-card-lg {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ck-product-card-lg:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 100px rgba(31, 111, 139, 0.28);
}
/* PRODUCT IMAGE HOVER */
.ck-product-img-wrap {
  overflow: hidden;
}

.ck-product-img-wrap img {
  transition: transform 0.45s ease;
}

.ck-product-card-lg:hover .ck-product-img-wrap img {
  transform: scale(1.08);
}
/* BUTTON HOVER */
.ck-btn-primary {
  transition: background 0.3s ease, transform 0.3s ease;
}

.ck-btn-primary:hover {
  background: var(--ck-primary-dark);
  transform: translateY(-2px);
}
/* RELATED PRODUCT CARD HOVER */
.ck-related-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ck-related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(31, 111, 139, 0.3);
}
.ck-related-card img {
  transition: transform 0.35s ease;
}

.ck-related-card:hover img {
  transform: scale(1.08);
}
.ck-product-card-lg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  box-shadow: 0 0 0 rgba(31, 111, 139, 0);
  transition: box-shadow 0.4s ease;
  pointer-events: none;
}

.ck-product-card-lg:hover::after {
  box-shadow: 0 0 0 1px rgba(31, 111, 139, 0.15);
}
.ck-single-hero {
  padding-top: var(--header-height);
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 992px) {
  .ck-product-card-lg {
    grid-template-columns: 1fr;
    padding: 40px;
    border-radius: 26px;
  }

  .ck-single-product {
    margin-top: -40px;
  }
}
@media (max-width: 768px) {
  .ck-single-hero {
    min-height: 300px;
    padding: 60px 0 40px;
  }

  .ck-single-hero h1 {
    font-size: 28px;
  }
}
/*single product video*/

.ck-product-video-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.ck-product-video {
  max-width: 900px;
  margin: 0 auto;
}

.ck-product-video video,
.ck-product-video iframe {
  width: 100%;
  border-radius: 16px;
  display: block;
}
.ck-product-video video {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}
