#pro-page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 28px 20px 56px;
}

.top-section-div {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 34px;
    margin-bottom: 28px;
}

.right-section {
    position: sticky;
    top: 108px;
    height: fit-content;
}

.shoe-full-display {
    margin-bottom: 16px;
}

.shoe-full-image {
    width: 100%;
    height: 560px;
    background: linear-gradient(180deg, #f7f9fc 0%, #edf2f8 100%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
    position: relative;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.full-prod-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s;
    padding: 28px;
}

.shoe-full-image:hover .full-prod-image {
    transform: scale(1.03);
}

.watermark-prod {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 84px;
    height: auto;
    opacity: 0.18;
    pointer-events: none;
    z-index: 5;
    filter: drop-shadow(0 8px 18px rgba(15, 23, 42, 0.18));
}

.watermark-small {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 40px;
    height: auto;
    opacity: 0.18;
    pointer-events: none;
    z-index: 2;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.shoe-small-display {
    display: flex;
    gap: 12px;
}

.small-placeholder,
.small-prod-image,
.shoe-small1 {
    width: 110px;
    height: 110px;
    background: linear-gradient(180deg, #f7f9fc 0%, #edf2f8 100%);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.small-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.small-prod-image,
.shoe-small1 {
    position: relative;
}

.small-prod-image img,
.shoesmall1 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
    padding: 12px;
}

.small-prod-image:hover,
.small-prod-image.active,
.shoe-small1:hover {
    border-color: rgba(46, 52, 142, 0.24);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(46, 52, 142, 0.12);
}

.small-prod-image:hover img,
.shoe-small1:hover .shoesmall1 {
    transform: scale(1.05);
}

.other-dets {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.top-dets {
    flex: 1;
    padding: 30px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.06);
}

.product-path {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 13px;
}

.product-path a {
    color: #627187;
    text-decoration: none;
    transition: color 0.2s;
}

.product-path a:hover {
    color: var(--primary-blue);
}

.path-arrow {
    width: 6px;
    height: 6px;
    background: #9aa7bb;
    border-radius: 50%;
}

.pro-full-title {
    margin-bottom: 18px;
}

.pro-full-title h1 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.pro-full-title .brand {
    display: inline-block;
    padding: 8px 14px;
    background: linear-gradient(135deg, #edf4ff, #dfe9ff);
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    border: 1px solid rgba(46, 52, 142, 0.16);
    width: fit-content;
}

.pro-full-title .prod-name {
    font-size: clamp(2rem, 3vw, 3rem);
    color: #111f37;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.product-summary {
    padding: 22px 0 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.pro-page-price {
    margin-bottom: 12px;
}

.pro-page-price h4 {
    color: var(--primary-blue);
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-lead {
    color: #4a5a73;
    line-height: 1.8;
    font-size: 15px;
    margin: 0 0 18px;
}

.product-quick-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.quick-fact {
    padding: 14px 16px;
    background: #f7f9fc;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.quick-fact span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6f7e94;
    margin-bottom: 6px;
}

.quick-fact strong {
    color: #14233a;
    font-size: 15px;
}

.stock-report {
    margin: 22px 0 18px;
}

.stock-report .in-stock,
.stock-report .btn-instock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(16, 185, 129, 0.24);
    box-shadow: none;
}

.stock-report .out-of-stock,
.stock-report .btn-soldout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(239, 68, 68, 0.22);
    box-shadow: none;
}

.stock-report .low-stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: none;
}

.cart-btns {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.cart-add {
    flex: 1;
    display: flex;
    gap: 14px;
}

.cart-qty-div {
    display: flex;
    align-items: center;
    background: #f7f9fc;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.qty-actions {
    width: 44px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-dark);
}

.qty-actions:hover {
    background: var(--primary-blue);
    color: white;
}

.qty-amount {
    min-width: 52px;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
}

.btn-addtocart {
    flex: 1;
    min-height: 52px;
    padding: 0 24px;
    background: linear-gradient(135deg, var(--primary-red), #ef5b4e);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 18px 30px rgba(207, 0, 0, 0.2);
}

.btn-addtocart:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 34px rgba(207, 0, 0, 0.24);
}

.btn-addtocart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

.whatsapp {
    background: linear-gradient(135deg, #f4f8ff, #eef4ff);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(46, 52, 142, 0.1);
}

.whatsapp h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1d2a40;
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.whatsapp h4:last-child {
    margin-bottom: 0;
}

.whatsapp i {
    color: var(--primary-blue);
    font-size: 16px;
    flex-shrink: 0;
}

.product-actions-panel {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.product-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.product-action-link:hover {
    transform: translateY(-1px);
}

.product-action-link.primary {
    background: #13213a;
    color: #ffffff;
}

.product-action-link.primary:hover {
    box-shadow: 0 16px 28px rgba(19, 33, 58, 0.18);
}

.product-action-link.secondary {
    background: #ffffff;
    color: var(--primary-blue);
    border: 1px solid rgba(46, 52, 142, 0.16);
}

.delivery-payment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 24px;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.payment {
    display: flex;
    gap: 14px;
    align-items: center;
}

.payment img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.payment .text h4 {
    font-size: 15px;
    color: #16233a;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.payment .text p {
    font-size: 13px;
    color: #5b6a82;
    margin: 0;
}

.bottom-section {
    margin-top: 28px;
}

.pro-bottom-part {
    background: white;
    border-radius: 28px;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f7f9fc;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-item {
    flex: 1;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    color: #627187;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    color: var(--primary-blue);
    background: rgba(46, 52, 142, 0.04);
}

.nav-link.active {
    color: var(--primary-blue);
    background: white;
    border-bottom-color: var(--primary-blue);
}

.nav-link i {
    font-size: 18px;
}

/* Tab Content */
.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.tab-pane.show {
    display: block;
    opacity: 1;
}

.pro-specs-content {
    padding: 34px;
    line-height: 1.8;
    color: #314158;
}

.pro-specs-content h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.pro-specs-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.pro-specs-content p,
.pro-specs-content li {
    color: #44546d;
}

.pro-specs-content ul {
    padding-left: 18px;
}

.product-support-band {
    margin-top: 24px;
    padding: 28px;
    border-radius: 26px;
    background: linear-gradient(135deg, #f7f9fc 0%, #eef4fc 100%);
    border: 1px solid rgba(46, 52, 142, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.product-support-copy {
    max-width: 760px;
}

.support-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.product-support-copy h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.1;
    color: #13213a;
    margin-bottom: 10px;
}

.product-support-copy p:last-child {
    color: #55657e;
    line-height: 1.75;
}

@media (max-width: 1080px) {
    .top-section-div {
        grid-template-columns: 1fr;
    }

    .right-section {
        position: static;
    }

    .shoe-full-image {
        height: 480px;
    }

    .product-quick-facts {
        grid-template-columns: 1fr;
    }

    .delivery-payment,
    .product-support-band {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    #pro-page {
        padding: 18px 14px 40px;
    }

    .top-section-div {
        gap: 20px;
        margin-bottom: 20px;
    }

    .shoe-full-image {
        height: 340px;
        border-radius: 22px;
    }

    .full-prod-image {
        padding: 18px;
    }

    .top-dets,
    .delivery-payment,
    .pro-bottom-part,
    .product-support-band {
        border-radius: 22px;
    }

    .top-dets,
    .delivery-payment,
    .product-support-band {
        padding: 20px;
    }

    .cart-btns,
    .cart-add,
    .product-actions-panel {
        flex-direction: column;
    }

    .btn-addtocart,
    .product-action-link {
        width: 100%;
    }

    .nav-tabs {
        flex-wrap: wrap;
    }

    .nav-item {
        flex: 1 1 100%;
    }

    .nav-link {
        justify-content: flex-start;
        padding: 16px 18px;
    }

    .pro-specs-content {
        padding: 24px 20px;
    }
}
