body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

.container {
	max-width: 1000px;
	margin: 40px auto 20px auto;
	padding: 2rem;
	background: #111;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
	color: #fff;
}

.container h1, h2 {
	text-align: center;
	margin-bottom: 1.5rem;
}
		
.shop-software-block {
	margin-bottom: 2rem;
	padding: 1rem;
	background: #1a1a1a;
	border-left: 4px solid #007BFF;
	border-radius: 8px;
}

.shop-software-block h3 {
	color: #007BFF;
	margin-bottom: 1rem;
}

.shop-product-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* .shop-product-list li {
	margin-bottom: 1rem;
	padding: 0.5rem;
	background: #222;
	border-radius: 6px;
} */


.shop-product-logo {
	width: 256px;
	height: auto;
	border-radius: 4px;
	/* background: #fff; */
	padding: 4px;
}

.logo-placeholder {
	width: 256px;
	height: 256px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
}

.shop-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.shop-product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.shop-product-description {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #ccc;
    max-width: 520px;
}

.shop-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.shop-product-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #00d084;
}

/* *, *::before, *::after {
    box-sizing: border-box;
} */

.shop-product-form {
    width: 100%;
    margin: 0;
}

.shop-product-list li {
    width: 100%;
}

.shop-product-card {
		border: none;
    outline: none;
    box-shadow: none;
		
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    padding: 1rem;
		margin-bottom: 1rem;
    background: #222;
    border-radius: 8px;
    cursor: pointer;
		text-align: left;

		position: relative;
		overflow: hidden;
}

/* CTA pill */
.shop-product-card::after {
  content: attr(data-cta);
  position: absolute;
  bottom: 16px;
  right: 16px;

  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;

  background: #00d084;
  color: #000;

  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s ease;
  pointer-events: none;
}

/* Guest CTA style */
.shop-product-card.must-login::after {
  background: #007bff;
  color: #fff;
}

/* Hover reveal */
.shop-product-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle glow on hover */
.shop-product-card:hover {
  box-shadow: 0 0 0 1px rgba(0,208,132,0.3),
              0 10px 25px rgba(0,0,0,0.35);
}

/* Mobile: always show CTA */
@media (max-width: 768px) {
  .shop-product-card::after {
    opacity: 1;
    transform: none;
  }
}

/* .shop-product-card:hover::after {
    opacity: 1;
}

.shop-product-card::after {
    content: "Add to cart";
    margin-left: auto;
    font-size: 0.8rem;
    color: #00d084;
    opacity: 0.7;
} */

/* @media (max-width: 768px) {
    .shop-product-card {
        flex-direction: column;
        text-align: center;
    }

    .shop-product-meta {
        justify-content: center;
        gap: 1rem;
    }
} */

.cart-link {
	position: fixed;
	top: 100px;
	right: 20px;
	text-decoration: none;
	z-index: 999;
	transition: transform 0.2s ease;
}

.cart-link:hover {
	transform: scale(1.1);
}

.cart-icon {
	position: relative;
	width: 60px;
	height: 60px;
	cursor: pointer;
}

.cart-icon img {
	width: 100%;
	height: auto;
}

.cart-count {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: red; /* You can change this color */
	font-size: 22px;
	font-weight: bold;
	padding: 0; /* Remove extra padding */
	min-width: 0; /* Remove min width */
	background: none; /* Remove background */
	border-radius: 0; /* No rounding */
	text-align: center;
	pointer-events: none;
	
	/* White outline */
	text-shadow:
		-1px -1px 0 white,
		 1px -1px 0 white,
		-1px  1px 0 white,
		 1px  1px 0 white;
}

.bounce {
	animation: bounce 1s infinite alternate;
}

@keyframes bounce {
	0%   { transform: translateY(0); }
	100% { transform: translateY(-5px); }
}

.toast {
		position: fixed;
		bottom: 20px;
		right: 20px;
		padding: 15px 20px;
		color: white;
		border-radius: 5px;
		z-index: 9999;
		animation: fadeOut 4s forwards;
}

.toast.success { background-color: #28a745; }
.toast.error   { background-color: #dc3545; }
.toast.info    { background-color: #17a2b8; }
.toast.warning { background-color: #ffc107; color: #212529; }

@keyframes fadeOut {
		0%   { opacity: 1; }
		80%  { opacity: 1; }
		100% { opacity: 0; display: none; }
}
		
@media (max-width: 1100px) {
	.cart-link {
		top: 150px;
	}
}

/* @media (max-width: 768px) {
  .content {
    flex-direction: column;
    padding: 1rem;
  }

	.cart-link {
		top: 160px;
	}
} */