@import url(‘https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap’);
:root {
–gold: #D4AF37;
–gold-dark: #B8962E;
–jade: #0FA36B;
–jade-dark: #0a7a50;
–violet: #5B2EA8;
–ink: #0D0F14;
–ivory: #F6F5F0;
–white: #FFFFFF;
–gray: #6b7280;
–cherry: #FFB7C5;
}
/* PAGE WRAPPER WITH DRAGONS INSIDE */
.shop-wrapper {
position: relative;
background: linear-gradient(180deg, var(–white) 0%, var(–ivory) 100%);
min-height: 100vh;
overflow: hidden;
}
/* DRAGONS INSIDE WRAPPER */
.shop-wrapper .dragon {
position: absolute;
pointer-events: none;
opacity: 0.18;
animation: dragonFly linear infinite;
filter: drop-shadow(0 4px 20px rgba(212,175,55,0.4));
z-index: 1;
}
.shop-wrapper .dragon:nth-child(1) { top: 3%; font-size: 7rem; opacity: 0.20; animation-duration: 30s; }
.shop-wrapper .dragon:nth-child(2) { top: 18%; font-size: 6rem; opacity: 0.15; animation: dragonFlyReverse 38s linear infinite; animation-delay: 8s; }
.shop-wrapper .dragon:nth-child(3) { top: 33%; font-size: 6.5rem; opacity: 0.17; animation-duration: 34s; animation-delay: 16s; }
.shop-wrapper .dragon:nth-child(4) { top: 48%; font-size: 5.5rem; opacity: 0.14; animation: dragonFlyReverse 42s linear infinite; animation-delay: 24s; }
.shop-wrapper .dragon:nth-child(5) { top: 63%; font-size: 6rem; opacity: 0.16; animation-duration: 36s; animation-delay: 4s; }
.shop-wrapper .dragon:nth-child(6) { top: 78%; font-size: 5.5rem; opacity: 0.15; animation: dragonFlyReverse 40s linear infinite; animation-delay: 12s; }
.shop-wrapper .dragon:nth-child(7) { top: 90%; font-size: 6rem; opacity: 0.14; animation-duration: 32s; animation-delay: 20s; }
.shop-wrapper .cloud {
position: absolute;
pointer-events: none;
opacity: 0.12;
animation: cloudDrift 50s linear infinite;
z-index: 1;
}
.shop-wrapper .cloud:nth-child(8) { top: 10%; font-size: 5rem; animation-delay: 5s; }
.shop-wrapper .cloud:nth-child(9) { top: 30%; font-size: 4.5rem; opacity: 0.10; animation-delay: 20s; }
.shop-wrapper .cloud:nth-child(10) { top: 50%; font-size: 5rem; opacity: 0.11; animation-delay: 35s; }
.shop-wrapper .cloud:nth-child(11) { top: 70%; font-size: 4rem; opacity: 0.09; animation-delay: 12s; }
.shop-wrapper .cloud:nth-child(12) { top: 85%; font-size: 4.5rem; opacity: 0.10; animation-delay: 28s; }
@keyframes dragonFly {
0% { left: -10%; transform: translateY(0) rotate(-2deg); }
25% { transform: translateY(-15px) rotate(1deg); }
50% { transform: translateY(10px) rotate(2deg); }
75% { transform: translateY(-10px) rotate(0deg); }
100% { left: 110%; transform: translateY(0) rotate(-2deg); }
}
@keyframes dragonFlyReverse {
0% { right: -10%; left: auto; transform: scaleX(-1) translateY(0); }
25% { transform: scaleX(-1) translateY(-12px); }
50% { transform: scaleX(-1) translateY(15px); }
75% { transform: scaleX(-1) translateY(-8px); }
100% { right: 110%; left: auto; transform: scaleX(-1) translateY(0); }
}
@keyframes cloudDrift {
0% { left: -8%; }
100% { left: 108%; }
}
/* ALL CONTENT ABOVE DRAGONS */
.shop-content {
position: relative;
z-index: 2;
padding: 50px 24px 100px;
max-width: 1200px;
margin: 0 auto;
}
/* HEADER */
.shop-header {
text-align: center;
margin-bottom: 40px;
padding: 40px 30px;
}
.shop-header h1 {
font-family: ‘Cinzel’, serif;
font-size: clamp(2rem, 5vw, 2.8rem);
font-weight: 600;
margin-bottom: 8px;
background: linear-gradient(135deg, var(–jade) 0%, #2dd4a0 50%, var(–jade) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.shop-header .tagline {
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.2em;
background: linear-gradient(90deg, var(–violet), var(–jade), var(–gold));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 16px;
}
.shop-header p {
font-size: 1rem;
color: var(–gray);
max-width: 550px;
margin: 0 auto;
line-height: 1.8;
}
/* VAULT NAVIGATION */
.vault-nav {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 50px;
padding: 24px;
}
.vault-link {
padding: 14px 24px;
background: rgba(255,255,255,0.9);
border: 1px solid rgba(0,0,0,0.08);
border-radius: 10px;
color: var(–ink);
text-decoration: none;
font-size: 0.85rem;
font-weight: 600;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
}
.vault-link:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.vault-link.jade:hover { border-color: var(–jade); color: var(–jade); }
.vault-link.guides:hover { border-color: var(–violet); color: var(–violet); }
.vault-link.wealth:hover { border-color: var(–gold); color: var(–gold-dark); }
.vault-link.free:hover { border-color: var(–cherry); color: #c4667a; }
/* SHOP SECTIONS */
.shop-section {
margin-bottom: 50px;
background: rgba(255,255,255,0.85);
padding: 36px 28px;
border-radius: 20px;
border: 1px solid rgba(0,0,0,0.04);
backdrop-filter: blur(10px);
}
.section-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
padding-bottom: 14px;
border-bottom: 1px solid rgba(0,0,0,0.06);
}
.section-header h2 {
font-family: ‘Cinzel’, serif;
font-size: 1.4rem;
font-weight: 600;
color: var(–ink);
}
.section-header a {
color: var(–jade);
font-size: 0.85rem;
font-weight: 600;
text-decoration: none;
}
.section-header a:hover { color: var(–jade-dark); }
/* Section accents */
.jade-section .section-header h2 { color: var(–jade-dark); }
.guides-section .section-header h2, .guides-section .section-header a { color: var(–violet); }
.wealth-section .section-header h2, .wealth-section .section-header a { color: var(–gold-dark); }
/* WOOCOMMERCE OVERRIDES */
.shop-wrapper .woocommerce ul.products {
display: grid !important;
grid-template-columns: repeat(3, 1fr) !important;
gap: 20px !important;
padding: 0 !important;
margin: 0 !important;
}
.shop-wrapper .woocommerce ul.products li.product {
background: var(–white) !important;
border: 1px solid rgba(0,0,0,0.06) !important;
border-radius: 14px !important;
padding: 0 !important;
margin: 0 !important;
width: 100% !important;
overflow: hidden;
transition: all 0.3s ease !important;
list-style: none !important;
}
.shop-wrapper .woocommerce ul.products li.product:hover {
border-color: var(–jade) !important;
transform: translateY(-5px) !important;
box-shadow: 0 12px 35px rgba(15,163,107,0.12) !important;
}
.shop-wrapper .woocommerce ul.products li.product a img {
border-radius: 14px 14px 0 0 !important;
margin: 0 !important;
width: 100% !important;
height: 200px !important;
object-fit: cover !important;
}
.shop-wrapper .woocommerce ul.products li.product .woocommerce-loop-product__title {
font-family: ‘Cinzel’, serif !important;
font-size: 0.9rem !important;
font-weight: 600 !important;
color: var(–ink) !important;
padding: 16px 16px 6px !important;
margin: 0 !important;
line-height: 1.4 !important;
}
.shop-wrapper .woocommerce ul.products li.product .price {
color: var(–jade) !important;
font-size: 1.15rem !important;
font-weight: 700 !important;
padding: 0 16px 16px !important;
margin: 0 !important;
}
.shop-wrapper .woocommerce ul.products li.product .button,
.shop-wrapper .woocommerce ul.products li.product .add_to_cart_button {
background: var(–jade) !important;
color: white !important;
border-radius: 8px !important;
margin: 0 16px 16px !important;
padding: 12px 18px !important;
font-size: 0.72rem !important;
font-weight: 600 !important;
text-transform: uppercase !important;
letter-spacing: 0.06em !important;
transition: all 0.3s !important;
}
.shop-wrapper .woocommerce ul.products li.product .button:hover {
background: var(–jade-dark) !important;
}
.shop-wrapper .woocommerce ul.products li.product .onsale {
background: linear-gradient(135deg, #DC143C, #ff1744) !important;
color: white !important;
font-size: 0.65rem !important;
font-weight: 700 !important;
padding: 5px 10px !important;
border-radius: 6px !important;
top: 10px !important;
right: 10px !important;
left: auto !important;
}
/* Featured 4 columns */
.featured-section .woocommerce ul.products {
grid-template-columns: repeat(4, 1fr) !important;
}
/* CTA */
.shop-cta {
background: rgba(255,255,255,0.9);
border: 1px solid rgba(15,163,107,0.15);
border-radius: 20px;
padding: 44px 36px;
text-align: center;
margin-bottom: 50px;
}
.shop-cta h3 {
font-family: ‘Cinzel’, serif;
font-size: 1.5rem;
color: var(–ink);
margin-bottom: 10px;
}
.shop-cta p {
color: var(–gray);
max-width: 480px;
margin: 0 auto 20px;
line-height: 1.7;
}
.btn {
display: inline-flex;
padding: 14px 28px;
border-radius: 10px;
font-size: 0.85rem;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
text-decoration: none;
transition: all 0.3s ease;
}
.btn-cherry {
background: linear-gradient(135deg, var(–cherry), #ff8fa3);
color: var(–ink);
}
.btn-cherry:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(255,183,197,0.4);
}
/* RESPONSIVE */
@media (max-width: 1024px) {
.shop-wrapper .woocommerce ul.products,
.featured-section .woocommerce ul.products {
grid-template-columns: repeat(2, 1fr) !important;
}
}
@media (max-width: 768px) {
.shop-content { padding: 40px 16px 80px; }
.shop-header h1 { font-size: 1.8rem; }
.vault-nav { flex-direction: column; align-items: stretch; }
.vault-link { justify-content: center; }
.shop-section { padding: 24px 18px; }
.section-header { flex-direction: column; gap: 8px; text-align: center; }
.shop-wrapper .woocommerce ul.products,
.featured-section .woocommerce ul.products {
grid-template-columns: 1fr !important;
}
.shop-cta { padding: 32px 20px; }
.shop-wrapper .dragon { font-size: 4rem !important; opacity: 0.14 !important; }
.shop-wrapper .cloud { display: none; }
}
🐉
🐉
🐉
🐉
🐉
🐉
🐉
☁️
☁️
☁️
☁️
☁️
Shop All Products
AWAKEN • ACTIVATE • ASCEND
Authentic jade jewelry, sovereign wellness guides, binaural frequencies, and feng shui talismans.
💎 Jade Vault
⭕ Bangles
🐉 Pendants
📖 Guides
🎵 Frequencies
🏆 Wealth
🎁 Free
Featured Products
-
Guides
TMJ: The Missing Junction (3 Week Protocol)
Original price was: $128.88.$88.88Current price is: $88.88. Add to cart
Jade Collection
New to Dynasty?
Unlock free frequencies, the TMJ Quick Start Protocol, mandalas, and more.
Wellness Guides
-
Frequencies
Binaural Beats Master Bundle (10 Tracks)
Original price was: $88.80.$58.88Current price is: $58.88. Add to cart
Binaural Frequencies
-
Frequencies
Binaural Beats Master Bundle (10 Tracks)
Original price was: $88.80.$58.88Current price is: $58.88. Add to cart
Wealth Activators
Showing 1–12 of 171 results
-
Jade Bangles
Authentic Grade A Natural Jadeite Bangle – Classic Smooth (327.645ct)
$188.88 Add to cart -
Jade Bangles
Authentic Natural Grade A Jadeite Bangle – Bi-Color (315.6ct): 210178
$188.88 Add to cart -
Frequencies
Binaural Beats Master Bundle (10 Tracks)
Original price was: $88.80.$58.88Current price is: $58.88. Add to cart




