/* ======================================== SPUN STORE - SHOPIFY COMPATIBLE CSS ======================================== */ /* Base Styles - Shopify Compatible */ .spun-container { font-family: Arial, sans-serif; margin: 0; padding: 0; background: #f8f4ff; min-height: 100vh; width: 100%; } /* ======================================== HEADER & NAVIGATION ======================================== */ .spun-header { background: #9b59b6; background: -webkit-linear-gradient(135deg, #9b59b6 0%, #e91e63 100%); background: linear-gradient(135deg, #9b59b6 0%, #e91e63 100%); padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); } .spun-nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; } .spun-nav-left, .spun-nav-right { display: flex; gap: 30px; } .spun-nav a { color: #ffffff; text-decoration: none; font-size: 18px; font-weight: 500; transition: all 0.3s ease; padding: 8px 15px; border-radius: 20px; } .spun-nav a:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); } .spun-logo { color: #ffeb3b; font-size: 36px; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.1); position: relative; } .spun-logo:before { content: β€˜πŸ­β€™; position: absolute; left: -40px; top: 0; font-size: 30px; } /* ======================================== VIDEO SECTION ======================================== */ .spun-video-section { position: relative; height: 400px; background: #ffeaa7; background-image: radial-gradient(circle at 200px 100px, #fdcb6e 30px, transparent 30px), radial-gradient(circle at 400px 150px, #e17055 25px, transparent 25px), radial-gradient(circle at 600px 80px, #fd79a8 35px, transparent 35px), radial-gradient(circle at 800px 200px, #fdcb6e 28px, transparent 28px), radial-gradient(circle at 1000px 120px, #e17055 32px, transparent 32px); background-size: 1200px 400px; background-position: center; display: flex; align-items: center; justify-content: center; margin: 20px; border-radius: 15px; overflow: hidden; } .spun-play-button { width: 80px; height: 80px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.2); } .spun-play-button:hover { transform: scale(1.1); background: #ffffff; } .spun-play-button:before { content: β€˜β–Άβ€™; font-size: 30px; color: #9b59b6; margin-left: 4px; display: block; } /* ======================================== PRODUCT SELECTION SECTION ======================================== */ .spun-selection-section { padding: 60px 20px; text-align: center; max-width: 1200px; margin: 0 auto; } .spun-section-title { font-size: 48px; font-weight: 900; color: #2d3436; margin-bottom: 50px; text-transform: uppercase; letter-spacing: 2px; text-shadow: 2px 2px 4px rgba(0,0,0,0.1); line-height: 1.2; } .spun-selection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; } .spun-category-card { background: #ffffff; border-radius: 20px; padding: 40px 30px; height: 350px; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: all 0.3s ease; cursor: pointer; box-shadow: 0 8px 25px rgba(0,0,0,0.1); position: relative; text-decoration: none; color: #2d3436; } .spun-category-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.15); text-decoration: none; color: #2d3436; } /* Pink Border Cards */ .spun-category-card.dessert-sodas, .spun-category-card.cotton-candy { border: 4px solid #e91e63; } /* Yellow Border Card */ .spun-category-card.popcorn { border: 4px solid #ffeb3b; } .spun-category-icon { width: 120px; height: 120px; margin-bottom: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 60px; color: #ffffff; box-shadow: 0 4px 15px rgba(0,0,0,0.2); } /* Pink Icons */ .dessert-sodas .spun-category-icon, .cotton-candy .spun-category-icon { background: #e91e63; background: -webkit-linear-gradient(45deg, #e91e63, #f06292); background: linear-gradient(45deg, #e91e63, #f06292); } /* Yellow Icon */ .popcorn .spun-category-icon { background: #ffeb3b; background: -webkit-linear-gradient(45deg, #ffeb3b, #ffc107); background: linear-gradient(45deg, #ffeb3b, #ffc107); } .spun-category-title { font-size: 28px; font-weight: 700; color: #2d3436; margin: 0; font-family: Georgia, serif; font-style: italic; } /* Category Icons */ .dessert-sodas .spun-category-icon:before { content: β€˜πŸ₯€β€™; display: block; } .popcorn .spun-category-icon:before { content: β€˜πŸΏβ€™; display: block; } .cotton-candy .spun-category-icon:before { content: β€˜πŸ­β€™; display: block; } /* ======================================== RESPONSIVE DESIGN ======================================== */ @media screen and (max-width: 768px) { .spun-nav { flex-direction: column; gap: 20px; } .spun-nav-left, .spun-nav-right { gap: 15px; } .spun-logo { font-size: 28px; order: -1; } .spun-logo:before { left: -30px; font-size: 24px; } .spun-section-title { font-size: 32px; line-height: 1.2; } .spun-selection-grid { grid-template-columns: 1fr; gap: 30px; } .spun-category-card { height: 280px; padding: 30px 20px; } .spun-category-icon { width: 100px; height: 100px; font-size: 50px; } .spun-category-title { font-size: 24px; } .spun-video-section { height: 300px; margin: 10px; } } @media screen and (max-width: 480px) { .spun-nav a { font-size: 16px; padding: 6px 12px; } .spun-selection-section { padding: 40px 15px; } .spun-section-title { font-size: 24px; } .spun-category-card { height: 250px; padding: 25px 15px; } .spun-category-icon { width: 80px; height: 80px; font-size: 40px; margin-bottom: 20px; } .spun-category-title { font-size: 20px; } .spun-logo:before { left: -25px; font-size: 20px; } } /* Tablet specific */ @media screen and (max-width: 1024px) and (min-width: 769px) { .spun-selection-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; } .spun-category-card { height: 320px; padding: 35px 25px; } .spun-category-icon { width: 110px; height: 110px; font-size: 55px; } .spun-category-title { font-size: 26px; } } /* ======================================== UTILITY CLASSES ======================================== */ .spun-btn { background: #e91e63; background: -webkit-linear-gradient(45deg, #e91e63, #9b59b6); background: linear-gradient(45deg, #e91e63, #9b59b6); color: #ffffff; padding: 12px 30px; border: none; border-radius: 25px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-block; } .spun-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3); text-decoration: none; color: #ffffff; } /* ======================================== SHOPIFY OVERRIDES ======================================== */ .spun-container * { box-sizing: border-box; } .spun-category-card:visited { color: #2d3436; text-decoration: none; } .spun-category-card:active { color: #2d3436; text-decoration: none; } .spun-nav a:visited { color: #ffffff; } .spun-nav a:active { color: #ffffff; } /* Animation fallbacks for older browsers */ .spun-play-button { -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; } .spun-category-card { -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; } .spun-nav a { -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; }