/* Base Styles */
:root {
    --primary: #6c63ff;
    --primary-light: #8a84ff;
    --primary-dark: #4a42d6;
    --secondary: #ff6584;
    --secondary-light: #ff8a9e;
    --secondary-dark: #d6426b;
    --accent: #63ffc3;
    --text: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg: #f9f9ff;
    --bg-dark: #f0f0ff;
    --white: #ffffff;
    --black: #000000;
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    --light-color: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    /* Adjust padding as needed */
    transition: var(--transition);
}


header.scrolled nav {
    padding: 5px 0;
}

.logo a {
    font-size: 0;
    /* Hide text (if it appears) */
}

/* Logo Image Styles */
.logo img {
    width: 200px;
    /* Adjust width to match your design */
    height: auto;
    /* Preserve aspect ratio */
    display: block;
    /* Prevent inline gaps */
    position: relative;
    /* Reset absolute positioning */
    top: 0;
    /* Reset */
    left: 0;
    /* Reset */
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-dark) 100%);
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-image {
    width: 500px;
    height: 400px;
    position: absolute;
    top: 200px;
    right: 1%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(100px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(100px);
    }
}




/* Offers Section */
.offers {
    padding: 80px 0;
    background-color: var(--white);
}

.offers h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.offer-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
}

.offer-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.offer-card p {
    color: var(--text-light);
}


/* special Offerss Section */
#btsm {
    background-color: var(--primary);
    color: var(--light-color);
}

.offerss {
    padding: 80px 0;
}

.offerss h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.offer-bannerss {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bannerss {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 2px 2px 3px var(--primary);
}

.bannerss:hover {
    transform: translateY(-10px);
}

.bannerss h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.bannerss p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

/* Reviews Section */
#googlereview {
    color: var(--primary-dark);
}

#googlereview:hover {
    color: #000000;
}

.reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
}

.reviews h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.stars {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 20px;
}

.review-text {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 20px;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: #2a2a2a;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #444;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Page */
.about-story,
.about-mission {
    padding: 80px 0;
}

.about-content,
.mission-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text,
.mission-text {
    flex: 1;
}

.mission-image2 {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: none;
}

.about-image,
.mission-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img,
.mission-image img,
.mission-image2 img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img,
.mission-image:hover img,
.mission-image2:hover img {
    transform: scale(1.05);
}

.about-story h2,
.about-mission h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
}

.mission-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat p {
    color: var(--text-light);
}

.team {
    padding: 80px 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.team h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.team .subtitle {
    color: var(--text-light);
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-light);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.bio {
    color: var(--text-light);
}

/* Services Page */
.services-main {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-card ul {
    margin-top: 20px;
}

.service-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: var(--text-light);
}

.service-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.service-process {
    padding: 80px 0;
    background-color: var(--white);
}

.service-process h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.service-process .subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary);
}

.step-content p {
    color: var(--text-light);
}

.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
}

.service-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Gallery Page */
/* Quick View Modal - Responsive Styles */
.quick-view-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.modal-product-view {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.modal-product-image {
    flex: 1;
    min-width: 300px;
}

.modal-product-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.modal-product-info {
    flex: 1;
    min-width: 300px;
}

.modal-product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.modal-product-meta {
    display: flex;
    gap: 12px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.modal-product-meta span {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.modal-product-info p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.modal-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
#modalProductImage {
    transition: opacity 0.3s ease-in-out;
}


.gallery-controls {
    padding: 50px 0 30px;
    background-color: var(--white);
}

.controls-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    padding-right: 50px;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background-color: var(--primary-dark);
}

.filter-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-options select {
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
    transition: var(--transition);
    min-width: 180px;
}

.filter-options select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.product-gallery {
    padding: 30px 0 80px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(108, 99, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    padding: 10px 20px;
    background-color: var(--white);
    color: var(--primary);
    border-radius: 50px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.quick-view:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 14px;
}

.category {
    background-color: var(--bg-dark);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
}

.price {
    color: var(--primary);
    font-weight: 600;
}

.gallery-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
}

.gallery-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.gallery-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Sold Out Products Styles */
.sold-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.sold-product-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.sold-product-card .product-image {
    position: relative;
}

.sold-product-card .product-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.sold-product-card .sold-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff4d4d;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
}

.section-title {
    margin-top: 50px;
    margin-bottom: 20px;
    color: #555;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

/* ===================== */
/* ORDER FORM MODAL STYLES */
/* ===================== */

/* Modal Container */
.order-modal-container {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    animation: fadeIn 0.3s;
}

/* Modal Content Box */
.order-modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.order-close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-close-modal:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* Modal Header */
.order-modal-header {
    margin-bottom: 25px;
    text-align: center;
}

.order-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.order-product-name {
    font-size: 1.1rem;
    color: #555;
}

/* Form Elements */
.order-form {
    display: flex;
    flex-direction: column;
}

.order-form-group {
    margin-bottom: 20px;
}

.order-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.order-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: #fff;
    font-size: 0.95rem;
}

.order-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.order-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: #fff;
    resize: vertical;
    min-height: 80px;
    font-size: 0.95rem;
}

.order-textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

/* Submit Button */
.order-submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.order-submit-btn:hover {
    background-color: var(--primary-dark);
}

/* Gallery Page */
/* Quick View Modal - Responsive Styles */
.quick-view-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.modal-product-view {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.modal-product-image {
    flex: 1;
    min-width: 300px;
}

.modal-product-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.modal-product-info {
    flex: 1;
    min-width: 300px;
}

.modal-product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.modal-product-meta {
    display: flex;
    gap: 12px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.modal-product-meta span {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.modal-product-info p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.modal-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.gallery-controls {
    padding: 50px 0 30px;
    background-color: var(--white);
}

.controls-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    padding-right: 50px;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background-color: var(--primary-dark);
}

.filter-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-options select {
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
    transition: var(--transition);
    min-width: 180px;
}

.filter-options select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.product-gallery {
    padding: 40px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(108, 99, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    padding: 10px 20px;
    background-color: var(--white);
    color: var(--primary);
    border-radius: 50px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.quick-view:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 14px;
}

.category {
    background-color: var(--bg-dark);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
}

.price {
    color: var(--primary);
    font-weight: 600;
}

/* Color Variant Styles */
.color-variant-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.color-variants-container {
    margin-top: 15px;
    text-align: center;
}

.color-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.color-selector>span {
    font-weight: 500;
    color: #555;
    font-size: 0.9rem;
}

.color-option {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    cursor: pointer;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.color-option.available {
    background-color: #f5f5f5;
}

.color-option.available:hover {
    background-color: #eee;
}

.color-option.available.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.color-option.sold-out {
    color: #999;
    text-decoration: line-through;
    cursor: not-allowed;
}

.gallery-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
}

.gallery-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.gallery-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Sold Out Products Styles */
.sold-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.sold-product-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.sold-product-card .product-image {
    position: relative;
}

.sold-product-card .product-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.sold-product-card .sold-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff4d4d;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
}

.section-title {
    margin-top: 50px;
    margin-bottom: 20px;
    color: #555;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

/* ===================== */
/* ORDER FORM MODAL STYLES */
/* ===================== */

/* Modal Container */
.order-modal-container {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    animation: fadeIn 0.3s;
}

/* Modal Content Box */
.order-modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.order-close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-close-modal:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* Modal Header */
.order-modal-header {
    margin-bottom: 25px;
    text-align: center;
}

.order-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.order-product-name {
    font-size: 1.1rem;
    color: #555;
}

/* Form Elements */
.order-form {
    display: flex;
    flex-direction: column;
}

.order-form-group {
    margin-bottom: 20px;
}

.order-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.order-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: #fff;
    font-size: 0.95rem;
}

.order-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.order-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: #fff;
    resize: vertical;
    min-height: 80px;
    font-size: 0.95rem;
}

.order-textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

/* Submit Button */
.order-submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.order-submit-btn:hover {
    background-color: var(--primary-dark);
}

#modalProductColor {
    display: inline-block;
    margin-left: 8px;
    font-weight: 500;
    color: var(--primary);
}

/* Contact Page */
.contact-main {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
    background-color: var(--white);
    padding: 0 5px;
}

.form-group.focused label,
.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group select:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label,
.form-group select:not([value=""])+label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: var(--primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.hidden {
    display: none;
}


.contact-info {
    background-color: var(--bg-dark);
    padding: 40px;
    border-radius: 15px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-light);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-weight: 500;
    margin-top: 20px;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.map-section {
    padding: 0 0 80px;
}

.map-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Styles */
/* Gallery Page */
/* Quick View Modal - Responsive Styles */
.quick-view-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.modal-product-view {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.modal-product-image {
    flex: 1;
    min-width: 300px;
}

.modal-product-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.modal-product-info {
    flex: 1;
    min-width: 300px;
}

.modal-product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.modal-product-meta {
    display: flex;
    gap: 12px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.modal-product-meta span {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.modal-product-info p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.modal-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.gallery-controls {
    padding: 50px 0 30px;
    background-color: var(--white);
}

.controls-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    padding-right: 50px;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background-color: var(--primary-dark);
}

.filter-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-options select {
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
    transition: var(--transition);
    min-width: 180px;
}

.filter-options select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.product-gallery {
    padding: 40px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(108, 99, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    padding: 10px 20px;
    background-color: var(--white);
    color: var(--primary);
    border-radius: 50px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.quick-view:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 14px;
}

.category {
    background-color: var(--bg-dark);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
}

.price {
    color: var(--primary);
    font-weight: 600;
}

/* Color Variant Styles */
.color-variant-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.color-variants-container {
    margin-top: 15px;
    text-align: center;
}

.color-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.color-selector>span {
    font-weight: 500;
    color: #555;
    font-size: 0.9rem;
}

.color-option {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    cursor: pointer;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.color-option.available {
    background-color: #f5f5f5;
}

.color-option.available:hover {
    background-color: #eee;
}

.color-option.available.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.color-option.sold-out {
    color: #999;
    text-decoration: line-through;
    cursor: not-allowed;
}

.gallery-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
}

.gallery-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.gallery-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Sold Out Products Styles */
.sold-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.sold-product-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.sold-product-card .product-image {
    position: relative;
}

.sold-product-card .product-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.sold-product-card .sold-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff4d4d;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
}

.section-title {
    margin-top: 50px;
    margin-bottom: 20px;
    color: #555;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

/* ===================== */
/* ORDER FORM MODAL STYLES */
/* ===================== */

/* Modal Container */
.order-modal-container {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    animation: fadeIn 0.3s;
}

/* Modal Content Box */
.order-modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.order-close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-close-modal:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* Modal Header */
.order-modal-header {
    margin-bottom: 25px;
    text-align: center;
}

.order-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.order-product-name {
    font-size: 1.1rem;
    color: #555;
}

/* Form Elements */
.order-form {
    display: flex;
    flex-direction: column;
}

.order-form-group {
    margin-bottom: 20px;
}

.order-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.order-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: #fff;
    font-size: 0.95rem;
}

.order-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.order-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: #fff;
    resize: vertical;
    min-height: 80px;
    font-size: 0.95rem;
}

.order-textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

/* Submit Button */
.order-submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.order-submit-btn:hover {
    background-color: var(--primary-dark);
}

#modalProductColor {
    display: inline-block;
    margin-left: 8px;
    font-weight: 500;
    color: var(--primary);
}

/* ===================== */
/* RESPONSIVE STYLES */
/* ===================== */

@media (max-width: 1200px) {
    /* Tablet landscape and smaller desktop adjustments */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    /* Tablet portrait and smaller */
    .logo img {
        width: 180px;
        height: auto;
        display: block;
        position: relative;
        top: 0;
        left: 0;
    }

    .mission-image2 {
        margin-top: 30px;
        display: block;
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .mission-image {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .hero-image {
        display: none;
    }

    .about-content,
    .mission-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Product gallery adjustments */
    .products-grid {
        gap: 20px;
    }

    .product-card {
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    /* Small tablets and large phones */
    /* Modal adjustments */
    .order-modal-content {
        padding: 20px;
        width: 90%;
    }

    .order-title {
        font-size: 1.5rem;
    }

    .order-product-name {
        font-size: 1rem;
    }

    .order-input,
    .order-textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .order-label {
        font-size: 0.9rem;
    }

    /* Product modal */
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 90%;
    }

    .modal-product-view {
        flex-direction: column;
    }

    .modal-product-image,
    .modal-product-info {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .modal-product-image img {
        max-height: 250px;
    }

    .modal-product-info h3 {
        font-size: 1.3rem;
        margin-top: 20px;
    }

    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }

    .modal-actions .btn {
        width: 100%;
    }

    /* Navigation */
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 25px;
        transition: var(--transition);
        z-index: 998;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Hero section */
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .mission-stats {
        flex-direction: column;
        gap: 25px;
    }

    /* Product grid */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }

    .product-image {
        height: 300px;
    }

    /* Gallery controls */
    .controls-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .search-box,
    .filter-options {
        width: 100%;
    }

    .filter-options {
        flex-wrap: wrap;
    }

    .filter-options select {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    /* Small phones */
    .section-padding {
        padding: 50px 0;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .page-header {
        padding: 100px 0 50px;
    }

    .hero h1,
    .page-header h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .controls-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-options {
        flex-direction: column;
        gap: 10px;
    }

    /* Product cards */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        max-width: 100%;
    }
    .product-image {
        height: 500px;
        padding: 10px;
    }

    /* Modals */
    .modal-content,
    .order-modal-content {
        padding: 20px 15px;
        margin: 5% auto;
        width: 95%;
    }

    .close-modal,
    .order-close-modal {
        right: 10px;
        top: 10px;
        font-size: 24px;
    }

    .modal-product-meta {
        flex-direction: column;
        gap: 8px;
    }

    .modal-product-info h3 {
        font-size: 1.2rem;
    }

    /* Order form */
    .order-title {
        font-size: 1.3rem;
    }

    .order-submit-btn {
        padding: 12px;
        font-size: 0.95rem;
    }

    /* Mission section */
    .mission-image2 {
        max-width: 250px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .logo img {
        width: 150px;
    }

    .hero h1,
    .page-header h1 {
        font-size: 1.6rem;
    }

    .product-info h3 {
        font-size: 1rem;
    }

    .product-meta {
        font-size: 0.85rem;
    }

    .product-image {
        height: 350px;
        padding: 10px;
    }

    /* Modal tweaks */
    .modal-product-image img {
        max-height: 200px;
    }

    .modal-product-info h3 {
        font-size: 1.1rem;
    }

    /* Order form */
    .order-input,
    .order-textarea {
        padding: 10px 12px;
    }

    .order-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    /* iPhone SE and similar small devices */
    .hero h1,
    .page-header h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .product-image {
        height: 160px;
    }

    .modal-content,
    .order-modal-content {
        width: 98%;
        padding: 15px 10px;
    }
     .product-image {
        height: 350px;
        padding: 10px;
    }

    .close-modal,
    .order-close-modal {
        right: 8px;
        top: 8px;
        font-size: 22px;
    }
}

/* Orientation-specific adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .nav-links {
        height: calc(100vh - 60px);
        padding-top: 20px;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}

/* High-density displays */
@media (-webkit-min-device-pixel-ratio: 2),
       (min-resolution: 192dpi) {
    /* Add any high-DPI specific styles here */
    .logo img {
        /* Provide higher resolution logo */
    }
}