{"product_id":"wooden-savior-cross-necklace","title":"Wooden Savior Cross Necklace","description":"\u003cp\u003e\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Playfair+Display:wght@400;500;600\u0026amp;family=Source+Sans+Pro:wght@300;400;600\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\u003c\/p\u003e\u003cstyle\u003e        :root {            --primary-gold: #d4af37;            --deep-brown: #5d4037;            --light-cream: #f8f5f0;            --dark-text: #333333;            --light-text: #666666;            --white: #ffffff;        }                * {            margin: 0;            padding: 0;            box-sizing: border-box;        }                body {            font-family: 'Source Sans Pro', sans-serif;            color: var(--dark-text);            background-color: var(--light-cream);            line-height: 1.6;        }                h1, h2, h3, h4 {            font-family: 'Playfair Display', serif;            color: var(--deep-brown);        }                .container {            max-width: 1200px;            margin: 0 auto;            padding: 0 20px;        }                \/* Header Styles *\/        .header {            background: linear-gradient(135deg, var(--deep-brown) 0%, #3e2723 100%);            color: var(--white);            padding: 40px 0;            text-align: center;            border-bottom: 4px solid var(--primary-gold);        }                .header h1 {            font-size: 2.5rem;            margin-bottom: 15px;            font-weight: normal;            letter-spacing: 1px;            color: var(--white);        }                .header p {            font-size: 1.2rem;            max-width: 800px;            margin: 0 auto;            font-style: italic;            color: rgba(255, 255, 255, 0.85);        }                \/* Main Product Grid *\/        .product-grid {            display: grid;            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));            gap: 30px;            padding: 50px 0;        }                .product-card {            background-color: var(--white);            border-radius: 12px;            overflow: hidden;            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);            transition: transform 0.3s ease, box-shadow 0.3s ease;            position: relative;            display: flex;            flex-direction: column;        }                .product-card:hover {            transform: translateY(-5px);            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);        }                .product-card::before {            content: '';            position: absolute;            top: 0;            left: 0;            right: 0;            height: 4px;            background: linear-gradient(90deg, var(--primary-gold), var(--deep-brown));            z-index: 1;        }                .product-image-container {            position: relative;            width: 100%;            padding-top: 100%; \/* Creates 1:1 aspect ratio *\/            overflow: hidden;            background-color: #f5f1e8; \/* Light background for better image display *\/        }                .product-image {            position: absolute;            top: 0;            left: 0;            width: 100%;            height: 100%;            object-fit: contain; \/* Changed to contain to show full image *\/            display: block;            transition: transform 0.5s ease;            padding: 15px; \/* Add padding to prevent image from touching edges *\/        }                .product-card:hover .product-image {            transform: scale(1.05);        }                .product-info {            padding: 25px;            flex-grow: 1;            display: flex;            flex-direction: column;        }                .product-name {            font-size: 1.5rem;            color: var(--deep-brown);            margin-bottom: 10px;            text-align: center;            position: relative;            padding-bottom: 10px;        }                .product-name::after {            content: '';            position: absolute;            bottom: 0;            left: 50%;            transform: translateX(-50%);            width: 50px;            height: 2px;            background-color: var(--primary-gold);        }                .product-latin {            font-style: italic;            color: var(--light-text);            text-align: center;            margin-bottom: 15px;            font-size: 0.9rem;        }                .product-description {            color: var(--light-text);            margin-bottom: 15px;            text-align: center;            flex-grow: 1;        }                .product-features {            list-style: none;            margin: 15px 0;        }                .product-features li {            padding: 5px 0;            color: var(--dark-text);            position: relative;            padding-left: 25px;        }                .product-features li::before {            content: '✝';            position: absolute;            left: 0;            color: var(--primary-gold);            font-size: 0.8rem;        }                .product-price {            text-align: center;            font-size: 1.5rem;            color: var(--deep-brown);            font-weight: bold;            margin: 20px 0;            padding: 10px;            background-color: rgba(212, 175, 55, 0.1);            border-radius: 6px;        }                .add-to-cart {            display: block;            width: 100%;            padding: 12px;            background: linear-gradient(135deg, var(--primary-gold), #b8941f);            color: var(--white);            border: none;            border-radius: 6px;            font-size: 1.1rem;            font-weight: bold;            cursor: pointer;            transition: all 0.3s ease;            text-align: center;            text-decoration: none;            font-family: 'Source Sans Pro', sans-serif;        }                .add-to-cart:hover {            background: linear-gradient(135deg, #b8941f, var(--primary-gold));            transform: translateY(-2px);            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);        }                \/* Product Story Section *\/        .story-section {            background-color: var(--white);            padding: 60px 0;            margin: 40px 0;            border-top: 1px solid rgba(212, 175, 55, 0.3);            border-bottom: 1px solid rgba(212, 175, 55, 0.3);        }                .story-content {            max-width: 800px;            margin: 0 auto;            text-align: center;        }                .story-title {            font-size: 2rem;            color: var(--deep-brown);            margin-bottom: 20px;            position: relative;            display: inline-block;        }                .story-title::after {            content: '';            position: absolute;            bottom: -10px;            left: 50%;            transform: translateX(-50%);            width: 80px;            height: 3px;            background-color: var(--primary-gold);        }                .bible-verse {            font-style: italic;            font-size: 1.2rem;            color: var(--light-text);            margin: 30px 0;            padding: 20px;            background-color: rgba(212, 175, 55, 0.05);            border-radius: 8px;            border-left: 4px solid var(--primary-gold);        }                .story-text {            color: var(--dark-text);            font-size: 1.1rem;            line-height: 1.8;            margin-bottom: 20px;        }                \/* Product Details Section *\/        .details-section {            padding: 60px 0;        }                .details-grid {            display: grid;            grid-template-columns: 1fr 1fr;            gap: 50px;            align-items: center;        }                .details-image {            width: 100%;            border-radius: 12px;            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);        }                .details-content h2 {            font-size: 2.2rem;            margin-bottom: 20px;        }                .details-content p {            margin-bottom: 20px;            font-size: 1.1rem;        }                .details-list {            list-style: none;            margin: 25px 0;        }                .details-list li {            padding: 10px 0;            border-bottom: 1px solid rgba(0, 0, 0, 0.1);            position: relative;            padding-left: 30px;        }                .details-list li::before {            content: '✞';            position: absolute;            left: 0;            color: var(--primary-gold);        }                \/* Spiritual Section *\/        .spiritual-section {            background-color: var(--white);            padding: 60px 0;            margin: 40px 0;            border-top: 1px solid rgba(212, 175, 55, 0.3);            border-bottom: 1px solid rgba(212, 175, 55, 0.3);        }                .spiritual-content {            max-width: 800px;            margin: 0 auto;            text-align: center;        }                .spiritual-title {            font-size: 2rem;            color: var(--deep-brown);            margin-bottom: 20px;            position: relative;            display: inline-block;        }                .spiritual-title::after {            content: '';            position: absolute;            bottom: -10px;            left: 50%;            transform: translateX(-50%);            width: 80px;            height: 3px;            background-color: var(--primary-gold);        }                \/* Footer *\/        .footer {            background-color: var(--deep-brown);            color: var(--white);            padding: 40px 0;            text-align: center;        }                .footer p {            margin-bottom: 10px;        }                .footer a {            color: var(--primary-gold);            text-decoration: none;        }                \/* Responsive Design *\/        @media (max-width: 768px) {            .header h1 {                font-size: 2rem;            }                        .header p {                font-size: 1rem;            }                        .product-grid {                grid-template-columns: repeat(2, 1fr);                gap: 20px;            }                        .story-title, .spiritual-title {                font-size: 1.8rem;            }                        .bible-verse {                font-size: 1.1rem;            }                        .details-grid {                grid-template-columns: 1fr;                gap: 30px;            }        }                @media (max-width: 600px) {            .product-grid {                grid-template-columns: 1fr;                gap: 20px;            }        }                @media (max-width: 480px) {            .container {                padding: 0 15px;            }                        .header h1 {                font-size: 1.8rem;            }                        .story-section, .spiritual-section {                padding: 40px 0;            }        }    \u003c\/style\u003e\u003cheader class=\"header\"\u003e\u003cdiv class=\"container\"\u003e\n\u003ch1\u003e\"Savior's Cross\" Wooden Pendant\u003c\/h1\u003e\n\u003cp\u003eHandcrafted Faith Symbol in 4 Sacred Woods - Embrace the Story of Redemption\u003c\/p\u003e\n\u003c\/div\u003e\u003c\/header\u003e\u003cmain class=\"container\"\u003e\u003cdiv class=\"product-grid\"\u003e\n\u003c!-- Olive Wood --\u003e\u003cdiv class=\"product-card\"\u003e\n\u003cdiv class=\"product-image-container\"\u003e\u003cimg class=\"product-image\" alt=\"Olive Wood Savior's Cross Pendant\" src=\"https:\/\/fwzuqw7we4zj6ma0-59415396525.shopifypreview.com\/cdn\/shop\/files\/1_d853e863-6799-43d0-ad37-2b6465415bbb_800x.jpg?v=1762502123\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"product-info\"\u003e\n\u003ch2 class=\"product-name\"\u003eOlive Wood\u003c\/h2\u003e\n\u003cdiv class=\"product-latin\"\u003eA Link to the Holy Land\u003c\/div\u003e\n\u003cp class=\"product-description\"\u003eHarvested from olive trees near Jerusalem, this wood carries whispers of ancient faith, connecting you to the soil where Jesus walked.\u003c\/p\u003e\n\u003cul class=\"product-features\"\u003e\n\u003cli\u003eLight, natural grain with warm undertones\u003c\/li\u003e\n\u003cli\u003eDirect connection to biblical history\u003c\/li\u003e\n\u003cli\u003eHumble yet holy nature of Christ's ministry\u003c\/li\u003e\n\u003cli\u003ePerfect for daily spiritual connection\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003cdiv class=\"product-price\"\u003e$32.99\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Red Purple Sandalwood --\u003e\u003cdiv class=\"product-card\"\u003e\n\u003cdiv class=\"product-image-container\"\u003e\u003cimg class=\"product-image\" alt=\"Red Purple Sandalwood Savior's Cross Pendant\" src=\"https:\/\/fwzuqw7we4zj6ma0-59415396525.shopifypreview.com\/cdn\/shop\/files\/9-12_0002s_0008___0009_DSC_9060_2_800x.jpg?v=1762502123\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"product-info\"\u003e\n\u003ch2 class=\"product-name\"\u003eRed Purple Sandalwood\u003c\/h2\u003e\n\u003cdiv class=\"product-latin\"\u003eThe Hue of Divine Glory\u003c\/div\u003e\n\u003cp class=\"product-description\"\u003eRich, deep red tones that echo the royal blood of Jesus and the sacredness of redemption - a bold statement of unwavering faith.\u003c\/p\u003e\n\u003cul class=\"product-features\"\u003e\n\u003cli\u003eRich, solemn red tones\u003c\/li\u003e\n\u003cli\u003eSymbolizes Christ's sacrifice\u003c\/li\u003e\n\u003cli\u003eExudes reverence and devotion\u003c\/li\u003e\n\u003cli\u003eMakes a powerful faith statement\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003cdiv class=\"product-price\"\u003e$32.99\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Black Purple Sandalwood --\u003e\u003cdiv class=\"product-card\"\u003e\n\u003cdiv class=\"product-image-container\"\u003e\u003cimg class=\"product-image\" alt=\"Black Purple Sandalwood Savior's Cross Pendant\" src=\"https:\/\/fwzuqw7we4zj6ma0-59415396525.shopifypreview.com\/cdn\/shop\/files\/9-12_0003s_0004___0015_DSC_9043_3_800x.jpg?v=1762502123\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"product-info\"\u003e\n\u003ch2 class=\"product-name\"\u003eBlack Purple Sandalwood\u003c\/h2\u003e\n\u003cdiv class=\"product-latin\"\u003eDepth of Spiritual Devotion\u003c\/div\u003e\n\u003cp class=\"product-description\"\u003eDark, dense grain representing the depth of God's love and the enduring nature of faith - steadfast, unshakable, and eternal.\u003c\/p\u003e\n\u003cul class=\"product-features\"\u003e\n\u003cli\u003eDark, timeless grain pattern\u003c\/li\u003e\n\u003cli\u003eSymbolizes God's eternal love\u003c\/li\u003e\n\u003cli\u003eRepresents steadfast faith\u003c\/li\u003e\n\u003cli\u003eDurable and long-lasting\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003cdiv class=\"product-price\"\u003e$32.99\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- North American Black Walnut --\u003e\u003cdiv class=\"product-card\"\u003e\n\u003cdiv class=\"product-image-container\"\u003e\u003cimg class=\"product-image\" alt=\"North American Black Walnut Savior's Cross Pendant\" src=\"https:\/\/fwzuqw7we4zj6ma0-59415396525.shopifypreview.com\/cdn\/shop\/files\/9-12_0000s_0000___0004_DSC_9093_800x.jpg?v=1762502123\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"product-info\"\u003e\n\u003ch2 class=\"product-name\"\u003eNorth American Black Walnut\u003c\/h2\u003e\n\u003cdiv class=\"product-latin\"\u003eRustic Purity of Belief\u003c\/div\u003e\n\u003cp class=\"product-description\"\u003eWarm brown tones with natural grain patterns reflecting the humble purity of faith - unadorned, sincere, and rooted in truth.\u003c\/p\u003e\n\u003cul class=\"product-features\"\u003e\n\u003cli\u003eWarm, earthy brown tones\u003c\/li\u003e\n\u003cli\u003eNatural organic grain patterns\u003c\/li\u003e\n\u003cli\u003eRepresents humble faith\u003c\/li\u003e\n\u003cli\u003ePerfect for everyday wear\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003cdiv class=\"product-price\"\u003e$32.99\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003csection class=\"story-section\"\u003e\u003cdiv class=\"story-content\"\u003e\n\u003ch2 class=\"story-title\"\u003eEmbrace the Redemption Story\u003c\/h2\u003e\n\u003cdiv class=\"bible-verse\"\u003e\"For God so loved the world that he gave his one and only Son, that whoever believes in him shall not perish but have eternal life.\"\u003cbr\u003e— John 3:16\u003c\/div\u003e\n\u003cp class=\"story-text\"\u003eFor every Christian, the cross is more than a symbol—it's a testament to Jesus' sacrifice, redemption, and eternal love. Our \"Savior's Cross\" pendant is handcrafted to be your tangible connection to that divine story.\u003c\/p\u003e\n\u003cp class=\"story-text\"\u003eEach pendant is meticulously carved from sacred woods, carrying not just beauty but profound spiritual meaning. The detailed depiction of Jesus on the cross serves as a constant reminder of His ultimate sacrifice and the redemption available to all who believe.\u003c\/p\u003e\n\u003c\/div\u003e\u003c\/section\u003e\u003csection class=\"details-section\"\u003e\u003cdiv class=\"details-grid\"\u003e\n\u003cdiv\u003e\u003cimg class=\"details-image\" alt=\"Savior's Cross Detail\" src=\"https:\/\/fwzuqw7we4zj6ma0-59415396525.shopifypreview.com\/cdn\/shop\/files\/1_d853e863-6799-43d0-ad37-2b6465415bbb_800x.jpg?v=1762502123\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"details-content\"\u003e\n\u003ch2\u003eDivine Craftsmanship\u003c\/h2\u003e\n\u003cp\u003eEach Savior's Cross pendant is meticulously hand-carved by skilled artisans who understand they are creating more than just jewelry - they are crafting spiritual tools for daily faith.\u003c\/p\u003e\n\u003cp\u003eThe detailed depiction of Jesus on the cross, with outstretched hands offering salvation, is rendered with reverence and care, honoring the gravity of the redemption story.\u003c\/p\u003e\n\u003cul class=\"details-list\"\u003e\n\u003cli\u003eHand-carved from solid wood blocks\u003c\/li\u003e\n\u003cli\u003eNatural oil finish to enhance wood grain\u003c\/li\u003e\n\u003cli\u003ePerfect size for daily wear (50×40×10mm)\u003c\/li\u003e\n\u003cli\u003eIncludes 24-inch matching chain\u003c\/li\u003e\n\u003cli\u003eEach piece is unique with natural wood variations\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\u003c\/section\u003e\u003csection class=\"spiritual-section\"\u003e\u003cdiv class=\"spiritual-content\"\u003e\n\u003ch2 class=\"spiritual-title\"\u003eMore Than an Accessory—A Lifelong Companion\u003c\/h2\u003e\n\u003cp class=\"story-text\"\u003eWear your Savior's Cross as a daily reminder of Jesus' love and sacrifice. Let it rest against your heart as you go about your day, a silent affirmation of your faith.\u003c\/p\u003e\n\u003cp class=\"story-text\"\u003eHold it in your hands during prayer, letting the wood's texture ground you in moments of reflection. Share it as a meaningful gift for baptisms, confirmations, or any occasion where you want to share the message of salvation.\u003c\/p\u003e\n\u003cdiv class=\"bible-verse\"\u003e\"Come to me, all you who are weary and burdened, and I will give you rest.\"\u003cbr\u003e— Matthew 11:28\u003c\/div\u003e\n\u003c\/div\u003e\u003c\/section\u003e\u003c\/main\u003e\u003cfooter class=\"footer\"\u003e\u003cdiv class=\"container\"\u003e\n\u003cp\u003eBGcopper - Handcrafted Christian Devotional Items\u003c\/p\u003e\n\u003cp\u003eInspired by Faith, Crafted with Prayer\u003c\/p\u003e\n\u003cp\u003e |  | \u003c\/p\u003e\n\u003c\/div\u003e\u003c\/footer\u003e\u003cp\u003e \u003c\/p\u003e","brand":"mysite","offers":[{"title":"Black Purple Sandalwood","offer_id":44175973777450,"sku":"BGWN0005-Z","price":32.99,"currency_code":"USD","in_stock":true},{"title":"Red Purple Sandalwood","offer_id":44175973810218,"sku":"BGWN0005-X","price":32.99,"currency_code":"USD","in_stock":true},{"title":"Olive Wood","offer_id":44175973842986,"sku":"BGWN0005-G","price":32.99,"currency_code":"USD","in_stock":true},{"title":"North American Black Walnut","offer_id":44175973875754,"sku":"BGWN0005-H","price":32.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0711\/0203\/8058\/files\/20_88d8d959-d804-49a1-a4e8-784ae07b6330.jpg?v=1773805661","url":"https:\/\/90fd1g-dc.myshopify.com\/products\/wooden-savior-cross-necklace","provider":"Arvora","version":"1.0","type":"link"}