/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Cormorant+Garamond:wght@400;700&display=swap');

:root {
  --background: #ffffff;
  --foreground: #171717;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  color: var(--foreground);
  background: var(--background);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
}

/* Classic Menu Styles */
.classic-menu-bg {
  background: #f8f5ed url('/classic-paper-texture.png');
  min-height: 100vh;
  padding: 32px 0;
}
.classic-menu-frame {
  border: 3px solid #bfa77a;
  border-radius: 18px;
  margin: 0 auto;
  max-width: 600px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 32px #0001;
  padding: 36px 32px 32px 32px;
  position: relative;
}
.classic-menu-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 2px;
  color: #7a5c2e;
}
.classic-menu-divider {
  text-align: center;
  font-size: 1.5rem;
  color: #bfa77a;
  margin: 18px 0;
}
.classic-menu-category {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #7a5c2e;
  margin-top: 24px;
  margin-bottom: 8px;
  border-bottom: 1px solid #e5d7b8;
  padding-bottom: 4px;
}
.classic-menu-item {
  display: flex;
  justify-content: space-between;
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: #222;
}
.classic-menu-price {
  color: #7a5c2e;
  font-weight: 600;
  margin-left: 12px;
}

/* Digital Menu Styles */
.digital-menu-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
}
.digital-menu-category-select, .digital-menu-search {
  padding: 12px;
  border-radius: 10px;
  border: 1.5px solid #e0e0e0;
  font-size: 16px;
  min-width: 180px;
  background: #fff;
  transition: border 0.2s;
}
.digital-menu-category-select:focus, .digital-menu-search:focus {
  border: 1.5px solid #4f8cff;
  outline: none;
}
.digital-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 32px;
  gap: 32px;
}
@media (max-width: 600px) {
  .digital-menu-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #0001, 0 1.5px 6px #4f8cff11;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  min-height: 260px;
}
.product-card:hover {
  box-shadow: 0 8px 32px #4f8cff22, 0 2px 8px #0002;
  transform: translateY(-2px) scale(1.025);
  z-index: 2;
}
.product-card-image {
  width: 100%;
  max-height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  background: #f6f8fa;
}
.product-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #23283a;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}
.product-card-desc {
  font-size: 0.98rem;
  color: #888;
  margin-bottom: 8px;
  min-height: 32px;
}
.product-card-price {
  font-size: 1.08rem;
  font-weight: 700;
  color: #4f8cff;
  margin-bottom: 10px;
}
.product-card-btn {
  margin-top: auto;
  background: linear-gradient(90deg, #4f8cff 60%, #1976d2 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  cursor: pointer;
  box-shadow: 0 2px 8px #4f8cff22;
  transition: background 0.18s, box-shadow 0.18s;
}
.product-card-btn:hover {
  background: linear-gradient(90deg, #1976d2 60%, #4f8cff 100%);
  box-shadow: 0 4px 16px #4f8cff33;
}

/* Keen Slider Carousel Styles */
.keen-slider {
  overflow: hidden !important;
}

.keen-slider__slide {
  overflow: visible;
  box-sizing: border-box;
}

.keen-slider__slide .product-card {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
}

/* Carousel responsive styles */
@media (max-width: 768px) {
  .carousel-nav-button {
    display: none !important;
  }
  
  .keen-slider__slide .product-card {
    max-width: 260px;
  }
}

/* List view styles */
.list-product-card {
  transition: all 0.2s ease;
}

.list-product-card:hover {
  box-shadow: 0 4px 16px #4f8cff22 !important;
  transform: translateY(-1px) !important;
}

/* Mobile responsiveness for list view */
@media (max-width: 600px) {
  .list-product-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: center;
  }
  
  .list-product-card .product-image {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 12px auto !important;
  }
  
  .list-product-card .add-to-cart-btn {
    width: 100% !important;
    margin-top: 12px !important;
  }
}

/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!./node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!./node_modules/next/font/google/target.css?{"path":"src/app/layout.tsx","import":"Inter","arguments":[{"variable":"--font-inter","subsets":["latin"]}],"variableName":"inter"} ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* cyrillic-ext */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/ba9851c3c22cd980-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/21350d82a1f187e9-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/df0a9ae256c0569c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/8e9860b6e62d6359-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: '__Inter_Fallback_f367f3';src: local("Arial");ascent-override: 90.49%;descent-override: 22.56%;line-gap-override: 0.00%;size-adjust: 107.06%
}.__className_f367f3 {font-family: '__Inter_f367f3', '__Inter_Fallback_f367f3';font-style: normal
}.__variable_f367f3 {--font-inter: '__Inter_f367f3', '__Inter_Fallback_f367f3'
}

