:root{
--maroon:#7A0F1F;
--maroon-2:#8A1124;
--gold:#C9A24A;
--gold-deep:#9F7416;
--gold-light:#F3D98B;
--cream:#FFF6E9;
--dark:#111;
}


/* Base */
body{font-family:'Poppins',sans-serif; background:var(--cream); color:var(--dark);}
.playfair{font-family:'Playfair Display',serif}


.top-ribbon{background:var(--maroon);}


.navbar-dark .navbar-brand{color:var(--gold);}
.brand-mark{width:36px; height:36px; border-radius:6px; background:linear-gradient(135deg,var(--gold-light),var(--gold-deep)); box-shadow:inset 0 -4px 8px rgba(0,0,0,0.08)}


/* HERO */
/* .hero{position:relative; padding:80px 0; background:linear-gradient(180deg,var(--maroon), rgba(122,15,31,0.8));} */
.hero{position:relative; padding:80px 0; background:linear-gradient(180deg,var(--maroon), rgba(122,15,31,0.8));}
.hero-overlay{position:absolute; inset:0; }
.hero-inner{position:relative; z-index:2}
.hero-title{font-size:48px; color:var(--cream);}
.hero .lead{color:rgba(255,255,255,0.9)}
.hero-image{max-width:400px}


.btn-gold{background:var(--gold); color:var(--maroon); font-weight:500; border-radius:8px}



.btn-maroon{background:var(--maroon); color:#fff; font-weight:500; border-radius:8px}

.section-padding{padding:60px 0}
.section-title{font-family:'Playfair Display',serif; font-size:28px; color:var(--maroon-2)}


.bg-cream{background:var(--cream)}


.cat-card{background:#fff; border-radius:12px; padding:12px; box-shadow:0 6px 20px rgba(0,0,0,0.06)}
.cat-title{margin-top:8px; font-weight:600}


.product-card{background:#fff; border-radius:0px; overflow:hidden;}
.product-card img{height:320px; object-fit:cover}


.promo-banner .promo-card{background:linear-gradient(90deg,#fff8ee,#fff4e6); border-radius:20px}


.map-placeholder{height:200px; background:linear-gradient(135deg, #f7f1e8,#efe6dc); display:flex; align-items:center; justify-content:center}


.footer{border-top:4px solid rgba(212,160,23,0.12)}


/* Responsive tweaks */
@media (max-width: 991px){
.hero-title{font-size:34px}
.hero-image{max-width:260px}
}
@media (max-width:576px){
.hero{padding:40px 0}
.hero-title{font-size:26px}
}


/* ---------- Cart & Animations ---------- */

/* cart-count badge */
.cart-count {
  display: inline-block;
  min-width: 20px;
  padding: 2px 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #3b0a28;
  font-weight: 600;
  font-size: 0.85rem;
}

/* floating cart (mobile) */
.floating-cart {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #8A1124;
  color: #fff;
  padding: 10px 12px;
  border-radius: 40px;
  z-index: 99999;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform .25s ease;
}
.floating-cart:hover { transform: scale(1.05); }

/* slide-in cart */
.cart-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 360px;
  max-width: 92%;
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 30px rgba(0,0,0,0.25);
  z-index: 99998;
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: right .32s cubic-bezier(.2,.8,.2,1);
  border-left: 6px solid #ff6b6b;
}
.cart-panel.open { right: 0; }

/* cart item */
.cart-item {
  padding: 10px 8px;
  border-radius: 8px;
  background: #f8f8f8;
  margin-bottom: 10px;
}
.qty-controls {
  display: flex;
  gap: 6px;
  align-items: center;
}
.qty-controls button {
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 6px;
}

/* small animations */
@keyframes bounceIn {
  0% { transform: translateY(30px); opacity: 0; }
  60% { transform: translateY(-6px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.product-card { animation: bounceIn .45s ease both; }

/* responsive tweaks */
@media (max-width: 992px) {
  .cart-panel { width: 92%; }
  .cart-panel.open { right: 0; }
}
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.modal-box {
    width: 90%;
    max-width: 400px;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    animation: popIn 0.3s ease;
    text-align: center;
}

.modal-img {
    width: 100%;
    border-radius: 10px;
}

.modal-close {
    float: right;
    font-size: 22px;
    cursor: pointer;
}

.modal-add-btn {
    width: 100%;
    padding: 12px;
    background: #ff5722;
    color: #fff;
    border: 0;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 18px;
    cursor: pointer;
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.modal-custom {
  display:none;
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.5);
  justify-content:center;
  align-items:center;
  z-index:9999;
}
.modal-content-custom {
  background:#fff;
  padding:20px;
  border-radius:8px;
  text-align:center;
  width:90%;
  max-width:400px;
}
.modal-img {
  width:100%;
  border-radius:8px;
  margin-bottom:10px;
}
.modal-close {
  position:absolute;
  top:20px; right:30px;
  font-size:35px;
  cursor:pointer;
  color:#f0c75a;
}
/* Festival Color Theme */
.festival-title {
    color: #7A0F1F; /* bright pink */
}

.festival-highlight {
    color: #ff8800; /* saffron */
}

.btn-festival {
    background: linear-gradient(45deg, #7A0F1F, #ff8800);
    border: none;
    color: white !important;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.btn-festival:hover {
    filter: brightness(1.1);
}

.festival-card {
    border: 2px solid #f3c12c; /* gold */
    background: #fffdf5;
}

/* ========================================
   ENHANCED CART SYSTEM STYLES - v2.0
======================================== */

/* ========== Toast Notifications ========== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
}

.toast {
    margin-bottom: 10px;
    min-width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease;
    pointer-events: auto;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid #27ae60;
}

.toast-error {
    border-left: 4px solid #e74c3c;
}

.toast-warning {
    border-left: 4px solid #f39c12;
}

.toast-info {
    border-left: 4px solid #3498db;
}

.toast-icon {
    font-size: 20px;
    display: flex;
}

.toast-success .toast-icon {
    color: #27ae60;
}

.toast-error .toast-icon {
    color: #e74c3c;
}

.toast-warning .toast-icon {
    color: #f39c12;
}

.toast-info .toast-icon {
    color: #3498db;
}

.toast-message {
    flex: 1;
    font-weight: 500;
    color: #333;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: currentColor;
    border-radius: 0 0 12px 0;
    animation: progress linear;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(400px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes progress {
    from { width: 100%; }
    to { width: 0; }
}

/* ========== Cart Panel ========== */
#cartPanel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    height: 100vh;
    background: white;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 6px solid var(--gold);
    overflow: hidden;
}

#cartPanel.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#cartPanel.open ~ .cart-overlay,
#cartPanel.open + .cart-overlay {
    opacity: 1;
    visibility: visible;
}

.cart-panel-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-2));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.cart-panel-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

#closeCart {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

#closeCart:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cart-panel-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#cartItems {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    list-style: none;
    margin: 0;
}

#cartItems::-webkit-scrollbar {
    width: 8px;
}

#cartItems::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#cartItems::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

#cartItems::-webkit-scrollbar-thumb:hover {
    background: #c4970f;
}

/* ========== Cart Items ========== */
.cart-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    animation: slideInItem 0.3s ease;
}

.cart-item:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.1);
}

.cart-item.removing {
    animation: slideOutItem 0.3s ease;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.3;
    word-break: break-word;
}

.cart-item-price {
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
}

.bulk-discount-message {
    background: #fff8e1;
    border: 1px solid #f2cf72;
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    color: #6b4a00;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 6px;
    padding: 8px 10px;
}

/* ========== Quantity Controls ========== */
.qty-control {
    display: flex;
    align-items: center;
    gap: 4px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 4px;
    width: fit-content;
}

.qty-btn {
    background: transparent;
    border: none;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--maroon);
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 12px;
}

.qty-btn:hover {
    background: var(--gold);
    color: white;
}

.cart-qty {
    width: 40px;
    height: 26px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--dark);
    font-size: 13px;
}

.cart-qty:focus {
    outline: none;
}

.cart-qty.updating {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========== Cart Item Total ========== */
.cart-item-total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 70px;
    text-align: right;
}

.cart-item-line-total {
    font-weight: 700;
    color: var(--maroon);
    font-size: 14px;
}

.btn-remove-item {
    background: #ffe0e0;
    border: none;
    color: #e74c3c;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
}

.btn-remove-item:hover {
    background: #e74c3c;
    color: white;
    transform: scale(1.1);
}

/* ========== Cart Empty State ========== */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px 20px;
    text-align: center;
    color: #999;
}

.cart-empty i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #ddd;
    opacity: 0.5;
}

.cart-empty h4 {
    color: var(--dark);
    margin: 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.cart-empty p {
    margin: 0 0 20px;
    color: #999;
    font-size: 13px;
}

/* ========== Cart Loading State ========== */
.cart-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========== Cart Summary ========== */
#cartSummary {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 16px 20px;
    flex-shrink: 0;
}

.cart-whatsapp-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e9fff1, #d7f8e4);
    border: 1px solid #b8ebca;
    color: #166534;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.cart-whatsapp-note i {
    color: #25D366;
    font-size: 18px;
    flex: 0 0 auto;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding: 8px 0;
    color: #666;
}

.summary-label {
    font-weight: 500;
}

.summary-value {
    font-weight: 600;
    color: var(--dark);
    transition: all 0.2s ease;
}

.summary-value.price-update {
    animation: priceFlip 0.3s ease;
}

.summary-row.summary-total {
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    padding: 12px 0;
    margin: 12px 0;
    font-size: 16px;
    font-weight: 700;
}

.summary-row.summary-total .summary-value {
    color: var(--maroon);
    font-size: 18px;
}

.summary-row.summary-count {
    background: rgba(212, 160, 23, 0.08);
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 8px;
}

/* ========== Cart Actions ========== */
.cart-actions {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    flex-shrink: 0;
    border-top: 1px solid #e0e0e0;
}

#cartCheckoutBtn, #clearCartBtn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
}

#cartCheckoutBtn {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-2));
    color: white;
}

#cartCheckoutBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(122, 15, 31, 0.3);
}

#clearCartBtn {
    background: #f0f0f0;
    color: var(--dark);
}

#clearCartBtn:hover {
    background: #e0e0e0;
}

/* ========== Product Modal ========== */
#productModal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 22px;
    transition: background 0.3s ease;
}

#productModal.open {
    background: rgba(24, 16, 14, 0.62);
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 24px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.35s ease;
}

#productModal .modal-content {
    max-width: 960px;
    padding: 24px;
    border: 1px solid rgba(122, 15, 31, 0.12);
    border-radius: 14px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.modal-product-layout {
    display: grid;
    grid-template-columns: minmax(360px, 1.08fr) minmax(320px, 0.92fr);
    gap: 28px;
    align-items: start;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--gold);
    color: white;
}

.modal-image {
    width: 100%;
    height: 405px;
    object-fit: contain;
    background: #f9f1e6;
    border: 1px solid #f0e1ce;
    border-radius: 10px;
    margin-bottom: 14px;
}

.modal-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.modal-details {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 6px 6px 0 0;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 0;
    justify-content: center;
    width: 100%;
}

.thumb {
    width: 58px;
    height: 58px;
    cursor: pointer;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.thumb:hover {
    transform: scale(1.05);
}

.thumb.active {
    border-color: #8A1124;
    box-shadow: 0 0 5px rgba(138, 17, 36, 0.5);
}

.modal-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin: 2px 42px 8px 0;
}

.modal-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px;
}

.modal-description {
    color: #4f4038;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
    max-height: 170px;
    overflow-y: auto;
    white-space: pre-line;
    background: #fffaf4;
    border: 1px solid #efe2d1;
    border-radius: 8px;
    padding: 12px;
}

.modal-discounts {
    /* border: 1px solid rgba(122, 15, 31, 0.16); */
    /* background: linear-gradient(135deg, #fffaf4, #fff3e3); */
    border-radius: 10px;
    padding: 0px 14px;
    margin-bottom: 16px;
}

.modal-discounts-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 9px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.modal-discount-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-discount-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(122, 15, 31, 0.18);
    border-radius: 999px;
    color: #4f4038;
    font-size: 11px;
    line-height: 1;
    padding: 5px 9px 5px 5px;
    box-shadow: 0 6px 16px rgba(122, 15, 31, 0.08);
}

.modal-discount-chip-qty {
    background: var(--maroon);
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    min-width: 38px;
    padding: 7px 8px;
    text-align: center;
}

.modal-discount-chip-value {
    color: #6d1120;
    font-weight: 700;
    /* letter-spacing: 0.2px; */
    white-space: nowrap;
}

.modal-qty-section {
    background: #f8f6f2;
    padding: 13px 14px;
    border-radius: 8px;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.modal-qty-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-qty-control button {
    background: white;
    border: 1px solid #ddd;
    width: 36px;
    height: 36px;
    border-radius: 7px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--maroon);
}

.modal-qty-control button:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

#modalProductQty {
    width: 62px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

#addToCartBtn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-2));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#addToCartBtn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(122, 15, 31, 0.3);
}

#addToCartBtn:disabled,
#addToCartBtn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes priceFlip {
    0% { transform: scaleY(1); }
    50% { transform: scaleY(0.8); }
    100% { transform: scaleY(1); }
}

@keyframes slideInItem {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutItem {
    to {
        opacity: 0;
        transform: translateX(20px);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeIn {
    animation: fadeIn 0.3s ease;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    #cartPanel {
        width: 100%;
        right: -100%;
    }

    .toast-container {
        left: 10px;
        right: 10px;
        top: 10px;
    }

    .toast {
        min-width: unset;
        width: 100%;
    }

    .cart-item {
        grid-template-columns: 1fr auto;
        gap: 8px;
    }

    .cart-item-total {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .modal-content {
        padding: 20px;
    }

    #productModal .modal-content {
        max-width: 94vw;
        padding: 18px;
    }

    .modal-product-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .modal-image {
        height: 320px;
    }

    .modal-details {
        padding: 0;
    }

    .modal-qty-section {
        margin-top: 0;
    }

    .cart-actions {
        flex-direction: column-reverse;
    }
}

#mInstagramLink {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: #fff;
    font-size: 19px;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(214, 36, 159, 0.26);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

#mInstagramLink:hover,
#mInstagramLink:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(214, 36, 159, 0.34);
    text-decoration: none;
}

#mWhatsappShareLink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

#mWhatsappShareLink i {
    font-size: 18px;
}

#mWhatsappShareLink:hover,
#mWhatsappShareLink:focus {
    background: #1EBE55;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
    text-decoration: none;
}

@media (max-width: 480px) {
    .cart-panel-header {
        padding: 16px;
    }

    #cartItems {
        padding: 16px;
    }

    .cart-summary {
        padding: 12px 16px;
    }

    .modal-image {
        height: 200px;
    }

    #productModal .modal-content {
        padding: 15px;
    }

    #productModal .modal-image {
        height: 240px;
    }

    .modal-name {
        font-size: 18px;
        margin-right: 34px;
    }

    .modal-price {
        font-size: 18px;
    }

    .modal-description {
        max-height: 105px;
        padding: 10px;
    }

    .modal-qty-section {
        padding: 10px 11px;
    }

    .thumb {
        width: 48px;
        height: 48px;
    }
}

/* ========== Additional Button Styles ========== */
.btn-add-to-cart {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-2));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-to-cart:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(122, 15, 31, 0.3);
}

.btn-add-to-cart:disabled,
.btn-add-to-cart.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-action {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-action:not(.btn-primary) {
    background: #f0f0f0;
    color: var(--dark);
}

.btn-action:not(.btn-primary):hover {
    background: #e0e0e0;
}

.btn-action.btn-primary {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-2));
    color: white;
}

.btn-action.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(122, 15, 31, 0.3);
}

.btn-close-cart {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.btn-close-cart:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-qty-btn {
    background: white;
    border: 1px solid #ddd;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--maroon);
    padding: 0;
}

.modal-qty-btn:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* ========== Loading Indicator ========== */
.btn:disabled,
button:disabled {
    cursor: not-allowed !important;
}

.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ========== Checkout Modal ========== */
#checkoutModal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    transition: background 0.3s ease;
}

#checkoutModal.open {
    background: rgba(0, 0, 0, 0.6);
    display: flex;
}

.checkout-items {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.checkout-item {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-name {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.checkout-item-details {
    font-size: 12px;
    color: #666;
}

.checkout-summary {
    background: #fff;
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 16px;
}

.checkout-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
}

.checkout-summary .summary-row.summary-total {
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    padding: 12px 0;
    margin: 12px 0;
    font-size: 16px;
    font-weight: 700;
}

.checkout-summary .summary-row.summary-total span:last-child {
    color: var(--maroon);
    font-size: 18px;
}

.btn-confirm-order {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-2));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-confirm-order:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(122, 15, 31, 0.3);
}

.btn-confirm-order:disabled,
.btn-confirm-order.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 13px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    resize: vertical;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.1);
}

.checkbox {
    margin-top: 16px;
}

.checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: var(--dark);
}

.checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* ========== Storefront Refresh ========== */
body {
    background:
        radial-gradient(circle at top left, rgba(212, 160, 23, 0.14), transparent 30%),
        radial-gradient(circle at top right, rgba(122, 15, 31, 0.12), transparent 26%),
        linear-gradient(180deg, #fff8ee 0%, #fff4e3 52%, #fdf0de 100%);
}

.section-padding {
    padding: 84px 0;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 0.9rem;
}

.section-intro {
    max-width: 720px;
    color: #6a544a;
    font-size: 1rem;
    line-height: 1.8;
}

.festive-navbar {
    background: rgba(20, 8, 7, 0.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 28px rgba(57, 17, 8, 0.16);
}

.festive-brand {
    gap: 0.4rem;
}

.brand-logo {
    width: 76px;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.festive-nav-links .nav-link {
    color: rgba(255, 248, 238, 0.88);
    font-weight: 500;
    padding: 0.7rem 0.95rem;
}

.festive-nav-links .nav-link:hover,
.festive-nav-links .nav-link:focus {
    color: #fff2c4;
}

.hero {
    min-height: 100vh;
    padding: 110px 0 72px;
    background:
        linear-gradient(115deg, rgba(34, 12, 5, 0.65), rgba(122, 15, 31, 0.5)),
        url("../img/giftbg3.jpg") center/cover no-repeat;
}

.hero-overlay {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 218, 130, 0.26), transparent 22%),
        linear-gradient(90deg, rgba(52, 12, 10, 0.82) 10%, rgba(122, 15, 31, 0.56) 55%, rgba(122, 15, 31, 0.88) 100%);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    margin-bottom: 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 229, 170, 0.45);
    background: rgba(255, 250, 241, 0.08);
    color: #ffe7ab;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.9rem, 5vw, 5rem);
    line-height: 1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.hero-subtitle {
    max-width: 640px;
    margin: 0 auto 1.8rem 0;
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 245, 232, 0.92);
}

.hero-actions .btn {
    min-width: 160px;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(58, 17, 11, 0.2);
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hero-pill {
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 248, 238, 0.1);
    border: 1px solid rgba(255, 240, 211, 0.18);
    backdrop-filter: blur(8px);
}

.hero-pill strong {
    display: block;
    color: #fff0be;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.hero-pill span {
    color: rgba(255, 245, 232, 0.85);
    font-size: 0.9rem;
}

.hero-visual-card {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 470px);
    min-height: 470px;
    padding: 2rem;
    border-radius: 40px;
    background: linear-gradient(180deg, rgba(255, 250, 241, 0.18), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 232, 181, 0.18);
    box-shadow: 0 28px 52px rgba(23, 7, 5, 0.28);
    overflow: hidden;
}

.hero-visual-glow {
    position: absolute;
    inset: auto auto 8% 50%;
    width: 240px;
    height: 240px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(255, 208, 90, 0.55), rgba(255, 208, 90, 0));
    filter: blur(10px);
}

.hero-image {
    position: relative;
    z-index: 1;
    max-width: 340px;
}

.price-showcase .price-card {
    border-radius: 28px;
    border: 1px solid rgba(255, 228, 185, 0.34);
    background: linear-gradient(180deg, rgba(255, 247, 237, 0.93), rgba(255, 255, 255, 0.8));
    box-shadow: 0 22px 42px rgba(33, 10, 4, 0.2);
    padding: 2rem 1.5rem;
}

.price-showcase .price-card h3 {
    color: var(--maroon);
}

.price-showcase .price-card.active-price-card {
    transform: translateY(-6px);
    border-color: rgba(255, 228, 185, 0.95);
    box-shadow: 0 26px 46px rgba(33, 10, 4, 0.26);
}

.product-section .filter-tope-group {
    justify-content: center;
    gap: 0.85rem;
    margin-top: 2rem;
}

.category-btn {
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #8a1124, #c55f2d);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 18px rgba(138, 17, 36, 0.16);
}

.category-btn.how-active1,
.category-btn:hover {
    background: linear-gradient(135deg, #600b17, #8a1124);
}

.product-grid {
    margin-top: 1.5rem;
}

.product-item {
    margin-bottom: 0.5rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 14px;
    border-radius: 28px;
    border: 1px solid rgba(124, 31, 12, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 238, 0.95));
    box-shadow: 0 18px 32px rgba(92, 37, 16, 0.1);
}

.product-img-wrap {
    height: 220px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top, rgba(255, 228, 173, 0.55), rgba(255, 255, 255, 0) 48%),
        linear-gradient(180deg, #fffaf3, #f9efe0);
}

.product-img-wrap img {
    transition: transform 0.45s ease;
}

.product-card-body {
    padding: 1rem 0.4rem 0.5rem;
}

.cat-title {
    min-height: auto;
    font-size: 1rem;
    color: #412119;
}

.price {
    font-size: 1.05rem;
    color: var(--maroon);
}

.product-card-actions {
    margin-top: auto;
    padding-top: 0.5rem;
}

.product-card .btn {
    flex: 1 1 0;
    padding: 0.78rem 0.9rem;
    font-size: 0.92rem;
}

.why-section {
    position: relative;
}

.why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.78), rgba(255, 241, 221, 0.88));
}

.why-section .container,
.price-showcase .container {
    position: relative;
    z-index: 1;
}

.section-shell {
    margin-bottom: 1rem;
}

#picksGrid > div {
    padding: 1.6rem;
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.9);
    box-shadow: 0 18px 34px rgba(80, 34, 14, 0.1);
    border: 1px solid rgba(153, 63, 36, 0.08);
    color: #4b2a1f;
    font-weight: 500;
}

#picksGrid .text-left {
    text-align: center !important;
    grid-column: 1 / -1;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    text-align: left;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #8a1124, #d4a017);
    color: white;
    font-size: 1.15rem;
    box-shadow: 0 12px 24px rgba(138, 17, 36, 0.22);
}

.story-section .festival-card,
.event-cta-section,
.contact-card {
    border-radius: 28px;
    border: 1px solid rgba(154, 76, 36, 0.12);
    box-shadow: 0 16px 32px rgba(104, 45, 18, 0.08);
}

.story-section .festival-card {
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 232, 0.95));
}

.festival-highlight {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.event-cta-section {
    background:
        radial-gradient(circle at top right, rgba(255, 214, 110, 0.18), transparent 28%),
        linear-gradient(180deg, #fff8ee, #fff1dc);
}

.contact-card {
    height: 100%;
    padding: 2rem;
    background: linear-gradient(180deg, #fffaf3, #fff1dc);
}

.contact-tag {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(138, 17, 36, 0.08);
    color: var(--maroon);
    font-weight: 600;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
    color: #553329;
}

.contact-detail i {
    width: 20px;
    color: var(--maroon);
    margin-top: 0.2rem;
}

.contact-detail a {
    color: inherit;
    text-decoration: none;
}

.contact-map,
.contact-map iframe {
    width: 100%;
    min-height: 100%;
}

.contact-map iframe {
    min-height: 420px;
    border-radius: 22px;
}

.festive-footer {
    background:
        linear-gradient(135deg, #27100f, #4a1618 50%, #7a0f1f 100%);
    border-top: 1px solid rgba(255, 222, 165, 0.2);
}

.footer-copy {
    color: rgba(255, 243, 223, 0.82);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 245, 232, 0.92);
}

@media (max-width: 991px) {
    .section-padding {
        padding: 68px 0;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 56px;
    }

    .hero-subtitle {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-visual-card {
        min-height: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .brand-logo {
        width: 58px;
    }

    .hero {
        min-height: 0;
        height: clamp(320px, 45vh, 430px);
        padding: 86px 0 24px;
        text-align: center;
        overflow: hidden;
        background-position: center top;
    }

    .hero-inner {
        transform: translateY(-8px);
    }

    .hero .row {
        --bs-gutter-y: 0;
        align-items: center;
    }

    .hero-kicker {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0.36rem;
        padding: 0.34rem 0.7rem;
        font-size: 0.68rem;
    }

    .hero-title {
        font-size: clamp(1.85rem, 8vw, 2.35rem);
        line-height: 1.05;
        margin-bottom: 0.34rem;
    }

    .hero-subtitle {
        max-width: 94%;
        margin: 0 auto 0.58rem;
        font-size: 0.82rem;
        line-height: 1.38;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-actions .btn {
        width: auto;
        min-width: 118px;
        max-width: none;
        padding: 0.56rem 0.9rem;
        font-size: 0.86rem;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .hero-visual-card {
        min-height: 0;
        height: 132px;
        margin-top: 0.18rem;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .hero-visual-glow {
        width: 172px;
        height: 172px;
        opacity: 0.62;
    }

    .hero-image {
        width: auto;
        max-width: min(48vw, 210px);
        max-height: 100%;
        object-fit: contain;
    }

    .product-img-wrap {
        height: 190px;
    }

    .product-card-actions {
        flex-direction: column;
    }

    #picksGrid > div {
        padding: 1.25rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-map iframe {
        min-height: 300px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero {
        height: clamp(310px, 43vh, 390px);
        padding-top: 78px;
        padding-bottom: 18px;
    }

    .hero-title {
        font-size: clamp(1.58rem, 8.2vw, 2rem);
    }

    .hero-subtitle {
        font-size: 0.76rem;
        line-height: 1.34;
        margin-bottom: 0.5rem;
    }

    .hero-actions {
        display: flex;
        justify-content: center;
        gap: 0.45rem;
        flex-wrap: wrap;
    }

    .hero-actions .btn {
        min-width: 106px;
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
        margin: 0 !important;
    }

    .hero-visual-card {
        height: 108px;
        margin-top: 0.12rem;
    }

    .hero-visual-glow {
        width: 144px;
        height: 144px;
    }

    .hero-image {
        max-width: min(45vw, 165px);
        max-height: 100%;
    }

    .price-showcase .price-card,
    .story-section .festival-card,
    .contact-card {
        border-radius: 22px;
    }
}

/* ========================================
   ADMIN DASHBOARD & LOGIN ENHANCEMENTS
======================================== */

/* Admin Login Page */
.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream), #fdf0de);
    padding: 20px;
}

.admin-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(122, 15, 31, 0.1);
    overflow: hidden;
    width: 100%;
}

.admin-login-card {
    max-width: 420px;
}

.admin-card-header {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-2));
    color: var(--cream);
    padding: 24px;
    text-align: center;
}

.admin-card-header h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
}

.admin-card-body {
    padding: 32px;
}

.admin-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: inherit;
    transition: all 0.3s ease;
    font-size: 14px;
}

.admin-form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
    outline: none;
}

/* Admin Table / Product Module */
.admin-page-wrapper {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--cream);
    min-height: 100vh;
}

.admin-table-container {
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-top: 24px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: #f8f9fa;
    color: var(--maroon);
    padding: 16px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--gold);
    font-size: 14px;
}

.admin-table td {
    padding: 16px;
    border-bottom: 1px solid #eee;
    color: var(--dark);
    font-size: 14px;
    vertical-align: middle;
}

.admin-table tr:hover {
    background: #fffaf3;
}

.admin-action-btn {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-right: 6px;
    transition: all 0.2s;
}

.btn-edit { background: #e3f2fd; color: #1976d2; border: 1px solid #bbdefb; }
.btn-edit:hover { background: #bbdefb; }

.btn-delete { background: #ffebee; color: #d32f2f; border: 1px solid #ffcdd2; }
.btn-delete:hover { background: #ffcdd2; }
