:root {
    --black: #000000;
    --black2: #141414;
    --dark: #292d32;
    --gray: #575757;
    --light-gray: #c4c4c4;
    --offwhite: #fafafa;
    --peach: #ffe4c6;
    --orange: #fe8400;
    --white: #ffffff;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Inter", Arial, sans-serif;
    background: #fafafa;
    color: var(--black2);
    line-height: 1.6;
}

header {
    background: none;
    color: var(--black2);
    display: flex;
    flex-direction: row;
    height: 72px;
    min-height: 72px;
    border: none;
    margin: 0;
    padding: 0;
}
.header-left {
    background: #141414;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 72px;
    flex-basis: 44%;
    flex-shrink: 0;
    flex-grow: 0;
    padding-left: 32px;
}
.header-right {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 72px;
    flex-basis: 56%;
    flex-shrink: 1;
    flex-grow: 1;
    padding-right: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
}
.logo img {
    height: 70px;
    width: auto;
    display: block;
}
.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}
nav {
    display: flex;
    gap: 48px;
    margin-right: 32px;
}
nav a {
    color: var(--black2);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    transition: color 0.2s;
    padding: 0 2px;
}
nav a:hover {
    color: var(--orange);
}
.user {
    font-size: 1.08rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 16px;
    color: var(--black2);
}
.user-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
}
.hero {
    position: relative;
    display: flex;
    min-height: 440px;
    align-items: stretch;
    height: 100vh;
}
.hero-left {
    position: relative;
    flex: 0 0 44%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #141414;
    padding: 56px 0 56px 56px;
}
.hero-title {
    position: relative;
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.13;
    z-index: 20;
}

.hero-desc {
    position: relative;
    color: #c4c4c4;
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: 500px;
    z-index: 20;
}
.hero-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin: 40px 0 0 0;
    width: fit-content;
}
.hero-btn:hover {
    background: #d96f00;
}
.hero-right {
    position: relative;
    flex: 1 1 56%;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    overflow: visible;
    border-bottom-left-radius: 40px;
    background: none;
    z-index: 15;
    width: 100%;
    margin-left: -10%; /* Creates overlap effect */
}
.hero-right img {
    top: 0;
    left: 100;
    width: 100%;
    height: 90%;
    object-fit: cover;
    min-height: 440px;
    z-index: 17;
}

@media (max-width: 1000px) {
    header {
        padding: 0 18px 0 12px;
    }
    .hero {
        flex-direction: column;
    }
    .hero-left,
    .hero-right {
        padding: 32px 8vw;
    }
    .hero-right {
        border-radius: 0;
    }
}
@media (max-width: 700px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-left,
    .hero-right {
        padding: 24px 4vw;
    }
    .hero {
        min-height: 320px;
    }
}
.section {
    padding: 56px 8vw;
    background: var(--offwhite);
}
.section-title {
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
}
.section-divider {
    width: 259px;
    height: 3px;
    background: var(--orange);
    margin: 6px auto 24px auto;
    border-radius: 2px;
    margin-bottom: 3em;
}
.about {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.about-content {
    max-width: 1200px;
}
.about-content p {
    margin-bottom: 18px;
}
.about-content .link {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.about-content .link:hover {
    color: #d96f00;
}
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.about-image img {
    width: 100%;
    height: 100%;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.about-description {
    display: flex;
    flex-direction: column;

    width: 100%;
}
.about-description p {
    margin-left: 16px;
    font-size: 24px;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 16px;
    width: 80%;
}
.about-description a {
    margin-left: 16px;

    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.about-text {
    flex: 1 1 100%;
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
}

.services-section {
    background: var(--black2);
    color: var(--white);
    padding: 56px 8vw;
}
.services-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}
.services {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.services-description {
    text-align: center;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 200;
    margin-bottom: 32px;
}
.services-description p {
    max-width: 450px;
    margin: 0 auto;
}
.services-whiteground {
    background: #fbfbfb;
    color: var(--black2);
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    margin-bottom: 32px;
    width: 100%;
}
.service-card {
    background: var(--white);
    color: var(--black2);
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 32px 24px;
    width: 277px;
    height: 322px;
    text-align: center;
}
.service-card svg {
    color: var(--orange);
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.service-card p {
    font-size: 0.97rem;
    color: var(--gray);
}
.appointment-section {
    background: #fafafa;
    padding: 48px 8vw;
}
.appointment-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.appointment-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    padding: 12px 14px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-size: 1rem;
    min-width: 180px;
    background: var(--white);
}
.appointment-form textarea {
    min-width: 260px;
    min-height: 40px;
}
.appointment-form .btn {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.appointment-form .btn:hover {
    background: #d96f00;
}
.collection-section {
    padding: 56px 8vw 32px 8vw;
    background: var(--offwhite);
}
.collection-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 32px;
}
.collections {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.collection-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    width: 260px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.collection-card .info {
    padding: 16px;
    flex: 1;
}
.collection-card .info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.collection-card .info p {
    font-size: 0.97rem;
    color: var(--gray);
    margin-bottom: 8px;
}
.collection-card .info .price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black2);
    margin-bottom: 8px;
}
.collection-card .info .btn {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 0;
    display: block;
    text-align: center;
}
.collection-card .info .btn:hover {
    background: #d96f00;
}
.see-more-btn {
    display: block;
    margin: 24px auto 0 auto;
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 12px 36px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.see-more-btn:hover {
    background: #d96f00;
}
.testimonial-section {
    padding: 56px 8vw 32px 8vw;
    background: var(--offwhite);
}
.testimonial-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 32px;
}
.testimonials {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    width: 320px;
    padding: 32px 24px;
    text-align: center;
}
.testimonial-card img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}
.testimonial-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.testimonial-card p {
    font-size: 0.97rem;
    color: var(--gray);
}
.stats-section {
    background: #FFE4C6;
    padding: 4rem 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    align-self: stretch;
    flex-wrap: wrap;
    margin-top: 5rem;
    margin-bottom: 5rem;
}
.stat {
    text-align: center;
}
.stat .number {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #141414;
}
.stat .label {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #575757;
}
.contact-section {
    background: var(--offwhite);
    padding: 56px 8vw 32px 8vw;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.contact-form {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 32px 24px;
    min-width: 320px;
    max-width: 340px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 16px;
    background: var(--offwhite);
}
.contact-form .btn {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}
.contact-form .btn:hover {
    background: #d96f00;
}
footer {
    background: #141414;
    color: var(--white);
    padding: 24px 8vw 12px 8vw;
    text-align: center;
    font-size: 1rem;
    position: relative;
}
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    background: #141414;
    padding: 0 0 0 0;
}
.footer-logo {
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-logo img {
    height: 70px;
    width: auto;
    display: block;
}
.footer-contact {
    color: var(--orange);
    font-weight: 600;
}
.footer-social {
    margin-top: 12px;
}
.footer-social a {
    color: var(--orange);
    margin: 0 8px;
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: var(--white);
}
@media (max-width: 700px) {
    header,
    .hero,
    .section,
    .services-section,
    .appointment-section,
    .collection-section,
    .testimonial-section,
    .stats-section,
    .contact-section,
    footer {
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .about,
    .services,
    .collections,
    .testimonials,
    .stats-section,
    .contact-section {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-img {
        width: 100%;
    }
}
.help-title {
    color: #141414;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: normal;
}

/* Testimonial Section Figma Style */
.testimonial-title-custom {
    color: #141414;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.testimonial-underline {
    display: block;
    margin: 0 auto 2.5rem auto;
    width: 22rem;
    max-width: 100%;
    height: 2px;
    background: none;
    position: relative;
}

.testimonial-cards-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.testimonial-card-custom {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    min-width: 18rem;
    max-width: 22rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.testimonial-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #FE8400;
}

.testimonial-nav-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #FE8400;
    cursor: pointer;
    transition: color 0.2s;
}
.testimonial-nav-btn:hover {
    color: #d96f00;
}

/* Our Exclusive Collection Section Figma Style */
.collection-title-custom {
    color: #141414;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.collection-underline {
    display: block;
    margin: 0 auto 2.5rem auto;
    width: 22rem;
    max-width: 100%;
    height: 2px;
    background: none;
    position: relative;
}

/* Help Section Figma Style */
.help-title-custom {
    color: #141414;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.help-underline {
    display: block;
    margin: 0 auto 2.5rem auto;
    width: 28rem;
    max-width: 100%;
    height: 2px;
    background: none;
    position: relative;
}
.help-section-bg {
    background: transparent;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.help-section-bg .help-bg-half {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    background: #141414;
    z-index: 1;
}
.help-section-bg .help-container-custom {
    position: relative;
    z-index: 2;
    margin: 0 0 4rem 0;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5.4375rem;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 0.25rem;
    max-width: 900px;
    width: 100%;
    min-width: 320px;
    top: 0;
}
.help-logo {
    position: absolute;
    left: 2.5rem;
    bottom: 2.5rem;
    width: 70px;
    height: auto;
    z-index: 3;
}
@media (max-width: 900px) {
    .help-section-bg .help-container-custom {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
        max-width: 98vw;
    }
    .help-logo {
        left: 1rem;
        bottom: 1rem;
        width: 50px;
    }
    .help-underline {
        width: 90%;
    }
}
.help-container-custom .contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    width: 23.3125rem;
    min-width: 220px;
    max-width: 100%;
    background: transparent;
    box-shadow: none;
    border-radius: 0.25rem;
    padding: 0;
    align-items: flex-start;
    margin: 0;
}
.help-container-custom .contact-form input,
.help-container-custom .contact-form textarea {
    width: 100%;
    margin-left: 0;
}
.help-container-custom .contact-form .btn {
    align-self: flex-start;
    width: 15.5rem;
    margin-top: 0.5rem;
}
.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    background: #FE8400;
    color: #fff;
    border: 2px solid #FE8400;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    margin-right: 0.5rem;
}
.btn-login:hover {
    background: #d96f00;
    color: #fff;
}
.btn-register {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    background: #FE8400;
    color: #fff;
    border: 2px solid #FE8400;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.btn-register:hover {
    background: #d96f00;
    border-color: #d96f00;
}
.header-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    cursor: pointer;
    padding: 6px 14px 6px 14px;
    border-radius: 2rem;
    background: #f7f7f7;
    transition: background 0.2s;
    min-width: 0;
    z-index: 100;
}
.header-user:hover {
    background: #f0f0f0;
}
.header-username {
    font-size: 1.05rem;
    font-weight: 500;
    color: #141414;
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.header-profile {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
    background: #eee;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.dropdown-menu {
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    min-width: 120px;
    padding: 0.5rem 0;
    z-index: 999;
    display: none;
}
.dropdown-menu .dropdown-item {
    display: block;
    padding: 0.6rem 1.2rem;
    color: #141414;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;
}
.dropdown-menu .dropdown-item:hover {
    background: #f7f7f7;
}
@media (max-width: 900px) {
    .header-user {
        padding: 4px 8px;
        gap: 0.5rem;
    }
    .header-username {
        max-width: 70px;
        font-size: 0.95rem;
    }
    .header-profile {
        width: 30px;
        height: 30px;
    }
}

/* === RESPONSIVE: Tambahan media queries untuk mobile === */
@media (max-width: 600px) {
  header, .header-left, .header-right {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    height: auto !important;
    min-height: unset !important;
  }
  nav {
    flex-direction: column;
    gap: 16px;
    margin-right: 0;
    width: 100%;
  }
  .hero {
    flex-direction: column;
    min-height: 320px;
    height: auto;
    padding: 0 0 24px 0;
  }
  .hero-left, .hero-right {
    flex: 1 1 100%;
    padding: 24px 10px !important;
    min-width: 0;
    max-width: 100vw;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .section, .about-content, .services-section, .collection-section, .testimonial-section {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .services {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: stretch !important;
  }
  .service-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    height: auto !important;
  }
  .collections {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: stretch !important;
  }
  .collection-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
  }
  .testimonial-cards-wrapper {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: stretch !important;
  }
  .testimonial-card-custom {
    min-width: 0 !important;
    max-width: 100vw !important;
  }
}

/* === RESPONSIVE: Perbaikan layout mobile agar tetap mirip desktop === */
@media (max-width: 900px) {
  .collections {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.2rem !important;
    justify-content: center !important;
    align-items: stretch !important;
    padding: 0 0.5rem !important;
  }
  .collection-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
  }
  .card-content h3 {
    font-size: 1.1rem !important;
  }
  .card-content {
    padding: 1rem 0.7rem 0.5rem 0.7rem !important;
  }
  .hero-title {
    font-size: 2rem !important;
  }
  .hero-desc {
    font-size: 1rem !important;
  }
  header, .header-left, .header-right {
    height: auto !important;
    min-height: unset !important;
    padding: 0.5rem 0.5rem !important;
  }
  nav {
    gap: 1.2rem !important;
    font-size: 1rem !important;
  }
}
@media (max-width: 600px) {
  .collections {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 0 0.2rem !important;
  }
  .collection-card {
    width: 98vw !important;
    max-width: 98vw !important;
    margin: 0 auto 0.7rem auto !important;
  }
  .card-content h3 {
    font-size: 1rem !important;
  }
  .card-content {
    padding: 0.7rem 0.5rem 0.4rem 0.5rem !important;
  }
  .hero-title {
    font-size: 1.3rem !important;
  }
  .hero-desc {
    font-size: 0.95rem !important;
  }
  header, .header-left, .header-right {
    height: auto !important;
    min-height: unset !important;
    padding: 0.3rem 0.2rem !important;
  }
  nav {
    gap: 0.7rem !important;
    font-size: 0.95rem !important;
  }
  .info.btn, a[style*='Contact Me'] {
    font-size: 0.95rem !important;
    min-width: 90px !important;
    max-width: 140px !important;
    height: 2.2rem !important;
    padding: 0.4rem 1rem !important;
  }
}

/* === RESPONSIVE: Layout mobile tetap mirip desktop, horizontal scroll jika perlu === */
@media (max-width: 900px) {
  header, .header-left, .header-right {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 0.5rem !important;
    gap: 0.5rem !important;
    max-width: 100vw !important;
  }
  nav {
    flex-direction: row !important;
    gap: 1.2rem !important;
    font-size: 1rem !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    max-width: 100vw !important;
  }
  .hero {
    flex-direction: row !important;
    align-items: stretch !important;
    min-height: 220px !important;
    height: auto !important;
    max-width: 100vw !important;
    overflow-x: auto !important;
  }
  .hero-left, .hero-right {
    padding: 1rem 0.5rem !important;
    min-width: 220px !important;
    max-width: 100vw !important;
  }
  .hero-title {
    font-size: 1.3rem !important;
  }
  .hero-desc {
    font-size: 1rem !important;
  }
  .collections {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.2rem !important;
    justify-content: center !important;
    align-items: stretch !important;
    padding: 0 0.5rem !important;
    max-width: 100vw !important;
    overflow-x: auto !important;
  }
  .collection-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
  }
  .card-content h3 {
    font-size: 1.1rem !important;
  }
  .card-content {
    padding: 1rem 0.7rem 0.5rem 0.7rem !important;
  }
}
@media (max-width: 600px) {
  header, .header-left, .header-right {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 0.2rem !important;
    gap: 0.2rem !important;
    max-width: 100vw !important;
  }
  nav {
    flex-direction: row !important;
    gap: 0.7rem !important;
    font-size: 0.95rem !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    max-width: 100vw !important;
  }
  .hero {
    flex-direction: row !important;
    align-items: stretch !important;
    min-height: 160px !important;
    height: auto !important;
    max-width: 100vw !important;
    overflow-x: auto !important;
  }
  .hero-left, .hero-right {
    padding: 0.5rem 0.2rem !important;
    min-width: 160px !important;
    max-width: 100vw !important;
  }
  .hero-title {
    font-size: 1rem !important;
  }
  .hero-desc {
    font-size: 0.9rem !important;
  }
  .collections {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.7rem !important;
    padding: 0 0.2rem !important;
    max-width: 100vw !important;
    overflow-x: auto !important;
  }
  .collection-card {
    width: 98vw !important;
    max-width: 98vw !important;
    margin: 0 auto 0.7rem auto !important;
  }
  .card-content h3 {
    font-size: 0.95rem !important;
  }
  .card-content {
    padding: 0.7rem 0.5rem 0.4rem 0.5rem !important;
  }
  .info.btn, a[style*='Contact Me'] {
    font-size: 0.95rem !important;
    min-width: 90px !important;
    max-width: 140px !important;
    height: 2.2rem !important;
    padding: 0.4rem 1rem !important;
  }
}
