* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    border: none;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.background {
    background-image: url(../logo/background.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 7%;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

.navbar.sticky {
    padding: 15px 7%;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 3px solid #865609;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10001;
}

.navbar img {
    height: 2.5rem;
    width: auto;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #865609;
    white-space: nowrap;
}

.navbar-logo span {
    color: #cc8c2b;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.navbar-nav a {
    color: #865609;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav a:hover {
    color: #000;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #865609;
    transition: width 0.3s ease;
}

.navbar-nav a:hover::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #865609;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -8px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    gap: 2rem;
    position: relative;
}

.hero .content {
    max-width: 60rem;
    z-index: 1;
}

.hero .content h1 {
    font-size: 4rem;
    color: #865609;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    animation: slideInLeft 0.8s ease;
}

.hero .content h2 {
    font-size: 4rem;
    color: #865609;
    line-height: 1.2;
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease;
}

.hero .content a {
    display: inline-block;
    text-decoration: none;
}

.hero .content a h3 {
    margin-top: 3rem;
    display: inline-block;
    background-color: #865609;
    padding: 1rem 3rem;
    font-size: 1.4rem;
    color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(134, 86, 9, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: slideInLeft 1.2s ease;
}

.hero .content a h3:hover {
    background-color: #6d4607;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(134, 86, 9, 0.4);
}

.hero .content a h3 i {
    transform: translateY(3px);
    margin-left: 5px;
    display: inline-block;
    animation: bounce 2s infinite;
}

.hero img {
    width: 42rem;
    height: auto;
    max-width: 100%;
    animation: fadeInRight 1s ease;
}

.produk {
    padding: 60px 20px;
    background: white;
}

.product-section {
    max-width: 1200px;
    margin: 0 auto;
}

.product-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 800;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 80%;
    height: 200px;
    object-fit: cover;
    margin: auto;
}

.nama-produk {
    padding: 15px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.button-container {
    text-align: center;
    margin-top: 30px;
}

.btn-selengkapnya {
    display: inline-block;
    padding: 15px 40px;
    background: #865609;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    cursor: pointer;
    border: none;
}

.btn-selengkapnya:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: block;
}

.modal-content {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin: 2% auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 1400px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.4s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #865609;
}

.modal-header h2 {
    margin: 0;
    font-size: 2.5rem;
    color: #333;
    font-weight: 800;
    margin: auto;
}

.close-modal {
    font-size: 40px;
    font-weight: bold;
    color: #865609;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0 10px;
}

.close-modal:hover {
    color: #865609;
    transform: rotate(90deg);
}

.modal-product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.modal .product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modal .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.modal .product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.modal .nama-produk {
    padding: 12px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.no-products {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    padding: 40px;
    grid-column: 1 / -1;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-price {
    margin-top: 8px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    border-radius: 8px;
    text-align: center;
}

.price-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    display: block;
    margin-bottom: 2px;
}

.price-amount {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.price-range {
    display: flex;
    justify-content: space-around;
    gap: 8px;
    margin-top: 8px;
}

.price-option {
    flex: 1;
    padding: 8px;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    border-radius: 8px;
    text-align: center;
}

.price-option .size-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 2px;
}

.price-option .price-value {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.contact {
    padding: 80px 7%;
    background-color: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    font-weight: 700;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    color: #333;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #f0f0f0;
    transform: translateX(10px);
}

.info-item i {
    font-size: 2rem;
    color: #865609;
    min-width: 40px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: #865609;
}

.info-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(3px);
    }

    50% {
        transform: translateY(10px);
    }
}

footer {
    background: #7d470d;
    color: #fff;
    padding: 60px 7% 20px;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #d4a574;
    font-weight: 700;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.footer-logo h3 span {
    color: #d4a574;
}

.footer-desc {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-desc {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link i {
    color: #fff;
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-link.whatsapp:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.social-link.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.instagram:hover {
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5dbf);
}

.social-link.facebook:hover {
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.social-link.tiktok {
    background: linear-gradient(135deg, #000000, #333333);
}

.social-link.tiktok:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom i {
    color: #e74c3c;
    animation: heartbeat 1.5s infinite;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    10%,
    30% {
        transform: scale(1.1);
    }

    20%,
    40% {
        transform: scale(1);
    }
}

@media (max-width: 1400px) {
    .modal-product-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1399px) {

    .hero .content h1,
    .hero .content h2 {
        font-size: 3.5rem;
    }

    .hero img {
        width: 38rem;
    }
}

@media (max-width: 1200px) {

    .modal-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) {
    .navbar {
        padding: 12px 5%;
    }

    .navbar-nav {
        gap: 1.5rem;
    }

    .navbar-nav a {
        font-size: 0.95rem;
    }

    .hero {
        padding: 0 5%;
    }

    .hero .content h1,
    .hero .content h2 {
        font-size: 3rem;
    }

    .hero .content a h3 {
        font-size: 1.2rem;
        padding: 0.9rem 2.5rem;
    }

    .hero img {
        width: 35rem;
    }

    .contact {
        padding: 60px 5%;
    }

    .contact-container h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }

    .modal-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .hamburger-menu {
        display: flex;
    }

    .navbar-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 2rem;
    }

    .navbar-nav.active {
        right: 0;
    }

    .navbar-nav a {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 0.8rem 0;
    }

    .navbar-nav a::after {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar-nav a:hover::after {
        width: 50%;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        animation: fadeIn 0.3s ease;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 100px 5% 50px;
        min-height: auto;
    }

    .hero .content {
        max-width: 100%;
        order: 1;
    }

    .hero .content h1,
    .hero .content h2 {
        font-size: 2.8rem;
    }

    .hero img {
        width: 30rem;
        order: 2;
        margin-top: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        order: 2;
    }

    .map-container {
        order: 1;
        height: 350px;
    }
}


@media (max-width: 768px) {
    .navbar {
        padding: 12px 4%;
    }

    .navbar img {
        height: 2rem;
    }

    .navbar-logo {
        font-size: 1.3rem;
    }

    .navbar-nav {
        width: 280px;
    }

    .navbar-nav a {
        font-size: 1.1rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .modal-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-section h2,
    .modal-header h2 {
        font-size: 2rem;
    }

    .product-image,
    .modal .product-image {
        height: 150px;
    }

    .modal-content {
        width: 95%;
        padding: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container {
        height: 300px;
    }

    .contact-container h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 90px 4% 40px;
    }

    .hero .content h1,
    .hero .content h2 {
        font-size: 2.3rem;
    }

    .hero .content a h3 {
        font-size: 1.1rem;
        padding: 0.8rem 2rem;
        margin-top: 2rem;
    }

    .hero img {
        width: 25rem;
    }

    .contact {
        padding: 50px 4%;
    }

    .contact-container h2 {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .contact-info {
        gap: 20px;
    }

    .info-item {
        padding: 15px;
        gap: 15px;
    }

    .info-item i {
        font-size: 1.7rem;
        min-width: 35px;
    }

    .info-item h3 {
        font-size: 1.1rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .navbar {
        padding: 10px 3%;
    }

    .navbar img {
        height: 1.8rem;
    }

    .navbar-logo {
        font-size: 1.2rem;
    }

    .navbar-brand {
        gap: 0.3rem;
    }

    .navbar-nav {
        width: 260px;
        gap: 1.5rem;
    }

    .navbar-nav a {
        font-size: 1rem;
        padding: 0.6rem 0;
    }

    .hamburger-menu {
        padding: 0.3rem;
    }

    .hamburger-line {
        width: 22px;
        height: 2.5px;
    }

    .hero {
        padding: 80px 3% 30px;
    }

    .hero .content h1,
    .hero .content h2 {
        font-size: 2rem;
    }

    .hero .content a h3 {
        font-size: 1rem;
        padding: 0.7rem 1.8rem;
        margin-top: 1.5rem;
    }

    .hero .content a h3 i {
        margin-left: 3px;
    }

    .hero img {
        width: 20rem;
    }

    .contact {
        padding: 40px 3%;
    }

    .contact-container h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .contact-content {
        gap: 30px;
    }

    .info-item {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        text-align: center;
        align-items: center;
    }

    .info-item:hover {
        transform: translateY(-5px) translateX(0);
    }

    .info-item i {
        font-size: 2rem;
    }

    .info-item h3 {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .info-item p {
        font-size: 0.85rem;
    }

    .map-container {
        height: 250px;
    }
}

@media (max-width: 480px) {

    .product-grid,
    .modal-product-grid {
        grid-template-columns: 1fr;
    }

    .btn-selengkapnya {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .close-modal {
        font-size: 30px;
    }
}

@media (max-width: 479px) {

    .hero .content h1,
    .hero .content h2 {
        font-size: 1.8rem;
    }

    .hero .content a h3 {
        font-size: 0.95rem;
        padding: 0.65rem 1.5rem;
    }

    .hero img {
        width: 18rem;
    }

    .contact-container h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 375px) {
    .navbar {
        padding: 8px 3%;
    }

    .navbar img {
        height: 1.5rem;
    }

    .navbar-logo {
        font-size: 1rem;
    }

    .navbar-nav {
        width: 240px;
    }

    .navbar-nav a {
        font-size: 0.95rem;
    }

    .hero {
        padding: 70px 3% 25px;
    }

    .hero .content h1,
    .hero .content h2 {
        font-size: 1.6rem;
    }

    .hero .content a h3 {
        font-size: 0.9rem;
        padding: 0.6rem 1.3rem;
        margin-top: 1.2rem;
    }

    .hero img {
        width: 16rem;
        margin-top: 1.5rem;
    }

    .contact {
        padding: 35px 3%;
    }

    .contact-container h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .info-item {
        padding: 12px;
    }

    .info-item i {
        font-size: 1.8rem;
    }

    .info-item h3 {
        font-size: 0.95rem;
    }

    .info-item p {
        font-size: 0.8rem;
    }

    .map-container {
        height: 220px;
        border-radius: 8px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 5% 30px;
    }

    .hero .content h1,
    .hero .content h2 {
        font-size: 1.8rem;
    }

    .hero .content a h3 {
        margin-top: 1.5rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero img {
        width: 15rem;
        margin-top: 1rem;
    }
}