
/* index */
/* SLIDER */

.hero-slider1{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

/* KHUNG ẢNH */

.slides1{
    display:flex;
    height:100%;
    transition:transform 0.8s ease;
}

/* TỪNG ẢNH */

.slide1{
    min-width:100%;
    height:100vh;

    position:relative;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* LỚP TỐI */

.overlay1{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.45);

    z-index:1;

    pointer-events:none;
}

/* NỘI DUNG */

.hero-content1{
    position:absolute;

    top:50%;
    left:8%;

    transform:translateY(-50%);

    z-index:5;

    color:white;

    max-width:500px;
}

.hero-content1 span{
    color:#d4a373;
    font-size:22px;
    font-weight:bold;
}

.hero-content1 h1{
    font-size:80px;
    line-height:1.1;
    margin:20px 0;
}

.hero-content1 p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:30px;
}

/* BUTTON */

.btn1{
    display:inline-block;

    padding:15px 35px;

    background:#c08b5c;
    color:white;

    text-decoration:none;

    border-radius:40px;

    font-weight:bold;

    transition:0.3s;
}

.btn1:hover{
    background:#9c6b41;
}

/* MŨI TÊN */

.prev1,
.next1{
    position:absolute;

    top:50%;
    transform:translateY(-50%);

    width:65px;
    height:65px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,0.25);

    color:white;

    font-size:30px;

    cursor:pointer;

    z-index:9999;
}

/* QUAN TRỌNG */

.prev1{
    left:20px;
}

.next1{
    right:20px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .hero-content1 h1{
        font-size:45px;
    }

    .hero-content1{
        left:6%;
    }

}







/* All */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Nền*/
body {
    font-family: Arial;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("img/background.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.wrapper {
    max-width: 1200px;
    margin: 40px auto;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    transition: 0.4s;
}

/* Khi scroll */
.navbar.scrolled {
    background: rgba(0,0,0,0.8);
    padding: 10px 60px;
}

/* Logo */
.logo {
    color: white;
    font-size: 26px;
    font-weight: bold;
}

/* Menu */
.menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

/* Link */
.menu a {
    color: white;
    text-decoration: none;
    position: relative;
    padding: 8px 10px;
    transition: 0.3s;
}

/* Gạch chân animation */
.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: cyan;
    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

.menu a:hover {
    color: cyan;
    text-shadow: 0 0 10px cyan;
}

/* Dropdown container */
.dropdown {
    position: relative;
}

/* Menu */
.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    width: 260px;
    padding: 10px;
    background :black;
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(15px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Hiện menu */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Item */
.dropdown-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;

    color: white;
    text-decoration: none;

    padding: 12px 15px;
    border-radius: 8px;

    transition: 0.25s;
}

/* Hover item */
.dropdown-menu a:hover {
    background: rgba(23, 23, 23, 0.1);
    transform: translateX(5px);
    box-shadow: 0 0 10px rgba(0,255,255,0.3);
}

/* chữ phụ */
.dropdown-menu span {
    font-size: 13px;
    opacity: 0.7;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    font-size: 40px;
}

/* MOBILE */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;

}

@media(max-width: 768px) {
    .menu {
        position: absolute;
        top: 100%;
        right: 0;

        background: rgba(0,0,0,0.95);
        flex-direction: column;
        width: 200px;

        display: none;
        list-style: none;
        padding: 0;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        
    }
}
/* Container căn giữa */
.container {
    align-items: flex-start;
    margin-top: 100; /* tránh bị navbar đè */
    padding: 20px;
    display: flex;
    gap: 20px;
    margin-top: 0;
}  
/*chỉnh thụt dòng*/
.hero {
    position: relative;
}
.content {
    position: absolute;
    top: 120px;     /* lên/xuống */
    left: 50px;
    transform: none;
    z-index: 2;
}
/* Khối danh mục */
.category-box {
    width: 260px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    color: white;
}

/* Tiêu đề */
.category-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 5px;
}

/* List */
.category-list {
    list-style: none;
}

/* Item */
.category-list li {
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;

    display: flex;
    justify-content: space-between;
}


.category-list li:hover {
    background: rgba(0,255,255,0.2);
    transform: translateX(6px);
}

/* Mũi tên */
.category-list li::after {
    content: "→";
    opacity: 0;
    transition: 0.3s;
}

.category-list li:hover::after {
    opacity: 1;
}
/* Cột trái */
.left {
    width: 25%;
}

/* Cột phải */
.right {
    width: 75%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    color: white;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cột */
    gap: 20px;
}

 /* Responsive */
@media(max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .left, .right {
        width: 100%;
    }
    .left {
        width: 100%;
    }
    .right {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-box {
        width: 100%;
    }
    .category-list li {
        width: 100%;
    }
}
/* Card */
.product {
    background: white;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    height: 360px; /* giúp bằng nhau */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #C4A484;
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

/* Ảnh */
.product img {
    width: 100%;
    height: 220px;
    object-fit: cover;  /* ảnh không méo */
}

/* Hover */
.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.product button {
    padding: 8px;
    border: none;
    background: cyan;
    border-radius: 5px;
    cursor: pointer;
}
.product.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}
.footer{
    text-align: center;
    padding: 30px 20px;
    font-size: 13px;
    color: #C4A484;
}

.footer-top {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-top a {
    text-decoration: none;
    color: #C4A484;
    font-weight: 500;
}

.footer-top a:hover {
    color: black;
}

/* logo giữa */
.footer-middle {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-middle img {
    height: 40px;
}

.footer-bottom p {
    margin: 5px 0;
}
@media(max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 10px;
    }
}
.search-box {
    position: relative;
}

/* Input */
.search-box input {
    width: 200px;
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.9);
    transition: 0.3s;
}
/* Focus */
.search-box input:focus {
    width: 200px; /* tự nở ra */
    box-shadow: 0 0 10px rgba(0,255,255,0.5);
}
/* Placeholder */
.search-box input::placeholder {
    color: #888;
}
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

/* slider */
.slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.slider img.active {
    opacity: 1;
}

.container {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.container {
    display: flex;
    gap: 20px;
    padding: 20px;
}


                                   /* LIEN HE */
form {
  width: 700px;
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;

  border: none;
  background: rgba(255,255,255,0.9);
}/* INPUT TO HƠN */

/* TEXTAREA */
textarea {
  grid-column: span 2;
  height: 120px;
}

/* BUTTON */
.submit {
  grid-column: span 2;
  padding: 14px;
  font-size: 16px;

  background: white;
  border: none;
  cursor: pointer;
}

/* index*/
.left1 {
    width: 60%;
}

.right1 {
    width: 40%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    color: white;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cột */
    gap: 20px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: white;
}


header {
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
    z-index: 10;
}/* HEADER */

.logo {
    color: orange;
    font-weight: bold;
}

nav .active {
    background: orange;
    color: white;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('tra-sua.jpg') no-repeat center/cover;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

/* CONTENT */
.content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    max-width: 500px;
    text-align: center; 
}

.content h1 {
    font-size: 80px;
    font-weight: bold;
}

.content h1 span {
    color: orange;
}

.content p {
    margin: 20px 0;
    line-height: 1.5;
}


.buttons {
    display: flex;
    gap: 15px;
}/* BUTTON */

.btn-main {
    background: orange;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    cursor: pointer;
}

                                /* gt*/
        h1 {
            text-align: center;
            padding: 25px;
            color: white;
        }

        .container1 {
            width: 65%;
            margin: auto;
        }

        .member1 {
            display: flex;
            align-items: center;
            margin: 20px 0;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .left2 {
            width: 30%;
            text-align: center;
            padding: 20px;
            background: #f7f7f7;
        }

        .left2 img {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            object-fit: cover;
        }

        .right2 {
            width: 70%;
            padding: 20px 30px;
        }

        .right2 h2 {
            margin: 0;
            font-size: 22px;
            color: #333;
        }

        .info1 {
            margin-top: 10px;
            font-size: 15px;
            color: #555;
        }

        .info1 p {
            margin: 5px 0;
        }
       
        .member1:nth-child(even) {
            flex-direction: row-reverse;
        } /* so le trái phải */






                                    /* Lienhe */
    /* Header */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 40px;
      background: white;
      border-bottom: 1px solid #eee;
    }

    nav a {
      margin: 0 10px;
      text-decoration: none;
      color: black;
      font-weight: 500;
    }

    .search {
      background: #c62828;
      color: white;
      padding: 10px;
      border-radius: 5px;
    }

    /* Banner */
    .bannerlh {
      background: url('https://images.unsplash.com/photo-1551024601-bec78aea704b') no-repeat center/cover;
      height: 250px;
      display: flex;
      align-items: center;
      padding-left: 60px;
      color: black;
      text-align: center;
      color: white;
      justify-content: center;  /* căn ngang */
      align-items: center;      /* căn dọc */
    }

    /* Content */
    .container3 {
  max-width: 1200px;
  margin: auto;
  padding: 60px 40px;

  display: flex;
  justify-content: center;
}

    .btn {
      display: inline-block;
      background: #c62828;
      color: white;
      padding: 10px 20px;
      margin-bottom: 20px;
      text-decoration: none;
    }
.submit {
  background-color: #8c3939; 
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 16px;
}


.register-link a{
    color: rgb(243, 118, 135);
    text-decoration: none;
    font-weight: bold;
}
.register-link a:hover{
    color: rgb(243, 118, 135);
}
.submit a{
    margin: 0 10px;
    text-decoration: none;
    color: black;
    font-weight: 500;
}






/* =================index ABOUT US ================= */

.about-section{
    width:100%;
    padding:100px 80px;
    background:#f5f5f5;
}

.about-wrap{
    max-width:1200px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* LEFT IMAGE */

.about-left{
    position:relative;
    width:55%;
    height:600px;
}

.about-img-big{
    width:700px;
    height:500px;

    object-fit:cover;

    border-radius:30px;

    position:absolute;
    top:0;
    left:120px;
}

.about-img-small{
    width:420px;
    height:350px;

    object-fit:cover;

    border-radius:25px;

    position:absolute;
    bottom:0;
    left:0;

    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* RIGHT CONTENT */

.about-right{
    width:40%;
}

.about-subtitle{
    color:#c8a27c;
    font-size:38px;
    font-style:italic;
    margin-bottom:10px;
}

.about-title{
    font-size:52px;
    font-weight:700;
    color:#222;
    margin-bottom:25px;
}

.about-line{
    width:120px;
    height:2px;

    background:#c8a27c;

    margin-bottom:35px;

    position:relative;
}

.about-line::before{
    content:"◈";

    position:absolute;

    left:-15px;
    top:-12px;

    color:#c8a27c;

    font-size:22px;
}

.about-text{
    font-size:22px;
    line-height:1.8;
    color:#333;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .about-wrap{
        flex-direction:column;
    }

    .about-left{
        width:100%;
        height:700px;
    }

    .about-right{
        width:100%;
    }

    .about-img-big{
        width:100%;
        left:0;
    }

    .about-img-small{
        left:20px;
    }
}

@media(max-width:768px){

    .about-section{
        padding:60px 20px;
    }

    .about-left{
        height:500px;
    }

    .about-img-big{
        height:350px;
    }

    .about-img-small{
        width:250px;
        height:200px;
    }

    .about-title{
        font-size:36px;
    }

    .about-text{
        font-size:17px;
    }
}
/* ================= index ABOUT ================= */

.coffee-about{
    width:100%;
  
    padding:80px 60px;
}

.coffee-about-container{
    max-width:1300px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    
    gap:50px;
}
/* LEFT */

.coffee-images{
    width:55%;
    position:relative;
}

.coffee-big{
    width:100%;
    height:500px;

    object-fit:cover;

    border-radius:30px;
}

.coffee-small{
    width:55%;
    height:260px;

    object-fit:cover;

    border-radius:25px;

    position:absolute;

    bottom:-60px;
    left:-40px;

    border:10px solid #f5f5f5;

    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* RIGHT */

.coffee-content{
    width:45%;
}

.coffee-mini{
    color:#c7a17a;

    font-size:32px;
    font-style:italic;

    display:block;

    margin-bottom:10px;
}

.coffee-title{
    font-size:55px;
    color:#ffffff;

    margin-bottom:25px;

    font-weight:700;
}

.coffee-line{
    width:110px;
    height:2px;

    background:#ffffff;

    margin-bottom:30px;

    position:relative;
}

.coffee-line::before{
    content:"◈";

    position:absolute;

    left:-15px;
    top:-12px;

    color:#c7a17a;
}

.coffee-text{
    font-size:20px;

    line-height:1.8;

    color:#ffffff;
}

/* RESPONSIVE */

@media(max-width:992px){

    .coffee-about-container{
        flex-direction:column;
        background-color: #111
    }

    .coffee-images{
        width:100%;
    }

    .coffee-content{
        width:100%;
        margin-top:80px;
    }

    .coffee-small{
        left:20px;
        bottom:-40px;
    }
}

@media(max-width:768px){

    .coffee-about{
        padding:60px 20px;
    }

    .coffee-big{
        height:300px;
    }

    .coffee-small{
        height:150px;
    }

    .coffee-title{
        font-size:36px;
    }

    .coffee-text{
        font-size:16px;
    }
}

/* ================= PRODUCTS ================= */

.product-section{

    width:100%;

    background:#f5f5f5;

    padding:100px 60px;
}

/* TITLE */

.product-header{

    text-align:center;

    margin-bottom:80px;
}

.product-header span{

    color:#C4A484;

    font-size:28px;

    font-style:italic;
}

.product-header h2{

    font-size:70px;

    color:#C4A484;

    margin:20px 0;

    font-weight:700;
}

.product-line{

    width:160px;
    height:2px;

    background:#C4A484;

    margin:auto;
}

/* GRID */

.product-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;
}

/* ITEM */

.product-item{

    text-align:center;
}

.product-item img{

    width:100%;

    max-width:320px;

    height:420px;

    object-fit:contain;

    transition:0.4s;
}

.product-item img:hover{

    transform:translateY(-10px) scale(1.03);
}

.product-item h3{

    margin-top:25px;

    font-size:20px;

    color:#6F4E37;

    line-height:1.5;
}
.product h3{

    text-align:center;
    
    margin-top:25px;

    font-size:20px;

    color:#6F4E37;

    line-height:1.5;
}
/* RESPONSIVE */

@media(max-width:1200px){

    .product-grid{

        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .product-section{

        padding:60px 20px;
    }

    .product-header h2{

        font-size:40px;
    }

    .product-header span{

        font-size:18px;
    }

    .product-grid{

        grid-template-columns:1fr;
    }

    .product-item img{

        height:320px;
    }
}

#toast{
    position:fixed;
    top:80px;
    right:20px;
    background:#0c0a08;
    color:white;
    padding:15px 20px;
    border-radius:10px;
    display:none;
    z-index:999;
}

/* ================= WHY SECTION ================= */

.why-section{
    margin-top: 80px;
    width:100%;

    background:#f7f5f2;

    padding:100px 60px;
}

/* TITLE */

.why-header{

    text-align:center;

    max-width:900px;

    margin:auto;

    margin-bottom:80px;
}

.why-header h2{

    font-size:65px;

    color:#c9a15d;

    margin-bottom:30px;

    font-weight:700;
}

.why-header p{

    font-size:24px;

    color:#333;

    line-height:1.8;
}

/* GRID */

.why-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;
}

/* ITEM */

.why-item{

    text-align:center;

    padding:20px;
}

/* ICON */

.why-icon{

    font-size:70px;

    margin-bottom:30px;

    color:#c9a15d;
}

/* TITLE */

.why-item h3{

    font-size:24px;

    color:#4b4b4b;

    margin-bottom:25px;

    font-weight:700;
}

/* TEXT */

.why-item p{

    font-size:20px;

    line-height:1.8;

    color:#333;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .why-grid{

        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .why-section{

        padding:60px 20px;
    }

    .why-header h2{

        font-size:40px;
    }

    .why-header p{

        font-size:17px;
    }

    .why-grid{

        grid-template-columns:1fr;
    }

    .why-item p{

        font-size:16px;
    }
}

.why-icon i{

    font-size:70px;

    color:#c9a15d;

    transition:0.3s;
}

.why-item:hover .why-icon i{

    transform:translateY(-8px);

    color:#b8863b;
}



*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.gt-body{
    font-family:'Poppins',sans-serif;
    background:#d8b79c;
    min-height:100vh;
}

.team-section{
    width:100%;
    padding:100px 8%;
    text-align:center;
}

.team-subtitle{
    color:#b08968;
    font-size:24px;
    font-style:italic;
}

.team-section h1{
    font-size:60px;
    color:#5c4033;
    margin-top:15px;
}

.team-line{
    width:120px;
    height:3px;
    background:#c4a484;
    margin:25px auto 70px;
    border-radius:10px;
}

.team-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.member-card{
    background:white;
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.4s;
}

.member-card:hover{
    transform:translateY(-10px);
}

.member-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.member-info{
    padding:25px;
}

.member-info h2{
    font-size:28px;
    color:#5c4033;
    margin-bottom:10px;
}

.member-info h3{
    color:#b08968;
    font-size:18px;
    margin-bottom:15px;
}

.member-info p{
    color:#666;
    font-size:15px;
    line-height:1.7;
}

.home-btn{
    display:inline-block;
    margin-top:70px;
    padding:15px 40px;
    background:#b08968;
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-size:18px;
    transition:0.3s;
}

.home-btn:hover{
    background:#5c4033;
    transform:translateY(-5px);
}

@media(max-width:992px){

    .team-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .team-section{
        padding:70px 20px;
    }

    .team-section h1{
        font-size:40px;
    }

    .team-container{
        grid-template-columns:1fr;
    }
}