body {
    font-family: 'Segoe UI', sans-serif; 
    text-decoration: none;
}

.top-bar {
    background: #9A0101;
    font-size: 13px;
    letter-spacing: 0.5px; 
    font-family: 'Lato', sans-serif;
}

.navbar {
    position: absolute; 
    width: 100%;
    z-index: 10;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px); 
}

.navbar-brand {
    width: 70px;
    height: 70px; 
    background: #9A0101;
}

.navbar.scrolled {
    position: fixed;
    top: 0;

    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .nav-link { 
    font-family: "Lato", sans-serif;
    position: relative;
    color: #6D6D6D;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 5px;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

.navbar .nav-link.active {
    color: #000;
    font-weight: 600;
}

.navbar .nav-link.active::after {
    width: 100%;
}

/* ============ HERO ================ */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('./heroBG.avif') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;  
    margin-bottom: 20px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(28, 28, 28, 0.2) 56%,
            rgba(32, 32, 32, 0.2) 100%);
}

.hero-content {
    position: relative; 
    font-family: "Lato", sans-serif;
    z-index: 2;
}

/* RIGHT SIDE */
.hero-title {
    font-size: 77px;
    line-height: 1.2;
}

.hero-sub {
    font-size: 20px;
    opacity: 0.9;
}

/* BUTTONS */
.btn-red {
    background: #9A0101;
    color: #fff;
    border-radius: 10px;
    padding: 12px 28px;
    font-weight: 500;
    border: none;
}

.btn-red:hover {
    background: #950000;
}

.btn-outline-light {
    border-radius: 10px;
    padding: 12px 25px;
}

/* ICON BADGES */
.icon-badge {
    font-size: 10px;
    padding: 3px 6px;
}

/* =============== ABOUT ================ */ 

.about { 
    padding: 30px 100px;
    font-family: "Lato", sans-serif;
}

.about-header {
    font-size: 50px; 
    color: #2B2024;
} 

.about-desc { 
    color: #020202;
    font-size: 25px;
} 

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #523C1E;

    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #fff;
    color:  #000;
}

.contact-button {
    background: #9A0101;
    color: #FAF7F0;
    border: none; 
    font-family: "Old Standard TT", serif; 
    font-size: 16px; 
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #680000;
}

.h-2 {
    height: 2px; 
    background-color: #F4B41A; 
} 

/* ==================== CHOOSE ==================== */ 

.choose {
    padding: 30px 100px 0 100px;
}

.choose-text {
    width: 40%;
}

.choose-header {
    font-size: 50px; 
    font-family: "Lato", sans-serif;
}

.choose-desc {
    font-family: "Outfit", sans-serif; 
    font-size: 20px;
}

.choose-subheader {
    color: #050505; 
    font-family: "Lato", sans-serif;
    font-size: 34px; 
}

.choose-subtext {
    font-family: "Outfit", sans-serif;
} 

.choose-img-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
} 

.img-4 {
    position: relative; 
    top: -90px;
}

/* =============== SERVICES ================ */ 

.services { 
    padding: 0 100px 30px 100px; 
    font-family: "Lato", sans-serif;
} 

.service-header {
    font-size: 50px; 
    color: #2B2024;
} 

.service-desc { 
    color: #151313;
    font-size: 20px; 
} 

.service-details {
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    row-gap: 100px; 
    column-gap: 120px;
}

.service-img-box {
    background-color: rgba(185, 185, 185, 0.5); 
    width: fit-content; 
}

.service-img-1 {
    position: relative; 
    left: 30px; 
    top: 30px;
} 

.service-img-2 {
    position: relative; 
    left: -30px; 
    top: -30px;
} 

.service-detail-header {
    font-family: "Lato", sans-serif; 
    font-size: 40px;
} 

.service-detail-desc {
    font-family: "Outfit", sans-serif; 
    font-size: 22px; 
    color: rgba(0, 0, 0, 0.6); 
}

.service-button {
    background: #9A0101;
    color: #FAF7F0;
    border: none; 
    font-family: "Old Standard TT", serif; 
    font-size: 16px; 
    transition: all 0.3s ease; 
    width: fit-content;
} 

.gray-box {
    background-color: #F1F0F0; 
    margin: 30px 50px; 
    padding: 60px; 
    border-radius: 30px;
} 

.box-text {
    font-family: "Nunito Sans", sans-serif; 
    font-size: 22px; 
    width: 75%; 
    text-align: center;
} 

/* ================ TRADITION =============== */ 

.tradition-section {
    padding: 30px 100px;
}

.tradition-title {
    font-size: 50px; 
    color: #9A0101; 
    font-family: "Lato", sans-serif;
}

.tradition-subtitle {
    color: #151313;
    font-size: 20px; 
}

/* Button */
.view-all-btn {
    border: 1px solid #8B0000;
    background: transparent;
    padding: 10px 22px;
    border-radius: 4px;
    color: #8B0000;
    cursor: pointer;
    transition: 0.3s;
}

.view-all-btn:hover {
    background: #8B0000;
    color: #fff;
}

/* Grid */
.tradition-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */
.tradition-card {
    text-align: center;
}

.tradition-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}

/* Text */
.tradition-card p {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.tradition-card span {
    font-weight: 400;
    color: #555; 
} 

/* ================ GENDER =============== */ 

.gender-section {
    padding: 30px 100px;
    text-align: center;
}

/* Title */
.gender-title {
    font-size: 50px; 
    color: #9A0101; 
    font-family: "Lato", sans-serif;
}

.gender-divider span {
    width: 120px;
    height: 2px;
    background: #d4a017;
}

.gender-divider .icon {
    color: #d4a017;
    font-size: 18px;
}

/* Grid */
.gender-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card */ 
.gender-card {
    border-radius: 30px;
}

.gender-img-box {
    overflow: hidden; 
    border-radius: 30px;
}

.gender-card img { 
    width: 100%;
    border-radius: 30px;
    transition: transform 0.4s ease;
}

.gender-card:hover img {
    transform: scale(1.05);
}

/* Text */
.gender-card h4 {
    margin-top: 15px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #7a1a1a;
}

.gender-card p {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    cursor: pointer;
} 

/* ====================== COLLECTION ====================== */ 
.collection-section {
    padding: 30px 100px;
    text-align: center;
}

/* Title */
.collection-title {
    font-size: 50px;
    color: #9A0101;
    font-family: "Lato", sans-serif;
}

/* Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

/* Card */
.collection-card {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Image Box */
.collection-img {
    border-radius: 20px;
    overflow: hidden;
    background: #eee;
    position: relative;
}

.collection-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collection-card:hover img {
    transform: scale(1.1);
}

/* Text */
.collection-card h4 { 
    font-family: "Nunito Sans", sans-serif;
    margin-top: 12px;
    font-size: 16px; 
    color: #7a1a1a;
}

.collection-card p { 
    font-family: "Nunito Sans", sans-serif;
    font-size: 13px;
    color: #777;
    margin-top: 4px;
    transition: 0.3s;
}

.collection-card:hover p {
    color: #9A0101;
}

/* View More */
.view-more-wrapper {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.view-more-wrapper .line {
    height: 1px;
    width: 200px;
    background: #ccc;
}

.view-more-btn { 
    font-family: "Nunito Sans", sans-serif;
    padding: 8px 20px;
    border-radius: 10px;
    border: none;
    background: #d9ebe9;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

.view-more-btn:hover {
    background: #9A0101;
    color: #fff;
} 


/* =================== CATEGORY =================== */ 

.category-section {
    padding: 30px 100px;
    text-align: center;
    position: relative;
}

/* Title */
.category-title {
    font-size: 50px;
    color: #9A0101;
    font-family: "Lato", sans-serif; 
    margin-bottom: 48px;
}

.category-subtitle {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    color: #555;
    margin-top: 8px;
    margin-bottom: 30px;
}

/* Carousel */
.category-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
}

/* Hide scrollbar */
.category-carousel::-webkit-scrollbar {
    display: none;
}

/* Card */
.category-card {
    min-width: 220px;
    flex: 0 0 auto;
    text-align: center;
    cursor: pointer;
} 

.category-img-box {
    border-radius: 25px;
    overflow: hidden;
}

.category-card img {
    width: 100%;
    height: auto; 
    object-fit: cover;
    border-radius: 25px;
    transition: transform 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card h4 {
    margin-top: 12px;
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
    color: #5a2a2a;
}

/* Controls (top right like image) */
.category-controls {
    position: absolute;
    right: 100px;
    top: 80px;
    display: flex;
    gap: 10px;
}

.category-btn {
    width: 40px;
    height: 40px;
    border: none; 
    border-bottom-right-radius: 8px;
    cursor: pointer;
    background: #e5c3a6;
    color: #fff;
    transition: 0.3s;
}

.category-btn.prev {
    background: #9A0101; 
    border-top-left-radius: 8px;
}

.category-btn:hover {
    opacity: 0.85;
} 

/* ============== TRENDING ============== */ 

.trending-section {
    padding: 50px 100px;
    text-align: center;
    background: #f5f5f5;
}

/* Top small text */
.trending-sub {
    font-size: 12px;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 5px;
    font-family: "Nunito Sans", sans-serif;
}

/* Title */
.trending-title {
    font-size: 50px;
    color: #9A0101;
    font-family: "Lato", sans-serif;
    margin-bottom: 40px;
}

/* Grid */
.trending-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.trending-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image */
.trending-img {
    border-radius: 25px;
    overflow: hidden;
}

.trending-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.trending-card:hover img {
    transform: scale(1.05);
}

/* Product name */
.product-name {
    margin-top: 10px;
    font-size: 14px;
    font-family: "Nunito Sans", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: start; 
    text-align: left;
}

/* Meta */
.product-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

/* Color dots */
.colors span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #ccc;
}

.colors .gold {
    background: #d4af37;
}

.colors .silver {
    background: #c0c0c0;
}

/* Material text */
.material {
    font-size: 12px;
    color: #777; 
}

/* Hover arrow */
.product-name i {
    transition: 0.3s;
}

.trending-card:hover i {
    transform: translate(3px, -3px);
} 

/* =============== TESTIMONIAL =============== */ 

.testimonial-section {
    background: #f2f2f2;
    padding: 60px 100px;
}

/* Layout */
.testimonial-wrapper {
    gap: 60px;
}

/* Left */
.testimonial-left {
    flex: 1;
}

.testimonial-title {
    font-size: 36px;
    font-family: "Lato", sans-serif;
    margin-bottom: 20px;
}

.testimonial-img {
    width: 260px;
    height: 260px;
    background: #ccc;
    border-radius: 5px;
}

/* Right */
.testimonial-right {
    flex: 1.5; 
    min-width: 0;
}

/* Stars */
.stars i {
    color: #f4b41a;
    font-size: 18px;
}

/* Text */
.testimonial-text {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
    font-family: "Nunito Sans", sans-serif;
    color: #333; 
    overflow-wrap: break-word;
} 

/* Author */
.testimonial-author {
    font-size: 13px;
    color: #666;
}

/* Controls */
.testimonial-controls {
    display: flex;
    gap: 10px;
}

.test-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}

.test-btn:hover {
    background: #9A0101;
    color: #fff;
} 

/* Slider container */
.testimonial-slider {
    overflow: hidden;
    width: 100%;
}

/* Track */
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* Each slide */
.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding-right: 10px;
} 

/* =================== FOLLOW =================== */ 

.insta-section {
    padding: 30px 100px;
    background: #f5f5f5;
} 

.follow-header {
    font-family: "Lato", sans-serif; 
    font-size: 50px; 
    color: #9A0101;
} 

.follow-desc {
    font-family: "Outfit", sans-serif; 
    font-size: 20px; 
}

/* GRID */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

/* Items */
.insta-item {
    overflow: hidden;
    border-radius: 20px;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-item:hover img {
    transform: scale(1.05);
}

.item-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.item-2 {
    grid-column: span 2;
    grid-row: span 1;
}

.item-3 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-4 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-5 {
    grid-column: span 2;
    grid-row: span 2;
}

/* ======================= CONTACT ====================== */ 

#contact {
    background-color: #D1AC8C;
}

.contact-box {
    width: 100%; 
    min-height: 500px; 
    border: 1px solid white; 
    border-radius: 20px; 
    overflow: hidden;
    position: relative;
} 

.contact-modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

.contact-pink {
  flex: 2; 
  background-color: #d4bca7;
  padding: 36px 180px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-brown {
  flex: 1;
  background-color: #4D1F08;
}

.contact-header {
    font-family: 'EB Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 8px;
}

.contact-header em {
    font-style: italic;
    color: #4D1F08;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-subheader {
    font-family: 'EB Garamond', serif;
    font-size: 0.95rem;
    color: #3a2010;
    line-height: 1.4;
    margin-bottom: 16px;
}

#contactModal input:not([type="checkbox"]),
#contactModal textarea {
    width: 100%;
    padding: 7px 10px;
    font-size: 0.82rem;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid rgba(255,255,255,0.8);
    background-color: #d4bca7;
    color: #1a1a1a;
    outline: none;
    border-radius: 0;
}

#contactModal input:not([type="checkbox"])::placeholder,
#contactModal textarea::placeholder {
    font-size: 0.72rem;
    color: #3a2010;
    opacity: 1;
}

#contactModal input:focus:not([type="checkbox"]),
#contactModal textarea:focus {
    outline: 1px solid #4D1F08;
    border-color: transparent;
}

#contactModal textarea {
    resize: none;
    height: 52px;
}

.city-post {
    display: flex;
    gap: 10px;
}

.city-post input {
    flex: 1;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'EB Garamond', serif;
    font-size: 0.78rem;
    color: #2a1005;
    line-height: 1.35;
    margin-top: 4px;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid #4D1F08;
    border-radius: 4px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    margin-top: 1px;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: #4D1F08;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

#contactModal .btn-contact {
    width: 100%;
    background-color: #4D1F08;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 10px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    margin-top: 4px;
}

#contactModal .btn-contact:hover {
    background-color: #3a1506;
}

#contactModal a {
    color: #4D1F08;
}

.btn-close {
    padding: 15px 20px; 
    border-radius: 15px;
    background-color: white;
}

.contact-info-strip {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(77,31,8,0.2);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.contact-info-icon {
    width: 28px;
    height: 28px;
    border: 1.5px solid #4D1F08;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 13px;
    height: 13px;
    stroke: #4D1F08;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info-text {
    font-family: 'Outfit', sans-serif;
}

.contact-info-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}

.contact-info-value {
    font-size: 0.68rem;
    color: #4D1F08;
    line-height: 1.2;
    font-weight: 500;
}

.address {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    color: #2a2a2a;
    font-weight: 500;
    margin-top: 8px;
    letter-spacing: 0.01em;
}

.contact-map-wrapper { 
    background-color: #4D1F08;
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 42%;
    height: 75%;
    border-radius: 18px;
    overflow: hidden;
    border: 5px solid #4D1F08;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    z-index: 10;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ============== FOOTER ============= */ 

.footer-section {
    background: #FFEDF2;
    padding: 60px 80px 30px;
    font-family: "Lato", sans-serif;
}

/* Logo placeholder */
.logo-placeholder {
    width: 70px;
    height: 70px;
    background: #9A0101;
    border-radius: 4px;
    margin-bottom: 15px;
} 

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Description */
.footer-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* Titles */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Lists */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li { 
    font-family: "Lato", sans-serif;
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-section ul li:hover {
    color: #9A0101;
}

/* Divider */
.footer-divider {
    height: 1px;
    background: #d8bcbc;
    margin: 30px 0;
}

/* Bottom */
.footer-bottom {
    font-size: 14px;
    color: #555;
}

/* Social icons */
.footer-social i {
    margin-left: 15px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-social i:hover {
    color: #9A0101;
} 

.footer-section a {
    text-decoration: none;
    color: #555;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #9A0101;
}


/* ==============================================
   RESPONSIVE STYLES — tablet & mobile only
   All rules below use max-width so desktop
   (≥ 992px) is completely untouched.
   ============================================== */

/* ---------- Tablet (≤ 991px) ---------- */
@media (max-width: 991px) {

    /* HERO */
    .hero-title {
        font-size: 48px;
    }

    .hero-sub {
        font-size: 17px;
    }

    /* ABOUT */
    .about {
        padding: 30px 40px;
    }

    .about-header {
        font-size: 36px;
    } 

    .about-img {
        width: 80%; 
        height: auto;
    }

    .about-inner {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .about-desc {
        font-size: 18px;
    }

    /* CHOOSE */
    .choose {
        padding: 30px 40px;
    }

    .choose-inner {
        flex-direction: column !important;
        gap: 40px;
    }

    .choose-text {
        width: 100%;
    }

    .choose-header {
        font-size: 36px;
    }

    .choose-subheader {
        font-size: 24px;
    }

    .choose-img-box {
        width: 100%;
    }

    .img-4 {
        top: 0;
    }

    /* SERVICES */
    .services {
        padding: 0 40px 30px 40px;
    }

    .service-header {
        font-size: 36px;
    }

    .service-desc {
        width: 100% !important;
    }

    .service-details {
        grid-template-columns: 1fr;
        row-gap: 40px;
        column-gap: 0;
    }

    .service-img-box {
        width: 100%;
    }

    .service-img-1 {
        left: 15px;
        top: 15px;
        max-width: calc(100% - 15px);
    }

    .service-img-2 {
        left: -15px;
        top: -15px;
        max-width: calc(100% - 15px);
    }

    .service-detail-header {
        font-size: 30px;
    }

    .service-detail-desc {
        font-size: 18px;
        width: 100% !important;
    }

    /* GRAY BOX */
    .gray-box {
        margin: 20px 20px;
        padding: 30px 20px;
    }

    .gray-box-inner {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        justify-items: center;
    }

    .box-text {
        font-size: 16px;
        width: 90%;
    }

    /* TRADITION */
    .tradition-section {
        padding: 30px 40px;
    }

    .tradition-title {
        font-size: 36px;
    }

    .tradition-subtitle {
        width: 100% !important;
    }

    .tradition-header-inner {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px;
    }

    .tradition-grid {
        grid-template-columns: repeat(2, 1fr);
    } 

    .gender-grid {
        grid-template-columns: repeat(2, 1fr);
    } 

    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    } 
    .category-section {
        padding: 30px 50px;
    }

    .category-title {
        font-size: 40px;
    }

    .category-subtitle {
        font-size: 18px;
    }

    .category-controls {
        right: 50px;
        top: 70px;
    }

    .category-card {
        min-width: 200px;
    } 

    .trending-section {
        padding: 40px 50px;
    }

    .trending-title {
        font-size: 34px;
    }

    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    } 

    .testimonial-section {
        padding: 50px 50px;
    }

    .testimonial-wrapper {
        gap: 40px;
    }

    .testimonial-title {
        font-size: 30px;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .testimonial-img {
        width: 220px;
        height: 220px;
    } 

    .insta-section {
        padding: 30px 50px;
    }

    .follow-header {
        font-size: 40px;
    }

    .follow-desc {
        font-size: 18px;
        width: 70%;
    }

    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }

    /* Reset custom layout */
    .insta-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    } 

    .footer-section {
        padding: 50px 40px 25px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-desc {
        font-size: 14px;
    } 

    .contact-box {
        flex-direction: column;
    }

    .contact-pink {
        padding: 30px;
    }

    .contact-brown {
        display: none;
    }

    .contact-map-wrapper {
        position: static;
        transform: none;
        width: 100%;
        height: 250px;
        margin-top: 20px;
        border-radius: 12px;
    }
}

/* ---------- Mobile (≤ 575px) ---------- */
@media (max-width: 575px) {

    /* TOP BAR */
    .top-bar .container {
        justify-content: center !important;
    }

    /* NAVBAR – collapsed menu on dark bg needs legible links */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        padding: 10px 16px;
        border-radius: 8px;
        margin-top: 8px;
    }

    .navbar .nav-link {
        color: #333;
    }

    .navbar-icons {
        color: #333 !important;
    }

    /* HERO */
    .hero-section {
        height: auto;
        min-height: 100svh;
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 32px;
        margin-top: 0 !important;
    }

    .hero-sub {
        font-size: 15px;
        width: 100% !important;
    }

    /* ABOUT */
    .about {
        padding: 30px 20px;
    }

    .about-header {
        font-size: 28px;
        margin-bottom: 24px !important;
    }

    .about-desc {
        font-size: 16px;
    } 

    .about-img {
        width: 80%; 
        height: auto;
    }

    /* CHOOSE */
    .choose {
        padding: 30px 20px;
    }

    .choose-header {
        font-size: 28px;
        margin-bottom: 24px !important;
    }

    .choose-desc {
        font-size: 16px;
    }

    .choose-subheader {
        font-size: 20px;
    }

    .choose-img-box {
        grid-template-columns: repeat(2, 1fr);
    }

    /* SERVICES */
    .services {
        padding: 0 20px 30px 20px;
    }

    .service-header {
        font-size: 28px;
        margin-bottom: 24px !important;
    }

    .service-detail-header {
        font-size: 24px;
    }

    .service-detail-desc {
        font-size: 16px;
    }

    /* GRAY BOX */
    .gray-box {
        margin: 20px 12px;
        padding: 24px 16px;
        border-radius: 18px;
    }

    .gray-box-inner {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }

    .box-text {
        font-size: 14px;
    }

    /* TRADITION */
    .tradition-section {
        padding: 30px 20px;
    }

    .tradition-title {
        font-size: 26px;
        margin-bottom: 16px !important;
    }

    .tradition-subtitle {
        font-size: 15px;
    }

    .tradition-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .tradition-card img {
        height: 180px;
    } 

    .gender-grid {
        grid-template-columns: 1fr;
    }

    .gender-section {
        padding: 40px 20px;
    }

    .gender-title {
        font-size: 32px;
    } 

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-section {
        padding: 40px 20px;
    }

    .collection-title {
        font-size: 30px;
    }  

    .view-more-wrapper .line {
        height: 1px;
        width: 100px;
        background: #ccc;
    }

    .category-section {
        padding: 15px;
    }

    .category-title {
        font-size: 26px; 
        margin-bottom: 0;
    }

    .category-subtitle {
        font-size: 14px;
    }

    .category-carousel {
        gap: 12px;
    }

    .category-card {
        min-width: 140px;
    }

    .category-card h4 {
        font-size: 14px;
    }

    .category-btn {
        width: 30px;
        height: 30px;
        font-size: 12px; 
    } 
    
    .category-controls {
        top: 100px;
    } 

    .trending-section {
        padding: 25px 15px;
    }

    .trending-title {
        font-size: 24px;
    }

    .trending-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-name {
        font-size: 12px;
    }

    .material {
        font-size: 11px;
    }

    .colors span {
        width: 16px;
        height: 16px;
    } 

    .testimonial-section {
        padding: 30px 15px;
    }

    .testimonial-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-author {
        font-size: 12px;
    }

    .testimonial-img {
        width: 160px;
        height: 160px;
    }

    .stars i {
        font-size: 14px;
    }

    .test-btn {
        width: 32px;
        height: 32px;
    } 

    .insta-section {
        padding: 20px 15px;
    }

    .follow-header {
        font-size: 26px;
    }

    .follow-desc {
        font-size: 14px;
    }

    .insta-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    } 

    .footer-section {
        padding: 30px 15px;
        text-align: center;
    }

    .footer-logo-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-section .row > div {
        margin-bottom: 20px;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-section ul li {
        font-size: 14px;
    }

    .footer-desc {
        font-size: 13px;
    }

    .logo-placeholder {
        width: 60px;
        height: 60px;
    }

    .footer-social i {
        margin: 0 8px;
    } 

    .contact-header {
        font-size: 1.5rem;
    }

    .contact-subheader {
        font-size: 0.8rem;
    }

    #contactModal input:not([type="checkbox"]),
    #contactModal textarea {
        font-size: 0.75rem;
        padding: 6px 8px;
    }

    .checkbox-label {
        font-size: 0.7rem;
    }

    .contact-map-wrapper {
        height: 180px;
    }
} 


/* ================= TERMS PAGE ================= */

.terms-hero {
    height: 100vh;
    background: url('./mmjtandc.avif') center/cover no-repeat; 
    position: relative;
}

.terms-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4); 
    pointer-events: none; 
}

.terms-title { 
    position: absolute; 
    bottom: 15%;
    font-size: 100px;
    font-family: "Old Standard TT", serif; 
    z-index: 2; 
    color: white;
}

.terms-sub { 
    position: absolute; 
    bottom: 8%;
    font-size: 40px;
    opacity: 0.8;
}

.terms-section {
    background: #f5f5f5;
    padding: 40px 0;
}

.terms-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    font-family: "Nunito Sans", sans-serif;
    line-height: 1.7;
}

.terms-content li {
    margin-bottom: 14px;
    font-size: 15px; 
    font-family: "Lato", sans-serif;
    color: #4D1F08;
}

.terms-content ol {
    list-style: decimal;
} 

.developer-tag {
    background-color: #9A0101; 
    color: white; 
    display: flex;  
    justify-content: center; 
    padding: 3px 10px; 
    font-size: 14px;
} 

.developer-tag a {
    color: white; 
    text-decoration: none;
}

/* ================= TERMS PAGE RESPONSIVE ================= */

/* ---------- Tablet (≤ 991px) ---------- */
@media (max-width: 991px) {

    .terms-title {
        font-size: 60px;
        bottom: 18%;
        left: 20px;
        right: 20px;
    }

    .terms-sub {
        font-size: 24px;
        bottom: 10%;
        left: 20px;
    }

    .terms-section {
        padding: 30px 20px;
    }

    .terms-content {
        padding: 25px;
    }

    .terms-content li {
        font-size: 14px;
    }
}


/* ---------- Mobile (≤ 575px) ---------- */
@media (max-width: 575px) {

    .terms-hero {
        height: 60vh; /* reduce huge hero */
    }

    .terms-title {
        font-size: 34px;
        bottom: 20%;
        left: 15px;
        right: 15px;
        line-height: 1.2;
    }

    .terms-sub {
        font-size: 16px;
        bottom: 12%;
        left: 15px;
    }

    .terms-section {
        padding: 20px 15px;
    }

    .terms-content {
        padding: 20px;
        border-radius: 8px;
    }

    .terms-content ol {
        padding-left: 16px;
    }

    .terms-content li {
        font-size: 13px;
        margin-bottom: 12px;
    }
}