/* style.css - Estilo Premium Moda Shopee */
body {
    background-color: #0E0C0A;
    color: #F1F5F9;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding-bottom: 90px;
}
.shopee-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}
header {
    background: #14110E;
    border-bottom: 1px solid #24201C;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.hero {
    background: linear-gradient(180deg, #2A180E 0%, #120D09 60%, #0E0C0A 100%);
    text-align: center;
    padding: 60px 20px;
    border-bottom: 1px solid #24201C;
    position: relative;
}
.shopee-badge {
    background: linear-gradient(90deg, #EA580C, #DC2626);
    color: white;
    font-size: 11px;
    font-weight: 900;
    padding: 6px 15px;
    border-radius: 50px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.shopee-title {
    font-size: 4rem;
    font-weight: 900;
    margin: 15px 0 5px;
    letter-spacing: -2px;
}
.shopee-title span {
    color: #F97316;
}
.benefit-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.benefit-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}
.countdown-box {
    background: #1A1613;
    border: 2px solid #F97316;
    border-radius: 20px;
    padding: 20px;
    max-width: 500px;
    margin: 30px auto;
    text-align: center;
}
.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 15px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.countdown-card {
    background: #0B0908;
    border-radius: 10px;
    padding: 10px 4px;
    border-bottom: 3px solid #C2410C;
    text-align: center;
}
.countdown-val {
    font-size: 22px;
    font-weight: 900;
    color: white;
}
.countdown-lbl {
    font-size: 8px;
    text-transform: uppercase;
    color: #64748B;
}
.filter-box {
    background: #14110E;
    border: 1px solid #24201C;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 30px;
}
.gender-tabs {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}
.tab-btn {
    background: transparent;
    border: none;
    color: #94A3B8;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 8px;
}
.tab-btn.active {
    background: #EA580C;
    color: white;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (min-width: 768px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}
.product-card {
    background: white;
    border-radius: 24px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0,0,0,0.05);
}
.img-container {
    aspect-ratio: 1;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #F1F5F9;
}
.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.discount-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #DC2626;
    color: white;
    font-size: 11px;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 6px;
}
.p-title {
    color: #0F172A;
    font-size: 13px;
    font-weight: 700;
    margin: 10px 0 5px;
    line-height: 1.2;
}
.p-cat {
    color: #FF6F00;
    font-size: 14px;
    font-family: monospace;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 15px;
    border-top: 1px solid #F1F5F9;
    padding-top: 10px;
}
.old-price {
    text-decoration: line-through;
    color: #222;
    font-size: 14px;
}
.new-price {
    color: #DC2626;
    font-size: 24px;
    font-weight: 900;
}
.btn-buy {
    background: #EA580C;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    padding: 8px 12px;
    border-radius: 10px;
    display: inline-block;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 40px;
}
.page-link {
    background: #14110E;
    border: 1px solid #24201C;
    color: #94A3B8;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}
.page-link.active {
    background: #EA580C;
    color: white;
    border-color: #EA580C;
}

/* Footer Styles */
.shopee-footer {
    background-color: #090807;
    border-top: 1px solid #1C1815;
    padding: 48px 20px;
    margin-top: 48px;
    color: #64748B;
    font-size: 12px;
}
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}
@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        align-items: flex-start;
    }
}
.footer-left {
    text-align: center;
}
@media (min-width: 768px) {
    .footer-left {
        text-align: left;
    }
}
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}
@media (min-width: 768px) {
    .footer-brand {
        justify-content: flex-start;
    }
}
.footer-logo-icon {
    width: 20px;
    height: 20px;
}
.footer-store-name {
    font-size: 16px;
    font-weight: 900;
    color: white;
    letter-spacing: -0.5px;
}
.footer-address {
    color: #94A3B8;
    max-width: 400px;
    margin: 0 0 8px 0;
    line-height: 1.6;
}
.footer-hours {
    color: #64748B;
    font-family: monospace;
    margin: 0;
}
.footer-right {
    text-align: center;
}
@media (min-width: 768px) {
    .footer-right {
        text-align: right;
    }
}
.footer-copyright {
    color: #94A3B8;
    margin: 0 0 4px 0;
}
.footer-tech {
    font-family: monospace;
    font-size: 10px;
    color: #475569;
    margin: 0 0 4px 0;
}
.footer-badge {
    font-family: monospace;
    font-size: 9px;
    color: rgba(249, 115, 22, 0.6);
    margin: 0;
}
/* Social Sharing Styles */
.share-section {
    background: #14110E;
    border: 1px solid #24201C;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.share-title {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    color: #F97316;
    letter-spacing: 1px;
    margin: 0 0 6px 0;
}
.share-subtitle {
    font-size: 11px;
    color: #94A3B8;
    margin: 0 0 20px 0;
}
.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    outline: none;
}
.share-btn-whatsapp {
    background-color: #25D366;
}
.share-btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}
.share-btn-facebook {
    background-color: #1877F2;
}
.share-btn-facebook:hover {
    background-color: #0F52BA;
    transform: translateY(-2px);
}
.share-btn-telegram {
    background-color: #0088cc;
}
.share-btn-telegram:hover {
    background-color: #006699;
    transform: translateY(-2px);
}
.share-btn-copy {
    background-color: #334155;
    border: 1px solid #475569;
}
.share-btn-copy:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
}
.share-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #10B981;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    z-index: 1000;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.5);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}
.share-toast.show {
    transform: translateX(-50%) translateY(0);
}


@media (max-width: 767px){
  .product-grid{grid-template-columns:1fr;}
  .shopee-title{font-size:2.3rem;}
}
