Payments | Shroom Bros Canada body { margin: 0; background-color: #000; font-family: 'Segoe UI', sans-serif; color: #d4af37; } /* Section */ .payment-section { max-width: 950px; margin: 80px auto; padding: 20px; } /* Title */ .payment-title { text-align: center; font-size: 42px; letter-spacing: 3px; margin-bottom: 60px; font-weight: 600; color: #ffffff; } /* Dropdown */ .dropdown { background: linear-gradient(145deg, #0c0c0c, #141414); border: 1px solid rgba(212,175,55,0.4); border-radius: 14px; margin-bottom: 30px; overflow: hidden; transition: all 0.4s ease; box-shadow: 0 0 20px rgba(212,175,55,0.05); } .dropdown:hover { box-shadow: 0 0 35px rgba(212,175,55,0.25); border-color: #d4af37; } /* Header */ .dropdown-header { padding: 22px 30px; font-size: 20px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; cursor: pointer; } .title-text { display: flex; align-items: center; gap: 10px; } .icon { font-size: 24px; transition: transform 0.4s ease; } .dropdown:hover .icon { transform: rotate(45deg); } /* Content */ .dropdown-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease, padding 0.4s ease; padding: 0 30px; } .dropdown:hover .dropdown-content { max-height: 500px; padding: 10px 30px 25px 30px; } .dropdown-content ul { margin: 0; padding-left: 20px; } .dropdown-content li { margin-bottom: 12px; line-height: 1.7; color: #f5e6b3; } .dropdown-content li::marker { color: #d4af37; } /* Link Styling */ .dropdown-content a { color: #d4af37; text-decoration: none; transition: 0.3s ease; } .dropdown-content a:hover { color: #ffffff; text-shadow: 0 0 8px rgba(212,175,55,0.8); } /* Responsive */ @media (max-width: 768px) { .payment-title { font-size: 30px; margin-bottom: 40px; } .dropdown-header { font-size: 18px; padding: 18px 20px; } .dropdown-content { max-height: none; padding: 10px 20px 20px 20px; } }

PAYMENTS