/* =============================
   PREMIUM SPORTS PRODUCT PAGE
   Modern Minimalism + Dynamic Sports Style
   ============================= */

/* GENERAL RESET */
.single-product .product-detail-grid,
.single-product .product-info-section,
.single-product .related-products-section {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1a1a;
}

* {
  box-sizing: border-box;
}

/* GRID LAYOUT */
.single-product .product-detail-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  max-width: 1440px;
  margin: 60px auto;
  padding: 0 40px;
  width: 100%;
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);

}

/* ==================== LEFT SIDE — IMAGES ==================== */
.single-product .product-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
  height: fit-content;
}

/* Main Image Container */
.single-product .main-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-product .main-image:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.single-product .main-image img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-product .main-image:hover img {
  transform: scale(1.05);
}

/* Zoom Badge */
.single-product .main-image::after {
  content: "🔍 Click to zoom";
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.75);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.single-product .main-image:hover::after {
  opacity: 1;
}

/* Thumbnail Gallery */
.single-product .thumb-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.single-product .thumb-gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8f9fa;
}

.single-product .thumb-gallery img:hover {
  border-color: #FF6B35;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.2);
}

.single-product .thumb-gallery img.active {
  border-color: #FF6B35;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* ==================== RIGHT SIDE — PRODUCT INFO ==================== */
.single-product .product-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 0;
}

/* Product Title */
.single-product .product-title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.2;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Price Section */
.single-product .product-price {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 2px solid #f0f0f0;
}

.single-product .product-price .amount {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #FF6B35 !important;
  letter-spacing: -0.5px;
}

.single-product .product-price del {
  opacity: 0.5;
  font-size: 22px;
  text-decoration: line-through;
}

.single-product .product-price .onsale {
  background: linear-gradient(135deg, #FF6B35 0%, #ff8555 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Variations Section */
.single-product .variations {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 10px 0;
}

.single-product .variations tr {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.single-product .variations .label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 8px;
}

/* Size & Color Buttons */
.single-product .variations select,
.single-product .variations .value label {
  display: inline-block;
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  min-width: 60px;
  background: white;
  margin-right: 10px;
  margin-bottom: 10px;
}

.single-product .variations select:hover,
.single-product .variations .value label:hover {
  border-color: #FF6B35;
  background: #fff5f2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.single-product .variations .value label.selected,
.single-product .variations select:focus {
  border-color: #FF6B35;
  background: linear-gradient(135deg, #FF6B35 0%, #ff8555 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Quantity */
.single-product .quantity {
  display: flex;
  align-items: center;
  gap: 16px;
}

.single-product .quantity .qty {
  width: 70px;
  height: 50px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s;
}

.single-product .quantity .qty:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Add to Cart Button */
.single-product .single_add_to_cart_button {
  background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%) !important;
  color: #fff !important;
  padding: 18px 0 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* .single-product .single_add_to_cart_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
} */

.single-product .single_add_to_cart_button:hover {
  background: linear-gradient(135deg, #2a2a2a 0%, #4a4a4a 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.single-product .single_add_to_cart_button:hover::before {
  left: 100%;
}

/* Action Buttons */
.single-product .action-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

/* Buy Now Button */
.single-product .buy-now-btn {
  flex: 1;
  background: linear-gradient(135deg, #FF6B35 0%, #ff8555 100%) !important;
  color: white !important;
  padding: 18px 0 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

/* .single-product .buy-now-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
} */

.single-product .buy-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

.single-product .buy-now-btn:hover::before {
  left: 100%;
}

/* Wishlist */
.single-product .wishlist-area {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: white;
}

.single-product .wishlist-area:hover {
  border-color: #FF6B35;
  background: #fff5f2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

/* Contact Box */
.single-product .contact-box {
  padding: 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  margin-top: 16px;
  border: 1px solid #e0e0e0;
}

.single-product .contact-box-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Messenger List */
.single-product .messangers-list-container {
  width: 100%;
}

.single-product .messangers-list {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

.single-product .messangers-list li {
  display: flex;
  flex: 1;
  min-width: 140px;
}

.single-product .messangers-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 14px 18px;
  background: white;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  border: 2px solid #e0e0e0;
}

.single-product .messangers-list a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-color: transparent;
}

.single-product .arcu-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.single-product .arcu-item-icon svg {
  width: 20px;
  height: 20px;
}

.single-product .arcu-item-label .arcu-item-title {
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 500;
  white-space: nowrap;
}

.single-product .messangers-list a:hover .arcu-item-title {
  color: #FF6B35;
  font-weight: 600;
}

/* ==================== PRODUCT INFO SECTION ==================== */
.single-product .product-info-section {
  max-width: 1440px;
  margin: 80px auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
}

.single-product .product-info-section .heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 16px;
}

.single-product .product-info-section .heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35 0%, #ff8555 100%);
  border-radius: 2px;
}

.single-product .basic-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.single-product .basic-info p {
  padding: 16px 20px;
  background: white;
  border-radius: 10px;
  margin: 0;
  font-size: 15px;
  border-left: 3px solid #FF6B35;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.single-product .basic-info strong {
  color: #666;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-product .description-full {
  line-height: 1.8;
  font-size: 16px;
  color: #4a4a4a;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ==================== RELATED PRODUCTS ==================== */
.single-product .related-products-section {
  max-width: 1440px;
  margin: 80px auto;
  padding: 0 40px;
}

.single-product .related-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 16px;
}

.single-product .related-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35 0%, #ff8555 100%);
  border-radius: 2px;
}

.single-product .related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.single-product .related-product-item {
  border-radius: 16px;
  padding: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.single-product .related-product-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,107,53,0.1) 0%, rgba(255,133,85,0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}

.single-product .related-product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: #FF6B35;
}

.single-product .related-product-item:hover::before {
  opacity: 1;
}

.single-product .related-product-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: #f8f9fa;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-product .related-product-item:hover img {
  transform: scale(1.1);
}

.single-product .related-product-item a {
  display: block;
  position: relative;
  overflow: hidden;
}

.single-product .related-product-info {
  padding: 20px;
  position: relative;
  z-index: 2;
  background: white;
}

.single-product .r-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #1a1a1a;
  line-height: 1.4;
  transition: color 0.3s;
}

.single-product .related-product-item:hover .r-title {
  color: #FF6B35;
}

.single-product .r-color {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-product .r-price {
  font-weight: 700;
  font-size: 18px;
  color: #FF6B35;
}

.custom-accordion {
    margin-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.acc-item {
    border-bottom: 1px solid #e5e5e5;
}

.acc-title {
    font-size: 20px;
    font-weight: 700;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.acc-title .arrow {
    transition: 0.3s;
}

.acc-title.active .arrow {
    transform: rotate(180deg);
}

.acc-content {
    display: none;
    padding: 10px 0 20px;
    font-size: 16px;
    line-height: 1.6;
}


/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .single-product .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .single-product .product-left {
    position: static;
  }
}

@media (max-width: 768px) {
  .single-product .product-detail-grid {
    padding: 0 20px;
    margin: 40px auto;
  }
  
  .single-product .product-title { 
    font-size: 28px; 
  }
  
  .single-product .product-price .amount {
    font-size: 26px !important;
  }
  
  .single-product .thumb-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  
  .single-product .thumb-gallery img {
    height: 80px;
  }
  
  .single-product .messangers-list {
    flex-direction: column;
  }
  
  .single-product .messangers-list li {
    width: 100%;
  }
  
  .single-product .product-info-section,
  .single-product .related-products-section {
    padding: 40px 20px;
  }
  
  .single-product .related-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
  }
  
  .single-product .related-product-item img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .single-product .action-buttons {
    flex-direction: column;
  }
  
  .single-product .buy-now-btn {
    width: 100%;
  }
  
  .single-product .basic-info {
    grid-template-columns: 1fr;
  }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.single-product .product-right > * {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.single-product .product-right > *:nth-child(1) { animation-delay: 0.1s; }
.single-product .product-right > *:nth-child(2) { animation-delay: 0.2s; }
.single-product .product-right > *:nth-child(3) { animation-delay: 0.3s; }
.single-product .product-right > *:nth-child(4) { animation-delay: 0.4s; }
.single-product .product-right > *:nth-child(5) { animation-delay: 0.5s; }

/* Loading States */
.single-product .single_add_to_cart_button.loading {
  pointer-events: none;
  opacity: 0.7;
}

.single-product .single_add_to_cart_button.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* Variation Gallery Support */
.single-product .woo-variation-product-gallery {
  max-width: 100% !important;
}

/* Add smooth scrolling */
html {
  scroll-behavior: smooth;
}
.single-product .quantity {
    margin-bottom: 20px;
}