* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f4f7f9;
    color: #333;
}

.container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: #0d1e5c;
    font-weight: 800;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #0d1e5c;
    font-weight: 600;
    font-size: 14px;
}

nav a.active {
    border-bottom: 2px solid #0d1e5c;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    color: #0d1e5c;
}

.nav-icons button {
    background: #0d1e5c;
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f4f7f9;
    border: 1px solid #dfe4ee;
    border-radius: 999px;
    padding: 10px 16px;
    gap: 10px;
}

.search-box input {
    border: none;
    outline: none;
    background: transparent;
    width: 200px;
    font-size: 14px;
    color: #333;
}

.search-box i {
    color: #0d1e5c;
}

.btn-login {
    background: #0d1e5c;
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 8px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right center;
    background-image: url('gambar/3.png');
    z-index: -1;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: white;
    line-height: 1.1;
    margin-top: 80px;
    margin-left: 100px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    color: white;
    max-width: 500px;
    margin-bottom: 30px;
    margin-left: 100px;
}

.shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 650px;
    height: 700px;

    background: rgba(6, 32, 163, 0.438);

    clip-path: path("M0 0 H100% Q85% 25% 95% 40% Q105% 55% 90% 70% Q80% 85% 100% 100% H0 Z ");

}

.btn-primary {
    background: #0d1e5c;
    color: white;
    border: 1px solid white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 100px;
}

/* Features Box */
.features-box {
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.feature-item {
    text-align: center;
    flex: 1;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #0d1e5c;
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.feature-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #0d1e5c;
}

.feature-item p {
    font-size: 12px;
    color: #777;
}

/* Products Section */
.products {
    padding: 80px 0;
}

.products h2 {
    font-size: 38px;
    color: #0d1e5c;
    text-align: center;
    margin-bottom: 10px;
}

.products span {
    color: #1c253b;
    text-align: center;
    display: block;
    margin: 0 auto 20px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.title-serif {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #0d1e5c;
    margin: 10px 0 30px;
}

.blue-line {
    width: 80px;
    height: 4px;
    background: #0d1e5c;
    margin: 0 auto 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    padding: 22px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card img {
    background: #f7f9fc;
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 18px;
}

.card h3 {
    color: #0d1e5c;
    font-size: 18px;
}

.card .size {
    color: #888;
    font-size: 14px;
    margin: 5px 0;
}

.card .price {
    font-weight: 800;
    margin-bottom: 15px;
}

.btn-detail {
    background: #0d1e5c;
    color: white;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-detail:hover {
    transform: translateY(-2px);
    background: #162b76;
}

.btn-wishlist {
    background: #dc3545;
}

.btn-wishlist:hover {
    background: #bb2d3b;
}

.btn-secondary {
    background: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-outline {
    margin-top: 40px;
    background: transparent;
    border: 2px solid #0d1e5c;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    color: #0d1e5c;
    cursor: pointer;
}

.btn-outline:hover {
    background: #0d1e5c;
    color: #fff;
}

.about {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 38px;
    color: #0d1e5c;
    margin-bottom: 20px;
}

.about-text p {
    color: #515151;
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 25px;
}

.about-images img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.btn-checkout {
    display: inline-block;
    background: #198754;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
}

.nav-icons a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    margin-left: 15px;
}

.nav-icons a:hover {
    color: #0d6efd;
}

nav a.active {
    font-size: 20px;
}

/* =====================
   NAV ICONS
===================== */

.nav-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-link {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

/* =====================
   USER DROPDOWN
===================== */

.user-dropdown {
    position: relative;
}

.user-btn {
    background: #0D2A9D;
    color: white;

    border: none;
    border-radius: 12px;

    padding: 10px 18px;

    display: flex;
    align-items: center;
    gap: 8px;

    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.user-btn:hover {
    background: #1236c0;
}

.user-menu {

    position: absolute;
    top: 55px;
    right: 0;

    width: 220px;

    background: white;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .15);

    display: none;

    overflow: hidden;

    z-index: 9999;
}

.user-menu a {

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 18px;

    text-decoration: none;
    color: #333;

    transition: .3s;
}

.user-menu a:hover {
    background: #f5f7ff;
    color: #0D2A9D;
}

.user-menu {
    display: none;
}

.user-menu.show-menu {
    display: block;
}

.testimoni-section {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.form-testimoni {
    flex: 1;
    min-width: 350px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.form-testimoni h3 {
    color: #0d2a73;
    margin-bottom: 5px;
}

.form-testimoni p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.form-testimoni input,
.form-testimoni textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 12px;
}

.form-testimoni button {
    width: 100%;
    background: #0d2a73;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.form-testimoni button:hover {
    background: #123a9a;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin: 10px 0 15px;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 35px;
    color: #ccc;
    cursor: pointer;
    transition: .3s;
}

.rating label:hover,
.rating label:hover~label,
.rating input:checked~label {
    color: #ffc107;
}

/* ICON NAV */

.icon-menu {

    position: relative;

    text-decoration: none;

    color: #0d1e5c;

    font-size: 22px;

}



.icon-menu span {

    position: absolute;

    top: -10px;
    right: -12px;


    background: #dc3545;

    color: white;

    width: 20px;
    height: 20px;


    border-radius: 50%;

    font-size: 12px;


    display: flex;
    align-items: center;
    justify-content: center;

}



/* DROPDOWN */


.user-dropdown {

    position: relative;

}


.user-btn {

    background: #0d1e5c;

    color: white;

    border: none;

    padding: 10px 15px;

    border-radius: 10px;

    cursor: pointer;

    display: flex;

    align-items: center;

    gap: 8px;

}



.user-menu {

    position: absolute;

    right: 0;

    top: 55px;


    background: white;

    width: 220px;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);


    display: none;


    overflow: hidden;

    z-index: 999;


}



.user-menu a {

    display: flex;

    gap: 10px;

    padding: 15px;

    text-decoration: none;

    color: #333;


}



.user-menu a:hover {

    background: #f2f5ff;

    color: #0d6efd;

}



.user-dropdown:hover .user-menu {

    display: block;

}

.btn-detail.btn-secondary {
    display: block;
    text-align: center;
    text-decoration: none;
    background: #0d6efd;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 10px;
}

.btn-detail.btn-secondary:hover {
    background: #0954c9;
}

/* Footer */
.footer {
    background: #0d1e5c;
    color: white;
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 1;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 0;
    font-size: 14px;
}

.newsletter-btn {
    background: white;
    color: #0d1e5c;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.newsletter-btn:hover {
    background: #f4f7f9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* =========================
   RESPONSIVE HP
========================= */

@media (max-width:768px){


header {
    position: relative;
}


.nav-flex {
    flex-direction: column;
    align-items: stretch;
}


/* logo */
.logo {
    justify-content: center;
}


/* menu utama */
nav {

    display:none;
    width:100%;
    background:white;
    padding:20px 0;

}


nav.show {

    display:block;

}



nav a {

    display:block;
    padding:12px;
    text-align:center;

}



/* tombol menu hp */
.menu-toggle {

    display:block;

    position:absolute;
    right:20px;
    top:20px;

    font-size:28px;

    background:none;
    border:none;

    color:#0d1e5c;

}



/* icon */
.header-actions {

    justify-content:center;
    flex-wrap:wrap;

}



}