/* Sweet Cake Shop Design */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@300;500;700&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fff0f3;
    color: #444;
}

/* Վարդագույն ֆոն */
a {
    text-decoration: none;
    color: inherit;
}

/* NAVBAR */
header {
    background: white;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 107, 129, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 28px;
    color: #ff4757;
}

/* Գեղեցիկ տառատեսակ */
.logo span {
    color: #2ed573;
}

nav a {
    margin-left: 20px;
    font-weight: 500;
    color: #555;
    transition: 0.3s;
}

nav a:hover {
    color: #ff4757;
}

.cart-btn {
    background: #ff4757;
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
}

/* HERO BANNER */
.hero {
    height: 350px;
    background: url('https://img.freepik.com/free-photo/top-view-delicious-cupcakes-arrangement_23-2150680653.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 48px;
    font-family: 'Pacifico', cursive;
    margin: 0;
}

/* FILTERS */
.filter-bar {
    padding: 30px;
    text-align: center;
}

.cat-btn {
    display: inline-block;
    padding: 8px 25px;
    margin: 5px;
    background: white;
    color: #ff4757;
    border: 2px solid #ff4757;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.cat-btn:hover,
.cat-btn.active {
    background: #ff4757;
    color: white;
}

/* PRODUCTS GRID */
.container {
    padding: 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 71, 87, 0.2);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.info {
    padding: 20px;
}

.price {
    color: #2ed573;
    font-weight: bold;
    font-size: 20px;
    display: block;
    margin: 10px 0;
}

button {
    background: #ff4757;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

button:hover {
    background: #ff6b81;
}

/* CART & FORMS */
table {
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border-collapse: collapse;
}

th {
    background: #ff4757;
    color: white;
    padding: 15px;
}

td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.checkout-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}
/* --- ABOUT PAGE STYLES --- */
.about-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.1);
    max-width: 800px;
    margin: 30px auto;
}

.about-box h1 {
    font-family: 'Pacifico', cursive;
    color: #ff4757;
    margin-bottom: 20px;
}

.about-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.about-img {
    width: 100%;           
    height: auto;          
    max-width: 800px;      
    border-radius: 15px;   
    display: block;        
    margin: 0 auto 30px auto; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feat {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.feat h3 { color: #2ed573; margin-bottom: 5px; }

.cta-btn {
    display: inline-block;
    background: #ff4757;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 10px;
    transition: 0.3s;
}
.cta-btn:hover { background: #ff6b81; transform: scale(1.05); }
/* Remove Button Style */
.remove-btn {
    text-decoration: none;
    color: #ff4757;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.2s;
}

.remove-btn:hover {
    color: #ff0000;
    transform: scale(1.3); /* Մեծանում է մկնիկը պահելիս */
}