/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family: 'Inter';
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: auto;
    display: flex;
    justify-content: center;
    color: #121212;
}

ul li a {
    font-family: 'Inter';
    display: block;
    color: #121212;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 25px;
    transition: all 500ms ease;
}

ul li a:hover {
  background-color: #b5b5b5;
  color: blueviolet;
}

.titleBar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4vh;
  background-color: #000000;
}

.titleBar .item {
	gap: 20px;
    margin: 0 10px;
	color: white;
}
.titleBar h1 {
	font-family: 'Inter';
	font-weight: 600;
	font-size: 14px;
	justify-content: space-around;
}

.titleBar:hover {
	background-color: #ffffff;
	color: #121212;
    transition: all 500ms ease;
} 

.titleBar:hover .item {
	color: #121212;
    transition: all 500ms ease;
} 



.slideshow-container {
    max-width: 100vw;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
	transition: transform 0.5s ease-in-out; 
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.8);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,1);
}


.slide-content {
    display: flex;
    justify-content: space-around; 
    align-items: center;
    padding: 20px;
}

.text {
    color: black;
    font-size: 15px;
    padding: 8px 12px;
    width: 45%;
    text-align: center;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 2%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}


.nav-btn:hover {
  background-color: #aaa;
}

#slide-1:checked ~ .navigation .nav-btn[for="slide-1"],
#slide-2:checked ~ .navigation .nav-btn[for="slide-2"],
#slide-3:checked ~ .navigation .nav-btn[for="slide-3"]
#slide-4:checked ~ .navigation .nav-btn[for="slide-4"] {
    color: white;
}


.product_page_wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}


.roast_selector {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.selector-label {
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.roast-tab {
    position: relative;
    width: 65px;
    height: 65px;
    border: 2px solid #eee;
    background: #fff;
    cursor: pointer;
}

.roast-tab.active {
    border-color: #121212;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.roast-tab::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #121212;
    color: #fff;
    padding: 5px 10px;
    font-size: 10px;
    white-space: nowrap;
    border-radius: 3px;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
    z-index: 10;
}

.roast-tab:hover::after {
    opacity: 1;
    bottom: -30px;
}


.roast-tab img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.roast-tab.active {
    color: #121212;
    border-bottom: 3px solid #121212;
}


.product_area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.product_card {
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.product_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.image_wrapper {
    position: relative;
    background: #f9f9f9;
    overflow: hidden;
}
.product_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start; 
    margin-bottom: 50px;
}

.thumbnail-grid {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    justify-content: flex-start;
}
.image_container img {
    width: 100%;
    height: auto;
    display: block;
}

.product_title {
    font-family: 'Inter';
    font-weight: 900;
    font-size: 52px;
    margin: 0;
    text-transform: uppercase;
}

.header_subtext {
    font-family: 'Inter';
    font-weight: bold;
    color: #666;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 32px;
    font-weight: 900;
    margin: 20px 0;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
}

.order_container {
    display: flex;
    gap: 10px;
    height: 55px;
    width: 100%;
    max-width: 450px; 
    margin-top: 5px;
}
.qty_group {
    display: flex;
    flex-direction: column;
}
.qty-btn {
    flex: 1;
    height: 100%;
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
}
.qty_group label {
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 5px;
}
.qty_input_group {
    display: flex;
    align-items: center;
    border: 2px solid #121212;
    flex: 0 0 120px;
    background: #fff;
}
.qty_input_group input {
    width: 30px;
    border: none;
    text-align: center;
    font-weight: 900;
    font-size: 16px;
    outline: none;
    background: transparent;
}
.buy_now_btn {
    flex: 1;
    background: #121212;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.2s ease-in-out;
}

.buy_now_btn:hover {
    background: #333;
}
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #121212;
    color: white;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.productimage {
    width: 100%;
    height: 350px;
    object-fit: contain;
    padding: 20px;
}
.product_name {
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product_info {
    padding: 25px;
    text-align: left;
}
.tagline {
    font-style: italic;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.tags {
    font-size: 12px;
    font-weight: bold;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 20px;
}


@media (max-width: 768px) {
    .product_container {
        grid-template-columns: 1fr;
    }
    .roast_selector {
        flex-wrap: wrap;
    }
}

.image_container {
    grid-row: 1/2;
    grid-column: 1/2;
}

.image_container img {
    display: block;
    width: 100%;
    height: auto;
}

.product_title {
    font-family: 'Inter';
    font-size: 40px;
    color: #121212;
}

.header_subtext {
  color: #121212;
  background-image: linear-gradient(to right, #676767, #121212);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: 'Inter';
  font-weight: bold;
  margin: 10px 0;
  text-transform: uppercase;
}

.info_container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}


.pricing_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.product_price {
    font-size: 20px;
    font-weight: 900;
}

.orderbutton {
    background: #121212;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    transition: background 0.2s;
}

.orderbutton:hover {
    background: #333;
}
.order_container a {
    text-decoration: none;
    font-family: 'Inter';
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-color: green;
    padding: 10px 40px;
    margin: 0 30px;
}

.price {
  color: #121212;
  font-family: 'Inter';
  font-weight: bold;
  font-size: 25px;
  margin: 20px 0;
}

.description {
  color: #121212;
  font-family: 'Inter';
  font-size: 20px;
  line-height: 40px;
}


.active-slide {
  display: block;
  transform: translateX(0);
}


.slide-in-right {
  animation: slideInRight 0.5s forwards;
}

.slide-in-left {
  animation: slideInLeft 0.5s forwards;
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.navbar {
  color: #121212;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  height: 70px;
  border-bottom: 1px solid #D9D9D9;
}


.nav-logo img {
  height: 45px;
  cursor: pointer;
}

.nav-links {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

.nav-links a {
  color: #121212;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.3s;
  background-color: transparent;
  color: #121212;
}

.nav-links a:hover {
  color: #FFFFFF;
  background-color: #565656;
}


.nav-utils {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-btn, .cart-btn {
  border: none;
  color: #121212;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 700;
  gap: 8px;
}

.cart-container {
  display: flex;
  align-items: center;
  border: 1px solid #D9D9D9;
  padding: 5px 15px;
  background-color: transparent;
}
.cart-btn:hover {
  background-color: #121212;
  color: #FFFFFF;
}
.cart-container:hover {
  background-color: #121212;
  color: #FFFFFF;
}
.cart-count {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #D9D9D9;
  font-weight: bold;
}

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

body {
    color: #fff;
}
.coffee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 0.8fr 0.8fr;
    grid-template-rows: repeat(3, 240px);
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
	margin-top: 10vh;
}

.item-1 { grid-column: 1 / 3; grid-row: 1; }
.item-2 { grid-column: 3; grid-row: 1; }

.item-3 { grid-column: 1 / 2; grid-row: 2 / 4; }
.item-5 { grid-column: 2 / 4; grid-row: 2; }
.item-4 { grid-column: 2; grid-row: 3; }
.item-6 { grid-column: 3; grid-row: 3; }

.item-7 { grid-column: 4; grid-row: 1 / 4; }
.item-8 { grid-column: 5; grid-row: 1 / 4; }


.grid-item {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
    z-index: 1;
}
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    opacity: 0;
    visibility: hidden;
    
    transition: all 0.4s ease-in-out;
    z-index: 2;
    padding: 20px;
    text-align: center;
}
.grid-item:hover .overlay {
    opacity: 1;
    visibility: visible;
}

.grid-item:hover img {
    transform: scale(1.1);
}


.overlay h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.grid-item:hover h3 {
    transform: translateY(0);
}

.shop-btn {
    padding: 10px 22px;
    background: white;
    color: black;
    border: none;
    border-radius: 2px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    cursor: pointer;
    clip-path: inset(0 100% 0 0); 
    transition: all 0.6s ease 0.2s;
}

.grid-item:hover .shop-btn {
    clip-path: inset(0 0 0 0);
}

.shop-btn:hover {
    background: #e0e0e0;
    transform: scale(1.05) !important;
}


@media (max-width: 1024px) {
    .coffee-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .grid-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 350px;
    }
}

@media (max-width: 600px) {
    .coffee-grid {
        grid-template-columns: 1fr;
    }
}

.cta-section {
  position: relative;
  height: 60vh;
  min-height: 50vw;
  background-image: url('assets/imagePreviews.svg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Inter';

}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.cta-content h2 {
  font-family: 'Inter', serif;
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
}


.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-primary, .btn-secondary {
  padding: 15px 35px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 2px;
  transition: 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: #ffffff;
  color: #000;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
}

.btn-primary:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}


@media (max-width: 768px) {
  .cta-content h2 { font-size: 2rem; }
  .cta-buttons { flex-direction: column; }
}

.testimonials {
  padding: 80px 20px;
  background-color: #0b0b0b;
  color: white;
  text-align: center;
  margin-top: 10vw;

}

.section-intro h2 {
  font-size: 5rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.section-intro p {
  color: #888;
  margin-bottom: 50px;
  font-size: 1.5rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.testi-card {
  background: #161616;
  padding: 40px;
  border-radius: 15px;
  text-align: left;
  border: 1px solid #222;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-10px);
  border-color: #444;
}

.stars {
  color: #d4af37; 
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.quote {
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.author {
  font-weight: bold;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}

.contactheader {
  font-family: 'Inter';
  font-weight: bold;
  text-transform: uppercase;
  font-size: 30px;
  color: #121212;
  margin: auto;
  width: fit-content;
  text-align: center;
}

.contacttext {
  font-size: 20px;
  color: #121212;
  margin: auto;
  padding: 10px 90px;
  line-height: 40px;
}

.address {
  font-weight: bold;
}

.contact {
  grid-row: 1/2;
  grid-column: 2/3;
  display: grid;
  border: 1px solid #D9D9D9;
  margin: 40px auto;
  width: 600px;
  min-height: 200px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, 1fr);
  color: black;
  border-radius: 5px;
}

.aside {
  grid-row: 1/2;
  grid-column: 1/2;
  padding: 40px;
}

.formcontainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}

.contactinput {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.contactinput input {
  font-family: 'Inter';
  font-size: 18px;
  padding: 10px;
  background-color: #F9F9F9;
  border: 1px solid #D9D9D9;
  border-bottom: 2px solid #d9d9d9;
  border-radius: 4px;
}

.contactinput label {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 15px;
  font-family: 'Inter';
  margin: 10px 0;
}

#submit {
  grid-column: 1/3;
  grid-row: 5/6;
  margin: 10px;
  height: 50px;
  border-radius: 4px;
  background-color: #121212;
  color: white;
  border: none;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

#submit:hover {
  background-color: #333;
}

#firstname {
  grid-column: 1/2;
  grid-row: 1/2;
}

#lastname {
  grid-column: 2/3;
  grid-row: 1/2;
}

#email {
  grid-column: 1/3;
  grid-row: 2/3;
}

#phone {
  grid-column: 1/3;
  grid-row: 3/4;
}

#comments {
  grid-column: 1/3;
  grid-row: 4/5;
}


@media (max-width: 600px) {
  .testi-card { 
    padding: 25px; 
  }
}


.footer {
  background-color: #121212;
  color: #ffffff;
  padding: 60px 40px 20px;
  font-family: 'Inter', sans-serif;
}


.footer-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.newsletter-content h2 {
  font-size: 28px;
  font-weight: 900;
  margin: 0;
  letter-spacing: 2px;
}

.newsletter-content p {
  color: #a0a0a0;
  margin: 5px 0 0;
}

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 500px;
}

.newsletter-form input {
  flex-grow: 1;
  background: transparent;
  border: 1px solid #444;
  padding: 15px;
  color: white;
  font-weight: bold;
}

.newsletter-form button {
  background-color: #121212;
  color: #000;
  border: none;
  padding: 0 30px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.newsletter-form button:hover {
  background-color: #121212;
}


.footer-divider {
  border: 0;
  border-top: 1px solid #333;
  margin-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-weight: 800;
}

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

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

.footer-col ul li a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}


.footer-col ul li a:hover {
  color: #ffffff;
  
}


.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
  color: #666;
}

.legal-links a {
  color: #666;
  text-decoration: none;
  margin-left: 20px;
}

.legal-links a:hover {
  color: #fff;
}


@media (max-width: 768px) {
  .footer-newsletter {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .legal-links a {
    margin: 0 10px;
  }
}



.cart-wrapper {
    position: relative;
    display: inline-block;
}


.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: #ffffff;
    border: 1px solid #121212;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: none; 
    z-index: 1000;
    margin-top: 10px;
}


.cart-wrapper:hover .cart-dropdown {
    display: block;
}


.cart-items-list {
    max-height: 350px;
    overflow-y: auto;
    padding: 15px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: #f9f9f9;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-info h4 {
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 900;
}

.cart-item-info p {
    font-size: 12px;
    color: #666;
    margin: 4px 0 0;
}

/* Footer & Buttons */
.cart-footer {
    padding: 15px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 900;
    margin-bottom: 15px;
    font-size: 16px;
}

.checkout-btn {
    width: 100%;
    background: #121212;
    color: #fff;
    border: none;
    padding: 12px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.checkout-btn:hover {
    background: #333;
}

.empty-msg {
    text-align: center;
    color: #888;
    padding: 20px 0;
}