Shop

Contact – Sunrise Dental Studios

:root {
–primary: #8B5FBF;
–secondary: #6A4C93;
–accent: #9D7BEA;
–purple-light: #E8DAFF;
–purple-dark: #4A3C69;
–white: #FFFFFF;
–gray-100: #F8F9FA;
–gray-200: #E9ECEF;
–gray-600: #6C757D;
–gray-800: #343A40;
–shadow: 0 4px 6px rgba(139, 95, 191, 0.1);
–shadow-lg: 0 10px 25px rgba(139, 95, 191, 0.15);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: ‘Inter’, sans-serif;
line-height: 1.6;
color: var(–gray-800);
scroll-behavior: smooth;
}

/* Navigation */
.navbar {
position: fixed;
top: 0;
width: 100%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
padding: 1rem 0;
box-shadow: var(–shadow);
transition: all 0.3s ease;
}

.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 1.5rem;
font-weight: 700;
color: var(–primary);
text-decoration: none;
display: flex;
align-items: center;
gap: 0.5rem;
}

.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
align-items: center;
}

.nav-menu a {
text-decoration: none;
color: var(–gray-800);
font-weight: 500;
transition: color 0.3s ease;
}

.nav-menu a:hover {
color: var(–primary);
}

.cart-icon {
position: relative;
color: var(–primary);
font-size: 1.5rem;
cursor: pointer;
transition: transform 0.3s ease;
}

.cart-icon:hover {
transform: scale(1.1);
}

.cart-badge {
position: absolute;
top: -8px;
right: -8px;
background: var(–accent);
color: white;
border-radius: 50%;
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75rem;
font-weight: 600;
}

/* Hero Section */
.hero {
background: linear-gradient(135deg, var(–primary) 0%, var(–secondary) 100%);
color: white;
padding: 8rem 2rem 6rem;
text-align: center;
position: relative;
overflow: hidden;
}

.hero::before {
content: ”;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url(‘https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1400&h=800&fit=crop’) center/cover;
opacity: 0.1;
}

.hero-content {
max-width: 800px;
margin: 0 auto;
position: relative;
z-index: 2;
}

.hero h1 {
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
line-height: 1.2;
}

.hero p {
font-size: 1.25rem;
margin-bottom: 2rem;
opacity: 0.9;
}

.cta-button {
background: var(–accent);
color: white;
padding: 1rem 2rem;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}

.cta-button:hover {
background: var(–white);
color: var(–primary);
transform: translateY(-2px);
box-shadow: var(–shadow-lg);
}

/* Products Section */
.products {
padding: 6rem 2rem;
background: var(–gray-100);
}

.container {
max-width: 1200px;
margin: 0 auto;
}

.section-header {
text-align: center;
margin-bottom: 4rem;
}

.section-header h2 {
font-size: 2.5rem;
color: var(–primary);
margin-bottom: 1rem;
}

.section-header p {
font-size: 1.1rem;
color: var(–gray-600);
}

.product-filters {
display: flex;
justify-content: center;
gap: 1rem;
margin-bottom: 3rem;
flex-wrap: wrap;
}

.filter-btn {
background: white;
color: var(–gray-600);
border: 2px solid var(–gray-200);
padding: 0.75rem 1.5rem;
border-radius: 25px;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
background: var(–primary);
color: white;
border-color: var(–primary);
}

.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.product-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: var(–shadow);
transition: all 0.3s ease;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: var(–shadow-lg);
}

.product-image {
width: 100%;
height: 250px;
object-fit: cover;
}

.product-info {
padding: 1.5rem;
}

.product-name {
font-size: 1.2rem;
font-weight: 600;
color: var(–gray-800);
margin-bottom: 0.5rem;
}

.product-price {
font-size: 1.5rem;
font-weight: 700;
color: var(–primary);
margin-bottom: 1rem;
}

.product-rating {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 1rem;
}

.stars {
color: #FFD700;
}

.add-to-cart {
width: 100%;
background: var(–primary);
color: white;
border: none;
padding: 0.75rem;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.add-to-cart:hover {
background: var(–secondary);
transform: translateY(-1px);
}

.sale-badge {
position: absolute;
top: 10px;
right: 10px;
background: #FF4757;
color: white;
padding: 0.25rem 0.5rem;
border-radius: 5px;
font-size: 0.75rem;
font-weight: 600;
}

/* Features Section */
.features {
padding: 6rem 2rem;
background: white;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.feature-card {
text-align: center;
padding: 2rem;
border-radius: 15px;
transition: transform 0.3s ease;
}

.feature-card:hover {
transform: translateY(-5px);
}

.feature-icon {
font-size: 3rem;
color: var(–primary);
margin-bottom: 1rem;
}

.feature-card h3 {
font-size: 1.3rem;
margin-bottom: 1rem;
color: var(–gray-800);
}

/* About Preview */
.about-preview {
padding: 6rem 2rem;
background: var(–purple-light);
}

.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.about-text h2 {
font-size: 2.5rem;
color: var(–primary);
margin-bottom: 1.5rem;
}

.about-text p {
font-size: 1.1rem;
color: var(–gray-600);
margin-bottom: 2rem;
}

.about-image {
width: 100%;
border-radius: 15px;
box-shadow: var(–shadow-lg);
}

/* Testimonials */
.testimonials {
padding: 6rem 2rem;
background: white;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.testimonial-card {
background: var(–gray-100);
padding: 2rem;
border-radius: 15px;
text-align: center;
}

.testimonial-text {
font-style: italic;
margin-bottom: 1.5rem;
font-size: 1.1rem;
}

.testimonial-author {
font-weight: 600;
color: var(–primary);
}

/* Contact CTA */
.contact-cta {
padding: 6rem 2rem;
background: linear-gradient(135deg, var(–secondary) 0%, var(–primary) 100%);
color: white;
text-align: center;
}

.contact-cta h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.contact-cta p {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
}

/* Footer */
.footer {
background: var(–purple-dark);
color: white;
padding: 3rem 2rem 1rem;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.footer-section h3 {
margin-bottom: 1rem;
color: var(–accent);
}

.footer-section a {
color: white;
text-decoration: none;
display: block;
margin-bottom: 0.5rem;
transition: color 0.3s ease;
}

.footer-section a:hover {
color: var(–accent);
}

.footer-bottom {
text-align: center;
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
.nav-menu {
gap: 1rem;
}

.hero h1 {
font-size: 2.5rem;
}

.hero p {
font-size: 1.1rem;
}

.about-content {
grid-template-columns: 1fr;
gap: 2rem;
}

.product-grid {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.section-header h2 {
font-size: 2rem;
}
}

@media (max-width: 480px) {
.nav-container {
padding: 0 1rem;
}

.hero {
padding: 6rem 1rem 4rem;
}

.hero h1 {
font-size: 2rem;
}

.product-grid {
grid-template-columns: 1fr;
}
}

Contact Us

We’d love to hear from you. Fill out the form below and we’ll get back to you shortly.