/* 
   Arvea Premium Shoe Store Styling
   Design System, CSS Variables, Typography & Custom Components
*/

@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary: #e53e3e;
    --primary-hover: #c53030;
    --dark: #000000;
    --light-bg: #f7fafc;
    --border-color: #e2e8f0;
    --text-main: #2d3748;
    --text-muted: #718096;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    
    /* Box Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-premium: 0 20px 25px -5px rgba(0,0,0,0.05), 0 10px 10px -5px rgba(0,0,0,0.04);
}

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

body {
    font-family: 'Albert Sans', sans-serif;
    color: var(--text-main);
    background-color: #fbfbfb;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
#header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid #f0f4f8;
}

.header-top-info {
    display: flex;
    gap: 20px;
}

.header-top-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-top-links {
    display: flex;
    gap: 15px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 40px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu > li {
    position: relative;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    padding: 10px 0;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--primary);
}

/* Dropdown Menu */
.nav-menu > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    width: 220px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.dropdown li {
    margin-bottom: 10px;
}

.dropdown li:last-child {
    margin-bottom: 0;
}

.dropdown a {
    font-size: 14px;
    color: var(--text-main);
    display: block;
}

.dropdown a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--dark);
    position: relative;
}

.header-action-btn:hover {
    color: var(--primary);
}

.header-action-btn .badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile Navigation Panel */
.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    padding: 5px;
    align-items: center;
    justify-content: center;
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}
.mobile-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}
.mobile-drawer-header .logo h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.mobile-drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}
.mobile-drawer-close:hover {
    background-color: var(--light-bg);
    color: var(--primary);
}

.mobile-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.mobile-nav-menu > li {
    border-bottom: 1px solid #f0f4f8;
}
.mobile-nav-menu > li:last-child {
    border-bottom: none;
}
.mobile-nav-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}
.mobile-nav-menu li a:hover,
.mobile-nav-menu li a.active {
    color: var(--primary);
}
.mobile-nav-menu li a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.mobile-nav-menu li.active > a i {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 15px;
    background-color: #fafbfc;
    border-radius: 6px;
}
.mobile-submenu li {
    border-bottom: 1px solid #f0f4f8;
}
.mobile-submenu li:last-child {
    border-bottom: none;
}
.mobile-submenu li a {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}

.mobile-drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background-color: var(--light-bg);
}
.mobile-drawer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}
.mobile-drawer-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}
.mobile-drawer-info a:hover {
    color: var(--primary);
}
.mobile-drawer-links {
    display: flex;
    flex-direction: column;
}
.mobile-admin-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 6px;
    background-color: var(--dark);
    color: var(--white) !important;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}
.mobile-admin-login-btn:hover {
    background-color: var(--primary);
}

body.mobile-menu-open {
    overflow: hidden;
}

/* Slider Section */
.tf-slideshow {
    position: relative;
    height: 600px;
    background-color: #1a202c;
    overflow: hidden;
}

.tf-accordion-slider {
    display: flex;
    width: 100%;
    height: 100%;
}

.tf-accordion-slide {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.tf-accordion-slide:hover {
    flex: 2.2;
}

.wrap-accordion-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.wrap-accordion-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.tf-accordion-slide:hover img {
    transform: scale(1.05);
}

.tf-accordion-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
    transition: opacity 0.5s ease;
}

.accordion-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 10;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.tf-accordion-slide:hover .accordion-content {
    opacity: 1;
    transform: translateY(0);
}

.accordion-card {
    color: var(--white);
}

.accordion-card .subheading {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: #e2e8f0;
}

.accordion-card .heading {
    font-size: 40px;
    margin: 10px 0 20px 0;
    line-height: 1.2;
    font-weight: 700;
}

.tf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--dark);
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tf-btn.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.tf-btn.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--dark);
}

/* Feature icons section */
.features-section {
    padding: 40px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    background-color: var(--light-bg);
    transition: transform 0.3s ease;
}

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

.feature-box .icon {
    font-size: 32px;
    color: var(--primary);
}

.feature-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-box p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Custom Grid Sections */
.custom-section {
    padding: 80px 0;
    background-color: var(--white);
}

.custom-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.custom-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.custom-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.custom-image:hover img {
    transform: scale(1.03);
}

.custom-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
    line-height: 1.2;
}

.custom-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.custom-btn {
    display: inline-block;
    background-color: var(--dark);
    color: var(--white);
    padding: 14px 35px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.custom-btn:hover {
    background-color: var(--primary);
}

/* Recent Collection Section */
.recent-collection-section {
    padding: 40px 0;
}

.recent-collection-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.recent-collection-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 380px;
}

.recent-collection-image {
    width: 100%;
    height: 100%;
    display: block;
}

.recent-collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.recent-collection-card:hover .recent-collection-image img {
    transform: scale(1.05);
}

.recent-collection-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.6) 100%);
}

.recent-collection-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    color: var(--white);
}

.recent-collection-content .subheading {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: #e2e8f0;
    margin-bottom: 5px;
}

.recent-collection-content .heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.recent-collection-btn {
    display: inline-block;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid var(--white);
    padding-bottom: 4px;
}

.recent-collection-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* Product Showcase Grid */
.dynamic-product-showcase {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.showcase-header h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.showcase-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.wave-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.wave-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.wave-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.wave-image {
    position: relative;
    overflow: hidden;
    background-color: #f7fafc;
}

.wave-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wave-card:hover .wave-image img {
    transform: scale(1.05);
}

.wave-price {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    gap: 8px;
    align-items: center;
}

.price-special {
    color: #ff6b81;
}

.price-original {
    text-decoration: line-through;
    color: #a4b0be;
    font-size: 11px;
}

.wave-info {
    padding: 20px;
    text-align: center;
}

.wave-info h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.btn-wave {
    display: block;
    background-color: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-wave:hover {
    background-color: var(--primary);
}

/* Single Promo Banner */
.flat-spacing-10 {
    padding: 80px 0;
    background-color: var(--white);
}

.tf-banner-collection {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.tf-banner-collection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tf-banner-collection::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.tf-banner-collection .box-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
}

.tf-banner-collection h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tf-banner-collection p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #e2e8f0;
}

.collection-other-link {
    color: var(--white);
    border-bottom: 2px solid var(--white);
    padding-bottom: 4px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.collection-other-link:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* Categories Showcase */
.minimal-slider {
    padding: 60px 0;
    background-color: var(--white);
}

.slider-minimal-header {
    text-align: center;
    margin-bottom: 40px;
}

.minimal-title {
    font-size: 28px;
    font-weight: 700;
}

.minimal-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.minimal-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.minimal-card .card-image {
    width: 100%;
    height: 100%;
    display: block;
}

.minimal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.minimal-card:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
}

.card-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
}

.card-link {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Testimonials / Reviews Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.testimonial-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-item .rating {
    color: #ffb800;
    margin-bottom: 15px;
}

.testimonial-item .heading {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonial-item .text {
    font-size: 15px;
    color: var(--text-main);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-item .author {
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
}

/* Lower Highlights Bar */
.highlights-section {
    background-color: var(--white);
    padding: 35px 0;
    border-top: 1px solid var(--border-color);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-item .icon {
    font-size: 26px;
    color: var(--primary);
}

.highlight-item h5 {
    font-size: 14px;
    font-weight: 700;
}

.highlight-item p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Footer Styles */
#footer {
    background-color: var(--dark);
    color: #a0aec0;
    padding: 80px 0 0 0;
    font-size: 14px;
}

.footer-body {
    padding-bottom: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 25px;
}

.footer-col h6 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-contact-list li {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.footer-contact-list span {
    font-size: 12px;
    color: #718096;
    text-transform: uppercase;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    background-color: #2d3748;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding: 25px 0;
    font-size: 13px;
}

.footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-payment img {
    height: 25px;
}

/* Page Banner */
.page-banner {
    background-color: #1a202c;
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #a0aec0;
}

/* Contact Page Styles */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 0;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff3f3;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-info-card p {
    color: var(--text-muted);
}

.contact-form-block {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form-block h3 {
    margin-bottom: 25px;
    font-size: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
}

.form-submit-btn {
    background-color: var(--dark);
    color: var(--white);
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background-color: var(--primary);
}

.map-container {
    height: 400px;
    width: 100%;
    margin-bottom: -80px;
    border-top: 1px solid var(--border-color);
}

/* Product Detail Page */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    padding: 80px 0;
}

.product-detail-gallery img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.product-detail-info h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-detail-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.detail-price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 18px;
}

.product-detail-desc {
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.product-meta {
    margin-bottom: 30px;
    font-size: 14px;
}

.product-meta li {
    margin-bottom: 8px;
}

.product-meta span {
    font-weight: 700;
    color: var(--dark);
}

.detail-actions {
    display: flex;
    gap: 20px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .wave-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    .header-main {
        padding: 12px 0;
    }
    .header-main .logo h2 {
        font-size: 20px;
    }
    .nav-menu {
        display: none;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .header-actions {
        gap: 12px;
    }
    .header-action-btn {
        font-size: 18px;
    }
    .custom-layout {
        grid-template-columns: 1fr;
    }
    .recent-collection-container {
        grid-template-columns: 1fr;
    }
    .wave-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .minimal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .product-detail-layout {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .wave-grid {
        grid-template-columns: 1fr;
    }
    .minimal-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
