body{
    background: #090452;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Image ko stretch hone se bachayega aur cut karke fit karega */
  object-position: center; /* Image ka center hissa hamesha beech mein dikhega */
  display: block;
}
:root {
    --bg-dark-blue: #0a1128; /* Aapka website tone */
    --neon-blue: #00e5ff;
    --neon-glow: rgba(0, 229, 255, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.07);
    --text-silver: #a0aec0;
}

.adidas-showcase-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
}

.section-title-box {
    text-align: center;
    margin-bottom: 50px;
}

.brand-sub {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--neon-blue);
    font-weight: 700;
}

.section-title-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 10px 0;
    letter-spacing: -1px;
}

.section-title-box p {
    font-size: 16px;
    color: var(--text-silver);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Fluid Auto-Responsive Grid System */
.product-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); /* Is se boxes choti screens par compress nahi honge */
    gap: 30px;
}

/* Luxury Glassmorphic Card Style */
.shoe-review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shoe-review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.1);
}

.shoe-img-holder {
    position: relative;
    width: 100%;
    height: 220px;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.shoe-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain; /* Picture stretch nahi hogi */
    transition: transform 0.4s ease;
}

.shoe-review-card:hover .shoe-img {
    transform: scale(1.06) rotate(-3px); /* Hover premium sneak effect */
}

/* Premium Badges */
.shoe-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
}
.shoe-tag.trending { background: var(--neon-blue); color: #000; }
.shoe-tag.comfort { background: #2ed573; color: #fff; }
.shoe-tag.classic { background: #ff4757; color: #fff; }

.shoe-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.shoe-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.shoe-category {
    font-size: 12px;
    color: var(--neon-blue);
    font-weight: 600;
    text-transform: uppercase;
}

.shoe-stars {
    font-size: 13px;
    color: #ffffff;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    border-radius: 6px;
}

.shoe-details h3 {
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.shoe-details p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-silver);
    margin: 0 0 25px 0;
    flex: 1; /* Pushes button to bottom evenly */
}

/* Shiny Neon Explore Review Button */
.explore-review-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.explore-review-btn:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.explore-review-btn svg {
    transition: transform 0.2s ease;
}

.explore-review-btn:hover svg {
    transform: translateX(3px);
}

/* Smart Grid Breakpoint Optimizer */
@media (max-width: 768px) {
    .section-title-box h2 {
        font-size: 28px;
    }
    .product-review-grid {
        grid-template-columns: 1fr; /* Mobile par automatic wide cards ho jayenge */
    }
}


.premium-split-showcase {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
}

.split-section-header {
    text-align: left;
    margin-bottom: 60px;
    border-left: 3px solid #00e5ff;
    padding-left: 20px;
}

.tech-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00e5ff;
    font-weight: 700;
}

.split-section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin: 8px 0;
}

.split-section-header p {
    font-size: 15px;
    color: #a0aec0;
    margin: 0;
}

.split-cards-container {
    display: flex;
    flex-direction: column;
    gap: 50px; /* Cards ke darmiyan gap */
}

/* Base Card Style */
.split-review-card {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Automatically alternates layouts for every second card on desktop */
.split-review-card.inverted-layout {
    flex-direction: row-reverse;
}

.split-review-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

/* Image container */
.split-img-box {
    flex: 1;
    min-height: 320px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 30px;
}

.split-shoe-pic {
    max-width: 85%;
    max-height: 240px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.split-review-card:hover .split-shoe-pic {
    transform: scale(1.05) translateY(-5px);
}

/* Floating Rating Badge */
.score-floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #00e5ff;
    color: #000000;
    font-size: 14px;
    font-weight: 800;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

/* Content Container */
.split-info-box {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-series {
    font-size: 12px;
    color: #00e5ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.split-info-box h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 8px 0 16px 0;
}

.split-description {
    font-size: 14px;
    line-height: 1.7;
    color: #a0aec0;
    margin: 0 0 20px 0;
}

.split-mini-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 13px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 15px;
    border-radius: 8px;
    width: max-content;
}

/* Premium Text-Based Button Link */
.split-action-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    width: max-content;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.split-action-link:hover {
    color: #00e5ff;
    border-color: #00e5ff;
}

.split-action-link .arrow-icon {
    transition: transform 0.3s ease;
}

.split-action-link:hover .arrow-icon {
    transform: translateX(6px);
}

/* Complete Mobile Responsive Reflow Control */
@media (max-width: 820px) {
    .split-review-card, 
    .split-review-card.inverted-layout {
        flex-direction: column; /* Mobile par automatic wide text content ke niche stack ho jayega */
    }
    
    .split-img-box {
        min-height: 250px;
        padding: 20px;
    }
    
    .split-info-box {
        padding: 30px 20px;
    }

    .split-info-box h3 {
        font-size: 22px;
    }
    
    .split-mini-specs {
        width: 100%;
        box-sizing: border-box;
        justify-content: space-around;
    }

    .split-action-link {
        width: 100%;
        justify-content: center;
        background: rgba(0, 229, 255, 0.1);
        border: 1px solid rgba(0, 229, 255, 0.2);
        padding: 14px;
        border-radius: 12px;
        color: #00e5ff;
    }
    
    .split-action-link:hover {
        background: #00e5ff;
        color: #000000;
    }
}



.performance-metrics-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
}

.metrics-header {
    text-align: center;
    margin-bottom: 70px;
}

.neon-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #00e5ff;
    font-weight: 700;
}

.metrics-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin: 10px 0;
}

.metrics-header p {
    font-size: 15px;
    color: #a0aec0;
    max-width: 500px;
    margin: 0 auto;
}

/* 3-Column Modern Architecture */
.metrics-display-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.metrics-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Technical Feature Card Grid */
.metric-feature-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-3px);
}

.metric-icon {
    font-size: 24px;
    background: rgba(0, 229, 255, 0.08);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 229, 255, 0.15);
    flex-shrink: 0; /* Icon box ko chota chota hone se rokega */
}

.metric-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.metric-info p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #a0aec0;
    margin: 0;
}

/* Center Visual Stage area */
.metrics-center-showcase {
    flex: 1.2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.center-glow-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: breathingGlow 4s ease-in-out infinite;
}

.center-anatomy-img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

@keyframes breathingGlow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* 100% Adaptive Mobile System Without Squeezing */
@media (max-width: 968px) {
    .metrics-display-container {
        flex-direction: column; /* Grid breaks cleanly into a flat line */
        gap: 30px;
    }
    
    .metrics-center-showcase {
        order: -1; /* Mobile par shoe photo sabse upar aa jayegi structural check ke liye */
        width: 100%;
        padding: 10px 0;
    }
    
    .center-anatomy-img {
        max-height: 260px;
    }

    .metrics-side {
        width: 100%;
        gap: 20px;
    }
    
    .metric-feature-card {
        padding: 20px;
    }
}
.vs-showdown-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
}

.vs-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.vs-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff4757; /* Electric Red Badge */
    background: rgba(255, 71, 87, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
}

.vs-section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin: 12px 0;
}

.vs-section-header p {
    font-size: 15px;
    color: #a0aec0;
    max-width: 550px;
    margin: 0 auto;
}

/* Arena Split System */
.vs-arena-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}

/* Competitor Card */
.vs-competitor-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.vs-competitor-card:hover {
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contender-left:hover { border-color: #00e5ff; } /* Adidas side neon glow */
.contender-right:hover { border-color: #ff4757; } /* Nike side red glow */

.vs-img-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 15px;
    box-sizing: border-box;
}

.vs-shoe-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.vs-competitor-card:hover .vs-shoe-image {
    transform: scale(1.05) rotate(2px);
}

.vs-brand-label {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    opacity: 0.3;
    color: #ffffff;
}

/* Specs Panel */
.vs-specs-panel {
    margin-top: 25px;
    text-align: left;
}

.vs-specs-panel h3 {
    font-size: 22px;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.vs-rating-sticker {
    font-size: 13px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    width: max-content;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    margin-bottom: 20px;
}

.vs-bullets-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vs-bullets-list li {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding-bottom: 8px;
}

/* Center Divider Elements */
.vs-divider-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    position: relative;
}

.vs-circle-badge {
    background: #ffffff;
    color: #000000;
    font-size: 14px;
    font-weight: 900;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.vs-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* Master Mobile Reflow Breakpoint */
@media (max-width: 850px) {
    .vs-arena-container {
        flex-direction: column; /* Side-by-side elements vertical ho jayenge */
        gap: 40px;
    }

    .vs-divider-center {
        width: 100%;
        height: 40px;
        flex-direction: row;
    }

    .vs-line {
        width: 100%;
        height: 1px;
    }
    
    .vs-competitor-card {
        width: 100%;
        padding: 25px;
    }
}

.community-verdict-section {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
}

.verdict-header {
    text-align: left;
    margin-bottom: 50px;
}

.verdict-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b6b; /* Nike Accent Color */
    font-weight: 700;
}

.verdict-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 8px 0;
}

.verdict-header p {
    font-size: 15px;
    color: #a0aec0;
    margin: 0;
}

/* Fluid Feed Engine */
.verdict-feed-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr)); /* Two columns on desktop, automatic flat line on mobile */
    gap: 30px;
}

.verdict-feed-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease;
}

.verdict-feed-card:hover {
    border-color: rgba(255, 107, 107, 0.2);
}

.verdict-user-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.user-avatar-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border: 1px solid rgba(255, 107, 107, 0.15);
}

.user-profile {
    flex: 1;
    text-align: left;
}

.user-profile h5 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.user-location {
    font-size: 12px;
    color: #718096;
}

.user-badge-score {
    font-size: 14px;
    font-weight: 800;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 107, 107, 0.15);
}

.user-badge-score.text-orange {
    color: #ff9f43;
    background: rgba(255, 159, 67, 0.05);
    border-color: rgba(255, 159, 67, 0.15);
}

.user-comment-text {
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5e0;
    text-align: left;
    margin: 0 0 25px 0;
    font-style: italic;
}

.verdict-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 15px;
}

.shoe-model-tagged {
    font-size: 12px;
    font-weight: 600;
    color: #718096;
    background: rgba(255, 255, 255, 0.02);
    padding: 4px 10px;
    border-radius: 6px;
}

.upvote-action-btn {
    background: transparent;
    border: none;
    color: #ff6b6b;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.upvote-action-btn:hover {
    opacity: 0.8;
}

/* Intelligent Mobile Screen Reflow */
@media (max-width: 600px) {
    .verdict-feed-container {
        grid-template-columns: 1fr; /* Mobile screen widths force single box items straight line */
    }
    
    .verdict-feed-card {
        padding: 20px;
    }
    
    .verdict-card-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .upvote-action-btn {
        width: 100%;
        text-align: left;
        padding: 6px 0;
    }
}





/* Purane saare code ko override karne ke liye sabse neeche likhein */
img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}
