/* ===============================
   LAYOUT WRAPPER
=================================*/
.vendor-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    background: #f5f5f5;
}
/* ===============================
   SIDEBAR
=================================*/
.vendor-sidebar {
    width: 240px;
    background: rgb(122, 13, 13);
    color: #fff;
    padding: 30px 20px;
    min-height: 100vh;
}
.vendor-logo {
    text-align: center;
    margin-bottom: 40px;
}

.vendor-logo img {
    width: 150px;      /* adjust size */
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.vendor-sidebar ul {
    list-style: none;
}

.vendor-sidebar ul li {
    margin-bottom: 18px;
}

.vendor-sidebar ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    display: block;
    padding: 10px;
    border-radius: 6px;
    transition: 0.3s;
}

.vendor-sidebar ul li a:hover {
    background: rgba(255,255,255,0.15);
}

/* ===============================
   MAIN AREA
=================================*/
.vendor-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ===============================
   HEADER
=================================*/
/* HEADER */
.vendor-header {
    background: #ffffff;
    padding: 18px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;   /* LEFT & RIGHT */
    align-items: center;
}

/* Left Title */
.header-title {
    margin: 0;
    font-size: 20px;
    color: rgb(122, 13, 13);
}

/* Right Welcome */
.header-right {
    font-weight: 500;
    color: rgb(122, 13, 13);
}
/* ===============================
   CONTENT AREA
=================================*/
.vendor-content {
    padding: 30px;
}

/* ===============================
   DASHBOARD TITLE
=================================*/
.dashboard-title {
    margin-bottom: 25px;
    color: rgb(122, 13, 13);
}

/* ===============================
   MAIN CARD
=================================*/
.dashboard-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

/* ===============================
   VENDOR INFO
=================================*/
.vendor-name {
    margin-bottom: 8px;
}

.vendor-email {
    color: #666;
    margin-bottom: 20px;
}

/* ===============================
   SECTIONS
=================================*/
.section-heading {
    margin-bottom: 12px;
    color: rgb(122, 13, 13);
}

.divider {
    margin: 30px 0;
    border: none;
    border-top: 1px solid #eee;
}

/* ===============================
   FORM
=================================*/
.dashboard-form {
    margin-bottom: 20px;
}

.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    resize: none;
}

.form-file {
    margin-bottom: 12px;
}

/* ===============================
   BUTTON
=================================*/
.vendor-btn {
    background: rgb(122, 13, 13);
    color: #fff;
    padding: 10px 22px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.vendor-btn:hover {
    background: #8f1515;
}

/* ===============================
   COVER IMAGE
=================================*/
.cover-preview {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
}

/* ===============================
   GALLERY
=================================*/
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.gallery-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}
/* ===============================
   COVER SECTION
=================================*/
.vendor-cover {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

/* Dark Overlay */
.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.5);

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cover-title {
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ===============================
   ABOUT SECTION
=================================*/
.vendor-about {
    padding: 60px 20px;
    background: #fff;
}

.about-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about-container h2 {
    margin-bottom: 20px;
    color: rgb(122, 13, 13);
}

.about-container p {
    color: #555;
    line-height: 1.7;
}

/* ===============================
   GALLERY
=================================*/
.vendor-gallery {
    padding: 60px 20px;
    background: #f9f9f9;
}

.gallery-title {
    text-align: center;
    margin-bottom: 40px;
    color: rgb(122, 13, 13);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.gallery-card {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

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

.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* NOT FOUND */
.not-found {
    text-align: center;
    padding: 80px;
    font-size: 18px;
}

/* ===============================
   VENDOR PUBLIC HEADER
=================================*/
.vendor-top-header {
    width: 100%;
    background: #ffffff;
    padding: 15px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.vendor-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: auto;
}

/* Logo */
.vendor-top-logo img {
    height: 60px;
    object-fit: contain;
}

.vendor-top-logo span {
    font-size: 22px;
    font-weight: 600;
    color: rgb(122, 13, 13);
}

/* Navigation */
.vendor-top-nav a {
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    color: rgb(122, 13, 13);
    transition: 0.3s ease;
}

.vendor-top-nav a:hover {
    opacity: 0.7;
}

.site-footer {
    background: #7a0d0d;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}

/* BRAND */
.footer-col.brand h2 {
    color: #ff9f1c;
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-col.brand p {
    color: #fff3cd;
    line-height: 1.7;
    font-size: 15px;
}

/* HEADINGS */
.footer-col h3 {
    color: #ff9f1c;
    margin-bottom: 20px;
    font-size: 20px;
}

/* CONTACT */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 12px;
    color: #fff3cd;
    font-size: 15px;
}

.contact-list i {
    color: #ff9f1c;
    margin-right: 10px;
}

/* SOCIAL */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #7a0d0d;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff9f1c;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff3cd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff9f1c;
    padding-left: 5px;
}

/* NEWSLETTER */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background: #ff9f1c;
    border: none;
    padding: 12px 20px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #7a0d0d;
}

/* BOTTOM BAR */
.footer-bottom {
    background: #7a0d0d;
    color: #fff3cd;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: 4px;
        margin-bottom: 10px;
    }
}
/* INPUT FIELD */
.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* LABEL */
.dashboard-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #444;
}

.card-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.card-buttons .btn {
    flex: 1;
}


.call-button {
    position: fixed;
    right: 20px;
    bottom: 40px;
    width: 60px;
    height: 60px;
    background-color: #2f0693; 
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 9999;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.call-button:hover {
    background-color: #218838;
    transform: scale(1.1);
    color: white;
}

/* Ringing Animation */
@keyframes ring {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(25deg); }
    30% { transform: rotate(-25deg); }
    45% { transform: rotate(15deg); }
    60% { transform: rotate(-15deg); }
    75% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}

.ringing i {
    display: inline-block;
    animation: ring 1s infinite;
}
/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 70px;          /* Reduced but premium */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

/* Logo hover */
.logo img:hover {
    transform: scale(1.05);
}

.about-video {
    margin-top: 25px;
}

.about-video video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}