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

body {
    font-family: 'Old Standard TT', Georgia, serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

.clear {
    clear: both;
}

/* Header Styles */
header {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    text-align: center;
    padding: 20px 0;
}

.logo img {
    max-width: 100%;
    height: auto;
}

/* Navigation Styles */
#access {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.menu-menu1-container {
    flex: 1;
}

.menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.menu li {
    position: relative;
}

.menu li a {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.menu li a:hover,
.menu li.current-menu-item a {
    color: #000;
}

#access ul {
    list-style: none;
    display: flex;
    align-items: center;
}

#access form {
    display: flex;
    align-items: center;
}

#access input[type="text"] {
    padding: 5px 10px;
    border: 1px solid #ccc;
    font-size: 12px;
    font-family: 'Raleway', sans-serif;
    width: 150px;
}

#access input[type="image"] {
    width: 20px;
    height: 20px;
    margin-left: 5px;
    cursor: pointer;
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1041px;
    margin: 20px auto;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 347px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

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

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.slider-arrow:hover {
    opacity: 1 !important;
}

.slider-arrow.prev {
    left: 15px;
}

.slider-arrow.next {
    right: 15px;
}

/* Page Layout */
#page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Main Content */
.index {
    flex: 1;
    min-width: 0;
}

.postcontent {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.postcontent:last-child {
    border-bottom: none;
}

h2.index {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.4;
}

h2.index a {
    color: #333;
    transition: color 0.3s ease;
}

h2.index a:hover {
    color: #000;
}

.socialsharing {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.socialsharing img {
    width: 16px;
    height: 16px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.socialsharing img:hover {
    opacity: 1;
}

.entry-date {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.postcontent p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.postcontent img.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 15px;
    max-width: 100%;
}

.readmore a {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    text-decoration: underline;
}

.readmore a:hover {
    color: #000;
}

/* Sidebar Styles */
.sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.wardrobe-img,
.categories-img,
.instagram-img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.social-icons a {
    display: block;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease;
}

.social-icons img:hover {
    opacity: 0.8;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.categories-list a {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    text-decoration: underline;
}

.categories-list a:hover {
    color: #000;
}

/* Newsletter Widget */
.newsletter {
    background-color: #f9f9f9;
    padding: 20px;
    text-align: center;
}

.newsletter p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 12px;
    font-family: 'Raleway', sans-serif;
    width: 100%;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #000;
}

/* Highlighted Widget */
.highlighted h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.highlighted-post {
    margin-bottom: 15px;
}

.highlighted-post a {
    display: flex;
    gap: 10px;
    align-items: center;
}

.highlighted-post img {
    width: 135px;
    height: 135px;
    object-fit: cover;
    flex-shrink: 0;
}

.highlighted-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.highlighted-info .category {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
}

.highlighted-info .title {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    line-height: 1.4;
}

/* Footer Styles */
footer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-social img {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease;
}

.footer-social img:hover {
    opacity: 0.8;
}

.footer-copyright {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    color: #999;
    margin-bottom: 20px;
}

.footer-credit img {
    max-height: 30px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-credit img:hover {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #access {
        flex-direction: column;
        gap: 10px;
    }
    
    .menu {
        justify-content: center;
    }
    
    #page {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .slider {
        height: 200px;
    }
    
    .highlighted-post a {
        flex-direction: column;
        text-align: center;
    }
    
    .highlighted-post img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .menu li a {
        font-size: 10px;
        padding: 5px 5px;
    }
    
    .postcontent img.alignleft {
        float: none;
        display: block;
        margin: 0 auto 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .categories-list {
        align-items: center;
    }
}

/* Single Post Styles */
.single-post {
    max-width: 100%;
}

.single-post .post-title {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.3;
}

.single-post .entry-date {
    margin-bottom: 20px;
}

.single-post p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.single-post img {
    margin-bottom: 20px;
}

.single-post img.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 15px;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.post-navigation a {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    text-decoration: underline;
}

.post-navigation a:hover {
    color: #000;
}

/* Comments Section */
.comments-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.comments-section h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.comment {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.comment p {
    margin-bottom: 5px;
}

.comment span {
    font-size: 12px;
    color: #999;
}

.comment-form {
    margin-top: 30px;
}

.comment-form h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-family: 'Old Standard TT', Georgia, serif;
    font-size: 14px;
    margin-bottom: 10px;
}

.comment-form button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.comment-form button:hover {
    background-color: #000;
}

/* Page Content Styles */
.page-content {
    max-width: 100%;
}

.page-content h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-content h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-content ul {
    margin-bottom: 15px;
    padding-left: 25px;
}

.page-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-content a {
    color: #333;
    text-decoration: underline;
}

.page-content a:hover {
    color: #000;
}

/* Category Title */
.category-title {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Contact Form Styles */
.contact-form {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contact-form h2 {
    margin-top: 0;
}

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

.form-group label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-family: 'Old Standard TT', Georgia, serif;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    padding: 12px 24px;
    background-color: #333;
    color: #fff;
    border: none;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #000;
}

/* Social Links About */
.social-links-about {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.social-links-about a {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: underline;
}

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.shop-item {
    text-align: center;
}

.shop-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
}

.shop-item h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.shop-item p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.shop-link {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: underline;
}

/* Search Button */
.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
}
