20 Commits

Author SHA1 Message Date
e245ebbcb0 Update src/app/page.tsx 2026-03-03 11:32:18 +00:00
922136278e Update src/app/page.tsx 2026-03-03 11:29:04 +00:00
2ebf806003 Update src/app/page.tsx 2026-03-03 11:25:52 +00:00
435475b055 Update src/app/page.tsx 2026-03-03 11:23:11 +00:00
14f1c9e6ac Update src/app/page.tsx 2026-03-03 11:22:19 +00:00
113926149b Update src/app/layout.tsx 2026-03-03 11:22:17 +00:00
35a9f05e9b Update src/app/page.tsx 2026-03-03 11:19:06 +00:00
e170229cd6 Update src/app/page.tsx 2026-03-03 11:18:23 +00:00
66d916a419 Update src/app/page.tsx 2026-03-03 11:15:34 +00:00
759c4140eb Update src/app/page.tsx 2026-03-03 11:12:35 +00:00
9337a81ca7 Update src/app/layout.tsx 2026-03-03 11:12:34 +00:00
30e4324c0b Update src/app/page.tsx 2026-03-03 11:11:54 +00:00
797c219487 Merge version_2 into main
Merge version_2 into main
2026-03-03 11:03:45 +00:00
d8db5797aa Update src/app/styles/variables.css 2026-03-03 11:03:39 +00:00
e051c968d8 Update src/app/styles/base.css 2026-03-03 11:03:38 +00:00
bd7bdaff3d Update src/app/page.tsx 2026-03-03 11:03:37 +00:00
e98b63b805 Update src/app/layout.tsx 2026-03-03 11:03:36 +00:00
e7d9063167 Merge version_1 into main
Merge version_1 into main
2026-03-03 10:59:11 +00:00
15ff871306 Merge version_1 into main
Merge version_1 into main
2026-03-03 10:54:35 +00:00
1e8fefcfed Merge version_1 into main
Merge version_1 into main
2026-03-03 10:53:49 +00:00
4 changed files with 127 additions and 108 deletions

View File

@@ -1,36 +1,31 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import { Poppins } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Apna Mens Wear | Budget Mens Fashion in Bhawarkua, Indore", description: "Affordable mens wear store in Indore. 4 shirts for ₹1000, formal combos, casual wear & delivery. ⭐3.8 rating. Call 096301 05490 for orders.", keywords: "mens wear Indore, Bhawarkua clothing, affordable shirts, budget mens fashion, combo deals Indore", robots: {
title: "Apna Mens Wear | Premium Budget Mens Fashion in Bhawarkua, Indore", description: "Experience premium mens wear at budget prices. 4 shirts for ₹1000, formal combos, casual wear & delivery. ⭐3.8 rating. Call 096301 05490 for orders.", keywords: "mens wear Indore, Bhawarkua clothing, affordable shirts, budget mens fashion, combo deals Indore, premium mens wear", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Apna Mens Wear - Trusted Budget Mens Fashion in Indore", description: "Shop affordable, quality mens clothing at Apna Mens Wear. ⭐3.8 rating, fast delivery, combo offers. Open till 11 PM in Bhawarkua.", url: "https://yourwebsite.com", siteName: "Apna Mens Wear", type: "website", images: [{
title: "Apna Mens Wear - Premium Budget Mens Fashion in Indore", description: "Shop premium quality mens clothing at budget prices. ⭐3.8 rating, fast delivery, exclusive combo offers. Open till 11 PM in Bhawarkua.", url: "https://yourwebsite.com", siteName: "Apna Mens Wear", type: "website", images: [{
url: "http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg", alt: "mens wear store clothing shop interior modern retail men clothing display"
}],
},
twitter: {
card: "summary_large_image", title: "Apna Mens Wear - Budget Mens Fashion Indore", description: "4 shirts for ₹1000 | Combo deals | Fast delivery | Call now!", images: ["http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg"],
card: "summary_large_image", title: "Apna Mens Wear - Premium Budget Mens Fashion Indore", description: "4 shirts for ₹1000 | Premium quality | Combo deals | Fast delivery | Call now!", images: ["http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg"],
},
};
@@ -43,7 +38,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
className={`${poppins.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}

View File

@@ -2,13 +2,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Bell, Flame, MessageSquare, Package, ShoppingCart, Star, Truck, Users } from 'lucide-react';
@@ -43,29 +43,37 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="Indore's Budget Mens Wear"
description="Trendy Shirts, Tees & Combos at Unbeatable Prices | ⭐ 3.8 Google Rating | Open till 11 PM"
<HeroBillboardGallery
title="Premium Mens Wear at Budget Prices"
description="Trendy Shirts, Tees & Combos at Unbeatable Prices | ⭐ 3.8 Google Rating | Open till 11 PM | Expert Style Consultation"
background={{ variant: "plain" }}
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg", imageAlt: "mens wear store clothing shop interior modern retail men clothing display"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-men-fashion-shirt_1203-7650.jpg", imageAlt: "men shirts combo affordable clothing bundle 4 pack shirts casual wear set"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/men-s-formal-wear-collection_53876-16559.jpg", imageAlt: "formal shirt combo dress shirt collection business casual wear formal attire"
}
]}
buttons={[
{ text: "📞 Call Now", href: "tel:+919630105490" },
{ text: "💬 WhatsApp", href: "https://wa.me/919630105490" }
]}
imageSrc="http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg"
imageAlt="mens wear store clothing shop interior modern retail men clothing display"
showDimOverlay={true}
buttonAnimation="slide-up"
mediaAnimation="slide-up"
/>
</div>
<div id="why-us" data-section="why-us">
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "Why Choose Apna Mens Wear?" }
{ type: "text", content: "Why Choose Apna Mens Wear? Your Trusted Premium Store" }
]}
buttons={[
{ text: "Get Your Combo Now", href: "tel:+919630105490" }
{ text: "Explore Our Collection", href: "tel:+919630105490" }
]}
buttonAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
@@ -73,50 +81,49 @@ export default function LandingPage() {
<div id="features" data-section="features">
<FeatureCardTwentySix
title="Why Our Customers Love Us"
description="Trusted by thousands of budget-conscious shoppers across Indore since years"
description="Trusted by thousands of discerning shoppers across Indore. Premium quality at remarkable prices since years"
features={[
{
title: "Affordable Combo Deals", description: "Get 4 shirts for ₹1000 and exclusive bulk offers that save you money", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-men-fashion-shirt_1203-7650.jpg?_wi=1", imageAlt: "men shirts combo affordable clothing bundle 4 pack shirts casual wear set", buttonIcon: ShoppingCart,
title: "Affordable Premium Combo Deals", description: "Get 4 premium shirts for ₹1000 and exclusive bulk offers. Unmatched quality at unbeatable prices", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-men-fashion-shirt_1203-7650.jpg?_wi=1", imageAlt: "men shirts combo affordable clothing bundle 4 pack shirts casual wear set", buttonIcon: ShoppingCart,
buttonHref: "tel:+919630105490"
},
{
title: "Friendly & Helpful Staff", description: "Our team helps you find the perfect fit and style for your budget", imageSrc: "http://img.b2bpic.net/free-photo/men-s-formal-wear-collection_53876-16559.jpg?_wi=1", imageAlt: "formal shirt combo dress shirt collection business casual wear formal attire", buttonIcon: Users,
title: "Expert Style Consultation", description: "Our trained team helps you find the perfect fit, style and color combination for your personality", imageSrc: "http://img.b2bpic.net/free-photo/men-s-formal-wear-collection_53876-16559.jpg?_wi=1", imageAlt: "formal shirt combo dress shirt collection business casual wear formal attire", buttonIcon: Users,
buttonHref: "tel:+919630105490"
},
{
title: "In-Store Pickup Available", description: "Quick pickup options with zero hassle - visit us anytime", imageSrc: "http://img.b2bpic.net/free-photo/old-friends-walking-talking-outdoors_23-2148179962.jpg?_wi=1", imageAlt: "mens t-shirts collection casual tee bundle 4 pack t-shirts comfortable wear", buttonIcon: Package,
title: "Convenient In-Store Experience", description: "Premium store ambiance with quick pickup options. Visit us anytime - zero hassle shopping experience", imageSrc: "http://img.b2bpic.net/free-photo/old-friends-walking-talking-outdoors_23-2148179962.jpg?_wi=1", imageAlt: "mens t-shirts collection casual tee bundle 4 pack t-shirts comfortable wear", buttonIcon: Package,
buttonHref: "tel:+919630105490"
},
{
title: "Local Delivery Option", description: "Fast delivery across Bhawarkua and surrounding areas in Indore", imageSrc: "http://img.b2bpic.net/free-photo/stylish-tall-arabian-man-model-white-shirt-jeans-sunglasses-posed-street-city-beard-attractive-arab-guy_627829-2583.jpg?_wi=1", imageAlt: "mens jeans casual wear denim collection casual pants jeans fashion", buttonIcon: Truck,
title: "Swift Local Delivery Service", description: "Fast, reliable delivery across Bhawarkua and surrounding areas. Track your order in real-time", imageSrc: "http://img.b2bpic.net/free-photo/stylish-tall-arabian-man-model-white-shirt-jeans-sunglasses-posed-street-city-beard-attractive-arab-guy_627829-2583.jpg?_wi=1", imageAlt: "mens jeans casual wear denim collection casual pants jeans fashion", buttonIcon: Truck,
buttonHref: "tel:+919630105490"
}
]}
textboxLayout="default"
useInvertedBackground={false}
tag="Why Us"
tagIcon={Star}
/>
</div>
<div id="offers" data-section="offers">
<ProductCardFour
title="Featured Offers"
description="Limited time deals on premium mens fashion - Order now!"
title="Premium Collection Showcases"
description="Curated premium mens fashion collection - Limited time exclusive deals on premium quality"
tag="Best Sellers"
tagIcon={Flame}
products={[
{
id: "combo-4shirts", name: "4 Shirts Bundle", price: "₹1,000", variant: "Assorted Colors & Styles", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-men-fashion-shirt_1203-7650.jpg?_wi=2", imageAlt: "men shirts combo affordable clothing bundle 4 pack shirts casual wear set"
id: "combo-4shirts", name: "Premium 4 Shirts Bundle", price: "₹1,000", variant: "Assorted Premium Colors & Styles", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-men-fashion-shirt_1203-7650.jpg?_wi=2", imageAlt: "men shirts combo affordable clothing bundle 4 pack shirts casual wear set"
},
{
id: "formal-combo", name: "Formal Combo Pack", price: "₹800", variant: "Shirt + Tie + Pocket Square", imageSrc: "http://img.b2bpic.net/free-photo/men-s-formal-wear-collection_53876-16559.jpg?_wi=2", imageAlt: "formal shirt combo dress shirt collection business casual wear formal attire"
id: "formal-combo", name: "Executive Formal Combo Pack", price: "₹800", variant: "Shirt + Tie + Pocket Square", imageSrc: "http://img.b2bpic.net/free-photo/men-s-formal-wear-collection_53876-16559.jpg?_wi=2", imageAlt: "formal shirt combo dress shirt collection business casual wear formal attire"
},
{
id: "tshirt-combo", name: "4 T-Shirts Bundle", price: "₹1,000", variant: "Casual & Comfortable", imageSrc: "http://img.b2bpic.net/free-photo/old-friends-walking-talking-outdoors_23-2148179962.jpg?_wi=2", imageAlt: "mens t-shirts collection casual tee bundle 4 pack t-shirts comfortable wear"
id: "tshirt-combo", name: "Premium 4 T-Shirts Bundle", price: "₹1,000", variant: "Casual Premium & Comfortable", imageSrc: "http://img.b2bpic.net/free-photo/old-friends-walking-talking-outdoors_23-2148179962.jpg?_wi=2", imageAlt: "mens t-shirts collection casual tee bundle 4 pack t-shirts comfortable wear"
},
{
id: "jeans-casual", name: "Budget Jeans & Casual", price: "₹600", variant: "Premium Denim Quality", imageSrc: "http://img.b2bpic.net/free-photo/stylish-tall-arabian-man-model-white-shirt-jeans-sunglasses-posed-street-city-beard-attractive-arab-guy_627829-2583.jpg?_wi=2", imageAlt: "mens jeans casual wear denim collection casual pants jeans fashion"
id: "jeans-casual", name: "Premium Denim & Casual Wear", price: "₹600", variant: "Premium Denim Quality", imageSrc: "http://img.b2bpic.net/free-photo/stylish-tall-arabian-man-model-white-shirt-jeans-sunglasses-posed-street-city-beard-attractive-arab-guy_627829-2583.jpg?_wi=2", imageAlt: "mens jeans casual wear denim collection casual pants jeans fashion"
}
]}
gridVariant="uniform-all-items-equal"
@@ -126,45 +133,21 @@ export default function LandingPage() {
/>
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne
title="Trusted by Thousands"
description="Join satisfied customers from Bhawarkua, Indore and across the city"
tag="Community"
textboxLayout="default"
useInvertedBackground={false}
names={[
"College Students", "Working Professionals", "Budget Shoppers", "Bulk Buyers", "Local Families", "Fashion Enthusiasts", "Regular Customers"
]}
speed={40}
showCard={true}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwo
title="Customer Reviews"
description="Read what our happy customers have to say about Apna Mens Wear"
tag="Feedback"
tagIcon={MessageSquare}
testimonials={[
<div id="metrics-seven" data-section="metrics-seven">
<MetricCardSeven
title="Our Impact & Achievements"
description="Key metrics that showcase our growth and customer satisfaction in Indore"
tag="Stats"
tagIcon={Star}
metrics={[
{
id: "1", name: "Rohit Sharma", role: "College Student", testimonial: "Best place to buy affordable quality shirts in Bhawarkua! Staff is super friendly and the 4 shirts for ₹1000 combo is unbeatable.", imageSrc: "http://img.b2bpic.net/free-photo/male-dj-grey-suit-with-headphones-neck_114579-15958.jpg", imageAlt: "male customer portrait professional man photo happy customer Indian man"
id: "1", value: "10K+", title: "Happy Customers Served", items: ["Across Indore & surrounding areas", "Repeat customers trusted us"]
},
{
id: "2", name: "Ajay Kumar", role: "Working Professional", testimonial: "I've been shopping here for 2 years. The quality is reliable, prices are budget-friendly, and they have great combo deals. Highly recommended!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-man-with-book-his-hand_641386-167.jpg", imageAlt: "young man portrait college student photo casual man confident expression"
id: "2", value: "3.8★", title: "Google Rating", items: ["Consistently rated highly", "Customer satisfaction guaranteed"]
},
{
id: "3", name: "Vikram Singh", role: "Bulk Buyer", testimonial: "Excellent for office uniform orders. They offer fantastic bulk discounts and deliver right on time. Very professional service!", imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151099215.jpg", imageAlt: "business professional man confident portrait work casual Indian businessman"
},
{
id: "4", name: "Nitin Patel", role: "Local Resident", testimonial: "Love their collection and the location is so convenient in Bhawarkua. Staff always helps me find the right fit. Great experience!", imageSrc: "http://img.b2bpic.net/free-photo/handsome-businesman-summer-city_1157-18994.jpg", imageAlt: "young professional portrait smiling man office wear modern professional"
},
{
id: "5", name: "Arjun Verma", role: "Regular Customer", testimonial: "Perfect quality at perfect prices. I bring all my friends here now. The service is quick and the staff knows their products inside out.", imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-man-red-shirt-with-optical-glasses-holds-points-paper-bags-isolated-orange-wall_141793-35482.jpg", imageAlt: "male customer satisfied happy shopper positive expression Indian male"
},
{
id: "6", name: "Sandeep Gupta", role: "Business Owner", testimonial: "Ordered 50 shirts for my staff. Got amazing rates, fast delivery, and excellent quality. Apna Mens Wear is my go-to store now!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-confident-stylish-hipster-lambersexual-modelmodern-man-dressed-elegant-suit-fashion-male-posing-street-background-europe-city-sunset-sunglasses_158538-22400.jpg", imageAlt: "professional man portrait confident male modern look fashionable man"
id: "3", value: "500+", title: "Combo Deals Sold Monthly", items: ["Premium quality assured", "Bulk discounts available"]
}
]}
textboxLayout="default"
@@ -173,18 +156,59 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Stay Connected"
title="Get Best Offers Directly"
description="Subscribe to our updates and get exclusive deals, new arrivals, and special combo offers delivered to your inbox."
tagIcon={Bell}
tagAnimation="slide-up"
inputPlaceholder="Enter your email"
buttonText="Subscribe"
termsText="We respect your privacy. You can unsubscribe anytime."
background={{ variant: "rotated-rays-animated-grid" }}
<div id="metrics-three" data-section="metrics-three">
<MetricCardThree
title="Why Shop With Us"
description="Experience the difference with our premium quality and unbeatable prices"
tag="Benefits"
tagIcon={ShoppingCart}
metrics={[
{
id: "1", value: "₹1000", title: "4 Premium Shirts", icon: Package
},
{
id: "2", value: "Till 11 PM", title: "Extended Store Hours", icon: Bell
},
{
id: "3", value: "Expert", title: "Style Consultation", icon: Users
}
]}
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
/>
</div>
<div id="faq" data-section="faq">
<ContactFaq
faqs={[
{
id: "1", title: "What is the 4 Shirts for ₹1000 combo?", content: "Our signature combo includes 4 premium quality shirts in assorted colors and styles. Perfect for everyday wear and budget-friendly!"
},
{
id: "2", title: "Do you offer bulk discounts?", content: "Yes! We provide excellent bulk discounts for corporate orders, office uniforms, and large purchases. Contact us for customized pricing."
},
{
id: "3", title: "What are your store hours?", content: "We are open till 11 PM daily, making it convenient for you to shop after work or on weekends. Visit us anytime!"
},
{
id: "4", title: "Do you provide delivery?", content: "Yes, we offer fast and reliable delivery across Bhawarkua and surrounding areas in Indore. Track your order in real-time!"
},
{
id: "5", title: "Can I get style consultation?", content: "Absolutely! Our trained team provides free style consultation to help you find the perfect fit and color combination."
},
{
id: "6", title: "What payment methods do you accept?", content: "We accept cash, digital payments, and online transfers. Visit us or call for more details about payment options."
}
]}
ctaTitle="Ready to Upgrade Your Wardrobe?"
ctaDescription="Contact us today for exclusive offers and premium styling advice"
ctaButton={{
text: "Call Now", href: "tel:+919630105490"
}}
ctaIcon={Bell}
useInvertedBackground={false}
animationType="slide-up"
/>
</div>
@@ -193,14 +217,14 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/man-choosing-leather-belt-store_482257-85806.jpg"
imageAlt="mens clothing store exterior retail shop front Indore store shopping destination"
logoText="Apna Mens Wear"
copyrightText="© 2025 Apna Mens Wear. All rights reserved. | Bhawarkua, Indore"
copyrightText="© 2025 Apna Mens Wear. All rights reserved. | Premium Mens Fashion | Bhawarkua, Indore"
columns={[
{
title: "Quick Links", items: [
{ label: "Home", href: "#hero" },
{ label: "Featured Offers", href: "#offers" },
{ label: "Why Us", href: "#why-us" },
{ label: "Reviews", href: "#testimonials" }
{ label: "Home", href: "hero" },
{ label: "Premium Collection", href: "offers" },
{ label: "Why Choose Us", href: "why-us" },
{ label: "Customer Reviews", href: "testimonials" }
]
},
{

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-nunito), sans-serif;
font-family: var(--font-poppins), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-nunito), sans-serif;
font-family: var(--font-poppins), sans-serif;
}

View File

@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #ffffff;;
--card: #f9f9f9;;
--foreground: #000612e6;;
--primary-cta: #15479c;;
--secondary-cta: #f9f9f9;;
--accent: #e2e2e2;;
--background-accent: #c4c4c4;; */
/* --background: #f5f5f5;;
--card: #ffffff;;
--foreground: #1c1c1c;;
--primary-cta: #1f3251;;
--secondary-cta: #ffffff;;
--accent: #d4af37;;
--background-accent: #e8e8e8;; */
--background: #ffffff;;
--card: #f9f9f9;;
--foreground: #000612e6;;
--primary-cta: #15479c;;
--background: #f5f5f5;;
--card: #ffffff;;
--foreground: #1c1c1c;;
--primary-cta: #1f3251;;
--primary-cta-text: #ffffff;;
--secondary-cta: #f9f9f9;;
--secondary-cta: #ffffff;;
--secondary-cta-text: #000612e6;;
--accent: #e2e2e2;;
--background-accent: #c4c4c4;;
--accent: #d4af37;;
--background-accent: #e8e8e8;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);