


/* Mobile-First CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Mobile Header */
.mobile-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 215, 0, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 24px 0;
    background: #fff;
}

.offer-banner {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 24px;
    border: 2px solid #dc3545;
}

.flash-text {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.offer-banner p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Product Gallery */
.product-gallery {
    margin-bottom: 24px;
}

.main-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.main-image {
    width: 100%;
    max-width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.image-indicator {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.thumbnail-container {
    display: flex;
    justify-content: center;
}

.thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.thumbnails::-webkit-scrollbar {
    display: none;
}

.thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
    flex-shrink: 0;
}

.thumb:hover,
.thumb.active {
    opacity: 1;
    border-color: #ffd700;
    transform: scale(1.05);
}

/* Rating Section */
.rating-section {
    text-align: center;
    margin-bottom: 20px;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

/* Product Title */
.product-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #1a1a2e, #16213e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features List */
.features-list {
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.feature-icon {
    font-size: 1rem;
    font-weight: 700;
    color: #28a745;
    background: none;
    flex-shrink: 0;
}

/* Pricing Section */
.pricing-section {
    text-align: left;
    margin-bottom: 32px;
}

.price-label {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 8px;
    display: block;
}

.price-group {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc3545;
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}


/* CTA Button */
.cta-button {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Product Details Section */
.product-details-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.spec-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-4px);
}

.spec-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.spec-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.spec-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Product Description Section */
.product-description-section {
    padding: 60px 0;
    background: white;
}

.description-text {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 24px;
    text-align: left;
}

.description-block {
  margin-bottom: 8px;
}

.description-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    text-align: left;
}

.description-image {
  margin: 8px 0;
    text-align: center;
}

.desc-img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .desc-img {
        max-width: 500px;
        height: 350px;
    }
}

/* Investment Benefits Section */
.investment-section {
  padding: 10px 0 60px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.benefit-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Comparison Section */
.comparison-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(45deg, #1a1a2e, #16213e);
    color: white;
    font-weight: 700;
}

.comparison-header > div {
    padding: 16px;
    text-align: center;
}

.eagle-col {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  min-height: 60px;
  font-size: 0.9rem;
  word-break: break-word;
  hyphens: auto;
}

.feature-col {
    text-align: left !important;
    justify-content: flex-start !important;
    font-weight: 600;
    color: #333;
  padding: 12px 8px;
  font-size: 0.85rem;
}

.eagle-col {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a2e;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 12px 8px;
}

.other-col {
  font-size: 0.85rem;
  padding: 12px 8px;
}

/* Mobile-specific fixes for comparison table */
@media (max-width: 767px) {
  .comparison-table {
    font-size: 0.8rem;
  }
  
  .comparison-header > div,
  .comparison-row > div {
    padding: 10px 6px;
    min-height: 50px;
    font-size: 0.75rem;
  }
  
  .feature-col {
    font-size: 0.7rem;
    line-height: 1.2;
  }
  
  .eagle-col,
  .other-col {
    font-size: 0.7rem;
  }
}
/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-toggle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #27ae60;
}

.faq-answer {
    padding: 20px;
    background: white;
    border-top: 1px solid #eee;
    display: block !important;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
}

.trust-section .section-title {
    color: white;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

.security-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.badge {
    background: rgba(255, 215, 0, 0.2);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Reviews Section */
.reviews-section {
    background: #f8f9fa;
    padding: 40px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.overall-rating {
    text-align: center;
    margin-bottom: 32px;
}

.rating-summary {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: inline-block;
}

.big-stars {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.rating-summary p {
    color: #666;
    font-size: 0.9rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.review {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #ffd700;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.verified-buyer {
    color: #27ae60;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.review-stars {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #ffd700;
}

.review-text {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Checkout Section */
.checkout-section {
    padding: 40px 0;
    background: #fff;
}

.checkout-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 32px;
}

.checkout-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    max-width: 600px;
    margin: 0 auto;
}

.product-summary {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.product-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.product-details h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.price-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.summary-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
}

.summary-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.summary-savings {
    background: #27ae60;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.quantity-section {
    margin-bottom: 24px;
}

.quantity-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.quantity-section select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
}

.payment-section {
    margin-bottom: 24px;
}

.wallet-area {
    text-align: center;
}

.wallet-btn,
.pay-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.wallet-btn:hover,
.pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.wallet-connected {
    text-align: center;
}

.wallet-connected p {
    margin-bottom: 16px;
    color: #666;
    font-size: 0.9rem;
}

.security-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.security-item {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

.scarcity-message {
    text-align: center;
    color: #dc3545;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 16px;
    padding: 8px 16px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 4px 0;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.8rem;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .trust-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .security-badges {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .container {
        padding: 0 24px;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .trust-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .main-image {
        max-width: 400px;
        height: 400px;
    }
    
    .thumb {
        width: 70px;
        height: 70px;
    }
    
    .product-title {
        font-size: 2.5rem;
    }
    
    .current-price {
        font-size: 3rem;
    }
    
    .reviews-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .container {
        padding: 0 32px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .main-image {
        max-width: 450px;
        height: 450px;
    }
    
    .product-title {
        font-size: 3rem;
    }
    
    .features-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 800px;
        margin: 0 auto 32px;
    }
    
    .feature-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .price-row {
        flex-direction: row;
        justify-content: center;
    }
    
    .reviews-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .product-title {
        font-size: 3.5rem;
    }
    
    .current-price {
        font-size: 3.5rem;
    }
}






/* ===== Description content: readable width on desktop, fluid on mobile ===== */
.product-description-section .container {
  max-width: 760px !important;   /* keep text & images narrower */
  margin: 0 auto;
  padding: 0 16px;
}

/* Center each image block and hard-cap its size */
.product-description-section .description-image {
  display: flex;
  justify-content: center;
  margin: 12px auto;
  width: 100%;
}

/* Force image to be responsive but never exceed cap */
.product-description-section .desc-img {
  width: 100% !important;
  max-width: clamp(280px, 92vw, 560px) !important; /* mobile→desktop */
  height: auto !important;
  display: block;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

/* (Optional) also cap the main gallery image */
.product-gallery .main-image-wrapper {
  display: flex; justify-content: center;
}
.product-gallery .main-image {
  width: 100% !important;
  max-width: 600px !important;
  height: auto !important;
  object-fit: contain;
}
