@charset "UTF-8";
.product-detail {
  padding: 0 var(--grid-margin, 1.25em) 60px;
  max-width: 1550px;
  margin: 0 auto;
}

.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media (max-width: 768px) {
  .product-detail-inner {
    grid-template-columns: 1fr;
  }
}
/* ── Gallery ── */
.product-gallery {
  position: relative;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  background: #D1EDFB;
  margin-bottom: 12px;
  position: relative;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}

/* Carousel wrapper */
.gallery-thumbs-carousel {
  position: relative;
  overflow: hidden;
}

.gallery-thumbs-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.72, 0.17, 0.17, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.72, 0.17, 0.17, 1);
  transition: transform 0.35s cubic-bezier(0.72, 0.17, 0.17, 1);
  transition: transform 0.35s cubic-bezier(0.72, 0.17, 0.17, 1), -webkit-transform 0.35s cubic-bezier(0.72, 0.17, 0.17, 1);
}

.gallery-thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(20% - 8px);
          flex: 0 0 calc(20% - 8px);
  min-width: 0;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: #D1EDFB;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.gallery-thumb.active {
  border-color: var(--base-blue);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.gallery-thumb:hover img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: white;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 2;
  -webkit-box-shadow: 0 2px 8px rgba(15, 126, 179, 0.18);
          box-shadow: 0 2px 8px rgba(15, 126, 179, 0.18);
  color: var(--base-blue);
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.carousel-btn:hover {
  background: var(--base-blue);
  color: white;
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-btn svg {
  width: 12px;
  height: 12px;
}

/* ── Product Info ── */
.product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.product-category {
  font-size: 16px;
}
@media screen and (min-width: 640px) {
  .product-category {
    font-size: calc(16px + 6 * (100vw - 640px) / 800);
  }
}
@media screen and (min-width: 1440px) {
  .product-category {
    font-size: 22px;
  }
}
.product-category {
  font-weight: 400;
  color: var(--base-blue);
  letter-spacing: 0.06em;
}

.product-title {
  font-family: "Roboto", sans-serif;
}
.product-title {
  font-size: 48px;
}
@media screen and (min-width: 640px) {
  .product-title {
    font-size: calc(48px + 12 * (100vw - 640px) / 800);
  }
}
@media screen and (min-width: 1440px) {
  .product-title {
    font-size: 60px;
  }
}
.product-title {
  font-weight: 900;
  color: var(--base-blue);
  line-height: 1.1;
  margin: 0;
}

.product-price {
  font-family: "Roboto", sans-serif;
}
.product-price {
  font-size: 28px;
}
@media screen and (min-width: 640px) {
  .product-price {
    font-size: calc(28px + 12 * (100vw - 640px) / 800);
  }
}
@media screen and (min-width: 1440px) {
  .product-price {
    font-size: 40px;
  }
}
.product-price {
  font-weight: 900;
  color: var(--base-blue);
}

.product-desc {
  font-size: 16px;
}
@media screen and (min-width: 640px) {
  .product-desc {
    font-size: calc(16px + 4 * (100vw - 640px) / 800);
  }
}
@media screen and (min-width: 1440px) {
  .product-desc {
    font-size: 20px;
  }
}
.product-desc {
  line-height: 1.6;
  color: #272727;
}

/* Quantity */
.qty-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.qty-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--base-blue);
}

.qty-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  border: 1.5px solid var(--base-blue);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  width: 34px;
  height: 34px;
  font-size: 1.2rem;
  color: var(--base-blue);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: rgba(15, 126, 179, 0.08);
}

.qty-display {
  width: 40px;
  text-align: center;
  font-weight: 600;
  color: var(--base-blue);
  font-size: 0.95rem;
  border-left: 1.5px solid var(--base-blue);
  border-right: 1.5px solid var(--base-blue);
  height: 34px;
  line-height: 34px;
}

/* Add to cart row */
.atc-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.btn-atc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: var(--base-blue);
  color: white;
  border: none;
  border-radius: 55px;
  padding: 24px 24px;
  font-family: "Roboto Condensed", sans-serif;
}
.btn-atc {
  font-size: 24px;
}
@media screen and (min-width: 640px) {
  .btn-atc {
    font-size: calc(24px + 4 * (100vw - 640px) / 800);
  }
}
@media screen and (min-width: 1440px) {
  .btn-atc {
    font-size: 28px;
  }
}
.btn-atc {
  font-weight: 700;
  letter-spacing: -0.5%;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, transform 0.15s;
  transition: background 0.2s, transform 0.15s, -webkit-transform 0.15s;
}

.btn-atc:hover {
  background: var(--light-blue);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.btn-go-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 55px;
  padding: 24px 24px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5%;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--base-blue);
  background: transparent;
  border: 2px solid var(--base-blue);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-go-to-cart:hover {
  background: var(--base-blue);
  color: #fff;
  transform: translateY(-1px);
}

.btn-wishlist {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--base-blue);
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.btn-wishlist:hover {
  background: var(--base-blue);
  color: white;
}

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

/* Key features */
.key-features {
  background: white;
  border-radius: 14px;
  padding: 32px;
}

.key-features h4 {
  font-family: "Roboto Condensed", sans-serif;
}
.key-features h4 {
  font-size: 24px;
}
@media screen and (min-width: 640px) {
  .key-features h4 {
    font-size: calc(24px + 8 * (100vw - 640px) / 800);
  }
}
@media screen and (min-width: 1440px) {
  .key-features h4 {
    font-size: 32px;
  }
}
.key-features h4 {
  font-weight: 900;
  letter-spacing: -0.5%;
  text-transform: uppercase;
  color: var(--base-blue);
  margin-bottom: 14px;
}

.key-features ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.key-features li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.key-features li {
  font-size: 16px;
}
@media screen and (min-width: 640px) {
  .key-features li {
    font-size: calc(16px + 2 * (100vw - 640px) / 800);
  }
}
@media screen and (min-width: 1440px) {
  .key-features li {
    font-size: 18px;
  }
}
.key-features li {
  color: #272727;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--base-blue);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0.5;
}

/* ── Technical Specs ── */
.specs-section {
  max-width: 1550px;
  margin: 0 auto 60px;
  padding: 0 var(--grid-margin, 1.25em);
}

.specs-box {
  background: #D1EDFB;
  border-radius: 16px;
  padding: 64px 32px 32px;
}

.specs-title {
  font-family: "Roboto Condensed", sans-serif;
}
.specs-title {
  font-size: 24px;
}
@media screen and (min-width: 640px) {
  .specs-title {
    font-size: calc(24px + 8 * (100vw - 640px) / 800);
  }
}
@media screen and (min-width: 1440px) {
  .specs-title {
    font-size: 32px;
  }
}
.specs-title {
  font-weight: 900;
  letter-spacing: -0.5%;
  text-transform: uppercase;
  color: var(--base-blue);
  text-align: center;
  margin-bottom: 24px;
}

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

@media (max-width: 600px) {
  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.spec-item {
  background: white;
  border-radius: 10px;
  padding: 14px 16px;
}

.spec-label {
  font-size: 0.72rem;
  color: var(--base-blue);
  opacity: 0.55;
  margin-bottom: 4px;
  font-weight: 500;
}

.spec-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--base-blue);
}

.usp-section::after {
  content: "";
  background: url(../img/bg_lines.svg) no-repeat center center;
  position: absolute;
  top: 5%;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-size: 100%;
}/*# sourceMappingURL=tubystyle_product.css.map */