/* Page-specific styles extracted from product.html */

  /* Product Details Specific Styles */
  .product-detail-section {
    padding: 60px 0 100px;
    background: var(--bg);
  }
  .product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  
  /* Image Gallery */
  .product-gallery {
    position: sticky;
    top: 120px;
  }
  .main-image-container {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
  }
  .main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s var(--ease-out);
  }
  .main-image-container:hover img {
    transform: scale(1.05);
  }
  .badge-new {
    position: absolute;
    top: 24px; left: 24px;
    background: linear-gradient(135deg, var(--coral), #ff8a6a);
    color: white;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
  }

  .mobile-zoomed {
    position: fixed !important;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95) !important;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
  }
  .mobile-zoomed img {
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain !important;
  }
  .mobile-zoomed::after {
    content: "✕ Close";
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    pointer-events: none;
  }
  .mobile-zoomed .reference-image-overlay,
  .mobile-zoomed .badge-new {
    display: none !important;
  }

  /* Product Info */
  .product-breadcrumb {
    font-size: 13px;
    color: var(--navy-soft);
    margin-bottom: 16px;
  }
  .product-breadcrumb a { color: var(--navy-soft); transition: color 0.3s; }
  .product-breadcrumb a:hover { color: var(--coral); }
  
  .product-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  
  .product-price-large {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }
  .product-price-large small {
    font-size: 18px;
    color: var(--navy-soft);
    text-decoration: line-through;
    font-weight: 400;
  }
  
  .product-desc {
    font-size: 16px;
    color: var(--navy-soft);
    line-height: 1.7;
    margin-bottom: 32px;
  }
  
  /* Highlights */
  .product-highlights {
    background: var(--surface-solid);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
  }
  .highlight-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(78, 205, 196, 0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }

  /* Actions */
  .product-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
  }
  .qty-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-full);
    padding: 0 16px;
    height: 54px;
    background: var(--surface-solid);
  }
  .qty-btn {
    background: none; border: none; font-size: 18px; cursor: pointer; color: var(--navy-soft); padding: 0 8px; transition: color 0.3s;
  }
  .qty-btn:hover { color: var(--coral); }
  .qty-input {
    width: 40px; text-align: center; border: none; font-family: var(--font-body); font-weight: 600; font-size: 16px; background: transparent;
  }
  
  .btn-add-cart {
    flex: 1;
    height: 54px;
    font-size: 16px;
  }
  .btn-buy-now {
    flex: 1;
    height: 54px;
    font-size: 16px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .btn-buy-now:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  /* Share & Extras */
  .product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--navy-soft);
  }
  .share-icons {
    display: flex;
    gap: 12px;
  }
  .share-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s;
  }
  .share-icon:hover {
    background: var(--coral); color: white; border-color: var(--coral); transform: translateY(-2px);
  }
  
  /* Skeleton Loader */
  .skeleton { background: #eee; border-radius: 4px; animation: pulse-bg 1.5s infinite; }
  @keyframes pulse-bg { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

  @media (max-width: 900px) {
    .product-layout { grid-template-columns: 1fr; gap: 40px; }
    .product-gallery { position: relative; top: 0; }
    .product-actions { flex-direction: column; }
    .qty-selector { justify-content: space-between; }
    .product-highlights { grid-template-columns: 1fr; }
  }

  @media (max-width: 680px) {
    .main-image-container { padding: 24px; }
    .product-title { font-size: 28px; }
    .product-price-large { font-size: 28px; }
    .product-highlights { padding: 16px; gap: 12px; }
    .product-detail-section { padding: 30px 0 60px; }
  }

  /* Reviews Styles */
  .reviews-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid var(--border-light);
  }
  .review-card {
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    gap: 16px;
  }
  .review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    overflow: hidden;
  }
  .review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .review-content {
    flex: 1;
  }
  .review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
  }
  .review-author {
    font-weight: 600;
    color: var(--navy);
    font-size: 16px;
  }
  .review-date {
    font-size: 13px;
    color: var(--navy-soft);
  }
  .review-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 8px;
  }
  .review-text {
    font-size: 15px;
    color: var(--navy-soft);
    line-height: 1.6;
  }
  .no-reviews {
    text-align: center;
    padding: 40px;
    color: var(--navy-soft);
    background: #f8fafc;
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-light);
  }
