/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');

body {
  font-family: 'DM Sans', sans-serif;
}

h1, h3 {
  font-family: 'Playfair Display', serif;
}

/* Cards & Product / Config Styling */
.product-card,
.option-card,
.config-option-card .card,
.preview-section #preview-img,
.config-card,
.config-section,
.cart-recap {
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s, opacity 0.3s;
}

.product-card:hover,
.config-option-card:hover .card,
.option-card:hover,
.preview-section #preview-img:hover,
.config-option:hover {
  transform: scale(1.02);
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1);
  filter: brightness(1.05);
}

.product-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.3);
}

.config-option-card .card.selected {
  background-color: #0d6efd !important;
  color: #fff !important;
  border-color: #0d6efd !important;
  box-shadow: 0 8px 32px rgba(13, 110, 253, 0.4);
}

.card-overlay {
  border-radius: 10px;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.option-card input:checked ~ .card-overlay {
  opacity: 0.1;
}

/* Product Info */
.product-title { font-weight: 700; font-size: 1.2rem; color: #1c1c1c; }
.product-price { font-weight: 700; font-size: 1.1rem; color: #28a745; }
.product-description { color: #6c757d; font-size: 0.95rem; }

@media (max-width: 768px) {
  .product-title, .product-price { font-size: 1rem; }
}

/* Config Section */
.config-section {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.05);
}

.config-section h3 {
  margin-bottom: 1rem;
  font-weight: 700;
  color: #1c1c1c;
}

.config-option {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.config-option input { margin-right: 0.5rem; }
.config-option img { width: 100%; height: 120px; object-fit: contain; border-radius: 0.5rem; margin-bottom: 0.5rem; }
.config-option strong { font-weight: 600; display: block; margin-bottom: 0.25rem; }
.price-badge { color: #28a745; font-weight: 600; margin-top: 0.25rem; }

/* Preview Section */
.preview-section { border-radius: 15px; }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.step { animation: fadeIn 0.5s ease-in; }

/* Borders */
.border-blue {
  border: 2px solid #0d6efd !important;
  transition: border-color 0.3s ease;
}

/* Cart */
.cart-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.cart-item img { width: 80px; height: 90px; object-fit: cover; border-radius: 0.5rem; }
.cart-item-details strong { font-size: 1.05rem; color: #1c1c1c; }
.cart-item-details span { font-weight: 600; }
.cart-item-actions button { border-radius: 0.5rem; transition: all 0.2s; }
.cart-item-actions button:hover { transform: scale(1.05); }

.cart-summary { border-top: 2px solid #dee2e6; padding-top: 1rem; margin-top: 1rem; }
.cart-total { font-weight: 700; font-size: 1.1rem; margin: 1rem 0; }

@media (max-width: 576px) {
  .cart-item { flex-direction: column; align-items: stretch; }
  .cart-item img { width: 100%; height: auto; }
  .cart-item-actions { display: flex; justify-content: flex-end; margin-top: 0.5rem; }
}

@media (max-width: 992px) {
  .sticky-top { position: static !important; top: auto; }
}


/* Cart item */
.cart-item {
    border: 1px solid #ece8df;
    transition: all 0.3s ease;
}
.cart-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}
.cart-img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}

/* Price style */
.price-value, .price-total {
    font-family: 'Playfair Display', serif;
    color: #b9935a;
}

/* Luxury button */
.btn-luxury {
    background-color: #b9935a;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}
.btn-luxury:hover {
    background-color: #a7854f;
    box-shadow: 0 4px 12px rgba(185,147,90,0.3);
}

/* Table summary */
.summary-card {
    border: 1px solid #eae7df;
}

/* Responsive */
@media (max-width: 576px) {
    .cart-img {
        width: 80px;
        height: 80px;
    }
}



* Product Image */
.product-image {
    height: 230px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Card styling */
.product-card {
    transition: all 0.3s ease;
    background-color: #ffffff;
    border: 1px solid #f1f1f1;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
    border-color: #e5decf;
}

/* Title and text */
.card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #2f2f2f;
}

.text-muted {
    color: #7a7a7a !important;
}

/* Price accent styling */
.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #b9935a; /* Subtle gold tone */
}

.price-accent {
    color: #555;
}

/* Luxury button */
.btn-luxury {
    background-color: transparent;
    color: #b9935a;
    border: 1px solid #b9935a;
    transition: all 0.3s ease-in-out;
    padding: 0.6rem 1rem;
}

.btn-luxury:hover {
    background-color: #b9935a;
    color: #fff;
    box-shadow: 0 4px 12px rgba(185, 147, 90, 0.3);
}

/* Responsive grid tuning */
@media (max-width: 576px) {
    .product-image {
        height: 200px;
    }
}

@media (min-width: 576px) and (max-width: 992px) {
    .product-card {
        margin-bottom: 1rem;
    }
}
.icon-check {
    width: 70px;
    height: 70px;
    background-color: #b9935a;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 6px 16px rgba(185, 147, 90, 0.35);
}

/* Divider */
.divider {
    height: 2px;
    background: linear-gradient(to right, #b9935a 0%, #e9e3d8 100%);
    width: 100px;
    margin: 0 auto;
    border-radius: 2px;
}

/* Card styling */
.thankyou-card {
    border: 1px solid #eae7df;
}

/* Price styling */
.price-value, .price-total {
    font-family: 'Playfair Display', serif;
    color: #b9935a;
}

/* Luxury button */
.btn-luxury {
    background-color: #b9935a;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-luxury:hover {
    background-color: #a7854f;
    box-shadow: 0 6px 16px rgba(185, 147, 90, 0.35);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .thankyou-card {
        padding: 2.5rem;
    }
    .icon-check {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Card styling */
.recap-card {
    border: 1px solid #eae7df;
    background: #fff;
}

/* Divider */
.divider {
    height: 2px;
    background: linear-gradient(to right, #b9935a 0%, #e9e3d8 100%);
    width: 100px;
    margin: 0 auto;
    border-radius: 2px;
}

/* Section titles */
.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #3c3c3c;
    margin-bottom: 0.75rem;
    letter-spacing: 0.2px;
}

/* Product items */
.product-item:last-child {
    border-bottom: none;
}

/* Price accent */
.price-value, .price-total {
    font-family: 'Playfair Display', serif;
    color: #b9935a;
}

/* Luxury button */
.btn-luxury {
    background-color: #b9935a;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-luxury:hover {
    background-color: #a7854f;
    box-shadow: 0 6px 16px rgba(185, 147, 90, 0.35);
}

/* Responsive */
@media (max-width: 576px) {
    .recap-card {
        padding: 2rem;
    }
    h2 {
        font-size: 1.4rem;
    }
}