/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #e91e63;
    text-decoration: none;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #e91e63;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e91e63;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('http://info.queenflorist.art/assets/header.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.3), rgba(156, 39, 176, 0.3));
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }
    to { text-shadow: 2px 2px 20px rgba(233, 30, 99, 0.8); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Produk Section */
.produk {
    background: #f8f9fa;
}

.kategori-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.kategori-btn {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    font-weight: 500;
    color: #333;
}

.kategori-btn:hover {
    border-color: #e91e63;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.2);
}

.kategori-btn.active {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    border-color: transparent;
}

.kategori-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.kategori-btn:hover .kategori-icon {
    transform: scale(1.1) rotate(5deg);
}

.kategori-btn.active .kategori-icon {
    background: white;
    color: #e91e63;
}

.produk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.produk-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.produk-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.produk-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.produk-card:hover .produk-image {
    transform: scale(1.05);
}

.produk-info {
    padding: 1.5rem;
}

.produk-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.produk-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.order-btn {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* Testimoni Section */
.testimoni {
    background: white;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimoni-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #e91e63;
}

.testimoni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimoni-stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimoni-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimoni-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    color: #333;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Kontak Section */
.kontak {
    background: #f8f9fa;
}

.kontak-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.kontak-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.kontak-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.kontak-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.kontak-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.kontak-item p {
    color: #666;
    line-height: 1.5;
}

.kontak-item a {
    color: #e91e63;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kontak-item a:hover {
    color: #9c27b0;
}

.social-links h4 {
    margin-bottom: 1rem;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.kontak-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.kontak-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.footer-logo i {
    color: #e91e63;
}

.footer-description {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-social a {
    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;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #e91e63;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.produk-preview {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.produk-preview img {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.produk-preview h4 {
    color: #333;
    font-size: 1.2rem;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Base */
    .container {
        padding: 0 15px;
    }
    
    /* Navbar */
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo i {
        font-size: 1.5rem;
        margin-right: 8px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 1.5rem 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-link {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero Section */
    .hero {
        height: 100vh;
        min-height: 600px;
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 200px;
        padding: 12px 24px;
        font-size: 1rem;
        justify-content: center;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Kategori Grid */
    .kategori-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .kategori-btn {
        padding: 0.8rem 0.4rem;
        font-size: 0.85rem;
        border-radius: 12px;
    }

    .kategori-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Produk Grid */
    .produk-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .produk-card {
        border-radius: 12px;
    }
    
    .produk-image {
        height: 200px;
    }
    
    .produk-info {
        padding: 1.2rem;
    }
    
    .produk-name {
        font-size: 1.1rem;
    }
    
    .produk-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .order-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    /* Testimoni */
    .testimoni-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .testimoni-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .testimoni-text {
        font-size: 0.95rem;
    }
    
    /* Kontak */
    .kontak-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .kontak-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 1rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .kontak-item i {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .kontak-item h4 {
        font-size: 1.1rem;
    }
    
    .kontak-item p {
        font-size: 0.9rem;
    }
    
    .kontak-map iframe {
        height: 250px;
        border-radius: 12px;
    }
    
    .social-icons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        margin: 3% auto;
        max-height: 94vh;
        border-radius: 12px;
    }

    .modal-header {
        padding: 1.2rem;
        border-radius: 12px 12px 0 0;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .close {
        font-size: 24px;
    }

    .modal-body {
        padding: 1.2rem;
        max-height: calc(94vh - 80px);
        overflow-y: auto;
    }
    
    .produk-preview {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .produk-preview img {
        max-width: 120px;
        height: 90px;
        margin-bottom: 0.8rem;
    }
    
    .produk-preview h4 {
        font-size: 1.1rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .form-group textarea {
        min-height: 80px;
    }

    .radio-group {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 0.4rem;
    }
    
    .radio-label {
        font-size: 0.9rem;
        padding: 0.8rem;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .radio-label:hover {
        border-color: #e91e63;
        background: rgba(233, 30, 99, 0.05);
    }
    
    .radio-label input[type="radio"]:checked + span {
        color: #e91e63;
        font-weight: 600;
    }
    
    .radio-label:has(input[type="radio"]:checked) {
        border-color: #e91e63;
        background: rgba(233, 30, 99, 0.1);
    }
    
    .btn-block {
        padding: 12px 20px;
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 0.8rem;
    }
    
    .footer-logo {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-social {
        margin-bottom: 1.5rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 12px;
    }
    
    /* Navbar */
    .nav-container {
        padding: 0 12px;
        height: 55px;
    }
    
    .nav-logo {
        font-size: 1.1rem;
    }
    
    .nav-logo i {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        top: 55px;
        max-height: calc(100vh - 55px);
    }
    
    /* Hero */
    .hero {
        min-height: 550px;
        padding-top: 55px;
    }
    
    .hero-content {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        width: 180px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    /* Kategori */
    .kategori-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .kategori-btn {
        padding: 0.6rem 0.3rem;
        font-size: 0.75rem;
        border-radius: 10px;
    }
    
    .kategori-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    /* Produk */
    .produk-grid {
        gap: 1rem;
    }
    
    .produk-card {
        border-radius: 10px;
    }
    
    .produk-image {
        height: 180px;
    }
    
    .produk-info {
        padding: 1rem;
    }
    
    .produk-name {
        font-size: 1rem;
    }
    
    .produk-description {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .order-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    /* Testimoni */
    .testimoni-card {
        padding: 1.2rem;
        border-radius: 10px;
    }
    
    .testimoni-text {
        font-size: 0.9rem;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
    
    /* Kontak */
    .kontak-item {
        padding: 0.8rem;
        gap: 0.6rem;
    }
    
    .kontak-item i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .kontak-item h4 {
        font-size: 1rem;
    }
    
    .kontak-item p {
        font-size: 0.85rem;
    }
    
    .kontak-map iframe {
        height: 200px;
    }
    
    /* Modal */
    .modal-content {
        width: 98%;
        margin: 2% auto;
        max-height: 96vh;
        border-radius: 10px;
    }
    
    .modal-header {
        padding: 1rem;
        border-radius: 10px 10px 0 0;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .close {
        font-size: 22px;
    }

    .modal-body {
        padding: 1rem;
        max-height: calc(96vh - 70px);
    }
    
    .produk-preview img {
        max-width: 100px;
        height: 75px;
        margin-bottom: 0.6rem;
    }
    
    .produk-preview h4 {
        font-size: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .form-group textarea {
        min-height: 70px;
    }
    
    .radio-label {
        font-size: 0.85rem;
        padding: 0.6rem;
    }
    
    .btn-block {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 1.5rem 0 0.6rem;
    }
    
    .footer-logo {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-social {
        margin-bottom: 1.2rem;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding-top: 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Scroll to top button */
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 0.9rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .kategori-btn {
        font-size: 0.7rem;
        padding: 0.5rem 0.2rem;
    }
    
    .kategori-icon {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .btn {
        width: 160px;
        font-size: 0.85rem;
    }
    
    .modal-content {
        width: 99%;
        margin: 1% auto;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #d81b60, #8e24aa);
}