/* eBay Style CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fc 0%, #fff9f0 100%);
    background-attachment: fixed;
}
.desktop {
    min-width: 1024px;
}
.responsive {
    width: 100%;
}

/* Skip Navigation */
.gh-skip-nav {
    position: absolute;
    top: -100px;
    left: 6px;
    background: #e74c3c;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.gh-skip-nav:focus {
    top: 6px;
    background: #c0392b;
}

/* Global Header */
#gh {
    background: linear-gradient(to right, #1a2a6c, #b21f1f, #fdbb2d);
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.gh-top {
    background: transparent;
    color: #fff;
}
.gh-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 72px;
}
.gh-ebay-logo {
    flex: 0 0 auto;
}
.gh-logo {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg, #ffeb3b, #ff9800, #f44336, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}
@keyframes shine {
    to { background-position: 200% center; }
}
.gh-sbox {
    flex: 1;
    max-width: 600px;
    margin: 0 20px;
}
.gh-f {
    display: flex;
}
.gh-sbox-inner {
    display: flex;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.gh-sbox-inp {
    flex: 1;
}
.gh-t {
    width: 100%;
    height: 40px;
    border: none;
    padding: 0 12px;
    font-size: 14px;
    outline: none;
    color: #555;
}
.gh-spr {
    width: 48px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.gh-spr:hover {
    background: linear-gradient(45deg, #ff5252, #d35400);
    transform: scale(1.05);
}
.gh-ico-search::before {
    content: "🔍";
    font-size: 16px;
    color: #fff;
}
.gh-top-r {
    flex: 0 0 auto;
}
.gh-acc-mnu {
    display: flex;
    list-style: none;
    gap: 20px;
}
.gh-acc-a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s;
}
.gh-acc-a:hover {
    background: rgba(255,255,255,0.2);
    text-decoration: none;
    transform: scale(1.05);
}

/* Navigation Bar */
.gh-b {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.gh-b-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.gh-b-ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.gh-b-li {
    margin-right: 24px;
}
.gh-b-a {
    display: block;
    padding: 12px 0;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}
.gh-b-a:hover {
    color: #e91e63;
    border-bottom-color: #e91e63;
}
.gh-b-a-on {
    color: #9c27b0;
    border-bottom-color: #9c27b0;
}

/* Breadcrumb */
.seo-breadcrumb-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    background: #f1f8ff;
    border-radius: 8px;
}
.gh-bbc {
    display: flex;
    list-style: none;
    font-size: 12px;
}
.gh-bbc li {
    margin-right: 8px;
}
.gh-bbc li:not(:last-child)::after {
    content: ">";
    margin-left: 8px;
    color: #e91e63;
    font-weight: bold;
}
.gh-bbc a {
    color: #6a11cb;
    text-decoration: none;
    font-weight: 600;
}
.gh-bbc a:hover {
    color: #2575fc;
    text-decoration: underline;
}

/* Product View */
#vip {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    display: flex;
    gap: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.vi-vip-left {
    flex: 1;
    background: #f9f9ff;
    padding: 20px;
    border-radius: 8px;
}
.vi-vip-right {
    flex: 1;
    max-width: 500px;
    background: #fff8f0;
    padding: 24px;
    border-radius: 8px;
    border: 1px dashed #ffcc00;
}

/* Product Images */
.vi-main-img {
    margin-bottom: 20px;
}
.vi-img-w {
    margin-bottom: 10px;
}
.vi-img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.vi-thumb-w {
    overflow: hidden;
}
.vi-thumb-ul {
    display: flex;
    list-style: none;
    gap: 10px;
}
.vi-thumb-li {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: all 0.3s;
}
.vi-thumb-li:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.vi-thumb-li-on {
    border-color: #e91e63;
    box-shadow: 0 0 0 2px #ff9ff3;
}
.vi-thumb-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    transition: all 0.3s;
}
.vi-thumb-img:hover {
    opacity: 0.8;
}

/* Product Details */
.it-ttl {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.condText {
    margin-bottom: 16px;
    font-size: 14px;
    color: #27ae60;
    font-weight: 600;
}
.vi-cond-label {
    font-weight: 700;
    margin-right: 4px;
    color: #8e44ad;
}
.vi-price {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #ff9ff3;
}
.vi-price-wrapper {
    margin-bottom: 4px;
}
.notranslate {
    font-family: 'Arial Black', Arial, sans-serif;
}
.vi-VR-cvip {
    font-size: 36px;
    font-weight: 700;
    color: #d35400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.vi-price-label {
    font-size: 12px;
    color: #e74c3c;
    font-weight: 600;
}
.item-location {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #a29bfe;
}
.iti-eu-info {
    display: flex;
    align-items: center;
}
.iti-eu-bld {
    font-weight: 700;
    margin-right: 8px;
    color: #2980b9;
}
.delivery-info {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #55efc4;
}
.dlv-info {
    display: flex;
    align-items: center;
}
.dlv-label {
    font-weight: 700;
    margin-right: 8px;
    color: #00b894;
}
.qty-wrap {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px dashed #fdcb6e;
}

/* Action Buttons */
.atc-actions {
    margin-bottom: 24px;
}
.atc-b {
    margin-bottom: 12px;
}
.btn {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 15px;
}
.btn--primary {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 117, 252, 0.3);
}
.btn--primary:hover {
    background: linear-gradient(45deg, #8a2be2, #4169e1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 117, 252, 0.4);
}
.btn--secondary {
    background: #fff;
    color: #e91e63;
    border: 2px solid #e91e63;
}
.btn--secondary:hover {
    background: #ffebee;
    color: #c2185b;
    border-color: #c2185b;
    transform: translateY(-2px);
}
.btn__text {
    font-size: 16px;
}
.btn:hover {
    opacity: 1;
}

.secure-transaction {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: linear-gradient(to right, #d4edda, #c3e6cb);
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #d1e7dd;
}
.secure-icon {
    margin-right: 8px;
    font-size: 18px;
}
.secure-icon::before {
    content: "✅";
}

/* Description Tabs */
.desc-tab {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.desc-tab-hdr {
    border-bottom: 1px solid #e5e5e5;
    background: #f8f9ff;
    padding: 0 16px;
    border-radius: 8px 8px 0 0;
}
.desc-tab-nav {
    display: flex;
    list-style: none;
}
.desc-tab-li {
    margin-right: 24px;
}
.desc-tab-a {
    display: block;
    padding: 16px 0;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}
.desc-tab-a:hover {
    color: #6a11cb;
}
.desc-tab-li-active .desc-tab-a {
    color: #9c27b0;
    border-bottom-color: #9c27b0;
    background: #f3e5f5;
    border-radius: 6px 6px 0 0;
}
.desc-tab-content {
    padding: 24px 0;
}
.desc-tab-pane {
    display: none;
}
.desc-tab-pane-active {
    display: block;
}
.desc-text h2 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #4a248c;
    font-weight: 600;
}
.desc-text h3 {
    font-size: 16px;
    margin: 20px 0 12px;
    color: #16a085;
    font-weight: 600;
}
.desc-text p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #34495e;
}
.desc-text ul {
    margin-left: 20px;
    margin-bottom: 16px;
}
.desc-text li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #2c3e50;
}

/* Feature List */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.feature-item {
    padding: 24px;
    background: linear-gradient(135deg, #7f7fd5, #86a8e7, #91eae4);
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.feature-item:hover {
    transform: translateY(-5px);
}
.feature-item h4 {
    margin-bottom: 12px;
    color: #fff;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.feature-item p {
    margin: 0;
    color: #f8f9fc;
    font-size: 14px;
    opacity: 0.95;
}

/* Testimonials */
.testimonial-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.testimonial-item {
    padding: 24px;
    background: #fff;
    border-radius: 10px;
    border-left: 6px solid #6a11cb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.testimonial-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.15);
}
.testimonial-rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 12px;
}
.testimonial-text {
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.6;
    color: #555;
}
.testimonial-author {
    font-weight: 600;
    color: #6a11cb;
}

/* Related Items */
.vi-view-related {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}
.vi-related-hdr {
    margin-bottom: 24px;
}
.vi-related-title {
    font-size: 20px;
    color: #4a248c;
    font-weight: 700;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}
.vi-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.vi-related-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.vi-related-item:hover {
    box-shadow: 0 10px 25px rgba(106, 17, 203, 0.2);
    transform: translateY(-6px);
    border-color: #6a11cb;
}
.vi-related-img {
    height: 150px;
    overflow: hidden;
    background: #f8f9ff;
}
.vi-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.vi-related-item:hover .vi-related-img img {
    transform: scale(1.1);
}
.vi-related-info {
    padding: 18px;
    background: #fdfdfd;
}
.vi-related-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}
.vi-related-price {
    font-size: 16px;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 12px;
}
.vi-related-link {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}
.vi-related-link:hover {
    background: linear-gradient(45deg, #ff5252, #d35400);
    transform: scale(1.05);
}

/* Footer */
.gf-f {
    background: linear-gradient(to right, #1a2a6c, #b21f1f, #fdbb2d);
    border-top: 1px solid #e5e5e5;
    margin-top: 60px;
    color: #fff;
}
.gf-f-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.gf-f-row {
    display: flex;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.gf-f-col {
    flex: 1;
    padding: 0 20px;
}
.gf-f-h {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.gf-f-ul {
    list-style: none;
}
.gf-f-ul li {
    margin-bottom: 12px;
}
.gf-f-ul a {
    color: #f8f9fc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}
.gf-f-ul a:hover {
    color: #ffd700;
    text-decoration: underline;
}
.gf-f-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 12px;
    color: #eee;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.gf-f-copyright {
    flex: 1;
}
.gf-f-follow {
    display: flex;
    align-items: center;
    gap: 12px;
}
.gf-social-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}
.gf-social-link:hover {
    color: #ffeb3b;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .desktop {
        min-width: auto;
    }
    #vip {
        flex-direction: column;
        padding: 20px;
    }
    .vi-vip-right {
        max-width: none;
    }
    .gf-f-row {
        flex-wrap: wrap;
    }
    .gf-f-col {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .gh-top-row {
        flex-wrap: wrap;
        height: auto;
        padding: 15px;
    }
    .gh-sbox {
        order: 3;
        margin: 15px 0;
        max-width: none;
    }
    .it-ttl {
        font-size: 20px;
    }
    .vi-VR-cvip {
        font-size: 30px;
    }
    .gf-f-col {
        flex: 0 0 100%;
    }
    .gf-f-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}