/* Import Switzer Font */
@import url("../fonts/switzer/css/switzer.css");
@import url("mata-root.css");

/* CSS Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family:
        "Switzer-Regular",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
    width: 100%;
}

/* ========================================
   Glassmorphism Scrollbar
======================================== */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.15) 100%);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

::-webkit-scrollbar-corner {
    background: #0a0a0a;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) #0a0a0a;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Switzer-Bold", sans-serif;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: 1600px;
}

/*** Header */
.header {
    background: var(--gradient-gray-3);
    position: relative;
}

.header .company-logo img {
    width: 200px;
}

.header .menu-item {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    color: var(--color-white);
    position: relative;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border-radius: 0;
    border-top-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

.header .menu-item:hover {
    border-color: var(--color-white);
}

.header .menu-item.active {
    border-color: var(--color-white);
}

.header .header-right-search input {
    position: relative;
    border-radius: var(--border-radius);
    width: 250px;
    height: 30px;
    color: var(--color-white);
    border: none;
    padding-left: 10px;
    font-size: 14px;
    font-weight: 500;
}

.header .header-right-search input::placeholder {
    color: var(--color-white);
}

.header .header-right-search input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.header .header-right-search form {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.header .header-right-search button {
    position: absolute;
    right: 8px;
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.header .header-right-search button:hover {
    opacity: 0.8;
}

.header .header-right-search button i {
    font-size: 16px;
}

/* Language Dropdown */
.header .language-dropdown {
    position: relative;
}

.header .language-toggle {
    background: transparent;
    color: var(--color-white);
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.header .lang-flag {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
}

.header .language-toggle:hover {
    background: var(--color-white-10);
}

.header .language-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.header .language-dropdown.active .language-toggle i {
    transform: rotate(180deg);
}

.header .language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 8px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.header .language-dropdown.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header .language-menu li {
    margin: 0;
}

.header .language-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--color-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    transition: background 0.2s ease;
}

.header .language-menu li a:hover {
    background: var(--color-gray-4);
}

.header .language-menu li.active a {
    background: var(--gradient-gray-3);
    color: var(--color-white);
}

/* Social Media Icons */
.header .header-right-social {
    display: flex;
    align-items: center;
}

.header .social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header .social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white-10);
    color: var(--color-white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.header .social-icon:hover {
    transform: translateY(-2px);
}

.header .social-icon i {
    line-height: 1;
}

/* Facebook */
.header .social-icon[aria-label="Facebook"] {
    background: #1877f2;
    color: var(--color-white);
}

/* Twitter */
.header .social-icon[aria-label="Twitter"] {
    background: #000000;
    color: var(--color-white);
}

/* Instagram */
.header .social-icon[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: var(--color-white);
}

/* YouTube */
.header .social-icon[aria-label="Youtube"] {
    background: #ff0000;
    color: var(--color-white);
}

/* LinkedIn */
.header .social-icon[aria-label="Linkedin"] {
    background: #0a66c2;
    color: var(--color-white);
}

.rainbow-border {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 8px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 99;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.rainbow-border::before,
.rainbow-border::after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
}

.rainbow-border::before {
    display: none;
}

.rainbow-border .segment {
    position: absolute;
    height: 100%;
    top: 0;
}

.rainbow-border .segment-1 {
    background: var(--icon-box-1);
    left: 0%;
    width: 17%;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.rainbow-border .segment-2 {
    background: var(--icon-box-2);
    left: 17%;
    width: 17%;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.rainbow-border .segment-3 {
    background: var(--icon-box-5);
    left: 34%;
    width: 17%;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.rainbow-border .segment-4 {
    background: var(--icon-box-4);
    left: 51%;
    width: 17%;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.rainbow-border .segment-5 {
    background: var(--icon-box-2);
    left: 68%;
    width: 17%;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}
.rainbow-border .segment-6 {
    background: var(--icon-box-1);
    left: 85%;
    width: 17%;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.rainbow-border::after {
    display: none;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-container {
    width: 100%;
    height: 100%;
    background: var(--gradient-gray-3);
    margin-left: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.mobile-logo {
    max-width: 150px;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Navigation */
.mobile-nav {
    flex: 1;
    overflow-y: auto;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin-bottom: 5px;
}

.mobile-menu-link {
    display: block;
    padding: 15px 20px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background: var(--color-white-10);
    padding-left: 30px;
}

/* Mobile Search */
.mobile-search {
    padding: 0 20px 15px;
    position: relative;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.mobile-menu-footer h4 {
    color: var(--color-white);
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Language Selector */
.mobile-language {
    margin-bottom: 30px;
}

.mobile-lang-list {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
}

.mobile-lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--color-white-10);
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-white);
    font-size: 14px;
    transition: all 0.3s ease;
    width: max-content;
}

.mobile-lang-item.active {
    background: var(--gradient-blue-1);
}

.mobile-lang-item:hover {
    background: var(--color-white-10);
    transform: translateY(-2px);
}

.mobile-lang-item .lang-flag {
    width: 20px;
    height: 20px;
}

/* Mobile Social Media */
.mobile-social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-social-icons .social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white-10);
    color: var(--color-white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-social-icons .social-icon:hover {
    transform: translateY(-2px);
}

.mobile-social-icons .social-icon i {
    line-height: 1;
}

/* Facebook */
.mobile-social-icons .social-icon[aria-label="Facebook"] {
    background: #1877f2;
    color: var(--color-white);
}

/* Twitter */
.mobile-social-icons .social-icon[aria-label="Twitter"] {
    background: #000000;
    color: var(--color-white);
}

/* Instagram */
.mobile-social-icons .social-icon[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: var(--color-white);
}

/* YouTube */
.mobile-social-icons .social-icon[aria-label="Youtube"] {
    background: #ff0000;
    color: var(--color-white);
}

/* LinkedIn */
.mobile-social-icons .social-icon[aria-label="Linkedin"] {
    background: #0a66c2;
    color: var(--color-white);
}

.mobile-address ul {
    margin: 0;
    padding: 0;
}
.mobile-address li a {
    display: block;
    padding-bottom: 10px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}
/* Header End*/

#whatsapp-msg-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    cursor: pointer;
    width: max-content;
    background: var(--gradient-green-3);
    color: var(--color-white);
    padding: 10px;
    border-radius: 18px;
}

/* Headline */
.headline {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* SOL TARAF */
.headline-left {
    position: relative;
    height: 100vh;
}

.headline-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Arka plan blur/karartma */
.headline-slide .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.677);
}

/* Metin Bölümü */
.headline-content {
    position: absolute;
    top: 40%;
    left: 12%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 550px;
}

.headline-content h2 {
    font-size: 70px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--color-gray-3);
}

.headline-content p {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-white);
}

.catalog-btn {
    position: relative;
    display: block;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 16px 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    width: 320px;
}

.catalog-btn span {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
}

.headline-right {
    height: 100vh;
    position: absolute;
    right: 0px;
    width: 30%;
}
.model-wrapper {
    height: 100%;
    position: relative;
}
.model-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Model Viewer Controls */
.model-controls {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.model-control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.model-control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.model-control-btn:active {
    transform: scale(0.95);
}

.model-control-btn.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-color: transparent;
}

.model-control-btn i {
    font-size: 16px;
}

/* Model Control Tooltip */
.model-control-btn[data-tooltip] {
    position: relative;
}

.model-control-btn[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 12px;
    font-family: "Switzer-Medium", sans-serif;
    white-space: nowrap;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
}

.model-control-btn[data-tooltip]::before {
    content: "";
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
}

.model-control-btn[data-tooltip]:hover::after,
.model-control-btn[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Model Viewer Fullscreen */
.model-wrapper.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: #000;
}

.model-wrapper.fullscreen .model-controls {
    top: 50px;
}

/* AR Button */
.ar-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-family: "Switzer-Medium", sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.ar-button:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.ar-button i {
    font-size: 18px;
}

/* Mobile 3D Model Button */
.btn-3d-model {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    border: 1px solid rgba(102, 126, 234, 0.5);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-3d-model:hover,
.btn-3d-model:active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5) 0%, rgba(118, 75, 162, 0.5) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-3d-model i {
    font-size: 18px;
}

/* Mobile 3D Model Fullscreen Modal */
.model-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.model-modal.active {
    display: flex;
}

.model-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.model-modal-content {
    width: 100%;
    height: 80vh;
    max-width: 600px;
    padding: 20px;
    position: relative;
}

/* Mobile Model Controls */
.model-controls-mobile {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
}

.model-controls-mobile .model-control-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.model-controls-mobile .model-control-btn:hover,
.model-controls-mobile .model-control-btn:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Mobile AR Button */
.ar-button-mobile {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.ar-button-mobile i {
    font-size: 18px;
}
.catalog-btn img {
    width: 58px;
    height: 58px;
    -webkit-filter: brightness(0) invert(0.8);
    filter: brightness(0) invert(0.8);
}

.catalog-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.catalog-btn:hover span {
    color: var(--color-white);
}

.catalog-btn:hover img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

/* Headline App Download Box */
.headline-app-inner {
    position: relative;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 16px 20px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.headline-app-glow {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.25) 0%, transparent 70%);
    pointer-events: none;
    animation: headlineGlow 3s ease-in-out infinite;
}

@keyframes headlineGlow {
    0%,
    100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.headline-app-content {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.headline-app-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    border-radius: 10px;
    flex-shrink: 0;
}

.headline-app-info {
    flex: 1;
}

.headline-app-badge {
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-radius: 12px;
    font-size: 9px;
    font-weight: 600;
    color: #a5b4fc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.headline-app-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0;
    line-height: 1.3;
}

.headline-app-buttons {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.headline-app-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.headline-app-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.headline-app-btn span {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.headline-app-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* App Store Buttons */
.app-store-buttons {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.store-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.store-btn .apple-icon {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.store-btn span {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
}

/* Categories Section */
.categories-section-wrapper {
    padding: 40px 0;
}

.categories-outer-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-top: 20px;
}

.categories-slider-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.categories-swiper {
    padding: 20px 0;
    overflow: visible;
}

/* Sol tarafta kararan gradient efekti */
.categories-fade-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.categories-fade-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.category-nav-btn {
    flex-shrink: 0;
    margin-top: 30px;
    z-index: 10;
    border: 1px solid transparent;
    color: var(--color-white);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
}

.category-nav-btn:hover {
    border: 1px solid var(--color-white);
    background: rgba(255, 255, 255, 0.2);
}

.category-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Category Column - Ana + Alt Kategoriler */
.category-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-card {
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card.main-category {
    min-height: 50px;
    padding: 12px 16px;
    border-radius: 16px;
}

.category-card.sub-category {
    min-height: 36px;
    padding: 8px 12px;
    opacity: 0.85;
    border-radius: 10px;
}

.category-card.sub-category span {
    font-size: 13px;
}

.sub-categories {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 10px;
}

.category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.category-card-inner {
    position: relative;
    z-index: 1;
}

.category-card i {
    display: block;
    margin: 0 auto;
}

.category-card h5 {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
}

.category-card.main-category.active {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Alt Kategoriler Wrapper */
.sub-categories-wrapper {
    margin-top: 20px;
    padding: 0 60px;
}

.sub-categories-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.sub-category-card {
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.sub-category-card:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.sub-category-card.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.sub-category-card span {
    font-size: 14px;
}

/* Products Loader */
.products-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.products-loader .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Featured Products Section */
.featured-products {
    padding: 40px 0;
}

.products-header {
    margin-bottom: 30px;
}

.products-header h2 {
    margin: 0;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    min-height: 200px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.products-loading,
.products-loading-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 200px;
}

.no-products {
    width: 100%;
}

/* Product Card - Horizontal Layout */
.product-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
}

.product-image-wrapper {
    position: relative;
    background: var(--color-white);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 18px;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    width: 300px;
    height: 300px;
    object-fit: contain;
}

.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-card-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: transparent; /* asıl arka planı pseudo verecek */
}

/* Sağdaki beyaz panel */
.product-card-body::after {
    content: "";
    position: absolute;
    top: 40px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 250px;
    background: #efefefef;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: -1; /* içeriğin arkasına at */
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-code {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-barcode {
    margin: 10px 0;
    text-align: left;
}

.product-barcode svg {
    max-width: 180px;
    height: 50px;
}

.product-barcode-text {
    display: block;
    font-size: 11px;
    color: var(--color-black);
    letter-spacing: 1px;
    margin-top: 4px;
    font-family: monospace;
    font-weight: 600;
}

/* Products Swiper */
.products-swiper-wrapper {
    position: relative;
    width: 100%;
    padding: 0 60px;
}

.products-swiper {
    overflow: hidden;
    position: relative;
    min-height: 350px;
}

.products-swiper .swiper-slide {
    height: auto;
}

.product-swiper-prev,
.product-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: 1px solid transparent;
    color: var(--color-white);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.product-swiper-prev {
    left: 0;
}

.product-swiper-next {
    right: 0;
}

.product-swiper-prev:hover,
.product-swiper-next:hover {
    border: 1px solid var(--color-white);
    background: rgba(255, 255, 255, 0.2);
}

.product-swiper-prev.swiper-button-disabled,
.product-swiper-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-black);
}

.product-tax-info {
    font-size: 10px;
    font-weight: 500;
    color: #888;
    display: block;
    margin-top: 2px;
}

/* Product Login Button (for non-logged users) */
.product-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 6px;
    padding: 8px 14px;
    font-size: 15px;
    border-radius: 12px;
    background: var(--gradient-black-2);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-login-btn:hover {
    background: var(--gradient-black-2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.product-login-btn i {
    font-size: 13px;
    color: #fff;
}

.product-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
}

/* Products Section */
.products-slider-wrapper {
    padding: 0 60px;
}

.products-swiper {
    padding: 20px 0;
}

.product-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--color-white);
    border: 2px solid var(--color-gray-2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-nav-btn:hover {
    background: var(--gradient-blue-1);
    border-color: transparent;
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-swiper-prev {
    left: 0;
}

.product-swiper-next {
    right: 0;
}

.product-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Corporate Section Swiper */
.corporate-section {
    position: relative;
    min-height: 80vh;
}

.corporate-swiper-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.corporate-swiper {
    flex: 1;
    overflow: hidden;
}

.corporate-swiper .swiper-slide {
    height: auto;
}

.corporate-hero {
    padding: 40px 0;
}

.corporate-content {
    padding-right: 40px;
}

.corporate-title {
    font-size: 48px;
    line-height: 1.2;
}

.corporate-body {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

.corporate-body p {
    margin-bottom: 1rem;
}

.corporate-image .image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.corporate-swiper-prev,
.corporate-swiper-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.corporate-swiper-prev:hover,
.corporate-swiper-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.corporate-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.corporate-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.corporate-pagination .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
}

/* Corporate Card Styles - Triple Slider */
.corporate-card {
    position: relative;
    transition: all 0.4s ease;
    transform: scale(0.85);
    opacity: 0.6;
    min-height: 350px;
}

.corporate-swiper .swiper-slide-active .corporate-card {
    transform: scale(1);
    opacity: 1;
}

/* Resim sağda absolute - kutunun dışına taşıyor */
.corporate-card-image {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
}

.corporate-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* İçerik solda */
.corporate-card-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    padding-right: 320px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.corporate-card-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.corporate-card-body {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.corporate-card-body p {
    margin-bottom: 10px;
    font-size: 15px;
}

/* Prev/Next slides partial visibility */
.corporate-swiper .swiper-slide-prev .corporate-card,
.corporate-swiper .swiper-slide-next .corporate-card {
    transform: scale(0.9);
    opacity: 0.5;
}

/* ========================================
   Live Search Styles
======================================== */
.live-search-wrapper {
    position: relative;
    width: 100%;
}

.live-search-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.live-search-input-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.live-search-input-wrapper input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-white);
    width: 180px;
    font-size: 14px;
}

.live-search-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.live-search-btn {
    color: var(--color-white);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-search-btn i {
    font-size: 18px;
}

/* Search Results Dropdown */
.live-search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 350px;
    max-height: 400px;
    overflow-y: auto;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    padding: 10px;
}

.live-search-results.active {
    display: block;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

.live-search-shimmer {
    display: none;
}

.live-search-shimmer.active {
    display: block;
}

.shimmer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
}

.shimmer-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 400px 100%;
    animation: shimmer 1.5s infinite;
}

.shimmer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shimmer-title {
    height: 16px;
    width: 80%;
    border-radius: 4px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 400px 100%;
    animation: shimmer 1.5s infinite;
}

.shimmer-code {
    height: 12px;
    width: 50%;
    border-radius: 4px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 400px 100%;
    animation: shimmer 1.5s infinite;
}

/* Search Result Items */
.live-search-items {
    display: none;
}

.live-search-items.active {
    display: block;
}

.live-search-item,
.live-search-items a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.live-search-item:hover,
.live-search-items a:hover {
    background: rgba(0, 0, 0, 0.05);
}

.live-search-item-image,
.live-search-items img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
    object-fit: cover;
}

.live-search-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-search-item-content,
.live-search-items .search-item-info {
    flex: 1;
    min-width: 0;
}

.live-search-item-title,
.live-search-items .search-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.live-search-item-code,
.live-search-items .search-item-code {
    font-size: 12px;
    color: #888;
    font-family: monospace;
    display: block;
}

/* Empty State */
.live-search-empty {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
}

.live-search-empty.active {
    display: flex;
}

.live-search-empty i {
    margin-bottom: 10px;
    opacity: 0.5;
}

.live-search-empty p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* Scrollbar for Results */
.live-search-results::-webkit-scrollbar {
    width: 6px;
}

.live-search-results::-webkit-scrollbar-track {
    background: transparent;
}

.live-search-results::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.live-search-results::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* ========================================
   Gallery Page Styles
======================================== */
.gallery-section {
    min-height: 60vh;
}

/* Tab Navigation */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.gallery-tab.active {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.gallery-tab i {
    font-size: 20px;
}

/* Gallery Content */
.gallery-content {
    display: none;
}

.gallery-content.active {
    display: block;
}

/* Photo Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item-inner {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item-inner img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-zoom {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    font-size: 24px;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1);
}

.gallery-zoom:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.gallery-item-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-item-inner {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.video-item-inner:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-item-inner:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-play-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn i {
    margin-left: 5px;
}

.video-info {
    padding: 20px;
}

.video-title {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.video-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Empty State */
.gallery-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.gallery-empty i {
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.gallery-empty p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin: 0;
}

/* ========================================
   Contact Page Styles
======================================== */
.contact-section {
    position: relative;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    z-index: 1;
}

/* Contact Map Box */
.contact-map-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.contact-map-container {
    flex: 1;
    min-height: 250px;
    width: 100%;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-map-box .map-open-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

/* Contact Info Side */
.contact-info-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a1a2e 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    padding: 35px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-header {
    margin-bottom: 25px;
}

.contact-info-header h2 {
    color: var(--color-white);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.contact-info-list {
    flex: 1;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 18px;
    color: var(--color-white);
}

.contact-info-icon.whatsapp {
    background: #25d366;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-content a {
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.contact-info-content a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Mini Map */
.contact-mini-map {
    margin-top: 25px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.mini-map-container {
    height: 180px;
    width: 100%;
    border-radius: 15px;
}

.map-open-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-black);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-open-btn:hover {
    background: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.map-open-btn i {
    font-size: 14px;
}

/* Contact Social */
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-3px);
}

/* Contact Form Side */
.contact-form-box {
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.contact-form-box h3 {
    color: var(--color-white);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Floating Label Input */
.form-floating-custom {
    position: relative;
    margin-bottom: 15px;
}

.form-floating-custom .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--color-white);
    font-size: 14px;
    transition: all 0.3s ease;
    height: auto;
}

.form-floating-custom textarea.form-control {
    min-height: 100px;
    resize: none;
}

.form-floating-custom .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
    outline: none;
}

.form-floating-custom label {
    position: absolute;
    left: 16px;
    top: 35%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 5px;
}

.form-floating-custom textarea ~ label {
    top: 16px;
    transform: none;
}

.form-floating-custom .form-control:focus ~ label,
.form-floating-custom .form-control:not(:placeholder-shown) ~ label {
    top: 0;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--color-white);
}

.form-floating-custom textarea:focus ~ label,
.form-floating-custom textarea:not(:placeholder-shown) ~ label {
    top: 0;
    transform: translateY(-50%);
}

/* Submit Button */
.contact-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-submit-btn .btn-icon {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* ================================
   App Download Section
================================ */
.app-download-section {
    padding: 60px 0;
    background: linear-gradient(
        135deg,
        rgba(var(--color-primary-rgb), 0.05) 0%,
        rgba(var(--color-primary-rgb), 0.1) 100%
    );
    position: relative;
    overflow: hidden;
}

.app-download-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.app-download-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.app-download-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 50px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(var(--color-primary-rgb), 0.15);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(var(--color-primary-rgb), 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.app-download-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.app-icon-glow {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon-glow::before {
    content: "";
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light, #667eea));
    border-radius: 22px;
    opacity: 0.2;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.app-main-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 16px;
    background: var(--color-white);
    padding: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.app-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.app-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
    letter-spacing: -0.5px;
}

.app-subtitle {
    font-size: 15px;
    color: var(--color-gray-600);
    margin: 0;
    max-width: 280px;
}

.app-store-buttons {
    display: flex;
    gap: 16px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 18px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: #ffffff30;
    color: #000;
    font-weight: 600;
    border-radius: 18px;
    transition: 0.3s;
}

.store-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.store-btn:hover::before {
    opacity: 1;
}

.store-btn.app-store {
    background: linear-gradient(145deg, #1a1a1a, #000000);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.store-btn.play-store {
    background: linear-gradient(145deg, var(--color-primary), var(--color-primary-dark, #4338ca));
    box-shadow:
        0 8px 25px rgba(var(--color-primary-rgb), 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.store-btn:hover {
    transform: translateY(-4px) scale(1.02);
}

.store-btn.app-store:hover {
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.store-btn.play-store:hover {
    box-shadow:
        0 15px 40px rgba(var(--color-primary-rgb), 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.store-btn-icon {
    font-size: 28px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

.store-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
}

/* ================================
   Contact Form Enhancements
================================ */
.contact-form .field-error {
    font-size: 12px;
    color: #ef4444;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form .form-control.is-invalid {
    border-color: #ef4444 !important;
    background-color: rgba(239, 68, 68, 0.05);
}

.contact-form .form-control.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* Submit Button States */
.contact-submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.contact-submit-btn .btn-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-submit-btn .btn-spinner .spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.contact-submit-btn.shake {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

/* ========================================
   Breadcrumb Component Styles
======================================== */
.gempo-breadcrumb {
    padding: 20px 0;
}

.breadcrumb-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 12px 25px;
    display: inline-block;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

/* Bootstrap breadcrumb divider override - themeadapt.com fix */
.breadcrumb-item::before {
    content: none !important;
    display: none !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: none !important;
    display: none !important;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.breadcrumb-link i {
    font-size: 14px;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    padding: 0 5px;
}

.breadcrumb-separator i {
    font-size: 10px;
}

.breadcrumb-current {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.breadcrumb-current i {
    font-size: 14px;
}

/* ========================================
   Search Page Styles
======================================== */
.search-header-section {
    padding: 40px 0 30px;
}

.search-header-content {
    text-align: center;
    margin-top: 30px;
}

.search-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.search-input-wrapper {
    max-width: 700px;
    margin: 0 auto 20px;
}

.search-form {
    width: 100%;
}

.search-input-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 5px 5px 5px 25px;
    transition: all 0.3s;
}

.search-input-container:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

.search-icon {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.1rem;
    padding: 15px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-page-submit-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-page-submit-btn:hover {
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.search-query-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Search Page Live Search - Uses same styles as header */
.search-input-wrapper {
    position: relative;
}

.search-input-wrapper .live-search-results {
    width: 100%;
    max-width: 600px;
}

.search-results-section {
    padding: 30px 0 60px;
}

.search-results-count {
    margin-bottom: 25px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    display: inline-block;
}

.search-results-count span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.no-results-message,
.search-start-message {
    text-align: center;
    padding: 80px 20px;
}

.no-results-icon,
.search-start-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.no-results-icon i,
.search-start-icon i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 3rem;
}

.no-results-message h3,
.search-start-message h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.no-results-message p,
.search-start-message p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.btn-browse-products {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-browse-products:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: #fff;
}

.popular-categories-section {
    padding: 40px 0 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.popular-categories-section .section-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.popular-categories-grid,
.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.popular-category-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.popular-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
    filter: brightness(1.1);
}

.popular-category-card i {
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.popular-category-card:hover i {
    transform: translateX(3px);
    opacity: 1;
}

/* ========================================
   Category Page Styles
======================================== */
.category-breadcrumb-section {
    padding-top: 30px;
}

.category-header {
    padding: 20px 0 40px;
}

.category-header-content {
    text-align: center;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.sub-categories-section {
    padding: 30px 0;
}

.sub-categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.sub-category-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.sub-category-card:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.products-grid-section {
    padding: 40px 0;
}

.no-products-message {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.no-products-message i {
    margin-bottom: 15px;
    display: block;
}

.other-categories-section {
    padding: 40px 0 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.other-categories-section .section-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.other-categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.other-category-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.other-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
    filter: brightness(1.1);
}

.other-category-card i {
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.other-category-card:hover i {
    transform: translateX(3px);
    opacity: 1;
}

/* ========================================
   Product Detail Page Styles
======================================== */
.product-breadcrumb-section {
    padding: 30px 0 10px;
}

.product-detail-section {
    padding: 20px 0 60px;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* Product Image Box - Glassmorphism */
.product-detail-image {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-main {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 18px;
    overflow: hidden;
}

.product-image-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.product-image-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.product-no-image {
    color: rgba(255, 255, 255, 0.3);
    font-size: 5rem;
}

/* Product Info Box - White Background */
.product-detail-info {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
}

.product-detail-header {
    margin-bottom: 20px;
}

.product-detail-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gradient-gray-3);
    border: none;
    border-radius: 20px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    width: max-content;
}

.product-category-badge:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateY(-2px);
}

.product-category-badge i {
    font-size: 14px;
    opacity: 0.8;
}

.product-detail-code {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.code-label {
    color: rgba(0, 0, 0, 0.5);
    font-size: 13px;
}

.code-value {
    color: var(--color-black);
    font-weight: 600;
    font-family: monospace;
    font-size: 14px;
}

.product-detail-barcode {
    margin-bottom: 20px;
    display: inline-block;
}

.product-detail-barcode svg {
    display: block;
    max-width: 100%;
    height: auto;
}

.product-detail-price {
    margin-bottom: 25px;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4caf50;
}

.price-tax {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.85rem;
    margin-left: 10px;
}

/* Product Detail Login Button */
.product-detail-login-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-detail-login-btn:hover {
    background: linear-gradient(135deg, var(--color-blue-1), var(--color-blue-2));
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-detail-login-btn i {
    font-size: 24px;
    color: var(--color-blue-1);
    transition: all 0.3s ease;
}

.product-detail-login-btn:hover i {
    color: #fff;
}

.product-detail-login-btn span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.product-detail-login-btn small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.product-detail-login-btn:hover small {
    color: rgba(255, 255, 255, 0.9);
}

.product-detail-description {
    flex: 1;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.product-detail-description h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-detail-description h3 i {
    font-size: 1rem;
    opacity: 0.6;
    color: var(--color-black);
}

.description-content {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    font-size: 14px;
}

.product-detail-category {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.category-label {
    color: rgba(255, 255, 255, 0.6);
}

.category-link {
    color: #fff;
    text-decoration: none;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s;
}

.category-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.product-detail-cta {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-whatsapp-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--gradient-green-3);
    border: none;
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-whatsapp-primary:hover {
    transform: translateY(-2px);
    color: #fff;
}

.btn-whatsapp-primary i {
    font-size: 1.3rem;
    color: #fff;
}

/* WhatsApp Mini Button (Product Card) */
.product-card-whatsapp {
    position: absolute;
    top: 10px;
    right: 10px;
}

.product-detail-cart {
    margin-top: 20px;
}

.btn-add-to-cart {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--gradient-gray-3);
    border: 1px solid var(--gradient-gray-3);
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
}

.btn-add-to-cart i {
    font-size: 1.3rem;
    color: #fff;
}

.related-products-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-products-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.related-products-section .section-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

.related-products-section .section-title i {
    font-size: 1.3rem;
    opacity: 0.8;
}

.related-products-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.related-products-swiper {
    flex: 1;
    overflow: hidden;
}

.related-products-swiper .swiper-slide {
    height: auto;
}

.related-products-swiper .product-card-link {
    display: flex;
    height: 100%;
}

.related-products-swiper .product-card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-products-swiper .product-title {
    font-size: 14px;
    margin-bottom: 6px;
    -webkit-line-clamp: 2;
}

.related-products-swiper .product-code {
    font-size: 11px;
    margin-bottom: 8px;
}

.related-products-swiper .product-barcode {
    margin: 8px 0;
}

.related-products-swiper .product-barcode svg {
    max-width: 120px;
    height: 35px;
}

.related-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.related-nav-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.related-nav-btn:disabled,
.related-nav-btn.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.related-nav-btn i {
    font-size: 1.2rem;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Alert Styles */
.contact-form .alert {
    border-radius: 12px;
    padding: 16px 20px;
    border: none;
}

.contact-form .alert.animate-in {
    animation: alertIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes alertIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.contact-form .alert .alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form .alert .alert-content i {
    font-size: 20px;
}

.contact-form .alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: #059669;
    border-left: 4px solid #10b981;
}

.contact-form .alert-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    color: #dc2626;
    border-left: 4px solid #ef4444;
}

/* Confetti Animation */
@keyframes confetti-fall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(720deg) scale(0);
    }
}

/* Product Card Link */
.product-card-link {
    text-decoration: none;
    display: block;
}

.product-card-link:hover .product-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* View All Products Button */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-view-all:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-view-all i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* Products Grid Loader */
.products-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.products-loader .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   Product Card Minimal
======================================== */
.product-card-minimal {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.product-card-minimal-image {
    position: relative;
    background: #fff;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.product-card-minimal-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.product-card-minimal-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Category Badges */
.product-card-minimal-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.product-card-minimal-category {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
    font-weight: 500;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-card-minimal-category.parent {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.product-card-minimal-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Code */
.product-card-minimal-code-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
}

.product-card-minimal-code-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-weight: 500;
}

.product-card-minimal-code {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 600;
}

.product-card-minimal-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card-minimal-price {
    color: var(--primary-color, #3b82f6);
    font-size: 16px;
    font-weight: 700;
}

.product-card-minimal-tax {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-weight: 500;
    margin-left: 6px;
}

.product-card-minimal-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-card-minimal:hover .product-card-minimal-login {
    color: #fff;
}

.product-card-minimal-login i {
    font-size: 14px;
}

/* Product Card Minimal Link Wrapper */
.product-card-minimal-link {
    text-decoration: none;
    display: block;
}

/* ========================================
   Pagination Styles
======================================== */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination-nav {
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 8px 14px;
    background: rgb(255 255 255 / 23%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-item .page-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: rgba(255, 255, 255, 0.697);
    color: var(--color-black);
    font-weight: 600;
    cursor: default;
}

.page-item.active .page-link:hover {
    transform: none;
}

.page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.page-item .page-link.dots {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    min-width: 30px;
    padding: 8px 4px;
}

.page-item .page-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* ========================================
   App Download Floating Component
======================================== */
.app-download-floating {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 999;
}

.app-floating-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.95), rgba(10, 10, 20, 0.98));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    width: 320px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(102, 126, 234, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.app-floating-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.app-floating-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.app-phone-mockup {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.app-phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.app-phone-screen {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    color: white;
}

.app-phone-mockup img + .app-phone-screen {
    display: none;
}

.app-floating-info {
    flex: 1;
}

.app-badge {
    display: inline-block;
    padding: 3px 10px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    color: #a5b4fc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.app-floating-info h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.app-floating-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

.app-floating-buttons {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.app-floating-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-floating-btn.app-store {
    background: linear-gradient(145deg, #1a1a1a, #000);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-floating-btn.play-store {
    background: linear-gradient(145deg, #667eea, #764ba2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.app-floating-btn.app-store:hover {
    background: linear-gradient(145deg, #2a2a2a, #111);
}

.app-floating-btn.play-store:hover {
    background: linear-gradient(145deg, #7c8ff0, #8a5cb8);
}

.app-btn-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.app-btn-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.app-btn-text {
    display: flex;
    flex-direction: column;
}

.app-btn-small {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.app-btn-large {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .app-download-floating {
        display: none;
    }
}

/* ========================================
   Dealer Login & Dashboard Styles
======================================== */

/* Dealer Header Dropdown */
.dealer-menu-item {
    position: relative;
}

.dealer-dropdown {
    position: relative;
}

.dealer-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dealer-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dealer-toggle i:first-child {
    font-size: 18px;
}

.dealer-toggle i:last-child {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dealer-dropdown:hover .dealer-toggle i:last-child {
    transform: rotate(180deg);
}

.dealer-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.dealer-dropdown:hover .dealer-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dealer-dropdown-header {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dealer-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.dealer-company {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.dealer-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.dealer-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dealer-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dealer-dropdown-item i {
    font-size: 16px;
}

.dealer-logout {
    color: #ef4444;
}

.dealer-logout:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

/* Mobile Dealer Info */
.mobile-dealer-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dealer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mobile-dealer-header > i {
    font-size: 24px;
    color: var(--color-blue-1);
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 10px;
}

.mobile-dealer-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-dealer-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.mobile-dealer-company {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.mobile-dealer-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-dealer-logout:hover {
    background: rgba(239, 68, 68, 0.25);
    color: #ef4444;
}

/* Dealer Login Section */
.dealer-login-section {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.dealer-login-box {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.dealer-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.dealer-login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.dealer-login-icon i {
    font-size: 36px;
    color: #fff;
}

.dealer-login-header h2 {
    color: var(--color-white);
    font-size: 28px;
    margin-bottom: 10px;
}

.dealer-login-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.dealer-login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dealer-login-form .form-floating-custom {
    position: relative;
}

.dealer-login-form .form-hint {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    padding-left: 15px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--color-white);
}

.dealer-login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    cursor: pointer;
}

.custom-checkbox input {
    display: none;
}

.custom-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-checkbox input:checked + .checkmark {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-color: transparent;
}

.custom-checkbox input:checked + .checkmark::after {
    content: "✓";
    color: #fff;
    font-size: 12px;
}

.forgot-password {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--color-primary);
}

.dealer-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: "Switzer-Medium", sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.dealer-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dealer-login-btn i {
    font-size: 18px;
}

.dealer-login-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dealer-login-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 10px;
}

.become-dealer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.become-dealer-link:hover {
    color: var(--color-secondary);
    gap: 12px;
}

/* Dealer Dashboard Section */
.dealer-dashboard-section {
    padding: 40px 0 80px;
}

.dealer-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.dealer-welcome h1 {
    color: var(--color-white);
    font-size: 24px;
    margin-bottom: 5px;
}

.dealer-welcome .company-name {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.dealer-logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dealer-logout-btn:hover {
    background: rgba(255, 59, 48, 0.2);
    border-color: rgba(255, 59, 48, 0.3);
    color: #ff3b30;
}

/* Dealer Cards */
.dealer-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.dealer-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dealer-card-header i {
    font-size: 24px;
    color: var(--color-primary);
}

.dealer-card-header h3 {
    color: var(--color-white);
    font-size: 18px;
    margin: 0;
}

.dealer-card-body {
    padding: 25px;
}

/* Info Items */
.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 15px;
    color: var(--color-white);
}

/* Quick Actions Grid */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.quick-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.quick-action-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.quick-action-item.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.quick-action-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-action-icon i {
    font-size: 22px;
    color: #fff;
}

.quick-action-item span {
    color: var(--color-white);
    font-size: 13px;
}

.quick-action-item .coming-soon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 149, 0, 0.2);
    color: #ff9500;
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Announcements */
.announcement-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.announcement-icon {
    width: 45px;
    height: 45px;
    background: rgba(52, 199, 89, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.announcement-icon i {
    font-size: 20px;
    color: #34c759;
}

.announcement-content h4 {
    color: var(--color-white);
    font-size: 15px;
    margin-bottom: 5px;
}

.announcement-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 8px;
}

.announcement-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* Dealer Alert Styles */
.dealer-login-box .alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

.dealer-login-box .alert-danger {
    background: rgba(255, 59, 48, 0.15);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff6b6b;
}

.dealer-login-box .alert-success {
    background: rgba(52, 199, 89, 0.15);
    border: 1px solid rgba(52, 199, 89, 0.3);
    color: #34c759;
}

/* Dealer Responsive */
@media (max-width: 991.98px) {
    .dealer-dashboard-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .dealer-login-box {
        padding: 30px 20px;
    }

    .dealer-login-header h2 {
        font-size: 22px;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .dealer-welcome h1 {
        font-size: 20px;
    }
}