/* ==========================================
   STYLE PALETTE BOUTIQUE - UNIFIED STYLESHEET
   Modern Elegant Theme with Green & Gold Accents
   Consolidated from maincss.css + style.css
   ========================================== */

/* :: 1.0 Import Web Fonts */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700|Ubuntu:300,400,500,700");

/* :: 2.0 Import Core Libraries */
@import url(../css/bootstrap.min.css);
@import url(../css/classy-nav.min.css);
@import url(../css/owl.carousel.css);
@import url(../css/animate.css);
@import url(../css/magnific-popup.css);
@import url(../css/jquery-ui.min.css);
@import url(../css/nice-select.css);
@import url(../css/font-awesome.min.css);

/* :: 3.0 CSS VARIABLES - Unified Theme Colors */
:root {
    /* Primary Colors - Elegant Green */
    --primary-color: #2d7a2d;
    --primary-dark: #1e5a1e;
    --primary-light: #4a9f4a;

    /* Accent Colors - Luxurious Gold */
    --accent-gold: #d4af37;
    --accent-gold-light: #f4d976;
    --accent-gold-dark: #b8941f;

    /* Neutral Colors */
    --secondary-color: #f8f9fa;
    --background-light: #fdfefe;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #787878;
    --text-white: #ffffff;
    --border-color: #ebebeb;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-duration: 500ms;
}

/* :: 4.0 RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    margin-top: 85px;
}

@media only screen and (max-width: 767px) {
    body {
        margin-top: 80px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #000000;
    line-height: 1.3;
    font-weight: 700;
    font-family: "Ubuntu", sans-serif;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 2;
    font-weight: 400;
}

a {
    transition: all var(--transition-duration) ease 0s;
    text-decoration: none;
    outline: 0 solid transparent;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 12px;
}

a:hover, a:focus {
    transition: all var(--transition-duration) ease 0s;
    text-decoration: none;
    outline: 0 solid transparent;
    color: var(--primary-color);
}

ul, ol {
    margin: 0;
    padding: 0;
}

ul li, ol li {
    list-style: none;
}

img {
    height: auto;
    max-width: 100%;
    display: block;
}

/* :: 5.0 UTILITY CLASSES */

/* Spacing */
.mt-15 { margin-top: 15px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-50 { margin-top: 50px !important; }
.mt-70 { margin-top: 70px !important; }
.mt-100 { margin-top: 100px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-70 { margin-bottom: 70px !important; }
.mb-100 { margin-bottom: 100px !important; }
.ml-15 { margin-left: 15px !important; }
.ml-30 { margin-left: 30px !important; }
.ml-50 { margin-left: 50px !important; }
.mr-15 { margin-right: 15px !important; }
.mr-30 { margin-right: 30px !important; }
.mr-50 { margin-right: 50px !important; }

/* Height */
.height-400 { height: 400px !important; }
.height-500 { height: 500px !important; }
.height-600 { height: 600px !important; }
.height-700 { height: 700px !important; }
.height-800 { height: 800px !important; }

/* Section Padding */
.section-padding-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-padding-80-0 {
    padding-top: 80px;
    padding-bottom: 0;
}

.section-padding-0-80 {
    padding-top: 0;
    padding-bottom: 80px;
}

/* Background Utilities */
.bg-img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-white { background-color: #ffffff !important; }
.bg-dark { background-color: #000000 !important; }
.bg-transparent { background-color: transparent !important; }

.font-bold { font-weight: 700; }
.font-light { font-weight: 300; }

.bg-overlay {
    position: relative;
    z-index: 2;
    background-position: center center;
    background-size: cover;
}

.bg-overlay::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Section Heading */
.section-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
    text-transform: capitalize;
    font-weight: 600;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 2px;
}

.section-heading.text-left {
    text-align: left !important;
}

.section-heading.text-left h2::after {
    left: 0;
    transform: translateX(0);
}

/* :: 6.0 BUTTONS */
.essence-btn {
    display: inline-block;
    min-width: 170px;
    height: 50px;
    color: var(--text-white);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 0 40px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 46px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    letter-spacing: 1.5px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.essence-btn:hover,
.essence-btn:focus {
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* :: 7.0 HEADER & NAVIGATION */
.header_area {
    position: fixed;
    z-index: 900;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

@media only screen and (max-width: 767px) {
    .header_area .classy-nav-container {
        flex-wrap: wrap;
    }
}

.header_area .classy-nav-container {
    padding: 0 2rem;
}

@media only screen and (max-width: 767px) {
    .header_area .classy-nav-container .classy-navbar-toggler {
        margin-left: auto;
        margin-right: 15px;
    }

    .header_area .classy-nav-container {
        padding: 0 1rem;
    }
}

.header_area .classy-navbar {
    background: transparent !important;
    padding: 1rem 0 !important;
    height: 85px !important;
    width: 100% !important;
}

@media only screen and (max-width: 767px) {
    .header_area .classy-navbar {
        height: 40px !important;
        border-bottom: 1px solid var(--border-color);
    }
}

.nav-brand img {
    max-width: 220px;
    height: auto;
    transition: transform var(--transition-fast);
}

.nav-brand:hover img {
    transform: scale(1.05);
}

@media only screen and (max-width: 767px) {
    .nav-brand img {
        max-width: 180px;
    }
}

/* Navigation Links */
.header_area .classynav ul li a {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all var(--transition-fast);
    border-radius: 4px;
}

.header_area .classynav ul li a:hover {
    color: var(--primary-color) !important;
    background: rgba(45, 122, 45, 0.1);
}

/* Mega Menu */
.megamenu {
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 2rem;
}

.megamenu .single-mega li a {
    font-size: 14px;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    transition: all var(--transition-fast);
    border-radius: 4px;
}

.megamenu .single-mega li a:hover {
    background: var(--primary-light);
    color: var(--text-white);
    padding-left: 1.5rem;
}

.megamenu .title {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.header_area.sticky {
    position: fixed;
    z-index: 900;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

/* :: 8.0 HERO / WELCOME AREA */
.welcome_area {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .welcome_area {
        min-height: 450px;
    }
}

@media only screen and (max-width: 767px) {
    .welcome_area {
        min-height: 500px;
    }
}

.welcome_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 90, 30, 0.3), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.welcome_area .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-content h6 {
    font-size: 1.2rem;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--accent-gold) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 767px) {
    .hero-content h6 {
        font-size: 1rem;
        letter-spacing: 2px;
    }
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-white) !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        padding: 2rem 0;
    }
}

@media only screen and (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.6rem;
    }
}

/* :: 9.0 TOP CATEGORY AREA */
.top_catagory_area {
    padding: 5rem 0;
}

@media only screen and (max-width: 767px) {
    .top_catagory_area {
        padding: 3rem 0;
    }
}

.single_catagory_area {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    margin-bottom: 1rem;
}

@media only screen and (max-width: 767px) {
    .single_catagory_area {
        height: 250px;
    }
}

@media only screen and (max-width: 480px) {
    .single_catagory_area {
        height: 200px;
    }
}

.single_catagory_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    transition: all var(--transition-normal);
    z-index: 1;
}

.single_catagory_area:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.single_catagory_area:hover::before {
    background: linear-gradient(to bottom,
        rgba(45,122,45,0.4),
        rgba(212,175,55,0.7));
}

.catagory-content {
    position: relative;
    z-index: 2;
}

.catagory-content a {
    color: var(--text-white);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 2rem;
    border: 3px solid var(--text-white);
    border-radius: 8px;
    transition: all var(--transition-normal);
    display: inline-block;
}

@media only screen and (max-width: 767px) {
    .catagory-content a {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
        border-width: 2px;
    }
}

@media only screen and (max-width: 480px) {
    .catagory-content a {
        font-size: 1.2rem;
        padding: 0.6rem 1.2rem;
    }
}

.single_catagory_area:hover .catagory-content a {
    background: var(--text-white);
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* :: 10.0 PRODUCT SECTIONS */
.new_arrivals_area {
    padding: 5rem 0;
    background: var(--secondary-color);
}

@media only screen and (max-width: 767px) {
    .new_arrivals_area {
        padding: 3rem 0;
    }
}

/* Product Cards */
.single-product-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.single-product-wrapper:hover {
    box-shadow: var(--shadow-lg);
}

.product-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #ffffff;
}

.product-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

@media only screen and (max-width: 767px) {
    .product-img img {
        height: 350px;
    }
}

@media only screen and (max-width: 480px) {
    .product-img img {
        height: 300px;
    }
}

.single-product-wrapper:hover .product-img img {
    transform: scale(1.1);
}

.product-favourite {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.product-favourite a {
    width: 45px;
    height: 45px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    color: var(--text-light);
    font-size: 14px;
}

.product-favourite a:hover,
.product-favourite a.active {
    background: var(--accent-gold);
    color: var(--text-white);
    transform: scale(1.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.product-badge span {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

.product-badge.offer-badge span {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.product-badge.new-badge span {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
}

/* Product Description */
.product-description {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .product-description {
        padding: 1rem;
    }
}

.product-description span {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.product-description h6 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin: 0.5rem 0;
    transition: color var(--transition-fast);
}

.product-description a:hover h6 {
    color: var(--primary-color);
}

/* Hover Content */
.hover-content {
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.single-product-wrapper:hover .hover-content {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart-btn .btn {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
    color: var(--text-white) !important;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all var(--transition-normal);
}

.add-to-cart-btn .btn:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light)) !important;
    color: var(--primary-dark) !important;
    border-color: var(--accent-gold);
}

/* :: 11.0 WHATSAPP FLOATING BUTTON */
.quick-contact-bar {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
}

@media only screen and (max-width: 767px) {
    .quick-contact-bar {
        bottom: 20px;
        right: 15px;
    }
}

@media only screen and (max-width: 480px) {
    .quick-contact-bar {
        bottom: 15px;
        right: 10px;
    }
}

.quick-contact-bar a {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

@media only screen and (max-width: 767px) {
    .quick-contact-bar a {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 480px) {
    .quick-contact-bar a {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

.quick-contact-bar a:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
}

/* :: 12.0 FOOTER SECTION */
.footer {
    background: linear-gradient(135deg, #1e5a1e 0%, #2d7a2d 50%, #1e5a1e 100%);
    color: var(--text-white);
    padding: 4rem 0 0;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light), var(--accent-gold));
}

@media only screen and (max-width: 767px) {
    .footer {
        padding: 3rem 0 0;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Footer Brand Section */
.footer-brand {
    padding-right: 1rem;
}

@media (max-width: 768px) {
    .footer-brand {
        padding: 0;
    }
}

.brand-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .brand-logo {
        font-size: 1.8rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        font-size: 1.5rem;
    }
}

.brand-tagline {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .brand-tagline {
        text-align: center;
    }
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
    }
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    color: var(--text-white);
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
    border-color: var(--accent-gold);
}

/* Footer Sections */
.footer-section {
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 0;
    }
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .footer-title {
        font-size: 1.2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 1.1rem;
    }
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    min-width: 30px;
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    .contact-icon {
        margin-top: 0;
    }
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1rem;
    color: var(--text-white);
    line-height: 1.6;
}

.contact-value a {
    color: var(--text-white);
    transition: all var(--transition-fast);
    font-size: 1rem;
    font-weight: 400;
}

.contact-value a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Store Hours */
.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

@media (max-width: 768px) {
    .hours-item {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--accent-gold);
    }
}

.day {
    font-weight: 600;
}

.time {
    color: rgba(255, 255, 255, 0.9);
}

/* Developer Info */
.developer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.developer-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .developer-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-align: center;
}

/* :: 13.0 ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* :: 14.0 SCROLL UP BUTTON */
#scrollUp {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    bottom: 60px;
    box-shadow: var(--shadow-md);
    color: #ffffff;
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    right: 60px;
    text-align: center;
    width: 40px;
    transition: all var(--transition-normal);
}

#scrollUp:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

@media only screen and (max-width: 767px) {
    #scrollUp {
        bottom: 30px;
        right: 30px;
    }
}

/* :: 15.0 RESPONSIVE UTILITIES */

/* Ultra-wide Screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .hero-content h2 {
        font-size: 4rem;
    }
}

/* Print Styles */
@media print {
    .header_area,
    .quick-contact-bar,
    .product-favourite,
    .hover-content,
    #scrollUp {
        display: none !important;
    }

    .footer {
        background: #ffffff;
        color: #000000;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #006600;
        --primary-dark: #004400;
    }

    .essence-btn {
        border-width: 3px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* :: 16.0 HIDE ELEMENTS */
#top {
    display: none !important;
}

/* Remove mannequin image */
#mani {
    display: none !important;
}
