/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 115:4 Unexpected "<"

**/
<style>
        .rgc-gemstone-container {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .rgc-gemstone-wrapper {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 20px;
            margin-top: 10px;
        }

        .rgc-gemstone-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            padding: 40px;
            max-width: 500px;
            width: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .rgc-gemstone-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
        }

        .rgc-gemstone-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: white;
            box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
        }

        .rgc-gemstone-title {
            color: #333;
            font-size: 28px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .rgc-gemstone-link {
            color: #4facfe;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .rgc-gemstone-link:hover {
            color: #00f2fe;
            text-decoration: underline;
        }

        .rgc-gemstone-description {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .rgc-gemstone-button {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
        }

        .rgc-gemstone-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(79, 172, 254, 0.4);
        }

        @media (max-width: 480px) {
            .rgc-gemstone-card {
                padding: 30px 20px;
            }
            
            .rgc-gemstone-title {
                font-size: 24px;
            }
        }
    </style>

    <div class="rgc-gemstone-wrapper">
        <div class="rgc-gemstone-card">
            <div class="rgc-gemstone-icon">💎</div>
            
            <div class="rgc-gemstone-title">Discover Our <a href="https://rezagemcollection.ca/collections/larimar" class="rgc-gemstone-link">Larimar</a> Collection</div>
            
            <p class="rgc-gemstone-description">Explore our stunning collection of <a href="https://rezagemcollection.ca/collections/larimar" class="rgc-gemstone-link">larimar</a> gemstones and beads. This rare Caribbean blue stone is perfect for creating unique jewelry pieces that capture the essence of the ocean.</p>
            
            <a href="https://rezagemcollection.ca/collections/larimar" class="rgc-gemstone-button">
                View All Larimar Gemstones & Beads
            </a>
        </div>
    </div> 