Shop

Red Roast Coffee Β· Shop

/* —– RESET & BASE —– */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #f8f7f5;
font-family: ‘Inter’, sans-serif;
color: #1a1a1a;
padding: 1.5rem;
}
.container {
max-width: 1360px;
margin: 0 auto;
}
/* —– HEADER / NAV —– */
.shop-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0 2rem 0;
flex-wrap: wrap;
gap: 1rem;
}
.shop-header .logo {
font-size: 1.8rem;
font-weight: 700;
color: #1a1a1a;
text-decoration: none;
}
.shop-header .logo span {
color: #b22222;
}
.shop-header .logo .gold {
color: #b8860b;
}
.shop-header .cart-icon {
position: relative;
cursor: pointer;
font-size: 1.5rem;
background: none;
border: none;
color: #1a1a1a;
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
border-radius: 40px;
background: rgba(255, 255, 255, 0.8);
border: 1px solid rgba(212, 175, 55, 0.15);
transition: 0.2s;
}
.shop-header .cart-icon:hover {
background: #ffffff;
box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.shop-header .cart-icon .count {
background: #b22222;
color: white;
border-radius: 50%;
padding: 0.1rem 0.5rem;
font-size: 0.8rem;
font-weight: 600;
min-width: 24px;
text-align: center;
}
/* —– PAGE TITLE & FILTERS —– */
.shop-title {
font-size: 2.8rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.shop-title span {
color: #b8860b;
}
.shop-subtitle {
color: #6a6a6a;
margin-bottom: 2rem;
font-size: 1rem;
}
.filter-bar {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
margin-bottom: 2.5rem;
align-items: center;
}
.filter-btn {
background: transparent;
border: 1px solid rgba(0,0,0,0.06);
padding: 0.5rem 1.2rem;
border-radius: 40px;
font-size: 0.85rem;
font-weight: 500;
cursor: pointer;
transition: 0.2s;
color: #3a3a3a;
font-family: ‘Inter’, sans-serif;
}
.filter-btn:hover {
background: rgba(178, 34, 34, 0.04);
border-color: rgba(178, 34, 34, 0.2);
}
.filter-btn.active {
background: #b22222;
color: white;
border-color: #b22222;
}
/* —– PRODUCT GRID —– */
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1.8rem;
}
.product-card {
background: #ffffff;
border-radius: 1.5rem;
padding: 1.5rem 1.5rem 1.2rem;
border: 1px solid rgba(212, 175, 55, 0.06);
transition: 0.3s ease;
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
}
.product-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
border-color: rgba(212, 175, 55, 0.15);
}
.product-card::before {
content: “”;
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(to right, #b22222, #d4af37);
border-radius: 1.5rem 1.5rem 0 0;
}
.product-category-tag {
font-size: 0.6rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #b8860b;
background: rgba(212, 175, 55, 0.08);
padding: 0.2rem 0.8rem;
border-radius: 20px;
display: inline-block;
margin-bottom: 0.6rem;
align-self: flex-start;
}
.product-name {
font-size: 1.1rem;
font-weight: 600;
color: #1a1a1a;
margin-bottom: 0.2rem;
}
.product-name .sub {
font-weight: 400;
color: #6a6a6a;
font-size: 0.85rem;
display: block;
margin-top: 0.1rem;
}
.product-details {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 0.8rem;
padding-top: 0.8rem;
border-top: 1px solid rgba(0,0,0,0.04);
flex-wrap: wrap;
gap: 0.5rem;
}
.product-price {
font-size: 1.2rem;
font-weight: 700;
color: #b22222;
}
.product-price .currency {
font-size: 0.8rem;
font-weight: 400;
color: #6a6a6a;
}
.product-weight {
font-size: 0.8rem;
color: #6a6a6a;
background: rgba(250, 246, 242, 0.8);
padding: 0.2rem 0.8rem;
border-radius: 20px;
font-weight: 500;
}
.product-weight .gold {
color: #b8860b;
}
.add-to-cart {
margin-top: 1rem;
background: #b22222;
color: white;
border: none;
padding: 0.7rem 1rem;
border-radius: 60px;
font-weight: 600;
font-size: 0.9rem;
cursor: pointer;
transition: 0.2s;
font-family: ‘Inter’, sans-serif;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
width: 100%;
}
.add-to-cart:hover {
background: #8b1a1a;
transform: scale(1.01);
}
.add-to-cart:active {
transform: scale(0.97);
}
.add-to-cart .icon {
font-size: 1.1rem;
}
.product-badge {
position: absolute;
top: 1rem;
right: 1rem;
font-size: 0.6rem;
font-weight: 600;
text-transform: uppercase;
background: rgba(212, 175, 55, 0.12);
color: #b8860b;
padding: 0.2rem 0.7rem;
border-radius: 20px;
letter-spacing: 0.05em;
}
.product-badge.red {
background: rgba(178, 34, 34, 0.08);
color: #b22222;
}
/* —– CART SIDEBAR —– */
.cart-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.3);
backdrop-filter: blur(4px);
z-index: 999;
display: none;
opacity: 0;
transition: opacity 0.3s ease;
}
.cart-overlay.open {
display: block;
opacity: 1;
}
.cart-sidebar {
position: fixed;
top: 0;
right: -420px;
width: 420px;
max-width: 90vw;
height: 100%;
background: #ffffff;
box-shadow: -8px 0 40px rgba(0,0,0,0.06);
z-index: 1000;
padding: 2rem 1.8rem;
display: flex;
flex-direction: column;
transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
border-radius: 0 0 0 2rem;
}
.cart-sidebar.open {
right: 0;
}
.cart-header {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 1.2rem;
border-bottom: 1px solid rgba(0,0,0,0.04);
}
.cart-header h2 {
font-size: 1.4rem;
font-weight: 700;
}
.cart-close {
background: none;
border: none;
font-size: 1.8rem;
cursor: pointer;
color: #6a6a6a;
transition: 0.2s;
padding: 0 0.5rem;
}
.cart-close:hover {
color: #b22222;
}
.cart-items {
flex: 1;
overflow-y: auto;
padding: 1rem 0;
display: flex;
flex-direction: column;
gap: 1rem;
}
.cart-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.8rem 0;
border-bottom: 1px solid rgba(0,0,0,0.03);
}
.cart-item-info {
flex: 1;
}
.cart-item-name {
font-weight: 600;
font-size: 0.95rem;
}
.cart-item-detail {
font-size: 0.8rem;
color: #6a6a6a;
}
.cart-item-controls {
display: flex;
align-items: center;
gap: 0.8rem;
}
.cart-item-qty {
display: flex;
align-items: center;
gap: 0.4rem;
}
.cart-item-qty button {
background: rgba(0,0,0,0.04);
border: none;
width: 28px;
height: 28px;
border-radius: 50%;
font-size: 1rem;
cursor: pointer;
transition: 0.15s;
font-weight: 600;
color: #1a1a1a;
}
.cart-item-qty button:hover {
background: rgba(178, 34, 34, 0.08);
color: #b22222;
}
.cart-item-qty span {
min-width: 24px;
text-align: center;
font-weight: 600;
}
.cart-item-price {
font-weight: 600;
color: #b22222;
min-width: 60px;
text-align: right;
}
.cart-item-remove {
background: none;
border: none;
color: #a0a0a0;
cursor: pointer;
font-size: 1.1rem;
transition: 0.2s;
padding: 0 0.2rem;
}
.cart-item-remove:hover {
color: #b22222;
}
.cart-footer {
border-top: 1px solid rgba(0,0,0,0.06);
padding-top: 1.2rem;
margin-top: 0.5rem;
}
.cart-total {
display: flex;
justify-content: space-between;
font-weight: 700;
font-size: 1.2rem;
margin-bottom: 1rem;
}
.cart-total .total-price {
color: #b22222;
}
.checkout-btn {
width: 100%;
background: #b22222;
color: white;
border: none;
padding: 1rem;
border-radius: 60px;
font-weight: 700;
font-size: 1rem;
cursor: pointer;
transition: 0.2s;
font-family: ‘Inter’, sans-serif;
}
.checkout-btn:hover {
background: #8b1a1a;
}
.empty-cart {
text-align: center;
color: #6a6a6a;
padding: 2rem 0;
}
/* —– RESPONSIVE —– */
@media (max-width: 820px) {
body {
padding: 1rem;
}
.shop-title {
font-size: 2.2rem;
}
.filter-bar {
gap: 0.5rem;
}
.filter-btn {
padding: 0.4rem 1rem;
font-size: 0.75rem;
}
.products-grid {
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 1.2rem;
}
.cart-sidebar {
width: 100%;
max-width: 100%;
right: -100%;
border-radius: 0;
}
.cart-sidebar.open {
right: 0;
}
}
@media (max-width: 500px) {
.shop-header .logo {
font-size: 1.4rem;
}
.shop-title {
font-size: 1.8rem;
}
.products-grid {
grid-template-columns: 1fr 1fr;
gap: 0.8rem;
}
.product-card {
padding: 1rem 0.8rem 0.8rem;
}
.product-name {
font-size: 0.95rem;
}
.product-price {
font-size: 1rem;
}
.add-to-cart {
font-size: 0.8rem;
padding: 0.5rem;
}
.filter-bar {
gap: 0.3rem;
}
.filter-btn {
font-size: 0.7rem;
padding: 0.3rem 0.8rem;
}
.cart-sidebar {
padding: 1.2rem;
}
}
@media (max-width: 400px) {
.products-grid {
grid-template-columns: 1fr;
}
}

RedRoast.

Our Shop

Explore our range of premium single-origin coffees from Chikmagalur.










Your Cart


Your cart is empty.
Total
β‚Ή0

Showing the single result