/**************************HEADER STYLES**************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #ffffff;
}

/*********************************HEADER STYLES*********************************/
.header {
    text-align: center;
    padding: 10px 10px;
    border-bottom: 25px solid #7ea6f3;
}

.header h1 {
    font-weight: 800;
    font-size: 1.7rem;
}

.header p {
    font-size: 1.1rem;
    color: #555;
}

/********************************NAVBAR STYLES********************************/
.navbar-nav {
    background: #ffffff;
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #c0c0c0;
}

.navbar-nav .nav-link {
    background: transparent;
    border-radius: 50px;
    padding: 8px 24px;
    margin: 0;
    transition: background 0.2s, color 0.2s;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    background: #85A8F8;
    color: #fff !important;
}

.nav-link.active {
    color: #0d3b66 !important;
    /* biru tua */
    font-weight: bold;
}

/*********************************PRODUKT STYLES*********************************/
.product-section {
    padding: 40px 20px;
    background-color: #f9f9ff;
}

.product-container {
    display: flex;
    gap: 20px;
    max-width: 1500px;
    margin: 0 auto;
}

.sidebar {
    margin-left: -2%;
    margin-top: 5%;
    bottom: 0;
    width: 300px;
    padding: 10px;
    background-color: #EFF3FD;
    overflow-y: auto;
}

.sidebar label {
    margin-left: 10%;
    display: block;
    color: #333;
    font-size: 1rem;
}

.sidebar p {
    margin-left: 10%;
    margin-bottom: 20px;
    font-size: 1rem
}

.main-content {
    flex: 1;
}

.search-bar {
    text-align: center;
    margin-bottom: 30px;
}

.search-bar input[type="text"] {
    width: 80%;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #c0c0c0;
    font-size: 16px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;

}

.product-card {
    background-color: white;
    border: 1px solid #c7d8ff;
    border-radius: 10px;
    padding: 15px;
    width: calc(33.333% - 60px);
    text-align: center;
    font-family: sans-serif;
}

.product-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-card h5 {
    font-size: 14px;
    color: #111;
    font-weight: bold;
}

@media (max-width: 992px) {
    .product-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        margin-bottom: 20px;
    }

    .search-bar input[type="text"] {
        width: 100%;
    }

    .product-grid {
        justify-content: center;
    }

    .product-card {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .product-card {
        width: 100%;
    }

    .product-card h5 {
        font-size: 13px;
    }
}

/*********************************DETAIL STYLES*********************************/
.product-detail {
    margin-left: 10%;
    margin-right: 10%;
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    gap: 30px;
    justify-content: center;
}

.left-section {
    flex: 1;
    min-width: 300px;
}

.left-section .main-image {
    width: 100%;
    margin-bottom: 15px;
}

.main-image {
    position: relative;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    max-width: 500px;
    transition: transform 0.2s ease;
}

.main-image:hover img {
    transform: scale(3);
    /* Besar zoom */
    transform-origin: var(--x, 50%) var(--y, 50%);
}

.left-section .thumbnails {
    display: flex;
    gap: 10px;
    justify-content: start;
    padding-bottom: 20%;
}

.left-section .thumbnails img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 5px solid #7ea6f3;
    border-radius: 8px;
    cursor: pointer;
}

.right-section {
    flex: 1;
    min-width: 300px;
}

#product-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

#spec-image {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: center;
    gap: 15px;
}

.btn-primary.btn-sm,
.btn-secondary.btn-sm {
    padding: .25rem .5rem !important;
    font-size: .875rem !important;
    border-radius: .2rem !important;
}


.btn-primary,
.btn-secondary {
    padding: 15px 25px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
}

.btn-primary {
    background-color: #85A8F8;
    color: white;
    padding: 6% 30px;
    border-radius: 50px;
}

.btn-secondary {
    background-color: #85A8F8;
    color: rgb(255, 255, 255);
    padding: 9% 30px;
    border-radius: 50px;
}

.btn-primary:hover,
.btn-secondary:hover {
    background-color: #345dc6;
}

.icons img {
    width: 30px;
    margin-right: 10px;
}

.service {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 10% 40px 0;
}

.service div {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000000;
}


.service span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service div:last-child {
    border-bottom: none;
}

/*********************************SHARE DAN BUY STYLES*********************************/
.action-buttons {
    display: flex;
    gap: 15px;
}

.btn-wrapper {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    background: #3563E9;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    min-width: 200px;
    flex-direction: column;
}

.dropdown a {
    text-decoration: none;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
}

.dropdown a:hover {
    background-color: #85A8F8;
    color: #ffffff;
    border-radius: 5px;
    padding: 4px;
}

.dropdown i {
    font-size: 20px;
}

.dropdown img[src$="inaproc.png"] {
    width: 25px;
    height: 25px;
    vertical-align: middle;
}

/**********************************ICON STYLES*********************************/
.tdesign--secured {
    display: inline-block;
    width: 35px;
    height: 35px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m12 .44l10 3.5V12c0 4.127-2.533 7.012-4.896 8.803a19.7 19.7 0 0 1-4.65 2.595l-.087.033l-.025.009l-.007.002l-.003.001c-.001 0-.002 0-.332-.943l-.331.944h-.001l-.003-.002l-.007-.002l-.025-.01l-.087-.032a18 18 0 0 1-1.39-.606a20 20 0 0 1-3.26-1.989C4.534 19.012 2 16.127 2 12V3.94zm0 22.06l-.331.944l.331.116l.331-.116zm0-1.072l.009-.004a17.8 17.8 0 0 0 3.887-2.215C18.034 17.59 20 15.223 20 12V5.36l-8-2.8l-8 2.8V12c0 3.223 1.966 5.588 4.104 7.21A17.8 17.8 0 0 0 12 21.428m6.072-13.085l-7.071 7.071l-4.243-4.242l1.415-1.415L11 12.586l5.657-5.657z'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.hugeicons--delivery-truck-02 {
    display: inline-block;
    width: 35px;
    height: 35px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' color='%23000'%3E%3Cpath d='M19.5 17.5a2.5 2.5 0 1 1-5 0a2.5 2.5 0 0 1 5 0m-10 0a2.5 2.5 0 1 1-5 0a2.5 2.5 0 0 1 5 0'/%3E%3Cpath d='M14.5 17.5h-5M2 4h10c1.414 0 2.121 0 2.56.44C15 4.878 15 5.585 15 7v8.5m.5-9h1.801c.83 0 1.245 0 1.589.195c.344.194.557.55.984 1.262l1.699 2.83c.212.354.318.532.373.728c.054.197.054.403.054.816V15c0 .935 0 1.402-.201 1.75a1.5 1.5 0 0 1-.549.549c-.348.201-.815.201-1.75.201M2 13v2c0 .935 0 1.402.201 1.75a1.5 1.5 0 0 0 .549.549c.348.201.815.201 1.75.201M2 7h6m-6 3h4'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.material-symbols--person-outline-rounded {
    display: inline-block;
    width: 35px;
    height: 35px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 12q-1.65 0-2.825-1.175T8 8t1.175-2.825T12 4t2.825 1.175T16 8t-1.175 2.825T12 12m-8 6v-.8q0-.85.438-1.562T5.6 14.55q1.55-.775 3.15-1.162T12 13t3.25.388t3.15 1.162q.725.375 1.163 1.088T20 17.2v.8q0 .825-.587 1.413T18 20H6q-.825 0-1.412-.587T4 18m2 0h12v-.8q0-.275-.137-.5t-.363-.35q-1.35-.675-2.725-1.012T12 15t-2.775.338T6.5 16.35q-.225.125-.363.35T6 17.2zm6-8q.825 0 1.413-.587T14 8t-.587-1.412T12 6t-1.412.588T10 8t.588 1.413T12 10m0 8'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

/***********************************FOOTER STYLES*********************************/
.footer {
    background-color: #7da6ff;
    color: white;
    font-family: sans-serif;
    padding: 20px 40px;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.footer-logo img {
    width: 200px;
    height: auto;
    display: block;
    margin-top: 15%;
    margin-bottom: 10px
}

.footer-info {
    margin-top: 5%;
    margin-bottom: 10%;
    display: flex;
    flex: 1;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-section h4 {
    margin-bottom: 8px;
    color: white;
}

.footer-section p,
.footer-section a {
    margin: 4px 0;
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #000000;
}

.social-icons {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    justify-content: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    color: #85A8F8;
    font-size: 1.2rem;
    transition: background 0.2s, color 0.2s;
    margin: 0 2px;
    box-shadow: 0 2px 8px rgba(62, 123, 250, 0.10);
}

.social-icons a:hover {
    background: #2761ea;
    color: #fff;
}
