/** Shopify CDN: Minification failed

Line 49:77 Expected identifier but found whitespace
Line 64:8 Unexpected "3"

**/



/* 
TARGET: Specifically the multicolumn-card-content-container class
EFFECT: Makes the entire card (with all its content) move as one unit
*/
.content-container {
    transition: all 0.3s ease;
    cursor: pointer;
}

.content-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* 
TARGET: Prevent any child elements from moving individually
EFFECT: Keeps image, text, buttons locked together as one unit
*/
/* .multicolumn-card-content-container * {
    transition: none !important;
    transform: none !important;
}

.multicolumn-card-content-container:hover * {
    transition: none !important;
    transform: none !important;
} */




/* 
TARGET: All card images (smartphone, laptop, product images)
EFFECT: Smooth zoom effect when you hover over cards
*/
[class*="card"] img:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}
Try this first and let me know if you see the hover effects working properly.

Section 2: Typography Enhancement
css
/* 
TARGET: Product titles (like "Smartphones", "Laptop", "Coffee Table")
EFFECT: Makes titles more readable with better spacing
*/
[class*="card"] h3,
[class*="card-title"],
[class*="heading"] {
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    line-height: 1.3 !important;
}
Section 3: Button Styling (Only for "Go to" buttons)
css
/* 
TARGET: The "Go to" buttons under category cards
EFFECT: Changes plain buttons to gradient style
*/
a[href*="collections"],
button:contains("Go to"),
.btn {
    background: linear-gradient(45deg, #667eea, #764ba2) !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

/* 
TARGET: Same buttons when hovered
EFFECT: Slightly lifts button and darkens color
*/
a[href*="collections"]:hover,
button:contains("Go to"):hover,
.btn:hover {
    transform: translateY(-2px) !important;
    background: linear-gradient(45deg, #5a67d8, #6b46c1) !important;
}



 /* Typography Enhancement */

 /* 
TARGET: Product titles (like "Smartphones", "Laptop", "Coffee Table")
EFFECT: Makes titles more readable with better spacing
*/
[class*="card"] h3,
[class*="card-title"],
[class*="heading"] {
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    line-height: 1.3 !important;
}


/* Section 3: Button Styling (Only for "Go to" buttons) */

/* 
TARGET: The "Go to" buttons under category cards
EFFECT: Changes plain buttons to gradient style
*/
a[href*="collections"],
button:contains("Go to"),
.btn {
    background: linear-gradient(45deg, #667eea, #764ba2) !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

/* 
TARGET: Same buttons when hovered
EFFECT: Slightly lifts button and darkens color
*/
a[href*="collections"]:hover,
button:contains("Go to"):hover,
.btn:hover {
    transform: translateY(-2px) !important;
    background: linear-gradient(45deg, #5a67d8, #6b46c1) !important;
}



/* Product Styling */
/* class=product-card-wrapper */

/* Transform basic cards into premium-looking elements */
.product-card-wrapper {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.product-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.product-card-wrapper:hover::before {
    left: 100%;
}

.product-card-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

/* Step 2: Elegant Typography */
/* Make text actually look professional */
.product-card-wrapper h3,
.product-card-wrapper .card__heading {
    font-weight: 600;
    font-size: 1.25rem;
    color: #2d3748;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.product-card-wrapper p {
    color: #718096;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}


/* Step 3: Beautiful Buttons */
/* Transform boring buttons into attractive ones */
.product-card-wrapper button,
.product-card-wrapper a[class*="button"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    transition: all 0.2s;
    text-transform: none;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
}

.product-card-wrapper button:hover,
.product-card-wrapper a[class*="button"]:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}


/* removing the vorder of buttin fro the pdt */
/* Override the button secondary border that was causing the issue */
/* .button--secondary:after,
.shopify-challenge__button:hover:after,
.customer_button:hover:after,
.shopify-payment-button__button--unbranded:hover:after {
    border-opacity: 0 !important;
} */


/* More specific override for button borders */
.button--secondary:after,
.button--secondary::after {
    border-opacity: 0 !important;
    border: none !important;
}

/* If it's a different selector, try these too */
*[class*="button"]:after,
*[class*="button"]::after {
    border-opacity: 0 !important;
    border: none !important;
}


* {
    border: none !important;
}


/* Adding more css in the product section of homepage to make it more beautiful */

/* Add sophisticated overlays that appear on hover: */
/* Image Overlay Effects */
.content-container,
.product-card-wrapper {
    position: relative;
    overflow: hidden;
}

/* Dark overlay that appears on hover */
.content-container::after,
.product-card-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.content-container:hover::after,
.product-card-wrapper:hover::after {
    opacity: 1;
}

/* Shimmer effect on images */
.content-container img,
.product-card-wrapper img {
    position: relative;
    overflow: hidden;
}

.content-container img::before,
.product-card-wrapper img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: left 0.6s ease;
}

.content-container:hover img::before,
.product-card-wrapper:hover img::before {
    left: 100%;
}



/* 2. Premium Color Schemes
Implement a sophisticated color palette: */

/* Premium Color Scheme */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --premium-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --surface-white: #ffffff;
    --surface-gray: #f7fafc;
}

/* Apply premium colors to cards */
.content-container,
.product-card-wrapper {
    background: var(--surface-white);
    border: 1px solid rgba(102, 126, 234, 0.1);
    color: var(--text-primary);
}

/* Category-specific color themes */
.content-container:nth-child(1) {
    border-left: 4px solid #667eea;
}

.content-container:nth-child(2) {
    border-left: 4px solid #764ba2;
}

.content-container:nth-child(3) {
    border-left: 4px solid #f093fb;
}

.content-container:nth-child(4) {
    border-left: 4px solid #4facfe;
}


/* 3. Micro-interactions */
/* Add subtle animations and feedback: */
/* Micro-interactions */
.content-container,
.product-card-wrapper {
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pulsing effect on hover */
@keyframes subtle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.01); }
}

.content-container:hover,
.product-card-wrapper:hover {
    animation: subtle-pulse 2s ease-in-out infinite;
}

/* Button micro-interaction */
.content-container button,
.product-card-wrapper button,
a[href*="collections"] {
    transform: translateY(0);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.content-container button::before,
.product-card-wrapper button::before,
a[href*="collections"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.content-container button:hover::before,
.product-card-wrapper button:hover::before,
a[href*="collections"]:hover::before {
    width: 200px;
    height: 200px;
}

/* Text hover effects */
.content-container h3,
.product-card-wrapper h3 {
    transition: color 0.3s ease;
    cursor: pointer;
}

.content-container:hover h3,
.product-card-wrapper:hover h3 {
    color: #667eea;
}


/* . Better Spacing and Layout */
/* Improve the overall spacing and visual hierarchy: */

/* Better Spacing and Layout */
.page-width {
    margin: 0 auto;
    padding: 0 20px;
}

/* Improved grid spacing */
/* .multicolumn-list {
    gap: 32px !important;
    padding: 60px 0 !important;
} */
