/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    width:100%;
    overflow-x:hidden;
}
body {
    font-family: 'Roboto', sans-serif;
    background: #F8F5EF;
    color: #3E2D20;
    /*color: var(--primary-color);*/
    line-height: 1.6;
    width:100%;
    overflow-x:hidden;
}

:root {
    --primary-color: #1a4d2e;
    /* deep tea green */
    --accent-color: #d4a056;
    /* golden brown */
    --light-bg: #fff9f3;
    /* cream */
    --dark-text: #2c2c2c;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: #FFFDF9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

header .logo img {
    width: 70px;
}

header .logo .tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
}

header .logo img:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
}

/* .logo { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--primary-color); } */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav ul li {
    position: relative;
}
nav ul li::after{
    content:"";
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    height:15px;
}

nav ul li a {
    text-decoration: none !important;
    color: #3E2D20;
    /* color: var(--primary-color); */
    font-weight: 400;
    padding: 8px 10px;
    transition: 0.3s;
    font-size: larger;
    font-family: 'Playfair Display', serif;
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatx) format('woff2');
    unicode-range: U +0301, U +0400 -045F, U +0490 -0491, U +04B0 -04B1, U +2116;
}

nav ul li a:hover {
    color: #B88746;
    /*color: #e67e22;*/
}

nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    max-height: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    padding: 10px 0;

}

nav ul li:hover ul {
    display: block;
}

nav ul li:hover > ul{
    display: block;
}

 nav ul li ul li{
    display: block;
    width: 100%;
}

 nav ul li ul li a{
    display: block;
    padding: 12px 20px;
    color: #3E2D20;
    text-decoration: none;
    transition: .3s;
}

nav ul li ul li a:hover{
    background: #B88746;
    color: #fff;
}


/* Hide menu toggle on desktop */
.menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: url('https://fastly.picsum.photos/id/431/5000/3334.jpg?hmac=T2rL_gBDyJYpcr1Xm8Kv7L6bhwvmZS8nKT5w3ok58kA') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero div h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero div p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero div a {
    /*background: #e67e22;*/
    background: #B88746;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.hero div a:hover {
    background: #1F3A2E;
}

.hero-slide {
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    padding: 0 20px;
}

.hero-slide h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-slide p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero-slide a {
    background: #e67e22;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.hero-slide a:hover {
    background-color: #cf711b;
}


/* Menu Section */
.menu {
    padding: 80px 40px;
    text-align: center;
    /*background: var(--primary-color);*/
    background: #1F3A2E;
}

.menu h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    color: var(--light-bg);
}

.menu h2::after {
    content: '';
    display: block;
    width: 25%;
    height: 3px;
    margin: 15px auto 0;
    background: var(--accent-color);
    border-radius: 5px;
}

.menu .items {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.menu .item {
    
    background: #FFF;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    /* cursor: pointer; */
    display: flex;
    flex-direction: column;
}

.menu .item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.item:hover img {
    transform: scale(1.08);
}

.menu .item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu .item h3 {
    margin: 20px 0 10px;
    font-weight: 600;
    font-size: 1.4rem;
    /*color: var(--primary-color);*/
    color: #3E2D20;
}

.menu .item p {
    padding: 0 15px 25px;
    font-size: 1rem;
    /*color: var(--primary-color);*/
    color: #6E6256;
    line-height: 1.6;
}





/* Gallery Section */

.gallery #seeMoreBtn {
    margin-top: 30px;
    padding: 12px 25px;
    font-size: 1rem;
    background: #B88746;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery #seeMoreBtn:hover {
    background: #1F3A2E;
}

#viewLessBtn {
    background-color: #B88746;
    color: white;
    margin-top: 30px;
}

#viewLessBtn:hover {
    background-color: #1F3A2E;
}


.gallery {
    text-align: center;
    padding: 80px 20px;
    background: #F8F5EF;

}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.gallery h2::after {
    content: '';
    display: block;
    width: 7%;
    height: 3px;
    margin: 2px auto 0;
    background: var(--accent-color);
    border-radius: 5px;
}

.gallery .images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    justify-items: center;
}

.gallery .images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery .images img:hover {
    transform: scale(1.05);
}

.gallery-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.gallery-buttons button {
    padding: 12px 28px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#seeMoreBtn {
    background-color: #e67e22;
    color: white;
}

#seeMoreBtn:hover {
    background-color: #cf711b;
}

#viewAllBtn {
    background-color: var(--primary-color);
    color: white;
    margin-top: 30px;
}

#viewAllBtn:hover {
    background-color: #1a252f;
}

.hidden-images {
    display: none;
    /* margin-top: 20px; */
}

.hidden-images {
    animation: fadeIn 0.8s ease-in-out;
}

/* Outlets Section */

.outlets-unique {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background: #C5A678;
    overflow: hidden;
}

.outlets-unique h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: #fff;
}

.outlets-unique h2::after {
    content: '';
    display: block;
    width: 12%;
    height: 3px;
    margin: 2px auto 0;
    background: var(--accent-color);
    border-radius: 5px;
}

.outlets-unique p {
    font-size: 1.125rem;
    margin-bottom: 60px;
    color: #fff8f0;
}

.outlet-tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.tile {

    background: #FFFDF9;
    color: #3E2D20;
    border: 2px solid rgba(255, 255, 255, .4);
    width: 220px;
    height: 220px;
    border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 15px 35px rgba(62, 45, 32, .12);
    transition: transform 0.4s, box-shadow 0.4s, border-radius 0.4s;
}

.tile:hover {
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
}

.tile h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: #3E2D20;
}

.tile p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #6E6256;
}

.tile a {

    text-decoration: none !important;
    background: #1F3A2E;
    color: #FFF;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.tile a:hover {
    background: #B88746;
    color: #1F3A2E;
}

.outlet-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.outlet-slider::-webkit-scrollbar {
    display: none;
}

/* Base styling */
.outlet-slider .owl-item {
    display: flex;
    justify-content: center;
}

.owl-nav {
    display: none;
}

.outlet-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    width: 100%;
    max-width: 320px;
}

.outlet-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.outlet-card:hover img {
    transform: scale(1.05);
}

.outlet-card h3 {
    font-size: 1.2rem;
    color: #1a4d2e;
    margin: 15px 0 8px;
}

.outlet-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}





/* 
.form-row {
    display: flex;
    gap: 15px;
}

.half {
    flex: 1;
} */

.submit-btn {
    background-color: #e67e22;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: #cf711b;
}


/* Footer */

.footer {
    background: #3b2a1d;
    color: #f7f2ea;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
}

.footer-logo {
    width: 100px;
    margin-bottom: 15px;
}

.footer-column h3,
.footer-column h4 {
    color: #e8d2ae;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer-column p,.footer-column p a {
    line-height: 1.8;
    color: #ddd;
    font-size: 15px;
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: .3s;
}

.footer-column ul li a:hover {
    color: #c5a678;
    padding-left: 6px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    border-radius: 50%;
    background: #c5a678;
    color: #fff;
    text-decoration: none !important;
    transition: .3s;
}

.social-icons a:hover {
    background: #ffffff;
    color: #3b2a1d;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 22px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-bottom p {
    margin: 0;
    color: #d8d8d8;
}

.footer-bottom a {
    color: #d8d8d8;
    text-decoration: none;
    margin: 0 8px;
    transition: .3s;
}

.footer-bottom a:hover {
    color: #c5a678;
}

@media(max-width:768px) {

    .footer-container {
        text-align: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
        gap: 12px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
    }
}



/* Responsive */

@media (max-width: 768px) {
    header .logo img {
        height: 40px;
    }

    header .logo .tagline {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .header-right {
        margin-left: 0;
        gap: 10px;
    }

    .hero div h1 {
        font-size: 2.2rem;
    }

    .hero div p {
        font-size: 1rem;
    }

    .about img {
        width: 100%;
    }

    .menu .items {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .outlet-tiles {
        gap: 20px;
    }

    .tile {
        width: 70%;
        height: 200px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}



/*<!-- new 2026/07/04 -->*/

/* --------------------- */
/* ✅ RESPONSIVE HEADER  */
/* --------------------- */
@media (max-width: 1024px) {
    header {
        padding: 10px 25px;
    }

    header .logo img {
        width: 60px;
    }

    header .logo .tagline {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 25px;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        display: none;
        background: var(--light-bg);
        border-top: 1px solid #ddd;
        padding: 15px 0;
        margin-top: 10px;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
        position: relative;
    }

    nav ul li a {
        display: block;
        width: 100%;
        padding: 10px 20px;
        border-radius: 0;
    }

    /* Add a mobile menu icon */
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.6rem;
        color: var(--primary-color);
        position: absolute;
        right: 25px;
        top: 12px;
    }
}

/* ---------- Menu RESPONSIVE  ---------- */

/* Tablet */
@media (max-width: 1024px) {
    .menu {
        padding: 60px 30px;
    }

    .menu h2 {
        font-size: 2.5rem;
    }

    .item img {
        height: 220px;
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    .menu {
        padding: 50px 20px;
    }

    .menu h2 {
        font-size: 2.2rem;
    }

    .items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .item img {
        height: 180px;
    }

    .item h3 {
        font-size: 1.2rem;
    }

    .item p {
        font-size: 0.95rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .menu {
        padding: 40px 15px;
    }

    .menu h2 {
        font-size: 1.8rem;
    }

    .items {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .item img {
        height: 160px;
    }

    .item h3 {
        font-size: 1.1rem;
    }

    .item p {
        font-size: 0.9rem;
    }
}

/* Outlet Responsive */
@media (max-width: 992px) {
    .outlet-card {
        max-width: 280px;
    }

    .outlet-card img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .outlet-card {
        max-width: 250px;
    }

    .outlet-card img {
        height: 180px;
    }

    .outlet-card h3 {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .outlet-card {
        max-width: 90%;
    }

    .outlet-card img {
        height: 160px;
    }

    .outlet-card h3 {
        font-size: 1rem;
    }
}




/* --------------------- */
/* ✅ RESPONSIVE GALLERY */
/* --------------------- */
@media (max-width: 1024px) {
    .gallery .images {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .gallery h2 {
        font-size: 2rem;
    }

    .gallery .images img {
        height: 200px;
    }

    .gallery-buttons {
        gap: 10px;
    }

    .gallery-buttons button {
        width: 80%;
    }
}

@media (max-width: 480px) {
    header .logo {
        gap: 8px;
    }

    header .logo img {
        width: 50px;
    }

    header .logo .tagline {
        font-size: 1.1rem;
    }

    .gallery .images {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery .images img {
        height: 180px;
    }

    .gallery h2 {
        font-size: 1.8rem;
    }
}

/* -------------------------------------------------- */
/* ✅ OUR SIGNATURE MENU — RESPONSIVE ADJUSTMENTS     */
/* -------------------------------------------------- */

@media (max-width: 1024px) {
    .signature-menu {
        padding: 60px 30px;
    }

    .signature-menu h2 {
        font-size: 2.5rem;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .menu-item img {
        height: 220px;
    }

    .menu-item h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .signature-menu {
        padding: 50px 20px;
        text-align: center;
    }

    .signature-menu h2 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .menu-item img {
        height: 180px;
    }

    .menu-item h3 {
        font-size: 1.1rem;
    }

    .menu-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .menu-item img {
        height: 160px;
    }

    .signature-menu h2 {
        font-size: 1.8rem;
    }
}


/* -------------------------------------------------- */
/* ✅ OUR OUTLETS SECTION — RESPONSIVE ADJUSTMENTS     */
/* -------------------------------------------------- */

@media (max-width: 1024px) {
    .outlets {
        padding: 60px 30px;
    }

    .outlets h2 {
        font-size: 2.5rem;
    }

    .outlet-slider .outlet-card {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .outlets {
        padding: 50px 20px;
        text-align: center;
    }

    .outlets h2 {
        font-size: 2.2rem;
    }

    .outlet-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
    }

    .outlet-card {
        flex: 0 0 80%;
        scroll-snap-align: center;
        margin: 0 auto;
    }

    .outlet-card img {
        height: 200px;
    }

    .outlet-card h3 {
        font-size: 1.1rem;
    }

    .outlet-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .outlets h2 {
        font-size: 1.8rem;
    }

    .outlet-card {
        flex: 0 0 90%;
    }

    .outlet-card img {
        height: 180px;
    }
}


/* ✅ Responsive H2 ::after line adjustments */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {

    /*  .about h2::after, */
    .menu h2::after,
    .gallery h2::after,
    .outlets-unique h2::after,
    .contact h2::after {
        width: 20%;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

    /* .about h2::after, */
    .menu h2::after,
    .gallery h2::after,
    .outlets-unique h2::after,
    .contact h2::after {
        width: 30%;
    }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {

    /* .about h2::after, */
    .menu h2::after,
    .gallery h2::after,
    .outlets-unique h2::after,
    .contact h2::after {
        width: 40%;
    }
}


/**/

/*====================================
        Crafted Fresh Everyday
    =====================================*/

.crafted-section {

    position: relative;
    padding: 120px 0;
    background: url('../images/crafted_fresh/photo-1631593595401-cecd63980f22.jpg') center center/cover no-repeat;
    overflow: hidden;

}

.crafted-overlay {

    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 58, 46, .82);

}

.crafted-content {

    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;

}

.crafted-content span {

    display: inline-block;
    color: #C5A678;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;

}

.crafted-content h2 {

    font-size: 54px;
    color: #fff;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;

}

.crafted-content p {

    color: #f5f5f5;
    line-height: 1.9;
    font-size: 17px;

}

.crafted-features {

    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

}

.crafted-box {

    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: .4s;

}

.crafted-box:hover {

    background: #C5A678;
    transform: translateY(-10px);

}

.crafted-box img {

    width: 250px;
    height: 150px;
    margin: 0 auto 25px;

}

.crafted-box h4 {

    color: #fff;
    margin-bottom: 15px;
    font-size: 22px;
    font-family: 'Playfair Display', serif;

}

.crafted-box p {

    color: #e7e7e7;
    line-height: 1.8;
    margin: 0;

}

.crafted-box:hover p,
.crafted-box:hover h4 {

    color: #fff;

}

/*=========================
    Responsive
    =========================*/

@media(max-width:992px) {

    .crafted-features {

        grid-template-columns: repeat(2, 1fr);

    }

    .crafted-content h2 {

        font-size: 42px;

    }

}

@media(max-width:768px) {

    .crafted-section {

        padding: 80px 0;

    }

    .crafted-features {

        grid-template-columns: 1fr;

    }

    .crafted-content h2 {

        font-size: 34px;

    }

}

@media(max-width:576px) {

    .crafted-content h2 {

        font-size: 28px;

    }

    .crafted-box {

        padding: 30px 20px;

    }

}


