/* Shop Details CSS */
.shop-details-main {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}
.shop-details-main > div {
  width: 50%;
}
@media (max-width:768px){
	.shop-details-main > div {
		width:100%;
	}
	.shop-details-main {
		flex-direction:column
	}
}
.right-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.right-content-wrapper .dp-product-name h1 {
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}
@media (max-width:768px){
	.right-content-wrapper .dp-product-name h1 {
		font-size:22px;
		line-height:32px;
	}
}
.right-content-wrapper .dp-product-name h5 {
  font-size: 16px;
  font-weight: 600;
  color: #35f;
  margin-top: 8px;
  margin-bottom: 0;
}
.right-content-wrapper .dp-attributes-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width:430px){
	.right-content-wrapper .dp-attributes-grid {
		 grid-template-columns: repeat(1, 1fr);
	}
}
.right-content-wrapper .dp-attributes-grid > div {
  width: 100%;
}
.right-content-wrapper .delivery-time-title{
	display:flex;
	align-items:center;
	gap:12px;
}
.right-content-wrapper .delivery-time-title h5 {
  margin: 0;
}
.dp-color-dropdown {
  width: 100%;
  position: relative;
  cursor: pointer;
}
.dp-selected,
.size-select-item select {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100% !important;
  padding: 12px !important;
  border: 1px solid #ddd !important;
  border-radius: 12px !important;
  font-size: 16px !important;
  background: #fff !important;
  border: 1px solid #b3b3b3 !important;
}
.dp-color-circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
ul.dp-color-list {
  display: none;
  position: absolute;
  margin-top: 10px;
  border-radius: 8px;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  width: 100%;
  z-index: 999;
  margin: 0 !important;
  padding: 8px !important;
}
.dp-color-list li {
  padding: 6px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dp-color-list li:hover {
  background: #f6f6f6;
}
.dp-color-list li:not(:last-child) {
  margin-bottom: 8px;
}
.dp-color-dropdown.open .dp-color-list {
  display: block;
}
.dp-cart-form{
	display:flex;
	flex-direction:column;
	gap:22px;
}
.dp-cart-form .button-wrapper {
  display: flex;
  gap: 24px;
}
.dp-cart-form .button-wrapper > button {
	min-width:120px;
  height: 48px !important;
  padding: 0 16px !important;
  border-radius: 12px;
  font-weight: 600px;
  font-size: 16px;
  cursor: pointer;
  transform: opacity 0.4s ease-in-out;
}
.dp-cart-form .button-wrapper > button:hover {
  opacity: 0.8;
}
.dp-cart-form .button-wrapper .add-to-cart-btn {
  background: #e5e5e5!important;
  color: #333333!important;
}

/*Notification Design*/

/* Notification Container */
.add-cart-notification.trending {
    position: fixed;
    z-index: 999;
    margin-top: 30px;
    top: 30px!important;
    right: 20px;
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 260px;
    max-width: 23%;
    width: 100%;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.4s ease;
    font-family: 'Segoe UI', sans-serif;
}

/* Show Notification */
.add-cart-notification.trending.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Icon */
.add-cart-notification.trending .icon {
    font-size: 24px;
    background: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
}

/* Text */
.add-cart-notification.trending .text {
    flex: 1;
}

.add-cart-notification.trending .message {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}
.add-cart-notification.trending .notification-content{
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Go to Cart Button */
.add-cart-notification.trending .go-to-cart-btn {
    display: inline-block;
    margin-top: 5px;
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.add-cart-notification.trending .go-to-cart-btn:hover {
    background: rgba(255,255,255,0.4);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .add-cart-notification.trending {
        top: 15px;
        right: 15px;
        padding: 12px 16px;
        gap: 10px;
        font-size: 14px;
    }

    .add-cart-notification.trending .icon {
        font-size: 20px;
        padding: 8px;
    }

    .add-cart-notification.trending .go-to-cart-btn {
        padding: 5px 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .add-cart-notification.trending {
        top: 10px;
        right: 10px;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 12px;
    }

    .add-cart-notification.trending .notification-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .add-cart-notification.trending .text {
        width: calc(100% - 40px);
    }

    .add-cart-notification.trending .message {
        font-size: 14px;
    }

    .add-cart-notification.trending .go-to-cart-btn {
        margin-top: 4px;
        font-size: 12px;
        padding: 4px 8px;
    }
}