.product-showcase {
    padding-top: 140px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

.showcase-card {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    padding: 30px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.05);
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.showcase-container {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    /* Slightly more balanced for text */
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "gallery header"
        "gallery actions";
    gap: 0 70px;
    align-items: stretch;
}

.gallery-container {
    grid-area: gallery;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showcase-header {
    grid-area: header;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* More breathing room */
    text-align: right;
}

.showcase-actions {
    grid-area: actions;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 5px;
}

.shipping-notice {
    margin-top: auto;
    /* This pushes ONLY the shipping notice to the bottom */
    padding-top: 20px;
}

/* Gallery Styles */
.main-image-wrap {
    background: #ffffff00;
    border-radius: 32px;
    padding: 20px;
    /* More inner padding */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-image-wrap:hover {
    transform: translateY(-5px) scale(1.01);
}

.main-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: opacity 0.4s ease;
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.thumb-item {
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.thumb-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.thumb-item.active {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.1);
}

.thumb-item:hover {
    transform: translateY(-3px);
}

/* Dots Navigation (Visible on both PC and Mobile) */
.dots-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.nav-btn {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.nav-btn:hover {
    color: var(--primary);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}

.badges-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.title-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 10px;
}

.pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.showcase-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-top: 30px;
    color: var(--text-main);
    letter-spacing: -1px;
}

.showcase-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 100%;
    text-align: right;
    opacity: 0.9;
}

.showcase-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    justify-content: flex-start;
}

.showcase-price .val {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -1px;
}

.showcase-price .cur {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
}

.mobile-price-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -10px;
    margin-bottom: 15px;
    width: 100%;
    border-radius: 20px;
    position: relative;
}

.special-badge {
    position: absolute;
    top: -12px;
    right: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-text {
    background: #BA4B53;
    color: white;
    padding: 4px 14px;
    border-radius: 8px;
    font-size: 0.5rem;
    font-weight: 800;
}

.badge-time {
    color: #BA4B53;
    font-weight: 800;
    font-size: 0.8rem;
    margin-top: 2px;
}

.price-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.price-main .amount {
    font-size: 3rem;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 800;
    color: #000;
    line-height: 1;
    letter-spacing: -1px;
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-flex;
    align-items: flex-start;
    transform: translateY(-1px);
}

.price-main .currency-symbol {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 0.5em;
    font-weight: 700;
    line-height: 1;
    margin-right: 4px;
    transform: translateY(0.3em);
}

.price-main .discount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #BA4B53;
    direction: ltr;
    unicode-bidi: isolate;
    transform: translateY(0.15em);
}

.price-old {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #6b7280;
    font-weight: 700;
    transform: translateY(0.3em);
}

.price-old .old-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #8b92a0;
    
}

.price-old .old-amount {
    font-size: 1rem;
    text-decoration: line-through;
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
    transform: translateY(1px);
}

@media (min-width: 1000px) {
    .mobile-price-container.desktop-only {
        align-items: center;
        flex-direction: row;
        direction: rtl;
        gap: 18px;
        justify-content: flex-start;
        position: static;
        padding-right: 30px;
    }

    .mobile-price-container.desktop-only .special-badge {
        left: 30px;
        right: auto;
        top: 30px;
    }

    .mobile-price-container.desktop-only .price-main {
        direction: rtl;
        justify-content: flex-start;
        margin-bottom: 0;
    }

    .mobile-price-container.desktop-only .price-old {
        direction: rtl;
        justify-content: flex-start;
    }
}

.buy-action {
    display: flex;
    gap: 16px;
}

.buy-btn {
    flex: 1 !important;
    font-size: 1.25rem !important;
    padding: 20px 32px !important;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%) !important;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3) !important;
    border-radius: 16px !important;
    position: relative !important;
    overflow: hidden !important;
}

.buy-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

.buy-btn:hover::after {
    left: 100%;
}

/* Highlights */
.highlights {
    padding: 60px 24px;
    background: #fff;
}

.highlights-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.hl-card {
    padding: 30px;
    background: var(--bg-color);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.hl-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.hl-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.hl-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Tech Specs Redesign - Grid/Schedule Layout */
.tech-specs {
    padding: 80px 24px;
    background: #f8fafc;
}

.specs-container {
    max-width: 1100px;
    margin: 0 auto;
}

.specs-header {
    text-align: center;
    margin-bottom: 50px;
}

.specs-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    background: #fff;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    background: #fdfdfd;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: var(--primary);
    background: #fff;
    transform: scale(1.02);
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.spec-details {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.spec-value {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 700;
}

.nav-back-link {
    padding: 8px 16px;
}

.showcase-desc {
    padding-right: 25px;
    margin-top: 0;
}

.showcase-desc li {
    margin-bottom: 8px;
}

.showcase-desc li:last-child {
    margin-bottom: 0;
}

.desktop-shipping {
    margin-top: 2px;
    color: #10b981;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.desktop-shipping i {
    font-size: 1.6rem;
    opacity: 0.8;
}

.mobile-shipping {
    margin-top: 8px;
    color: #10b981;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
}

.mobile-shipping i {
    font-size: 1.6rem;
}
