:root {
    /* E-commerce Design Tokens - Editable from here */
    --shop-primary: #d4af37; /* Premium Gold */
    --shop-secondary: #aa841e;
    --shop-bg: #050505;
    --shop-card: rgba(20, 20, 20, 0.7);
    --shop-border: rgba(212, 175, 55, 0.15);
    --shop-text: #ffffff;
    --shop-muted: #a0a0a0;
    --shop-accent: #ffffff;
    
    /* Transitions */
    --shop-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-page {
    background-color: var(--shop-bg);
    color: var(--shop-text);
    font-family: 'Outfit', sans-serif;
}

.shop-glass {
    background: var(--shop-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--shop-border);
}

.shop-text-gradient {
    background: linear-gradient(135deg, var(--shop-primary), var(--shop-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.shop-btn-primary {
    background: var(--shop-primary);
    color: #000;
    font-weight: 700;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--shop-transition);
}

.shop-btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.shop-btn-outline {
    background: transparent;
    border: 1px solid var(--shop-border);
    color: var(--shop-text);
    padding: 12px 25px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--shop-transition);
}

.shop-btn-outline:hover {
    border-color: var(--shop-primary);
    background: rgba(212, 175, 55, 0.05);
}

/* Product Card Specifics */
.shop-product-card {
    position: relative;
    overflow: hidden;
}

.shop-product-card:hover {
    border-color: var(--shop-primary);
    transform: translateY(-5px);
}

.shop-product-card img {
    transition: var(--shop-transition);
}

.shop-product-card:hover img {
    transform: scale(1.05);
}
@media (max-width:768px){
    .product-name {
    	font-size: 12px;
    	width: 100%;
    	white-space: nowrap;
    	overflow: hidden;
    	text-overflow: ellipsis;
    }
    .shop-product-card {
	width: 48% !important;
	float: left !important;
	margin: 1% !important;
	padding: 3px !important;
}
.product-price {
	font-size: 15px !important;
	margin-right: 10px;
}
.product-pv{
    white-space:nowrap;
}
}
