/*
 Theme Name:   RisusAgency Child
 Theme URI:    https://example.com/
 Description:  Child Theme for RisusAgency
 Author:       Nand Singh
 Author URI:   https://example.com/
 Template:     risusagency
 Version:      1.0.0
*/

/* Yahan apna custom CSS likh sakte ho */

/* Custom Thank You Page Design */
.custom-thankyou-page {
  max-width: 100%!important;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 20px;
  font-family: Arial, sans-serif;
}

.thankyou-header {
  text-align: center;
  margin-bottom: 30px;
}

.thankyou-header .icon {
  font-size: 48px;
  color: #4CAF50;
  margin-bottom: 10px;
}

.thankyou-header h2 {
  font-size: 24px;
  margin: 0;
}

.thankyou-header p {
  color: #666;
}

.order-details, .items-ordered {
  margin-bottom: 25px;
}

.order-details h3, .items-ordered h3 {
  font-size: 18px;
  border-bottom: 2px solid #eee;
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.order-details ul {
  list-style: none;
  padding: 0;
}

.order-details li {
  margin: 5px 0;
}

.items-ordered table {
  width: 100%;
  border-collapse: collapse;
}

.items-ordered td {
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.items-ordered .product-image img {
  width: 50px;
  height: auto;
  border-radius: 6px;
}

.thankyou-buttons {
  text-align: left;
  margin: 20px 0;
}

.thankyou-buttons .btn {
  display: inline-block;
  margin: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn.track { background: #d35400; color: #fff; }
.btn.continue { background: #f7f7f7; color: #333; border: 1px solid #ddd; }
.btn.consult { background: #fff3f3; color: #c0392b; border: 1px solid #c0392b; }

.custom-solutions {
  background: #f57c00;
  color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  margin: 25px 0;
}

.custom-solutions h3 {
  margin-bottom: 10px;
}

.btn.b2b {
  display: inline-block;
  background: #fff;
  color: #f57c00;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.thankyou-footer {
  text-align: center;
  color: #777;
  font-size: 14px;
  margin-top: 20px;
}



/* Custom Cart Page Design */

.custom-cart-wrapper {
  margin: 20px auto;
  max-width: 1100px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cart-item-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cart-item-left {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cart-item-image img {
  width: 70px;
  border-radius: 8px;
}

.cart-item-info h3 {
  font-size: 16px;
  margin: 0 0 5px;
}

.cart-item-info p {
  font-size: 13px;
  color: #666;
  margin: 0 0 10px;
}

.qty-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-wrapper .qty-minus,
.qty-wrapper .qty-plus {
  background: #f4f4f4;
  border-radius: 5px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 16px;
}

.cart-item-right {
  text-align: right;
}

.cart-item-right .price-each {
  display: block;
  font-size: 13px;
  color: #777;
}

.cart-item-right .line-total {
  font-weight: 600;
  font-size: 15px;
  display: block;
  margin: 4px 0;
}

.remove-item {
  display: block;
  font-size: 20px;
  color: #999;
  text-decoration: none;
}

.cart-summary {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cart-summary h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.cart-summary p {
  font-size: 14px;
  margin: 5px 0;
}

.cart-summary h4 {
  font-size: 16px;
  margin-top: 15px;
}

.checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #a34b08;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  margin-top: 15px;
  text-decoration: none;
}

.you-may-like {
  margin-top: 40px;
}

.you-may-like h3 {
  margin-bottom: 20px;
}

.you-may-like ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

