/*
Theme Name: Foodking
Author: Modina Theme
Author URI: https://themeforest.net/user/modinatheme/
Description: Fast Food Restaurant Html
Version: 2.0.0
*/

/*
=================================
|***    Table of contents:   ***|
=================================

Main Style file-> assets/css/main.css 

All the SCSS File in SCSS Folder of Assets Folder. You can read the doc file also for better understand.

// BASIC
@import 'basic';

// MIXIN
@import 'variables';

// TYPOGRAPHY
@import 'typography';

// MIX
@import 'mix';

// HELPER
@import 'helper';

// ICON FONTS
@import 'icon';

// ANIMATION
@import 'animation';

// Button 
@import 'btn';

// Colors 
@import 'colors';

// Preloader 
@import 'preloader';

/* ----------------------------------
    Template Section Styles
 ------------------------------------*/

 /* // Menu - Header Section 
 @import 'header';
 
 // Hero Slide - Section 
 @import 'hero';
 
 // Section Title - Heading 
 @import 'section';
 
 // About - Section 
 @import 'about';
 
 // Features - Section 
 @import 'features';
 
 // services - Section 
 @import 'services';
 
 // testimonial - Section 
 @import 'testimonial';
 
 // Portfolio - Cases - Section 
 @import 'project';
 
 // Price Table - Section 
 @import 'price';
 
 // Call To Action - Section 
 @import 'cta';
 
 // Content Block - Section 
 @import 'contentblock';
 
 // team - Section 
 @import 'team';
 
 // funfact - Section 
 @import 'funfact';
 
 // Download - Section 
 @import 'carousel';
 
 // FAQ - Section 
 @import 'faq';
 
 // Blog - Section 
 @import 'blog';
 
 // Contact Us - Section 
 @import 'contact';
 
 // footer - Section 
 @import 'footer';n facts */



.seven-spices-logo{
    width:100px !important;
}

.seven-spices-header{
    background-color: #ffffff !important;
}

.seven-footer-logo{
    width:100px !important;
}


.seven-footer-heading{
    color: #fff !important;
}

.seven-slider-heading{
    font-size:80px !important;
}

.seven-slider-para{
    color:#000000 !important;
}

.header-contact-btn{
    background-color:#7c121c !important;
 
}

.seven-hero-btn a{
    background-color:#7c121c !important;
}

.seven-about-sec{
    padding-top:60px !important;
}

.seven-about-btn{
    background-color:#7c121c !important;
}


.quality-section{
    background-color:#f7f5ee !important;
}

.why-choose-section{
    background-color:#f5f5f5 !important;
}

.contact-sec-btn{
    background-color:#e0a734 !important;
}

@media(max-width:600px){
    .hamburger-mobile{
          display:block !important;
    }
    .about-wrapper .about-image img {
    width: 100% !important;
}
}

@media(min-width:767px){
    .hamburger-mobile{
          display:none !important;
    }
}



/*------------breadcrumb banner styles-----*/

/* =========================================
   ABOUT BREADCRUMB BANNER
========================================= */

.about-breadcrumb-banner {
    width: 100%;
    min-height: 310px;

    position: relative;

    overflow: hidden;

    background: #f7f1e5;
}


/* =========================================
   CONTAINER
========================================= */

.about-banner-container {
    width: 100%;
    max-width: 1400px;

    min-height: 310px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 52% 48%;

    position: relative;
}


/* =========================================
   CONTENT
========================================= */

.about-banner-content {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 45px 50px 45px 8%;
}


/* =========================================
   BREADCRUMB
========================================= */

.about-breadcrumb {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 22px;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.4px;

    color: #8d171f;
}


.about-breadcrumb a {
    color: #d89418;

    text-decoration: none;

    transition: color 0.3s ease;
}


.about-breadcrumb a:hover {
    color: #8d171f;
}


.about-breadcrumb span {
    color: #8d171f;
}


/* =========================================
   MAIN TITLE
========================================= */

.about-banner-content h1 {
    margin: 0 0 12px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: 0.5px;

    color: #8d171f;

    text-transform: uppercase;
}


.about-banner-content h1 span {
    color: #d89216;
}


/* =========================================
   SUBTITLE
========================================= */

.about-banner-content h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(21px, 2.2vw, 30px);

    line-height: 1.35;

    font-weight: 600;

    color: #292929;
}


/* =========================================
   GOLD DECORATIVE LINE
========================================= */

.about-banner-content::after {
    content: "";

    width: 55px;

    height: 3px;

    background: #d89216;

    margin-top: 22px;
}


/* =========================================
   IMAGE
========================================= */

.about-banner-image {
    position: relative;

    height: 100%;

    min-height: 310px;

    overflow: hidden;
}


.about-banner-image img {
    width: 100%;

    height: 100%;

    min-height: 310px;

    display: block;

    object-fit: cover;

    object-position: center;

    transform: scale(1.02);
}


/* =========================================
   IMAGE SOFT BLEND
========================================= */

.about-banner-image::before {
    content: "";

    position: absolute;

    z-index: 1;

    left: 0;
    top: 0;

    width: 120px;

    height: 100%;

    background: linear-gradient(
        to right,
        #f7f1e5 0%,
        rgba(247, 241, 229, 0.75) 30%,
        rgba(247, 241, 229, 0) 100%
    );
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .about-breadcrumb-banner {
        min-height: 280px;
    }


    .about-banner-container {
        min-height: 280px;

        grid-template-columns: 50% 50%;
    }


    .about-banner-content {
        padding: 35px 30px 35px 6%;
    }


    .about-breadcrumb {
        font-size: 9px;

        margin-bottom: 17px;
    }


    .about-banner-content h1 {
        font-size: 40px;
    }


    .about-banner-content h2 {
        font-size: 21px;
    }


    .about-banner-image {
        min-height: 280px;
    }


    .about-banner-image img {
        min-height: 280px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .about-breadcrumb-banner {
        min-height: 330px;
    }


    .about-banner-container {
        min-height: 330px;

        display: block;
    }


    .about-banner-content {
        min-height: 330px;

        padding: 40px 25px;

        justify-content: center;

        background:
            linear-gradient(
                rgba(247, 241, 229, 0.88),
                rgba(247, 241, 229, 0.88)
            ),
            url("../images/about-banner-spices.jpg");

        background-size: cover;

        background-position: center;
    }


    .about-banner-content h1 {
        font-size: 38px;

        max-width: 350px;
    }


    .about-banner-content h2 {
        font-size: 20px;

        max-width: 330px;
    }


    .about-banner-image {
        display: none;
    }


    .about-banner-image::before {
        display: none;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .about-breadcrumb-banner {
        min-height: 290px;
    }


    .about-banner-content {
        min-height: 290px;

        padding: 30px 20px;
    }


    .about-breadcrumb {
        font-size: 8px;

        margin-bottom: 15px;
    }


    .about-banner-content h1 {
        font-size: 32px;
    }


    .about-banner-content h2 {
        font-size: 18px;
    }


    .about-banner-content::after {
        width: 45px;

        margin-top: 17px;
    }

}



.new-testimonial-sec{
    background-color:#f4f1ea;
}



/* =====================================================
   PRODUCTS PAGE
===================================================== */

.products-page {
    width: 100%;
    overflow: hidden;
}


/* =====================================================
   HERO / BREADCRUMB
===================================================== */

.products-hero {
    width: 100%;

    min-height: 315px;

    display: grid;

    grid-template-columns: 48% 52%;

    overflow: hidden;

    background: #f8f1e5;
}


.products-hero-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 45px 40px 45px 8%;

    background-color: #f8f1e5;

    background-image:
        radial-gradient(
            rgba(141, 16, 24, 0.035) 1px,
            transparent 1px
        );

    background-size: 10px 10px;
}


/* Breadcrumb */

.products-breadcrumb {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 18px;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 600;
}

.products-breadcrumb a {
    color: #8d1018;

    text-decoration: none;
}

.products-breadcrumb span {
    color: #e5a21a;
}


/* Heading */

.products-hero h1 {
    margin: 0;

    font-family: "Oswald", sans-serif;

    font-size: clamp(42px, 5vw, 64px);

    font-weight: 600;

    line-height: 1;

    color: #8d1018;

    text-transform: uppercase;
}

.products-hero h1 span {
    color: #e5a21a;
}


/* Gold line */

.hero-line {
    width: 58px;

    height: 3px;

    margin: 17px 0;

    background: #e5a21a;

    position: relative;
}

.hero-line::after {
    content: "";

    width: 5px;
    height: 5px;

    background: #e5a21a;

    border-radius: 50%;

    position: absolute;

    right: -4px;

    top: -1px;
}


/* Description */

.products-hero p {
    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    line-height: 1.75;

    color: #333;
}


/* Hero image */

.products-hero-image {
    height: 315px;

    overflow: hidden;
}

.products-hero-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* =====================================================
   QUALITY FEATURES
===================================================== */

.quality-section {
    width: 100%;

    padding: 25px 0;

    background: #fff;
}


.quality-container {
    width: 87%;

    max-width: 1300px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    border: 1px solid #eadbc6;

    border-radius: 10px;

    box-shadow:
        0 4px 15px rgba(80, 40, 10, 0.06);

    overflow: hidden;
}


.quality-item {
    min-height: 76px;

    padding: 12px 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-right: 1px solid #eadbc6;
}

.quality-item:last-child {
    border-right: 0;
}


/* Icon */

.quality-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #8d1018;

    font-size: 30px;
}


/* Content */

.quality-content h4 {
    margin: 0 0 3px;

    color: #8d1018;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 700;
}

.quality-content p {
    margin: 0;

    color: #5c5c5b;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.4;
}


/* =====================================================
   PRODUCTS SECTION
===================================================== */

.products-section {
    width: 100%;

    padding: 0 0 50px;

    background: #fff;
}


.products-container {
    width: 87%;

    max-width: 1300px;

    margin: auto;
}


/* =====================================================
   CATEGORY FILTER
===================================================== */

.product-filter {
    width: 100%;

    padding: 12px;

    margin-bottom: 17px;

    background: #f8f5f0;

    border-radius: 7px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 9px;

    flex-wrap: wrap;
}


.filter-btn {
    padding: 9px 20px;

    border: 1px solid #e6d5be;

    border-radius: 25px;

    background: transparent;

    color: #444;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 500;

    cursor: pointer;

    transition: all 0.3s ease;
}


.filter-btn:hover {
    background: #8d1018;

    color: #fff;

    border-color: #8d1018;
}


.filter-btn.active {
    background: #8d1018;

    color: #fff;

    border-color: #8d1018;
}


/* =====================================================
   PRODUCT GRID
===================================================== */

.product-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 16px;
}


/* =====================================================
   PRODUCT CARD
===================================================== */

.product-card {
    background: #fff;

    border: 1px solid #ebdfd0;

    border-radius: 9px;

    overflow: hidden;

    box-shadow:
        0 3px 10px rgba(70, 40, 10, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 22px rgba(70, 40, 10, 0.13);
}


/* Product image */

.product-image {
    width: 100%;

    height: 165px;

    position: relative;

    overflow: hidden;
}


.product-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.product-card:hover .product-image img {
    transform: scale(1.07);
}


/* Round icon */

.product-round-icon {
    width: 42px;
    height: 42px;

    position: absolute;

    left: 50%;

    bottom: -18px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: #fff;

    border: 1px solid #ead7c1;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #8d1018;

    font-size: 16px;

    box-shadow:
        0 2px 7px rgba(0, 0, 0, 0.1);
}


/* Product name */

.product-name {
    min-height: 65px;

    padding: 23px 8px 10px;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;
}


.product-name h3 {
    margin: 0;

    color: #222;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.4;
}


/* =====================================================
   VALUE ADDED SECTION
===================================================== */

.value-section {
    width: 100%;

    padding: 0 0 45px;

    background: #fff;
}


.value-wrapper {
    width: 87%;

    max-width: 1300px;

    min-height: 155px;

    margin: auto;

    display: grid;

    grid-template-columns: 220px 1fr;

    border: 1px solid #ead8bf;

    border-radius: 9px;

    overflow: hidden;

    background: #fffaf3;
}


/* Image */

.value-image {
    height: 155px;

    overflow: hidden;
}


.value-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}


/* Content */

.value-content {
    position: relative;

    padding: 48px 20px 10px;
}


/* Heading */

.value-heading {
    height: 37px;

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    background: #8d1018;

    border-radius: 0 0 18px 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    color: #fff;
}


.value-heading h2 {
    margin: 0;

    font-family: "Oswald", sans-serif;

    font-size: 15px;

    font-weight: 600;
}


.value-heading span {
    width: 30px;

    height: 2px;

    background: #e5a21a;
}


/* Value features */

.value-features {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    height: 100%;
}


.value-item {
    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    border-right: 1px solid #e7d8c5;
}


.value-item:last-child {
    border-right: 0;
}


.value-icon {
    width: 42px;

    height: 42px;

    margin-bottom: 7px;

    border-radius: 50%;

    background: #fff;

    border: 1px solid #ead7c1;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #8d1018;

    font-size: 25px;
}


.value-item p {
    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.4;

    color: #333;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .quality-item {
        padding: 10px;
    }

    .value-wrapper {
        grid-template-columns: 180px 1fr;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .products-hero {
        grid-template-columns: 50% 50%;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .quality-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .quality-item:nth-child(3) {
        border-right: 0;
    }

    .quality-item:nth-child(4),
    .quality-item:nth-child(5) {
        border-top: 1px solid #eadbc6;
    }

    .value-wrapper {
        grid-template-columns: 1fr;
    }

    .value-image {
        height: 220px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    /* HERO */

    .products-hero {
        display: block;
    }


    .products-hero-content {
        min-height: 280px;

        padding: 35px 25px;

        background:
            linear-gradient(
                rgba(248,241,229,0.9),
                rgba(248,241,229,0.9)
            ),
            url("../images/products-banner.jpg");

        background-size: cover;

        background-position: center;
    }


    .products-hero-image {
        display: none;
    }


    .products-hero h1 {
        font-size: 42px;
    }


    .products-hero p {
        font-size: 9px;
    }


    /* QUALITY */

    .quality-container {
        width: 90%;

        grid-template-columns: 1fr 1fr;
    }


    .quality-item {
        min-height: 85px;

        justify-content: flex-start;

        padding: 10px;
    }


    .quality-item:nth-child(2) {
        border-right: 0;
    }


    .quality-item:nth-child(3) {
        border-right: 1px solid #eadbc6;
    }


    .quality-item:nth-child(4) {
        border-right: 0;
    }


    .quality-item:last-child {
        grid-column: span 2;

        border-right: 0;

        justify-content: center;
    }


    /* FILTER */

    .product-filter {
        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        scrollbar-width: none;
    }


    .product-filter::-webkit-scrollbar {
        display: none;
    }


    .filter-btn {
        flex-shrink: 0;
    }


    /* PRODUCTS */

    .products-container {
        width: 90%;
    }


    .product-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 11px;
    }


    .product-image {
        height: 145px;
    }


    .product-name {
        min-height: 62px;
    }


    .product-name h3 {
        font-size: 14px;
    }


    /* VALUE */

    .value-wrapper {
        width: 90%;
    }


    .value-image {
        height: 190px;
    }


    .value-content {
        padding-left: 10px;

        padding-right: 10px;
    }


    .value-heading h2 {
        font-size: 11px;
    }


    .value-heading {
        gap: 8px;
    }


    .value-heading span {
        width: 18px;
    }


    .value-features {
        grid-template-columns: repeat(2, 1fr);

        margin-top: 5px;
    }


    .value-item {
        min-height: 90px;

        padding: 12px 5px;

        border-bottom: 1px solid #e7d8c5;
    }


    .value-item:nth-child(2),
    .value-item:nth-child(4) {
        border-right: 0;
    }


    .value-item:last-child {
        grid-column: span 2;

        border-bottom: 0;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .products-hero-content {
        min-height: 260px;

        padding: 30px 20px;
    }


    .products-hero h1 {
        font-size: 36px;
    }


    .products-hero p {
        font-size: 8.5px;
    }


    .products-breadcrumb {
        font-size: 8px;
    }


    .quality-container {
        grid-template-columns: 1fr;
    }


    .quality-item,
    .quality-item:nth-child(3),
    .quality-item:nth-child(4) {
        border-right: 0;

        border-bottom: 1px solid #eadbc6;
    }


    .quality-item:last-child {
        grid-column: auto;

        border-bottom: 0;
    }


    .products-container {
        width: 92%;
    }


    .product-grid {
        grid-template-columns: 1fr 1fr;

        gap: 9px;
    }


    .product-image {
        height: 135px;
    }


    .product-round-icon {
        width: 36px;

        height: 36px;

        font-size: 13px;
    }


    .product-name {
        padding-top: 22px;
    }


    .value-image {
        height: 170px;
    }

}



/* =========================================================
   SEVEN SPICES GALLERY
========================================================= */

.seven-gallery-section {
    width: 100%;
    padding: 55px 0 70px;
    background: #ffffff;
}

.seven-gallery-container {
    width: 87%;
    max-width: 1350px;
    margin: 0 auto;
}


/* =========================================================
   FILTER
========================================================= */

.seven-gallery-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;

    margin-bottom: 30px;
}


.seven-gallery-filter-btn {
    padding: 11px 23px;

    border: 1px solid #ead8bd;

    border-radius: 25px;

    background: #ffffff;

    color: #333333;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 500;

    cursor: pointer;

    transition: all 0.3s ease;
}


.seven-gallery-filter-btn:hover {
    background: #8d1018;

    border-color: #8d1018;

    color: #ffffff;
}


.seven-gallery-filter-btn.active {
    background: #8d1018;

    border-color: #8d1018;

    color: #ffffff;
}


/* =========================================================
   GALLERY GRID
========================================================= */

.seven-gallery-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 15px;
}


/* =========================================================
   GALLERY ITEM
========================================================= */

.seven-gallery-item {
    width: 100%;

    height: 220px;

    overflow: hidden;

    border-radius: 8px;

    background: #f4eee5;

    border: 1px solid #eadcca;

    cursor: pointer;

    position: relative;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.seven-gallery-item:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 25px rgba(80, 40, 10, 0.16);
}


.seven-gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 60%,
            rgba(80, 20, 10, 0.18)
        );

    opacity: 0;

    transition: opacity 0.3s ease;

    pointer-events: none;
}


.seven-gallery-item:hover::after {
    opacity: 1;
}


.seven-gallery-item img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.5s ease;
}


.seven-gallery-item:hover img {
    transform: scale(1.08);
}


/* =========================================================
   LIGHTBOX
========================================================= */

.seven-gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 40px;

    background:
        rgba(20, 10, 5, 0.92);
}


.seven-gallery-lightbox.active {
    display: flex;
}


.seven-gallery-lightbox-image {
    max-width: 85vw;

    max-height: 85vh;

    display: flex;

    align-items: center;

    justify-content: center;
}


.seven-gallery-lightbox-image img {
    max-width: 100%;

    max-height: 85vh;

    display: block;

    object-fit: contain;

    border-radius: 6px;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.seven-gallery-close {
    position: absolute;

    top: 25px;

    right: 35px;

    width: 45px;

    height: 45px;

    border: 0;

    border-radius: 50%;

    background: #8d1018;

    color: #ffffff;

    font-size: 30px;

    line-height: 1;

    cursor: pointer;

    z-index: 10;

    transition: all 0.3s ease;
}


.seven-gallery-close:hover {
    background: #e3a21a;

    color: #ffffff;
}


/* =========================================================
   PREVIOUS / NEXT
========================================================= */

.seven-gallery-prev,
.seven-gallery-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;

    height: 48px;

    border: 0;

    border-radius: 50%;

    background: #ffffff;

    color: #8d1018;

    font-size: 22px;

    cursor: pointer;

    transition: all 0.3s ease;

    z-index: 10;
}


.seven-gallery-prev {
    left: 30px;
}


.seven-gallery-next {
    right: 30px;
}


.seven-gallery-prev:hover,
.seven-gallery-next:hover {
    background: #e3a21a;

    color: #ffffff;
}


/* =========================================================
   HIDDEN FILTER ITEMS
========================================================= */

.seven-gallery-item.gallery-hidden {
    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .seven-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }


    .seven-gallery-item {
        height: 210px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .seven-gallery-container {
        width: 90%;
    }


    .seven-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }


    .seven-gallery-item {
        height: 220px;
    }


    .seven-gallery-filter {
        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 8px;

        scrollbar-width: none;
    }


    .seven-gallery-filter::-webkit-scrollbar {
        display: none;
    }


    .seven-gallery-filter-btn {
        flex-shrink: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .seven-gallery-section {
        padding: 35px 0 50px;
    }


    .seven-gallery-container {
        width: 92%;
    }


    .seven-gallery-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }


    .seven-gallery-item {
        height: 170px;

        border-radius: 6px;
    }


    .seven-gallery-filter {
        margin-bottom: 20px;

        gap: 7px;
    }


    .seven-gallery-filter-btn {
        padding: 9px 16px;

        font-size: 9px;
    }


    .seven-gallery-lightbox {
        padding: 20px;
    }


    .seven-gallery-lightbox-image {
        max-width: 92vw;
    }


    .seven-gallery-prev,
    .seven-gallery-next {
        width: 38px;

        height: 38px;

        font-size: 17px;
    }


    .seven-gallery-prev {
        left: 10px;
    }


    .seven-gallery-next {
        right: 10px;
    }


    .seven-gallery-close {
        top: 15px;

        right: 15px;

        width: 38px;

        height: 38px;

        font-size: 25px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .seven-gallery-grid {
        gap: 8px;
    }


    .seven-gallery-item {
        height: 145px;
    }

}



/* =========================================================
   SEVEN SPICES CONTACT PAGE
========================================================= */

.seven-contact-section {
    width: 100%;
    padding: 70px 0;
    background: #f8f4ed;
}

.seven-contact-container {
    width: 87%;
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    background: #ffffff;

    border: 1px solid #eadcca;

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(75, 35, 10, 0.07);
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.seven-contact-info {
    padding: 50px 45px;

    background:
        linear-gradient(
            145deg,
            #fffaf2,
            #f8f0e5
        );

    border-right: 1px solid #eadcca;
}


.seven-contact-heading {
    margin-bottom: 32px;
}


.seven-contact-heading > span {
    display: block;

    margin-bottom: 8px;

    color: #8d1018;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


.seven-contact-heading h2 {
    margin: 0;

    color: #8d1018;

    font-family: "Oswald", sans-serif;

    font-size: 30px;

    font-weight: 600;

    line-height: 1.15;

    text-transform: uppercase;
}


.seven-contact-heading h2 strong {
    color: #d99612;

    font-weight: 600;
}


.seven-contact-line {
    width: 48px;

    height: 3px;

    margin: 14px 0;

    background: #d99612;
}


.seven-contact-heading p {
    max-width: 500px;

    margin: 0;

    color: #666;

    font-family: "Poppins", sans-serif;

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT INFO ITEM
========================================================= */

.seven-contact-info-item {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 20px 0;

    border-bottom: 1px solid #e8ddcf;
}


.seven-contact-info-item:last-child {
    border-bottom: 0;
}


/* ICON */

.seven-contact-icon {
    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border: 1px solid #ead9c2;

    background: #fff;

    color: #8d1018;

    font-size: 18px;

    box-shadow:
        0 3px 8px rgba(60, 30, 10, 0.05);
}


.seven-contact-info-content h3 {
    margin: 0 0 6px;

    color: #8d1018;

    font-family: "Poppins", sans-serif;

    font-size: 18px;

    font-weight: 700;
}


.seven-contact-info-content p {
    margin: 0;

    color: #555;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    line-height: 1.7;
}


.seven-contact-info-content a {
    color: #555;

    text-decoration: none;

    transition: color 0.3s ease;
}


.seven-contact-info-content a:hover {
    color: #8d1018;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.seven-contact-form-wrapper {
    padding: 50px 50px;

    background: #fff;
}


.seven-contact-form-wrapper
.seven-contact-heading {
    margin-bottom: 25px;
}


.seven-contact-form {
    width: 100%;
}


.seven-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.seven-form-group {
    width: 100%;

    margin-bottom: 18px;
}


.seven-form-group label {
    display: block;

    margin-bottom: 7px;

    color: #333;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 600;
}


.seven-form-group label span {
    color: #8d1018;
}


.seven-form-group input,
.seven-form-group textarea,
.seven-form-group select {
    width: 100%;

    box-sizing: border-box;

    padding: 13px 15px;

    border: 1px solid #e4d9ca;

    border-radius: 6px;

    outline: none;

    background: #fffdf9;

    color: #333;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.seven-form-group input {
    height: 46px;
}


.seven-form-group textarea {
    min-height: 135px;

    resize: vertical;
}


.seven-form-group input::placeholder,
.seven-form-group textarea::placeholder {
    color: #999;
}


.seven-form-group input:focus,
.seven-form-group textarea:focus {
    border-color: #8d1018;

    box-shadow:
        0 0 0 3px rgba(141, 16, 24, 0.07);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.seven-contact-submit {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 165px;

    padding: 13px 22px;

    border: 0;

    border-radius: 5px;

    background: #8d1018;

    color: #fff;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.seven-contact-submit:hover {
    background: #d99612;

    transform: translateY(-2px);
}


.seven-contact-submit i {
    font-size: 12px;
}


/* =========================================================
   PRIVACY
========================================================= */

.seven-contact-privacy {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 15px;

    color: #777;

    font-family: "Poppins", sans-serif;

    font-size: 8px;
}


.seven-contact-privacy i {
    color: #8d1018;

    font-size: 14px;
}


/* =========================================================
   LOCATION SECTION
========================================================= */

.seven-location-section {
    width: 100%;

    padding: 0 0 70px;

    background: #f8f4ed;
}


.seven-location-container {
    width: 87%;

    max-width: 1300px;

    margin: 0 auto;

    padding: 40px;

    background: #fff;

    border: 1px solid #eadcca;

    border-radius: 12px;

    box-shadow:
        0 8px 30px rgba(75, 35, 10, 0.06);
}


/* LOCATION HEADING */

.seven-location-heading {
    margin-bottom: 25px;
}


.seven-location-heading > span {
    display: block;

    margin-bottom: 7px;

    color: #8d1018;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


.seven-location-heading h2 {
    margin: 0;

    color: #8d1018;

    font-family: "Oswald", sans-serif;

    font-size: 30px;

    font-weight: 600;

    text-transform: uppercase;
}


.seven-location-heading h2 strong {
    color: #d99612;
}


/* =========================================================
   GOOGLE MAP
========================================================= */

.seven-map-wrapper {
    width: 100%;

    height: 450px;

    overflow: hidden;

    border-radius: 8px;

    border: 1px solid #e6d8c7;
}


.seven-map-wrapper iframe {
    width: 100%;

    height: 100%;

    display: block;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .seven-contact-container {
        grid-template-columns: 1fr;
    }


    .seven-contact-info {
        border-right: 0;

        border-bottom: 1px solid #eadcca;
    }


    .seven-contact-form-wrapper {
        padding: 45px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 767px) {

    .seven-contact-section {
        padding: 45px 0;
    }


    .seven-contact-container {
        width: 90%;
    }


    .seven-contact-info {
        padding: 35px 25px;
    }


    .seven-contact-form-wrapper {
        padding: 35px 25px;
    }


    .seven-contact-heading h2 {
        font-size: 26px;
    }


    .seven-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .seven-location-section {
        padding-bottom: 45px;
    }


    .seven-location-container {
        width: 90%;

        padding: 25px 18px;
    }


    .seven-location-heading h2 {
        font-size: 26px;
    }


    .seven-map-wrapper {
        height: 350px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .seven-contact-info {
        padding: 30px 20px;
    }


    .seven-contact-form-wrapper {
        padding: 30px 20px;
    }


    .seven-contact-info-item {
        gap: 12px;
    }


    .seven-contact-icon {
        width: 42px;

        height: 42px;

        font-size: 15px;
    }


    .seven-contact-info-content h3 {
        font-size: 18px;
    }


    .seven-contact-info-content p {
        font-size: 14px;
    }


    .seven-form-group input {
        height: 44px;
    }


    .seven-form-group textarea {
        min-height: 120px;
    }


    .seven-contact-submit {
        width: 100%;
    }


    .seven-map-wrapper {
        height: 300px;
    }

}